/* =======================================================
   VIVMATE 4K – vivmate4k.com
   Light theme matching vivimate.tv – pink → blue #155dfc
   ======================================================= */

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

:root {
  /* ── Backgrounds ── */
  --bg:          #ffffff;
  --bg-alt:      #f8f9fb;
  --bg-tint:     #eff6ff;   /* light blue (vivimate.tv uses light pink) */
  --bg-card:     #ffffff;

  /* ── Blue accent (vivimate.tv pink #E91E8C → blue) ── */
  --blue:        #155dfc;
  --blue-dark:   #0d3fd4;
  --blue-light:  #3b82f6;
  --blue-pale:   #eff6ff;
  --blue-10:     rgba(21,93,252,0.08);
  --blue-15:     rgba(21,93,252,0.12);
  --blue-border: rgba(21,93,252,0.22);

  /* ── Text ── */
  --navy:        #0f172a;
  --text:        #1e293b;
  --text-muted:  #64748b;
  --text-dim:    #94a3b8;
  --white:       #ffffff;

  /* ── Status ── */
  --green:       #16a34a;
  --wa-green:    #25d366;
  --red:         #ef4444;

  /* ── Borders ── */
  --border:      #e5e7eb;
  --border-light:#f3f4f6;

  /* ── Shadows ── */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:   0 10px 40px rgba(0,0,0,0.1);
  --shadow-blue: 0 4px 20px rgba(21,93,252,0.22);
  --shadow-card: 0 2px 12px rgba(11,29,78,0.08), 0 8px 32px rgba(11,29,78,0.06);

  --r-xs:   4px;
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   22px;
  --r-xl:   32px;
  --r-full: 9999px;

  --ease: .22s ease;
  --font: 'Poppins', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--blue-dark); }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
ul { list-style: none; }

/* ── Container ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Sections ── */
.section      { padding: 90px 0; }
.section-alt  { background: var(--bg-alt); }
.section-tint { background: var(--bg-tint); }
.text-center  { text-align: center; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-10);
  color: var(--blue);
  border: 1px solid var(--blue-border);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 5px 16px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn-blue, .btn-gold {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover, .btn-gold:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(21,93,252,0.3);
}

.btn-wa {
  background: var(--wa-green);
  color: #fff;
  border-color: var(--wa-green);
}
.btn-wa:hover { background: #1fbe5a; border-color: #1fbe5a; color: #fff; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-10); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); color: #fff; }

.btn-lg   { padding: 15px 36px; font-size: 16px; border-radius: var(--r-sm); }
.btn-sm   { padding: 8px 18px; font-size: 13px; }
.btn-full { width: 100%; }

/* ── Announcement Bar ── */
.ann-bar {
  background: linear-gradient(90deg, #000000 0%, #155dfc 50%, #000000 100%);
  padding: 10px 0;
  text-align: center;
  position: relative;
  z-index: 1001;
}

.ann-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ann-text   { font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 500; }
.ann-sep    { color: rgba(255,255,255,0.35); }

.ann-popular {
  background: var(--navy);
  color: #fff;
  border-radius: var(--r-full);
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .4px;
}

.ann-timer  { display: flex; align-items: center; gap: 4px; font-size: 13px; color: #fff; font-weight: 500; }

.ann-box {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 5px;
  padding: 2px 7px;
  font-weight: 800;
  color: #fff;
  min-width: 28px;
  text-align: center;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.ann-colon { color: rgba(255,255,255,0.7); font-weight: 700; }

.ann-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 1px;
  transition: border-color var(--ease);
  text-decoration: none;
}
.ann-cta-link:hover { border-color: #fff; color: #fff; }

.ann-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  line-height: 1;
}
.ann-close:hover { color: #fff; }

/* ── Header ── */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--ease);
}
.header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.07); }

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 20px;
}

.logo-text {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
.logo-text span { color: var(--blue); }

.nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all var(--ease);
  text-decoration: none;
}
.nav-link:hover { color: var(--blue); }
.nav-link.active { color: var(--blue); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn-trial {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-trial:hover { border-color: var(--blue); color: var(--blue); }

.btn-start {
  background: var(--blue);
  color: #fff;
  border-radius: var(--r-sm);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--ease);
  white-space: nowrap;
  box-shadow: var(--shadow-blue);
}
.btn-start:hover { background: var(--blue-dark); color: #fff; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1002;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
  background: var(--bg);
  padding: 80px 0 90px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 64px;
  align-items: center;
}

/* LEFT */
.hero-left { position: relative; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue-10);
  border: 1px solid var(--blue-border);
  border-radius: var(--r-full);
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(32px, 4.8vw, 56px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}
.hero-title .hl { color: var(--blue); }

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.75;
}

