/* ============================================================
   WorldCupTV.com — Landing page styles
   ============================================================ */

:root {
  --navy:       #0a2342;
  --navy-deep:  #061732;
  --blue:       #1e50e6;
  --blue-dark:  #1740c2;
  --red:        #e11d2a;
  --green:      #16a34a;
  --green-dark: #128a3e;
  --ink:        #14181f;
  --muted:      #5b6675;
  --line:       #e3e7ee;
  --bg:         #eef1f5;
  --white:      #ffffff;

  --radius:   12px;
  --radius-sm: 8px;
  --shadow:   0 18px 50px rgba(8, 22, 48, 0.18);
  --shadow-sm: 0 6px 18px rgba(8, 22, 48, 0.10);

  --font:  'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --head:  'Oswald', 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--blue); text-decoration: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow { max-width: 820px; }

/* ------------------------- Buttons ------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--head);
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 26px;
  font-size: 15px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
  line-height: 1.1;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid #ffd34d; outline-offset: 2px; }

.btn-primary    { background: var(--blue);  color: #fff; box-shadow: 0 8px 20px rgba(30,80,230,.35); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-secondary  { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(22,163,74,.32); }
.btn-secondary:hover { background: var(--green-dark); }
.btn-ghost      { background: rgba(255,255,255,.08); color: #fff; border: 2px solid rgba(255,255,255,.85); }
.btn-ghost:hover { background: #fff; color: var(--navy); }

.btn-lg    { padding: 18px 34px; font-size: 18px; }
.btn-block { display: flex; width: 100%; }

/* ------------------------- Header / Nav ------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--navy);
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
}
.brand-mark { color: var(--green); display: inline-flex; }
.brand-text {
  font-family: var(--head);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .04em;
  color: #fff;
}
.brand-accent { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  color: #dce4f2;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--green);
  color: #fff !important;
  padding: 9px 16px;
  border-radius: 6px;
}
.nav-cta:hover { background: var(--green-dark); }
.nav-login { color: #fff !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ------------------------- Hero ------------------------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 50% -8%, rgba(30,80,230,.45), transparent 60%),
    radial-gradient(700px 300px at 12% 20%, rgba(22,163,74,.28), transparent 55%),
    radial-gradient(700px 300px at 88% 16%, rgba(225,29,42,.22), transparent 55%),
    linear-gradient(180deg, #0b1d3d 0%, #061429 100%);
}
/* stadium "pitch" + light streaks */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 2px, transparent 2px 64px);
  mask-image: linear-gradient(180deg, transparent 35%, #000 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -40%;
  width: 140%; height: 80%;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(255,255,255,.10), transparent 70%);
}
.hero-inner {
  position: relative;
  text-align: center;
  padding: 64px 20px 130px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
  font-weight: 600;
  color: #9fc0ff;
  margin: 0 0 14px;
}
.hero-title {
  font-family: var(--head);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 66px);
  line-height: 1.02;
  margin: 0 0 24px;
  letter-spacing: .01em;
  text-shadow: 0 4px 30px rgba(0,0,0,.45);
}
.hero-title-accent { color: #6fe39a; }
.hero-bullets {
  list-style: none;
  margin: 0 auto 30px;
  padding: 0;
  max-width: 660px;
  text-align: left;
  display: inline-block;
}
.hero-bullets li {
  position: relative;
  padding: 7px 0 7px 32px;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 500;
  color: #e9eefb;
}
.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 18px; height: 18px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22,163,74,.22);
}
.hero-bullets li::after {
  content: "✓";
  position: absolute;
  left: 4px; top: 7px;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ------------------------- Pricing ------------------------- */
.pricing { margin-top: -86px; position: relative; z-index: 5; }
.pricing-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 36px;
  border: 1px solid var(--line);
}
.plan {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 30px 0;
}
.plan-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.plan-title {
  font-family: var(--head);
  font-weight: 700;
  font-size: 26px;
  margin: 0;
  letter-spacing: .02em;
  color: var(--ink);
}
.plan-badge {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
  padding: 5px 11px;
  border-radius: 5px;
  text-transform: uppercase;
}
.plan-sub {
  font-weight: 700;
  margin: 10px 0 8px;
  color: var(--ink);
  letter-spacing: .01em;
}
.plan-desc { color: var(--muted); margin: 0 0 14px; font-size: 15px; }
.plan-guarantee { font-weight: 700; color: var(--ink); margin: 0; }

