/*
Theme Name: StreamBritish
Theme URI: https://streambritish.com
Author: StreamBritish
Description: Custom WordPress theme — pixel-perfect port of the streambritish.com landing page. Editable via ACF (optional).
Version: 1.0.0
License: GPL v2 or later
Text Domain: streambritish
*/

:root {
  --blue: #0448F5;
  --blue-dark: #0336c0;
  --blue-light: #e8eeff;
  --green: #25d366;
  --orange: #ff6b00;
  --gold: #f59e0b;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --bg: #ffffff;
  --bg-alt: #f0f7ff;
  --radius: 24px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4, .section-title, .hero h1, .countdown-title, .final-cta h2 { font-family: 'Outfit', sans-serif; }

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  background: linear-gradient(90deg, #0336c0, #0448F5, #2563ff);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1001;
}
.announce-bar span { background: #fbbf24; color: #1a1a2e; padding: 2px 10px; border-radius: 9999px; font-weight: 800; margin-right: 8px; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  background: #0d0d0d;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.logo img { height: 38px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; align-items: center; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 9999px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px); }
.mobile-toggle { display: none; background: none; border: 1px solid rgba(255,255,255,0.2); border-radius: 9999px; padding: 8px 14px; cursor: pointer; color: #fff; }
@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px 24px; gap: 16px; border-bottom: 1px solid var(--border); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
  .nav-links.open { display: flex; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0,30,90,0.72) 0%, rgba(0,60,140,0.45) 50%, rgba(0,20,70,0.78) 100%),
    url('https://pub-f723409cbfab46caa18309b26581197b.r2.dev/hero.webp') center/cover no-repeat;
  padding: 80px 24px 60px;
  color: #fff;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fbbf24;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em { font-style: normal; color: #60b8ff; }
.hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin: 0 auto 28px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 2rem; font-weight: 900; color: #fff; line-height: 1; }
.hero-stat .lbl { font-size: 0.72rem; color: rgba(255,255,255,0.7); font-weight: 500; margin-top: 4px; }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 4px 20px rgba(4,72,245,0.4); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(4,72,245,0.5); }
.btn-wa { background: var(--green); color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
.btn-wa:hover { background: #1db954; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.hero-note { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 14px; }
@media (max-width: 600px) {
  .hero-stats { gap: 24px; }
  .hero-stat .num { font-size: 1.5rem; }
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 24px 24px;
}
.trust-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 260px));
  gap: 12px;
  align-items: stretch;
  justify-content: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 12px 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
}
.trust-item svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; }
.stars-row { display: flex; gap: 2px; color: #fbbf24; font-size: 1rem; justify-content: center; }
@media (max-width: 768px) {
  .trust-strip-inner { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .trust-item { font-size: 0.72rem; padding: 10px 6px; border-radius: 12px; }
}
@media (max-width: 480px) {
  .trust-strip-inner { grid-template-columns: repeat(3, 1fr); gap: 7px; }
  .trust-item { font-size: 0.68rem; padding: 8px 4px; }
  .trust-item svg { width: 18px; height: 18px; }
}

/* ── SECTIONS ── */
.section { padding: 80px 24px; }
.section-alt { background: var(--bg-alt); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 560px; margin-bottom: 48px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── FEATURES 3-GRID ── */
.feat3-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat3-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.feat3-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #60b8ff);
  opacity: 0;
  transition: opacity 0.25s;
}
.feat3-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateY(-3px); }
.feat3-card:hover::after { opacity: 1; }
.feat3-card { text-align: center; }
.feat3-icon {
  width: 48px; height: 48px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.feat3-icon.blue { background: var(--blue-light); }
.feat3-icon.green { background: var(--blue-light); color: #0448f5 !important; }
.feat3-icon.orange { background: var(--blue-light); color: #0448f5 !important; }
.feat3-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feat3-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }
@media (max-width: 768px) { .feat3-grid { grid-template-columns: 1fr; } }
@media (min-width: 480px) and (max-width: 768px) { .feat3-grid { grid-template-columns: 1fr 1fr; } }

/* ── CHANNEL LOGO STRIP ── */
.channel-strip { overflow: hidden; padding: 32px 0; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.channel-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scroll-logos 20s linear infinite;
  align-items: center;
}
.channel-track:hover { animation-play-state: paused; }
.channel-track img { height: 36px; width: auto; filter: grayscale(60%); opacity: 0.7; transition: filter 0.2s, opacity 0.2s; }
.channel-track img:hover { filter: grayscale(0); opacity: 1; }
@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── PRICING ── */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 4px;
  display: inline-flex;
}
.pricing-tabs-wrap { text-align: center; margin-bottom: 0; }
.tab-btn {
  padding: 10px 28px;
  border-radius: 9999px;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s;
}
.tab-btn.active { background: var(--blue); color: #fff; box-shadow: 0 3px 12px rgba(4,72,245,0.3); }
.tab-view { display: none; }
.tab-view.active { display: block; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pricing-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.pricing-card.popular {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(4,72,245,0.1);
}
.badge-popular {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.badge-seller {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.p-duration { font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; color: var(--text); }
.p-conn { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 16px; }
.p-old { font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; margin-bottom: 2px; }
.p-price { font-size: 2.6rem; font-weight: 900; line-height: 1; letter-spacing: -2px; color: var(--text); }
.p-price sup { font-size: 1.2rem; vertical-align: super; font-weight: 700; }
.p-per { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 6px; }
.p-save {
  display: inline-block;
  background: #dcfce7;
  color: #16a34a;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.p-feats { list-style: none; text-align: left; margin-bottom: 20px; flex: 1; }
.p-feats li { font-size: 0.8rem; color: var(--text-muted); padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.p-feats li::before { content: '✓'; color: #16a34a; font-weight: 800; flex-shrink: 0; }
.p-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 13px;
  border-radius: 9999px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  background: #0448f5;
  color: #fff;
  box-shadow: 0 3px 14px rgba(4,72,245,0.3);
}
.p-btn:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 5px 18px rgba(4,72,245,0.45); }
.p-btn.blue-btn { background: #0448f5; box-shadow: 0 3px 14px rgba(4,72,245,0.3); }
.p-btn.blue-btn:hover { background: var(--blue-dark); box-shadow: 0 5px 18px rgba(4,72,245,0.45); }
.p-incl { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,107,0,0.1); color: var(--orange); font-size: 0.68rem; font-weight: 700; padding: 4px 12px; border-radius: 9999px; margin-bottom: 10px; }
.pricing-guarantee {
  text-align: center;
  margin-top: 28px;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.multi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .multi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .multi-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

/* ── DEVICES ── */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.device-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.device-card:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(4,72,245,0.1); }
.device-icon { font-size: 1.8rem; flex-shrink: 0; }
.device-card h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 2px; }
.device-card p { font-size: 0.78rem; color: var(--text-muted); }
@media (max-width: 768px) { .devices-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .devices-grid { grid-template-columns: 1fr; } }

/* ── COUNTDOWN ── */
.countdown-bar {
  background: linear-gradient(135deg, #0336c0 0%, #0448F5 60%, #1a5cff 100%);
  color: #fff;
  padding: 0;
  overflow: hidden;
}
.countdown-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 480px;
}
.countdown-content {
  padding: 56px 48px 56px 48px;
}
.countdown-img {
  position: relative;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
}
.countdown-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 768px) {
  .countdown-inner { grid-template-columns: 1fr; }
  .countdown-img { display: none; }
  .countdown-content { padding: 48px 24px; text-align: center; }
  .countdown-timer { justify-content: center; }
}
.countdown-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.7); font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.countdown-title { font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 900; margin-bottom: 8px; line-height: 1.2; }
.countdown-title span { color: #fbbf24; }
.countdown-sub { font-size: 0.92rem; color: rgba(255,255,255,0.72); margin-bottom: 32px; line-height: 1.6; }
.countdown-timer { display: flex; gap: 14px; margin-bottom: 32px; flex-wrap: wrap; }
.countdown-unit { text-align: center; }
.countdown-unit .c-num {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 900;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-variant-numeric: tabular-nums;
  font-family: 'Outfit', sans-serif;
}
.countdown-unit .c-lbl { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.6); margin-top: 6px; }

/* ── PROOF SLIDER ── */
.proof-wrap {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  padding: 8px 0 20px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.proof-wrap:active { cursor: grabbing; }
.proof-track { display: flex; gap: 14px; width: max-content; }
.proof-card { flex-shrink: 0; width: 200px; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 6px 20px rgba(0,0,0,0.08); transition: transform 0.2s; pointer-events: none; }
.proof-card img { width: 100%; height: auto; display: block; }
.proof-card:hover { transform: scale(1.03) translateY(-3px); }
.proof-wrap:hover .proof-card, .proof-wrap.dragging .proof-card { pointer-events: auto; }
@media (max-width: 600px) { .proof-card { width: 160px; } }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px; left: calc(16.66% + 20px); right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), #60b8ff, var(--blue));
  opacity: 0.3;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
}
.step-num {
  width: 52px; height: 52px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } .steps-grid::before { display: none; } }

/* ── WHY US GRID ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.why-card:hover { border-color: var(--blue); box-shadow: 0 6px 20px rgba(4,72,245,0.1); }
.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

/* ── APPS ── */
.apps-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.app-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-width: 160px;
}
.app-tile:hover { border-color: var(--blue); box-shadow: 0 4px 14px rgba(4,72,245,0.1); }
.app-tile img { height: 36px; width: 36px; object-fit: contain; border-radius: 12px; }
.app-tile span { font-size: 0.85rem; font-weight: 600; color: var(--text); }

/* ── COMPARISON TABLE ── */
.compare-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.compare-table thead { background: var(--blue); color: #fff; }
.compare-table th { padding: 14px 20px; font-size: 0.88rem; font-weight: 700; text-align: center; }
.compare-table th:first-child { text-align: left; }
.compare-table td { padding: 12px 20px; border-bottom: 1px solid var(--border); font-size: 0.84rem; color: var(--text-muted); text-align: center; }
.compare-table td:first-child { text-align: left; font-weight: 500; color: var(--text); }
.compare-table tbody tr:nth-child(odd) { background: var(--bg-alt); }
.compare-table .yes { color: #16a34a; font-weight: 700; }
.compare-table .no { color: #ef4444; font-weight: 700; }
.compare-table .hl { color: var(--blue); font-weight: 700; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none;
  font-family: 'Inter', sans-serif; font-size: 0.96rem; font-weight: 600;
  color: var(--text); text-align: left; padding: 22px 0;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q:hover { color: var(--blue); }
.faq-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-alt); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: transform 0.3s, background 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); background: var(--blue-light); color: var(--blue); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-body { max-height: 300px; }
.faq-body p { padding-bottom: 22px; font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(135deg, #0336c0, #0448F5, #2563ff);
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}
.final-cta h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; margin-bottom: 12px; }
.final-cta p { font-size: 1rem; color: rgba(255,255,255,0.82); max-width: 480px; margin: 0 auto 32px; }
.final-cta .btn { margin: 6px; }

/* ── FOOTER ── */
footer { background: #111827; color: #9ca3af; padding: 60px 24px 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand img { height: 36px; width: auto; margin-bottom: 12px; filter: brightness(1.1); }
.footer-brand p { font-size: 0.82rem; line-height: 1.65; max-width: 260px; }
.footer-col h4 { color: #fff; font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; color: #9ca3af; text-decoration: none; font-size: 0.82rem; padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #374151; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.75rem; }
.pay-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-badge { background: #1f2937; padding: 4px 12px; border-radius: 9999px; font-size: 0.7rem; font-weight: 600; color: #d1d5db; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── SALES TOAST — removed ── */
#sale-toast { display: none !important; }

/* ── CONTENT SLIDERS ── */
.sl-section { padding: 64px 0; background: var(--bg); overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sl-section + .sl-section { border-top: none; padding-top: 40px; }
.sl-head { text-align: center; margin-bottom: 28px; padding: 0 24px; }
.sl-head .sl-label { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--blue); background: var(--blue-light); padding: 4px 14px; border-radius: 9999px; margin-bottom: 10px; }
.sl-head h2 { font-family: 'Outfit', sans-serif; font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 900; letter-spacing: -0.5px; color: var(--text); }
.sl-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%); }
.sl-wrap + .sl-wrap { margin-top: 14px; }
.sl-track { display: flex; gap: 14px; width: max-content; will-change: transform; }
.sl-ch { flex-shrink: 0; width: 130px; height: 76px; background: #fff; border: 1px solid var(--border); border-radius: 16px; display: flex; align-items: center; justify-content: center; padding: 10px 14px; transition: border-color 0.2s, transform 0.2s; }
.sl-ch:hover { border-color: var(--blue); transform: translateY(-2px); }
.sl-ch img { max-width: 96px; max-height: 48px; width: auto; height: auto; object-fit: contain; display: block; }
.sl-mv { flex-shrink: 0; width: 120px; height: 178px; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s; }
.sl-mv:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 12px 32px rgba(0,0,0,0.18); }
.sl-mv img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 768px) {
  .sl-section { padding: 48px 0; }
  .sl-track { gap: 10px; }
  .sl-ch { width: 100px; height: 60px; }
  .sl-ch img { max-width: 72px; max-height: 38px; }
  .sl-mv { width: 96px; height: 142px; }
}

/* ── APP TILES (larger logos) ── */
.app-tile img { height: 48px !important; width: 48px !important; border-radius: 14px !important; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.55);
  z-index: 8999;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.12) translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,0.65); }