/* Feature icons row */
.hero-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 32px;
}

.hf {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.hf .hfi {
  width: 26px;
  height: 26px;
  background: var(--blue-10);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
}
.hero-trust .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* RIGHT – Stats card */
.hero-right {}

.stats-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  padding: 38px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
}

.sc-item { text-align: center; }

.sc-num {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}

.sc-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.sc-divider-h { height: 1px; background: var(--border-light); grid-column: 1/-1; }
.sc-divider-v { width: 1px; background: var(--border-light); }

/* ── World Cup section ── */
.wc-section {
  padding: 50px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
}

.wc-inner {
  max-width: 740px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 44px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.wc-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue-10);
  color: var(--blue);
  border: 1px solid var(--blue-border);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  padding: 5px 16px;
  margin-bottom: 20px;
}

.wc-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.wc-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.wc-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.wc-unit {
  background: var(--bg-tint);
  border: 1px solid var(--blue-border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  min-width: 80px;
  text-align: center;
}
.wc-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.wc-lbl { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-top: 4px; }
.wc-sep { font-size: 28px; font-weight: 800; color: var(--blue); }

/* ── Platforms ── */
.platforms-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.plat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--ease);
  box-shadow: var(--shadow-sm);
}
.plat-badge:hover {
  border-color: var(--blue-border);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.plat-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* ── Dark section ── */
.section-dark {
  background: #0b1120;
}
.section-tag-light {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.12);
}
.section-title-light { color: #ffffff; }
.section-sub-light   { color: rgba(255,255,255,0.5); }

/* ── Sports ── */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
}

.sport-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 14px;
  text-align: center;
  transition: all var(--ease);
  box-shadow: var(--shadow-sm);
}
.sport-card:hover {
  border-color: var(--blue-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.sport-card-dark {
  background: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.15);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.sport-card-dark:hover {
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
  transform: translateY(-3px);
}
.sport-icon { font-size: 34px; margin-bottom: 10px; }
.sport-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.sport-name-dark { color: #0b1120; }

/* ── Channels logo strip ── */
.channels-section { padding-bottom: 72px; }
.channels-track-wrap {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.channels-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: ch-scroll 32s linear infinite;
}
.channels-track:hover { animation-play-state: paused; }
@keyframes ch-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ch-card {
  background: #ffffff;
  border-radius: 16px;
  width: 170px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: transform .2s;
}
.ch-card:hover { transform: translateY(-3px); }
.ch-card svg { width: 100%; height: 100%; }

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feat-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  transition: all var(--ease);
  box-shadow: var(--shadow-sm);
}
.feat-card:hover {
  border-color: var(--blue-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 0 3px var(--blue-10);
}

.feat-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-10);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.feat-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.feat-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Pricing ── */
/* ── Pricing countdown ── */
.pricing-countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff5f5;
  border: 1px solid #fecaca;
  color: #dc2626;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 36px;
}
#pricing-timer {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: .5px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

.price-card {
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 22px 22px;
  position: relative;
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  text-align: left;
}
.price-card:hover {
  border-color: #93c5fd;
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
}

.price-card.popular {
  border: 2px solid var(--blue);
  box-shadow: 0 4px 24px rgba(37,99,235,0.15);
  margin-top: -10px;
}

.pop-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #f97316;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-name {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
  line-height: 1.2;
}

.plan-label {
  font-size: 10px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

.plan-price {
  font-size: 52px;
  font-weight: 900;
  color: #111827;
  line-height: 1;
}
.plan-price sup {
  font-size: 22px;
  font-weight: 700;
  vertical-align: top;
  margin-top: 10px;
  color: #111827;
}

.plan-was {
  font-size: 16px;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 500;
}

.savings-badge {
  display: block;
  width: 100%;
  padding: 7px 0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.savings-green {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}
.savings-orange {
  background: #fff7ed;
  color: #ea580c;
  border: 1px solid #fed7aa;
}

.plan-feats { flex: 1; margin-bottom: 20px; list-style: none; padding: 0; }
.plan-feats li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: #4b5563;
  padding: 7px 0;
  border-bottom: 1px solid #f3f4f6;
  line-height: 1.5;
}
.plan-feats li:last-child { border-bottom: none; }
.plan-feats .ck { color: #16a34a; font-size: 13px; flex-shrink: 0; margin-top: 1px; font-weight: 700; }
.plan-feats strong { color: #111827; font-weight: 700; }

.plan-btn {
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--ease);
  border: 1.5px solid #d1d5db;
  color: #111827;
  background: transparent;
  margin-bottom: 10px;
}
.plan-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-10);
}

