/* ============================================================
   MEDIA VAULT — IPTV Landing Page
   ============================================================ */

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

:root {
  --bg: #0a0a14;
  --bg2: #0f0f20;
  --bg3: #13132a;
  --surface: #16163a;
  --surface2: #1c1c42;
  --border: rgba(109, 40, 217, 0.2);
  --border2: rgba(255,255,255,0.07);
  --purple: #7c3aed;
  --purple-light: #a855f7;
  --purple-glow: rgba(124, 58, 237, 0.35);
  --indigo: #4f46e5;
  --green: #22c55e;
  --text: #f1f0ff;
  --text-muted: #8b8ca8;
  --text-dim: #5b5c7a;
  --gradient: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #6366f1 100%);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* GRADIENTS */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 24px var(--purple-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--purple-glow); }
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); }
.btn-outline {
  background: transparent;
  color: var(--purple-light);
  border: 1px solid var(--border);
}
.btn-outline:hover { background: rgba(124,58,237,0.12); border-color: var(--purple-light); }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); }

/* SECTION LABELS */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--purple-light);
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 60px;
  text-align: center;
}
.why-section .section-desc,
.pricing-section .section-desc,
.apps-section .section-desc,
.faq-section .section-desc { text-align: center; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: linear-gradient(90deg, #4f46e5, #7c3aed, #a855f7);
  text-align: center;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}
.dot-live {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
.ann-cta {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.ann-cta:hover { background: rgba(255,255,255,0.25); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,20,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { display: flex; }
.logo-img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}
.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.logo-text strong { color: var(--purple-light); font-weight: 900; }
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0 auto;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-cta { flex-shrink: 0; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--border2);
}
.mobile-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border2);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 8px; }
.mobile-menu a:hover { color: var(--text); }
.mobile-menu.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-light);
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat { text-align: left; padding: 0 20px; }
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 12px; color: var(--text-dim); font-weight: 500; }
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border2);
}
/* HERO CARD */
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 80px rgba(124,58,237,0.15);
}
.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border2);
}
.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #ef4444;
  letter-spacing: 0.05em;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.channels-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-light);
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 6px;
  padding: 3px 10px;
}
.hero-card-screen {
  height: 220px;
  background: linear-gradient(145deg, #0c0c24 0%, #1a0a3a 50%, #0a1040 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.screen-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.screen-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  background: rgba(0,0,0,0.35);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.screen-icon { margin-bottom: 12px; }
.screen-text { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.hero-card-footer {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   WORLD CUP BANNER
   ============================================================ */
.wc-banner {
  background: linear-gradient(135deg, #0f0c29 0%, #1a0a3a 50%, #0d1b4a 100%);
  border-top: 1px solid rgba(168,85,247,0.2);
  border-bottom: 1px solid rgba(168,85,247,0.2);
  padding: 48px 0;
}
.wc-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.wc-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--purple-light);
  margin-bottom: 12px;
}
.wc-left h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.wc-left p { font-size: 15px; color: var(--text-muted); max-width: 380px; }
.wc-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.wc-stat { text-align: center; }
.wc-num {
  display: block;
  font-size: 40px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wc-lbl { font-size: 12px; color: var(--text-dim); font-weight: 500; }

/* ============================================================
   PLAN PHOTO
   ============================================================ */
.plan-photo {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  background: var(--surface2);
  border: 2px solid var(--border);
}
.plan-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
}
.plan-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--surface2);
}

/* ============================================================
   FREE TRIAL BANNER
   ============================================================ */
.free-trial-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(124,58,237,0.18) 0%, rgba(79,70,229,0.18) 100%);
  border: 1px solid rgba(168,85,247,0.4);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.free-trial-left { flex: 1; min-width: 240px; }
.free-trial-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--green);
  border-radius: 6px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.free-trial-left h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.free-trial-left p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}
.free-trial-btn { flex-shrink: 0; white-space: nowrap; }

/* ============================================================
   COUNTRIES SECTION
   ============================================================ */
.countries-section {
  padding: 100px 0;
  background: var(--bg2);
  text-align: center;
}
.countries-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.ctab {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.ctab:hover { border-color: var(--border); color: var(--text); }
.ctab.active {
  background: rgba(124,58,237,0.15);
  border-color: var(--purple);
  color: var(--purple-light);
}
.countries-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.country-item {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 12px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
}
.country-item:hover { border-color: var(--border); color: var(--text); background: var(--surface); }
.country-item.hidden { display: none; }
.cflag {
  font-size: 10px;
  font-weight: 700;
  color: var(--purple-light);
  background: rgba(168,85,247,0.1);
  border-radius: 4px;
  padding: 2px 5px;
  flex-shrink: 0;
}
.countries-more-wrap {
  text-align: center;
  margin-top: 8px;
}
.countries-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-light);
  background: rgba(168,85,247,0.07);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 20px;
  padding: 10px 24px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.countries-more-btn:hover {
  background: rgba(168,85,247,0.15);
  border-color: var(--purple-light);
}

/* ============================================================
   APP ICON IMAGES
   ============================================================ */
