/* ===================================
   GLOBAL VARIABLES & BASE STYLES
=================================== */
:root {
  --bg: #071425;
  --muted: #9fb2c9;
  --accent1: #ff6b6b;
  --accent2: #00c6ff;
  --glass: rgba(255,255,255,0.04);
  --radius: 12px;
  --maxw: 1200px;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(1200px 400px at 10% 20%, rgba(255,107,107,0.06), transparent),
    linear-gradient(180deg, var(--bg), #021723);
  color: #eaf4ff;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

/* ===================================
   HEADER
=================================== */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 80;
  padding: 18px 0;
  backdrop-filter: blur(6px);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo {
  height: 36px;
}

.brand-name {
  font-weight: 700;
  color: #fff;
}

.brand-name span {
  color: var(--accent1);
  margin-left: 4px;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover {
  color: #ffffff;
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border: 0;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent1), #ff8e6b);
  color: #071020;
  font-weight: 700;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: #ffffff;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--muted);
}

.burger {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 20px;
}

/* ===================================
   HERO
=================================== */
.hero {
  padding-top: 120px;
  padding-bottom: 130px;
  position: relative;
  color: #fff;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
    url("movies-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-inner {
  display: flex;
  gap: 40px;
  align-items: center;
}

.hero-left {
  flex: 1;
  max-width: 560px;
}

.headline {
  font-size: 42px;
  line-height: 1.05;
  margin: 0 0 12px;
}

.lead {
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.kpis {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  list-style: none;
  padding: 0;
}

.kpis li {
  background: var(--glass);
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--muted);
}

/* ===================================
   GENERIC SECTIONS
=================================== */
.section {
  padding: 64px 0;
}

.section-title {
  text-align: center;
  margin: 0 0 18px;
  font-size: 26px;
}

.muted {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 640px;
  margin: 0 auto 24px;
}

.muted.center {
  text-align: center;
}

/* ===================================
   FEATURES
=================================== */
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: var(--glass);
  padding: 18px;
  border-radius: 12px;
}

.card-icon {
  font-size: 30px;
}

/* ===================================
   RESELLER TABLE (PLANS)
=================================== */
.table-wrapper {
  margin-top: 20px;
}

.plans-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(2,8,20,0.7);
  border-radius: 12px;
  overflow: hidden;
}

.plans-table th,
.plans-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
}

.plans-table th {
  background: rgba(0,0,0,0.35);
  font-weight: 700;
  text-align: left;
}

.plans-table tr:last-child td {
  border-bottom: none;
}

.plans-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.02);
}

/* Ikona ACTIVE në hover */
.plans-table tbody tr:hover {
  background: rgba(32,255,107,0.05);
}

.plans-table tbody tr:hover td:first-child::after {
  content: "●";
  color: #20ff6b;
  font-weight: 900;
  margin-left: 8px;
  font-size: 0.8rem;
}

.plans-cta {
  margin-top: 12px;
  text-align: center;
}

/* ===================================
   PRICING PLANS (4 CARDS)
=================================== */
.pricing {
  background: #04070b;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.pricing-card {
  background: #050b13;
  padding: 22px 20px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 45px rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  transition: 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: #00c6ff;
  box-shadow: 0 18px 45px rgba(0,198,255,0.3);
}

.pricing-icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.pricing-price {
  margin: 0 0 6px;
  font-size: 22px;
}

.pricing-price span {
  font-size: 0.9rem;
  color: var(--muted);
}

.pricing-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.pricing-beginner { background: #3498db; }
.pricing-starter  { background: #2ecc71; }
.pricing-premium  { background: #9b59b6; }
.pricing-unlimited{ background: #e67e22; }

.pricing-list {
  list-style: disc;
  padding-left: 22px;
  color: #dfe9ff;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.pricing-list li {
  margin-bottom: 4px;
}

.pricing-btn {
  width: 100%;
  margin-top: auto;
  font-weight: 700;
}

/* ===================================
   CONTACT & SUPPORT – PRO SECTION
=================================== */
.pro-contact {
  background: linear-gradient(180deg, #03101d 0%, #021520 100%);
  padding-top: 80px;
  padding-bottom: 90px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.support-card {
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 28px 22px;
  backdrop-filter: blur(4px);
  transition: 0.25s ease;
}

.support-card:hover {
  transform: translateY(-6px);
  border-color: #00c6ff;
  box-shadow: 0 12px 40px rgba(0,198,255,0.25);
}

.support-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.support-card h3 {
  margin: 0;
  font-size: 20px;
  color: #fff;
}

.support-text {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 10px 0 18px;
}

.support-btn {
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  font-weight: 700;
  background: linear-gradient(90deg, var(--accent1), #ff8e6b);
  color: #03101d;
}

/* ===================================
   FAQ PREMIUM
=================================== */
.faq-premium {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(180deg, #04101f 0%, #02131e 100%);
}

.faqp-list {
  max-width: 750px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faqp-item {
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.faqp-item.open {
  border-color: #00c6ff;
  box-shadow: 0 0 22px rgba(0,198,255,0.3);
}

.faqp-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.faqp-icon {
  font-size: 26px;
}

.faqp-question {
  flex: 1;
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 600;
  text-align: left;
}

.faqp-arrow {
  font-size: 20px;
  color: #77b3ff;
  transition: transform .3s ease;
}

.faqp-item.open .faqp-arrow {
  transform: rotate(180deg);
}

.faqp-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #d1e4ff;
  font-size: 0.95rem;
  line-height: 1.55;
  transition: max-height .35s ease, padding .35s ease;
}

.faqp-item.open .faqp-body {
  max-height: 400px;
  padding: 0 20px 18px 20px;
}

/* ===================================
   FALLBACK CONTACT GRID (nëse duhet)
=================================== */
.contact-grid {
  display: flex;
  gap: 12px;
}

.card.small {
  flex: 1;
  padding: 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
}

/* ===================================
   FOOTER
=================================== */
.site-footer {
  padding: 18px 0;
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.socials a {
  color: var(--muted);
  margin-left: 12px;
}

/* ===================================
   REVEAL ANIMATION
=================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: all .6s cubic-bezier(.2,.9,.3,1);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 1000px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 110px;
    padding-bottom: 90px;
  }
  .hero-inner {
    flex-direction: column;
  }
  .nav {
    display: none;
  }
  .burger {
    display: block;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .headline {
    font-size: 32px;
  }
  .plans-table th,
  .plans-table td {
    padding: 8px 8px;
    font-size: 0.88rem;
  }
  .faqp-toggle {
    padding: 16px;
  }
  .faqp-body {
    padding: 0 16px;
  }
  .faqp-item.open .faqp-body {
    padding: 0 16px 16px;
  }
}