.price-card.popular .plan-btn {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}
.price-card.popular .plan-btn:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
}

.plan-conn {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  background: #f3f4f6;
  color: #6b7280;
}

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
  box-shadow: var(--shadow-sm);
}
.faq-item:hover { border-color: var(--blue-border); box-shadow: var(--shadow-md); }
.faq-item.open  { border-color: var(--blue); box-shadow: var(--shadow-blue); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 22px;
  cursor: pointer;
  gap: 12px;
  user-select: none;
}

.faq-q-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
}

.faq-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background: var(--blue-10);
  border: 1.5px solid var(--blue-border);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: transform var(--ease), background var(--ease), color var(--ease);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner {
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border-light);
}
.faq-item.open .faq-a { max-height: 320px; }

/* ── CTA Section ── */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #000000 0%, var(--blue) 50%, #0d3fd4 100%);
  text-align: center;
}

.cta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 38px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-note { margin-top: 22px; font-size: 13px; color: rgba(255,255,255,0.55); }

/* ── Footer ── */
.footer {
  background: var(--navy);
  padding: 72px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 52px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  display: block;
}
.footer-logo span { color: #60a5fa; }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 22px;
  line-height: 1.7;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa-green);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--ease);
  text-decoration: none;
  margin-bottom: 24px;
}
.footer-wa:hover { background: #1fbe5a; color: #fff; transform: translateY(-2px); }

.pay-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-icon {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xs);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--ease);
}
.footer-links li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  max-width: 560px;
  line-height: 1.6;
  text-align: right;
}

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,0.45);
  transition: all var(--ease);
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.55); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--border);
  padding: 16px 24px;
  z-index: 950;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text { font-size: 13px; color: var(--text-muted); flex: 1; }
.cookie-text a { color: var(--blue); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Fade-up animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   CHECKOUT PAGE
══════════════════════════════════════════ */
.co-page { padding: 60px 0 100px; background: var(--bg-alt); min-height: 80vh; }

.co-layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 40px;
  align-items: start;
}

/* Summary sidebar */
.co-summary {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: sticky;
  top: 88px;
  box-shadow: var(--shadow-md);
}

.co-s-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.co-plan-box {
  background: var(--blue-10);
  border: 1.5px solid var(--blue-border);
  border-radius: var(--r-md);
  padding: 18px;
  margin-bottom: 22px;
}
.co-plan-lbl   { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.co-plan-price { font-size: 34px; font-weight: 900; color: var(--blue); line-height: 1; }
.co-plan-desc  { font-size: 12px; color: var(--text-muted); margin-top: 5px; }

.co-feats { margin-bottom: 24px; }
.co-feats li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
}
.co-feats li:last-child { border-bottom: none; }
.co-feats .ck { color: var(--green); }

.co-trust { display: flex; flex-direction: column; gap: 13px; margin-bottom: 22px; }
.co-trust-item { display: flex; align-items: center; gap: 12px; }