.app-icon-wrap img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 32px 0;
}
.features-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fi-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.fi-sub { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section {
  padding: 100px 0;
  text-align: center;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
  text-align: left;
}
.why-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s ease;
}
.why-card:hover {
  border-color: var(--border);
  background: var(--surface);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(124,58,237,0.15);
}
.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.why-tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--purple-light);
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.15);
  border-radius: 6px;
  padding: 3px 10px;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section {
  padding: 100px 0;
  text-align: center;
  background: var(--bg2);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
}
.pricing-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(124,58,237,0.12);
}
.pricing-card--featured {
  background: var(--surface);
  border-color: var(--purple);
  box-shadow: 0 0 0 1px rgba(124,58,237,0.4), 0 20px 60px rgba(124,58,237,0.2);
}
.pricing-card--featured:hover { transform: translateY(-6px); }
.pricing-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--gradient);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.pricing-badge--gold {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}
.pricing-duration {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.price-currency {
  font-size: 18px;
  font-weight: 700;
  color: var(--purple-light);
}
.price-amount {
  font-size: 52px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
}
.price-monthly {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.pricing-features li svg { flex-shrink: 0; }
.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   APPS SECTION
   ============================================================ */
.apps-section {
  padding: 100px 0;
  text-align: center;
}
.apps-highlight {
  margin: 0 auto 60px;
}
.apps-price-compare {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 24px 40px;
}
.price-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.price-label { font-size: 12px; color: var(--text-dim); font-weight: 500; }
.price-val { font-size: 32px; font-weight: 900; line-height: 1; }
.old-price {
  color: var(--text-dim);
  text-decoration: line-through;
}
.new-price { color: var(--purple-light); }
.price-save {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--green);
  border-radius: 6px;
  padding: 3px 8px;
}
.price-arrow { color: var(--purple-light); }
.apps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.app-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  cursor: default;
}
.app-card:hover {
  border-color: var(--border);
  background: var(--surface);
  transform: translateY(-2px);
}
.app-card--more {
  background: rgba(109,40,217,0.05);
  border-style: dashed;
}
.app-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
}
.app-card span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
}
.apps-cta { margin-top: 8px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  padding: 80px 0;
  background: var(--bg2);
  text-align: center;
}
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
}
.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 32px 24px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
}
.step-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.step-arrow {
  padding: 0 16px;
  color: var(--purple);
  flex-shrink: 0;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-section {
  padding: 100px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left .section-title { text-align: left; }
.contact-left .section-desc { text-align: left; margin: 0 0 32px; }
.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}
.perk svg { flex-shrink: 0; }
.contact-form {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--text);
  font-family: inherit;
  transition: all 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b8ca8' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group option { background: var(--bg3); }
.form-group optgroup { background: var(--bg3); color: var(--text-dim); font-size: 12px; }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 14px;
}
.form-success {
  text-align: center;
  padding: 48px 24px;
  background: var(--bg2);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-lg);
}
.success-icon { margin-bottom: 20px; display: flex; justify-content: center; }
.form-success h3 { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.form-success p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 100px 0;
  background: var(--bg2);
  text-align: center;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 60px;
  text-align: left;
}
.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  padding: 18px 20px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--purple-light); }
.faq-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--purple-light); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-contact {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.faq-contact p { font-size: 16px; color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border2);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 16px;
}
.footer-uptime {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--green);
  font-weight: 500;
}
.uptime-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.footer-links-group h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links-group a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--text-dim); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--text-muted); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .apps-grid { grid-template-columns: repeat(4, 1fr); }
  .features-strip-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .countries-grid { grid-template-columns: repeat(4, 1fr); }
  .wc-inner { flex-direction: column; text-align: center; }
  .wc-left p { max-width: 100%; }
}
@media (max-width: 768px) {
  .countries-grid { grid-template-columns: repeat(3, 1fr); }
  .country-item { justify-content: center; }
  .free-trial-banner { flex-direction: column; text-align: center; padding: 24px 20px; }
  .free-trial-btn { width: 100%; justify-content: center; }
  .wc-stats { justify-content: center; }
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero { padding: 60px 0 80px; }
  .hero-title { font-size: 3rem; }
  .hero-stats { gap: 0; }
  .stat { padding: 0 14px; }
  .stat-num { font-size: 22px; }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto 40px; }
  .apps-grid { grid-template-columns: repeat(3, 1fr); }
  .apps-price-compare { flex-direction: column; gap: 16px; padding: 24px; }
  .price-arrow { transform: rotate(90deg); }
  .steps-grid { flex-direction: column; gap: 16px; }
  .step-arrow { transform: rotate(90deg); }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-title { font-size: 1.9rem; }
  .features-strip-inner { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 24px; }
  .pricing-trust { gap: 16px; flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
  .features-strip-inner { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 12px; align-items: flex-start; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .announcement-bar { font-size: 11px; }
  .ann-cta { display: none; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .country-item { font-size: 12px; padding: 10px 8px; justify-content: center; }
  .cflag { font-size: 9px; padding: 2px 4px; }
}

/* ── Sticky CTA Button ── */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.sticky-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(109, 40, 217, 0.5);
  white-space: nowrap;
}
@media (max-width: 480px) {
  .sticky-cta { bottom: 16px; }
  .sticky-cta-btn { padding: 13px 24px; font-size: 14px; }
}