.wa-float-pulse {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ── ANNOUNCE BAR MOBILE ── */
@media (max-width: 600px) {
  .announce-bar { font-size: 0.72rem; padding: 7px 10px; line-height: 1.45; }
  .announce-bar span { margin-right: 5px; padding: 2px 8px; font-size: 0.7rem; }
}

/* ── GLOBAL MOBILE ── */
@media (max-width: 600px) {

  /* ── Hero: fits in viewport without scrolling ── */
  .hero { min-height: auto; padding: 24px 16px 24px; }
  .hero-badge { font-size: 0.66rem; padding: 5px 12px; letter-spacing: 0.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
  .hero h1 { font-size: 1.45rem; margin-bottom: 10px; }
  .hero p { font-size: 0.84rem; margin-bottom: 16px; }
  .hero-stats { gap: 14px; margin-bottom: 18px; }
  .hero-stat .num { font-size: 1.35rem; }
  .hero-stat .lbl { font-size: 0.6rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; gap: 8px; margin-bottom: 0; }
  .hero-buttons .btn { justify-content: center; width: 100%; padding: 12px 18px; font-size: 0.85rem; }
  .hero-note { font-size: 0.64rem; margin-top: 10px; }

  /* ── Sections ── */
  .section { padding: 44px 16px; }
  .section-title { font-size: 1.35rem !important; }
  .section-sub { font-size: 0.85rem; margin-bottom: 28px; }

  /* ── Pricing: vertical stack ── */
  .pricing-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    max-width: 420px;
    margin: 0 auto !important;
    overflow: visible !important;
    padding: 0 !important;
  }
  .pricing-grid .pricing-card {
    min-width: unset !important;
    max-width: unset !important;
    flex-shrink: unset;
    scroll-snap-align: unset;
    margin: 0 !important;
  }
  .multi-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    max-width: 420px;
    margin: 0 auto !important;
    overflow: visible !important;
    padding: 0 !important;
  }
  .multi-grid .pricing-card {
    min-width: unset !important;
    max-width: unset !important;
    flex-shrink: unset;
    scroll-snap-align: unset;
    margin: 0 !important;
  }
  .pricing-scroll-hint { display: none !important; }

  /* ── Feature cards ── */
  .feat3-grid { grid-template-columns: 1fr; gap: 12px; }

  /* ── Trust strip ── */
  .trust-strip-inner { flex-wrap: wrap; gap: 8px 14px; justify-content: flex-start; }
  .trust-item span { display: inline !important; }
  .trust-item { font-size: 0.74rem; }

  /* ── Devices: 2 col, stacked icon ── */
  .devices-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .device-card { padding: 16px 12px; gap: 8px; flex-direction: column; align-items: flex-start; border-radius: 16px; }
  .device-card .device-icon { width: 36px !important; height: 36px !important; border-radius: 10px !important; }
  .device-card .device-icon svg { width: 18px !important; height: 18px !important; }
  .device-card h4 { font-size: 0.8rem; }
  .device-card p { font-size: 0.7rem; line-height: 1.4; }

  /* ── Countdown ── */
  .countdown-content { padding: 36px 16px; text-align: center; }
  .countdown-timer { justify-content: center; gap: 8px; }
  .countdown-unit .c-num { width: 60px; height: 60px; font-size: 1.5rem; }
  .countdown-title { font-size: 1.25rem; }
  .countdown-sub { font-size: 0.82rem; }

  /* ── Steps ── */
  .steps-grid { gap: 12px; }
  .steps-grid::before { display: none; }

  /* ── Why grid: 2 col ── */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .why-card { padding: 18px 14px; border-radius: 16px; }
  .why-card h3 { font-size: 0.82rem; }
  .why-card p { font-size: 0.74rem; }

  /* ── Apps grid: 2 col ── */
  .apps-grid { display: grid !important; grid-template-columns: 1fr 1fr; gap: 10px; }
  .app-tile { min-width: unset !important; padding: 12px 10px; border-radius: 14px; }
  .app-tile img { height: 36px !important; width: 36px !important; border-radius: 10px !important; }
  .app-tile span { font-size: 0.78rem; }

  /* ── Video section ── */
  #video-section .section-inner { grid-template-columns: 1fr !important; gap: 24px !important; }

  /* ── Comparison table ── */
  #compare .reveal > div { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-table { min-width: 560px; }

  /* ── Final CTA ── */
  .final-cta { padding: 52px 16px; }
  .final-cta .btn { width: 100%; justify-content: center; margin: 5px 0; }
  .final-cta > div { display: flex; flex-direction: column; align-items: stretch; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .pay-badges { flex-wrap: wrap; }

  /* ── WA float ── */
  .wa-float { width: 50px; height: 50px; bottom: 18px; right: 16px; }

  /* ── Nav dropdown ── */
  .nav-links { z-index: 999; }
  .nav-links a { color: var(--text) !important; }
  .nav-cta { color: #fff !important; }
}

/* ── Tablet: split sections → 1 col ── */
@media (max-width: 768px) {
  .section-inner[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; gap: 28px !important; }
}

@media (min-width: 601px) {
  .pricing-scroll-hint { display: none; }
}