.co-ti-icon {
  width: 38px;
  height: 38px;
  background: var(--blue-10);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.co-trust-item strong { display: block; font-size: 13px; color: var(--navy); font-weight: 600; }
.co-trust-item span  { font-size: 12px; color: var(--text-muted); }

.co-back { font-size: 13px; color: var(--text-muted); text-decoration: none; display: inline-block; transition: color var(--ease); }
.co-back:hover { color: var(--blue); }

/* Form */
.co-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

.co-step-badge {
  display: inline-block;
  background: var(--blue-10);
  color: var(--blue);
  border: 1px solid var(--blue-border);
  border-radius: var(--r-full);
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 16px;
}

.co-form-title { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.co-form-sub   { font-size: 14px; color: var(--text-muted); margin-bottom: 30px; line-height: 1.65; }

.cf-field { margin-bottom: 20px; }
.cf-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.cf-req { color: var(--blue); }

.cf-field input {
  width: 100%;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  font-size: 15px;
  color: var(--navy);
  font-family: var(--font);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.cf-field input::placeholder { color: var(--text-dim); }
.cf-field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-10);
  background: var(--white);
}
.cf-field input.invalid { border-color: var(--red); }

.cf-err { display: block; font-size: 12px; color: var(--red); margin-top: 5px; }

.cf-note-box {
  background: var(--blue-10);
  border: 1px solid var(--blue-border);
  border-radius: var(--r-md);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: flex;
  gap: 10px;
  line-height: 1.65;
}

.cf-legal {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 14px;
  line-height: 1.65;
}
.cf-legal a { color: var(--blue); }

/* Confirm */
.co-confirm {
  background: var(--white);
  border: 1.5px solid rgba(22,163,74,0.3);
  border-radius: var(--r-lg);
  padding: 60px 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.cc-icon  { font-size: 60px; margin-bottom: 22px; }
.cc-title { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.cc-msg   { font-size: 15px; color: var(--text-muted); max-width: 430px; margin: 0 auto 30px; line-height: 1.75; }
.cc-acts  { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.cc-note  { font-size: 13px; color: var(--text-dim); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner    { grid-template-columns: 1fr; gap: 50px; }
  .hero-right    { max-width: 460px; }
  .stats-card    { grid-template-columns: repeat(4, 1fr); gap: 20px 16px; }
  .pricing-grid  { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr 1fr; }
  .price-card.popular { margin-top: 0; }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 1001;
  }
  .nav.open { display: flex; }
  .nav-link { font-size: 20px; padding: 13px 28px; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }

  .section { padding: 60px 0; }
  .hero { padding: 56px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .stats-card { grid-template-columns: repeat(2, 1fr); }

  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }

  .co-layout    { grid-template-columns: 1fr; }
  .co-form-wrap { padding: 26px 18px; }
  .co-summary   { position: static; }

  .ann-bar .container { flex-direction: column; gap: 5px; }
  .ann-close { position: static; transform: none; }

  .footer-bottom     { flex-direction: column; }
  .footer-disclaimer { text-align: left; }

  .wc-inner { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .footer-grid   { grid-template-columns: 1fr; }
  .sports-grid   { grid-template-columns: repeat(2, 1fr); }
  .hero-feats    { gap: 8px 14px; }
  .hero-title    { font-size: clamp(28px, 7vw, 42px); }
}

/* ══════════════════════════════════════════
   BLOG STYLES
══════════════════════════════════════════ */

/* Blog listing hero */
.blog-hero {
  background: var(--bg);
  padding: 72px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(21,93,252,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.blog-hero h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 14px;
  position: relative;
}
.blog-hero p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}
.blog-hero-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 14px;
  position: relative;
}
.blog-hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}

/* Category tabs */
.cat-tabs {
  background: #000;
  padding: 18px 0;
  position: relative;
  margin-bottom: 0;
}
.cat-tabs .container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.cat-tab {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--r-full);
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ease);
}
.cat-tab:hover,
.cat-tab.active {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

/* Post card */
.post-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--ease);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-border);
}

.post-card-img {
  height: 180px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  flex-shrink: 0;
}