.plan-divider { border: 0; border-top: 1px solid var(--line); margin: 0; }

.plan-action { text-align: center; }
.price-strike { text-decoration: line-through; opacity: .65; font-weight: 600; }
.price-now { color: #fff; }

.coupon-text { color: var(--red); font-weight: 600; margin: 12px 0 2px; font-size: 14px; }
.coupon-text strong { color: var(--blue); }
.coupon-note { color: var(--muted); font-size: 12px; margin: 0; }

/* Countdown */
.countdown { margin-bottom: 16px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.countdown-label { font-family: var(--head); font-weight: 600; font-size: 19px; color: var(--ink); }
.countdown-boxes { display: flex; gap: 8px; }
.cd-unit { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.cd-num {
  display: block;
  min-width: 48px;
  padding: 7px 6px;
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 6px;
  color: var(--green-dark);
  font-family: var(--head);
  font-weight: 700;
  font-size: 24px;
  font-variant-numeric: tabular-nums;
}
.cd-cap { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }

/* Trial */
.plan-action-trial { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.trial-price { font-family: var(--head); font-weight: 700; font-size: 40px; color: var(--blue); }

/* Trust badges */
.trust-badges {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 34px;
  margin: 24px 0 0;
  padding: 0;
}
.trust-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
}
.trust-ico { color: var(--green); font-size: 18px; }

/* ------------------------- Content split blocks ------------------------- */
.content-block { padding: 76px 0; }
.content-block.alt { background: #fff; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.split.reverse .split-text { order: 2; }
.split.reverse .split-visual { order: 1; }
.split-text h2 {
  font-family: var(--head);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 16px;
  color: var(--ink);
}
.split-text p { color: var(--muted); font-size: 17px; margin: 0 0 22px; }

.sports-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  padding: 0;
  margin: 0 0 24px;
}
.sports-list li {
  background: #eef3ff;
  color: var(--blue-dark);
  font-weight: 600;
  font-size: 13.5px;
  padding: 7px 13px;
  border-radius: 20px;
  border: 1px solid #d8e2ff;
}

/* Scoreboard mockup */
.scoreboard {
  background: linear-gradient(160deg, #0b1d3d, #102a55);
  border-radius: var(--radius);
  padding: 22px;
  color: #fff;
  box-shadow: var(--shadow);
}
.sb-top {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 13px; letter-spacing: .06em;
  color: #ff8a8a; text-transform: uppercase;
}
.live-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(225,29,42,.25); animation: pulse 1.4s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(225,29,42,0); } }
.sb-row {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 12px;
  margin: 18px 0;
}
.sb-team { display: flex; align-items: center; gap: 10px; font-family: var(--head); font-size: 26px; font-weight: 700; }
.sb-row .sb-team:last-child { justify-content: flex-end; }
.sb-flag { width: 26px; height: 18px; border-radius: 3px; display: inline-block; }
.flag-a { background: linear-gradient(180deg,#75aadb 50%,#fff 50%); }
.flag-b { background: linear-gradient(90deg,#0055a4 33%,#fff 33% 66%,#ef4135 66%); }
.sb-score { font-family: var(--head); font-size: 34px; font-weight: 700; color: #6fe39a; }
.sb-actions { display: flex; gap: 8px; }
.sb-btn { flex: 1; text-align: center; padding: 9px; border-radius: 6px; background: rgba(255,255,255,.08); font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.sb-btn-active { background: var(--blue); }

/* Channel grid */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.chan {
  aspect-ratio: 16/10;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--head);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: .04em;
  box-shadow: var(--shadow-sm);
}
.chan-blue  { background: linear-gradient(160deg,#1e50e6,#1740c2); }
.chan-green { background: linear-gradient(160deg,#16a34a,#0f7c39); }
.chan-red   { background: linear-gradient(160deg,#e11d2a,#b3121d); }
.chan-navy  { background: linear-gradient(160deg,#0a2342,#061732); }

/* ------------------------- Feature cards ------------------------- */
.features-section { padding: 70px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.feature-top {
  height: 130px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.feature-top-blue  { background: linear-gradient(160deg,#1e50e6,#1740c2); }
.feature-top-green { background: linear-gradient(160deg,#16a34a,#0f7c39); }
.feature-top-navy  { background: linear-gradient(160deg,#0a2342,#102a55); }
.feature-top-red   { background: linear-gradient(160deg,#e11d2a,#b3121d); }
.feature-body { padding: 20px 20px 24px; }
.feature-body h3 { font-family: var(--head); font-size: 21px; margin: 0 0 8px; color: var(--ink); }
.feature-body p { color: var(--muted); font-size: 14.5px; margin: 0; }

.section-cta { text-align: center; margin-top: 46px; }
.section-cta-note { color: var(--muted); font-size: 14px; margin-top: 14px; }

/* ------------------------- Devices ------------------------- */
.devices-section { padding: 80px 0; background: #fff; text-align: center; }
.section-title {
  font-family: var(--head);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 14px;
  color: var(--ink);
}
.section-lead { color: var(--muted); max-width: 660px; margin: 0 auto 44px; font-size: 17px; }

.devices-mockup {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  min-height: 260px;
  margin-bottom: 36px;
}
.dev { position: relative; }
.dev-screen {
  background: linear-gradient(135deg,#0b1d3d 0%, #1e50e6 60%, #16a34a 130%);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
}
.dev-play { font-size: 26px; }
.dev-tv .dev-screen { width: 300px; height: 178px; border: 8px solid #11151c; border-radius: 10px; }
.dev-tv .dev-stand { width: 70px; height: 14px; background: #11151c; margin: 0 auto; border-radius: 0 0 6px 6px; }
.dev-laptop .dev-screen { width: 210px; height: 132px; border: 7px solid #1c222c; }
.dev-laptop .dev-base { width: 248px; height: 12px; background: #c2c8d2; border-radius: 0 0 8px 8px; margin-left: -19px; }
.dev-tablet .dev-screen { width: 122px; height: 162px; border: 7px solid #1c222c; }
.dev-phone .dev-screen { width: 78px; height: 152px; border: 6px solid #1c222c; border-radius: 14px; }

.device-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.device-tags li {
  background: #eef1f5;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 20px;
}

/* ------------------------- FAQ ------------------------- */
.faq-section { padding: 80px 0; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: var(--head);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 26px;
  color: var(--blue);
  font-weight: 400;
  line-height: 1;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 22px 20px; }
.faq-answer p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* ------------------------- Footer ------------------------- */
.site-footer { background: #0c1118; color: #aeb6c4; padding: 50px 0 40px; }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { font-size: 24px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: #aeb6c4; font-weight: 600; font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-secure { margin: 22px 0 14px; font-size: 14px; color: #cdd4e0; }
.footer-secure strong { color: #fff; }
.footer-disclaimer { font-size: 12.5px; line-height: 1.7; color: #7f8a9c; max-width: 920px; }
.footer-copy { font-size: 12.5px; color: #6b7588; margin: 18px 0 0; }

/* ------------------------- Sticky mobile CTA ------------------------- */
.mobile-cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10,35,66,.97);
  box-shadow: 0 -6px 22px rgba(0,0,0,.3);
  backdrop-filter: blur(6px);
}
.mobile-cta-bar .mcta { flex: 1; padding: 14px; font-size: 15px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 14px;
    box-shadow: 0 12px 22px rgba(0,0,0,.3);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 22px; }
  .nav-cta, .nav-login { margin: 6px 22px 0; text-align: center; }

  .plan { grid-template-columns: 1fr; gap: 18px; }
  .plan-action { text-align: center; }

  .split { grid-template-columns: 1fr; gap: 30px; }
  .split.reverse .split-text { order: 2; }
  .split.reverse .split-visual { order: 1; }

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

@media (max-width: 600px) {
  .hero-inner { padding: 44px 18px 120px; }
  .pricing-card { padding: 4px 18px; }
  .features-grid { grid-template-columns: 1fr; }
  .trust-badges { gap: 10px 20px; }

  .devices-mockup { gap: 8px; min-height: 200px; }
  .dev-tv .dev-screen { width: 168px; height: 100px; border-width: 5px; }
  .dev-tv .dev-stand { width: 44px; }
  .dev-laptop { display: none; }
  .dev-tablet .dev-screen { width: 80px; height: 112px; }
  .dev-phone .dev-screen { width: 54px; height: 104px; }

  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 72px; } /* room for sticky bar */
}

/* ============================================================
   Sub pages (Support / Privacy / DMCA)
   ============================================================ */
.page-hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 56px 20px;
  background:
    radial-gradient(800px 320px at 50% -20%, rgba(30,80,230,.45), transparent 60%),
    radial-gradient(600px 240px at 12% 30%, rgba(22,163,74,.26), transparent 55%),
    radial-gradient(600px 240px at 88% 20%, rgba(225,29,42,.20), transparent 55%),
    linear-gradient(180deg, #0b1d3d 0%, #061429 100%);
}
.page-hero .page-eyebrow {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
  font-weight: 600;
  color: #9fc0ff;
  margin: 0 0 10px;
}
.page-hero h1 {
  font-family: var(--head);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 48px);
  margin: 0;
  letter-spacing: .01em;
}
.page-hero p.page-lead { color: #cdd9f2; margin: 12px auto 0; max-width: 620px; }

.legal { padding: 50px 0 72px; }
.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 36px 40px;
}
.legal-updated { color: var(--muted); font-size: 13px; margin: 0 0 6px; }
.legal-card > .legal-intro { color: #3a4555; font-size: 16px; }
.legal h2 {
  font-family: var(--head);
  font-weight: 600;
  font-size: 23px;
  margin: 30px 0 10px;
  color: var(--ink);
}
.legal h3 { font-size: 17px; margin: 20px 0 8px; color: var(--ink); }
.legal p, .legal li { color: #3a4555; font-size: 15.5px; }
.legal ul, .legal ol { padding-left: 22px; margin: 10px 0; }
.legal li { margin-bottom: 7px; }
.legal a { color: var(--blue); font-weight: 600; word-break: break-word; }

.contact-box {
  background: #eef3ff;
  border: 1px solid #d8e2ff;
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 18px 0;
}
.contact-box p { margin: 4px 0; }

/* Support page */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 26px 0 8px;
}
@media (max-width: 560px) {
  .support-grid { grid-template-columns: 1fr; }
}
.support-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}
.support-card .sc-ico {
  width: 46px; height: 46px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 14px;
}
.sc-blue  { background: linear-gradient(160deg,#1e50e6,#1740c2); }
.sc-green { background: linear-gradient(160deg,#16a34a,#0f7c39); }
.sc-navy  { background: linear-gradient(160deg,#0a2342,#102a55); }
.sc-red   { background: linear-gradient(160deg,#e11d2a,#b3121d); }
.support-card h3 { font-family: var(--head); font-size: 19px; margin: 0 0 8px; color: var(--ink); }
.support-card p { color: var(--muted); font-size: 14.5px; margin: 0; }

.email-cta {
  text-align: center;
  background: linear-gradient(160deg,#0b1d3d,#102a55);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 24px;
  margin: 34px 0 0;
  box-shadow: var(--shadow);
}
.email-cta h2 { color: #fff; margin: 0 0 8px; font-family: var(--head); font-size: 26px; }
.email-cta p { color: #cdd9f2; margin: 0 0 18px; }
.email-cta .email-big {
  font-family: var(--head);
  font-size: clamp(22px, 4vw, 32px);
  color: #6fe39a;
  font-weight: 700;
}

@media (max-width: 600px) {
  .legal-card { padding: 24px 20px; }
}
