/* Aura IPTV — Main CSS */
:root {
  --c-bg:      #0d0d0d;
  --c-bg2:     #111122;
  --c-bg3:     #1a1a2e;
  --c-seo:     #080808;
  --c-cyan:    #00B2FF;
  --c-purple:  #7C4DFF;
  --c-green:   #00E676;
  --c-text:    #f0f0f0;
  --c-muted:   #bbbbbb;
  --c-border:  rgba(255,255,255,0.08);
  --r-btn:     32px;
  --r-card:    16px;
  --font:      'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
.aura-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.aura-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.aura-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.aura-logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}
.aura-logo span { color: var(--c-cyan); }
.aura-nav { display: flex; align-items: center; gap: 28px; list-style: none; }
.aura-nav a {
  color: var(--c-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.aura-nav a:hover { color: #fff; }
.aura-header-cta {
  display: inline-flex;
  align-items: center;
  background: var(--c-cyan);
  color: #0d0d0d;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 9px 22px;
  border-radius: var(--r-btn);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
}
.aura-header-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* hamburger */
.aura-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.aura-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--c-cyan);
  color: #0d0d0d;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--r-btn);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,178,255,0.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 30px;
  border-radius: var(--r-btn);
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--c-cyan);
  color: var(--c-cyan);
}

/* ── SECTIONS ── */
.sec { padding: 80px 20px; }
.sec--dark  { background: var(--c-bg);  }
.sec--dark2 { background: var(--c-bg2); }
.sec--seo   { background: var(--c-seo); }
.sec-inner  { max-width: 1160px; margin: 0 auto; }

/* section headings */
.sec-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}
.sec-sub {
  text-align: center;
  color: var(--c-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 48px;
}
.sec-badge {
  display: inline-block;
  background: rgba(0,178,255,0.12);
  color: var(--c-cyan);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ── HERO ── */
.aura-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  background: var(--c-bg);
  text-align: center;
}
.aura-hero-inner { max-width: 820px; margin: 0 auto; }
.aura-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
}
.aura-hero h1 .hl { color: var(--c-cyan); }
.aura-hero .hero-desc {
  font-size: 1.125rem;
  color: var(--c-muted);
  max-width: 560px;
  margin: 0 auto 16px;
}
.aura-hero .hero-price {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 16px 0 4px;
}
.aura-hero .hero-price sup { font-size: 0.45em; vertical-align: super; }
.aura-hero .hero-price-label {
  font-size: 0.9rem;
  color: var(--c-muted);
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--c-muted);
}
.hero-trust-item .icon { color: var(--c-cyan); font-size: 1rem; }