img.post-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.post-card-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-cat {
  display: inline-block;
  background: var(--blue-10);
  color: var(--blue);
  border: 1px solid var(--blue-border);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 3px 12px;
  margin-bottom: 12px;
}
.post-cat.cat-setup    { background: #f0fdf4; color: #16a34a; border-color: rgba(22,163,74,0.2); }
.post-cat.cat-trouble  { background: #fff7ed; color: #ea580c; border-color: rgba(234,88,12,0.2); }
.post-cat.cat-compare  { background: #faf5ff; color: #9333ea; border-color: rgba(147,51,234,0.2); }
.post-cat.cat-sports   { background: #fef2f2; color: #dc2626; border-color: rgba(220,38,38,0.2); }
.post-cat.cat-movies   { background: #fff8f0; color: #b45309; border-color: rgba(180,83,9,0.2); }
.post-cat.cat-app      { background: #f0f9ff; color: #0284c7; border-color: rgba(2,132,199,0.2); }
.post-cat.cat-guide    { background: var(--blue-10); color: var(--blue); border-color: var(--blue-border); }

.post-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
}
.post-card-title a { color: inherit; text-decoration: none; }
.post-card-title a:hover { color: var(--blue); }

.post-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
  margin-top: auto;
}

.post-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: gap var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.post-read-more:hover { color: var(--blue-dark); gap: 7px; }

/* Blog post article page */
.article-page { padding: 0 0 80px; background: var(--bg-alt); }

.article-breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
}
.article-breadcrumb .bc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.article-breadcrumb .bc a { color: var(--blue); }
.article-breadcrumb .bc span { color: var(--text-dim); }

.article-hero {
  background: var(--white);
  padding: 52px 0 48px;
  border-bottom: 1px solid var(--border);
}

.article-cat   { margin-bottom: 16px; }
.article-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
  max-width: 860px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.article-meta span { display: flex; align-items: center; gap: 5px; }
.article-intro {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 820px;
  line-height: 1.8;
}

/* Article layout */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
  padding-top: 48px;
}

/* Article content */
.article-content {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px 48px;
  box-shadow: var(--shadow-sm);
  line-height: 1.8;
  color: var(--text);
}

.article-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin: 36px 0 14px;
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
}
.article-content h2:first-child { border-top: none; margin-top: 0; }

.article-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 10px;
}

.article-content p { margin-bottom: 18px; color: var(--text); }

.article-content ul,
.article-content ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 8px; color: var(--text); }

.article-content strong { color: var(--navy); font-weight: 700; }

.article-content a { color: var(--blue); font-weight: 500; }
.article-content a:hover { color: var(--blue-dark); }

.article-content .tip-box {
  background: var(--blue-10);
  border: 1.5px solid var(--blue-border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  gap: 10px;
}
.article-content .tip-box strong { color: var(--blue); }

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.article-content th {
  background: var(--bg-tint);
  padding: 11px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 2px solid var(--border);
}
.article-content td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-muted);
}
.article-content tr:hover td { background: var(--bg-alt); }

/* In-article CTA */
.article-cta-box {
  background: #0f1623;
  border-radius: var(--r-lg);
  padding: 48px 40px;
  margin: 36px 0;
  text-align: center;
  color: #fff;
}
.article-cta-box strong { display: block; font-size: 22px; font-weight: 800; margin-bottom: 12px; color: #fff; }
.article-cta-box p  { font-size: 15px; color: rgba(255,255,255,0.55); margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }
.article-cta-box .btn-start { background: none; border: none; color: var(--blue); font-size: 15px; font-weight: 600; text-decoration: none; padding: 0; display: inline-block; transition: color var(--ease); }
.article-cta-box .btn-start:hover { color: var(--blue-dark); text-decoration: underline; }

/* Article sidebar */
.article-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 24px; }

.sidebar-widget {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.sidebar-cta-widget {
  background: linear-gradient(155deg, #000000, var(--blue));
  border-color: transparent;
  text-align: center;
  color: #fff;
}
.sidebar-cta-widget h3 { color: #fff; border-color: rgba(255,255,255,0.2); letter-spacing: 0; text-transform: none; font-size: 17px; }
.sidebar-cta-widget p  { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 18px; line-height: 1.65; }
.sidebar-cta-price { font-size: 32px; font-weight: 900; color: #fff; margin-bottom: 4px; }
.sidebar-cta-price span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7); }

.related-list { display: flex; flex-direction: column; gap: 12px; }
.related-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  transition: all var(--ease);
  padding: 8px;
  border-radius: var(--r-sm);
}
.related-item:hover { background: var(--bg-alt); }
.related-emoji { font-size: 22px; flex-shrink: 0; }
.related-text  { font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.4; }
.related-item:hover .related-text { color: var(--blue); }

.cat-list { display: flex; flex-direction: column; gap: 8px; }
.cat-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--ease);
}
.cat-list-item:hover { background: var(--bg-alt); color: var(--blue); }
.cat-count { background: var(--blue-10); color: var(--blue); border-radius: var(--r-full); padding: 2px 8px; font-size: 11px; font-weight: 700; }

/* Responsive blog */
@media (max-width: 1024px) {
  .blog-grid      { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}
@media (max-width: 640px) {
  .blog-grid         { grid-template-columns: 1fr; }
  .article-content   { padding: 28px 22px; }
  .article-hero      { padding: 36px 0 32px; }
}