/* ── TEST STRIP ── */
.aura-test-strip {
  background: var(--c-bg2);
  padding: 48px 20px;
  text-align: center;
}
.aura-test-strip h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.aura-test-strip p { color: var(--c-muted); margin-bottom: 24px; }
.strip-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── FEATURE CARDS ── */
.aura-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.aura-feature-card {
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.aura-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,178,255,0.1);
}
.aura-feature-icon {
  width: 48px; height: 48px;
  background: rgba(0,178,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.aura-feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.aura-feature-card p { font-size: 0.9rem; color: var(--c-muted); }

/* ── OFFER / GRADIENT SECTION ── */
.aura-offer {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgb(124,77,255) 0%, rgb(0,230,118) 100%);
  text-align: center;
}
.aura-offer h2 { font-size: clamp(1.75rem,4vw,2.5rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.aura-offer p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }
.offer-price-box {
  display: inline-block;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 24px 40px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.offer-price-val {
  font-size: clamp(2.5rem,5vw,3.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
}
.offer-price-val sup { font-size: 0.4em; vertical-align: super; }
.offer-price-note { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ── QUALITY / STATS ── */
.aura-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin-bottom: 40px; }
.aura-stat { text-align: center; }
.aura-stat-val {
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 900;
  color: var(--c-cyan);
  letter-spacing: -0.03em;
  line-height: 1;
}
.aura-stat-label { font-size: 0.85rem; color: var(--c-muted); margin-top: 4px; }

/* ── PLANS ── */
.aura-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.aura-plan {
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.aura-plan:hover { transform: translateY(-4px); }
.aura-plan--featured {
  background: linear-gradient(145deg, #1a1a3e 0%, #0d0d2e 100%);
  border-color: var(--c-cyan);
  box-shadow: 0 0 0 1px var(--c-cyan), 0 20px 60px rgba(0,178,255,0.15);
  position: relative;
}
.plan-badge-top {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-cyan);
  color: #0d0d0d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.plan-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-cyan);
  margin-bottom: 12px;
}
.plan-price {
  font-size: clamp(2.2rem,4vw,2.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price sup { font-size: 0.38em; vertical-align: super; }
.plan-period { font-size: 0.85rem; color: var(--c-muted); margin-bottom: 20px; }
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--c-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-features li::before {
  content: '✓';
  color: var(--c-cyan);
  font-weight: 700;
  flex-shrink: 0;
}
.plan-cta { display: block; text-align: center; }

/* ── PRICE TABLE ── */
.aura-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.aura-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.aura-price-table th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  color: var(--c-cyan);
  background: var(--c-bg3);
  border-bottom: 1px solid var(--c-border);
  white-space: nowrap;
}
.aura-price-table td {
  padding: 13px 18px;
  color: var(--c-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}
.aura-price-table tr:hover td { background: rgba(255,255,255,0.02); }
.aura-price-table .check { color: #00E676; font-weight: 700; }
.aura-price-table .cross { color: rgba(255,255,255,0.25); }

/* ── FAQ ── */
.aura-faq-list { max-width: 780px; margin: 0 auto; }
.aura-faq-list details {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.aura-faq-list details:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.aura-faq-list summary {
  padding: 18px 4px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.aura-faq-list summary::-webkit-details-marker { display: none; }
.aura-faq-list summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--c-cyan);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.aura-faq-list details[open] summary::after { transform: rotate(45deg); }
.aura-faq-list details .faq-body {
  padding: 0 4px 18px;
  font-size: 0.95rem;
  color: var(--c-muted);
  line-height: 1.7;
}

/* ── CONTACT CTA ── */
.aura-contact { text-align: center; }
.aura-contact h2 { font-size: clamp(1.6rem,3.5vw,2.2rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.aura-contact p { color: var(--c-muted); margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.aura-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--r-btn);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.aura-whatsapp-btn:hover { opacity: 0.9; transform: translateY(-2px); }

/* ── SEO SECTION ── */
.aura-seo-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.aura-seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.aura-seo-block ul { list-style: none; }
.aura-seo-block li {
  font-size: 0.82rem;
  color: var(--c-muted);
  padding: 2px 0;
  transition: color 0.15s;
}
.aura-seo-block li:hover { color: var(--c-cyan); cursor: default; }
.aura-seo-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.aura-seo-tag {
  font-size: 0.78rem;
  color: var(--c-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 3px 10px;
  border-radius: 4px;
}

/* ── FOOTER ── */
.aura-footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 56px 20px 28px;
}
.aura-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.aura-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.aura-footer-brand p { font-size: 0.9rem; color: var(--c-muted); margin-top: 10px; max-width: 260px; }
.aura-footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-cyan);
  margin-bottom: 16px;
}
.aura-footer-col ul { list-style: none; }
.aura-footer-col li { margin-bottom: 8px; }
.aura-footer-col a { font-size: 0.88rem; color: var(--c-muted); text-decoration: none; transition: color 0.2s; }
.aura-footer-col a:hover { color: #fff; }
.aura-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.aura-footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.aura-footer-bottom a:hover { color: #fff; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .aura-nav { display: none; }
  .aura-hamburger { display: flex; }
  .aura-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .aura-footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .aura-stats { gap: 28px; }
}
@media (max-width: 480px) {
  .aura-footer-grid { grid-template-columns: 1fr; }
  .aura-plans-grid { grid-template-columns: 1fr; }
}
