/* ============================================================
   MYTIGAS ALLIANCE — Stylesheet
   Teal-led sibling of Tigas Pharma design system
   Teal    #009AA5 | Deep teal  #007A83
   Orange  #EC7404 | Deep orange #DA4700
   Charcoal #1A1A1A | Slate #54595F | Mist #F7F6F2
   ============================================================ */

:root {
  --teal:         #009AA5;
  --teal-dark:    #007A83;
  --teal-pale:    #E6F5F6;
  --orange:       #EC7404;
  --orange-deep:  #DA4700;
  --orange-pale:  rgba(236,116,4,0.10);
  --orange-soft:  rgba(236,116,4,0.06);
  --ink:          #1A1A1A;
  --slate:        #54595F;
  --grey:         #8A8A8A;
  --line:         #E8E5DF;
  --mist:         #F7F6F2;
  --white:        #FFFFFF;
  --radius:       14px;
  --maxw:         1140px;
  --font-display: "Sora", -apple-system, sans-serif;
  --font-body:    "Inter", -apple-system, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--slate); }
a  { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ── Header ───────────────────────────────────────────── */
header.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
header.site.scrolled { box-shadow: 0 6px 28px rgba(0,154,165,0.08); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 32px;
}
.logo {
  display: flex; align-items: center;
  flex-shrink: 0; line-height: 1;
}
.logo img { height: 40px; width: auto; display: block; }
.nav-links {
  display: flex; gap: 30px; align-items: center;
  list-style: none; flex: 1; justify-content: center;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--slate);
  transition: color .2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active { position: relative; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--teal); border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--teal);
  color: #fff; font-weight: 600; font-size: 0.92rem;
  padding: 12px 24px; border-radius: 100px;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap; flex-shrink: 0;
}
.btn:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0,154,165,0.28); }
.btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.btn.orange { background: var(--orange); }
.btn.orange:hover { background: var(--orange-deep); box-shadow: 0 8px 22px rgba(236,116,4,0.28); }
.btn.ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: none;
}
.btn.ghost:hover { border-color: var(--slate); background: transparent; box-shadow: none; transform: none; }
.btn.ghost-teal {
  background: transparent; color: var(--teal);
  border: 1.5px solid var(--teal);
  box-shadow: none;
}
.btn.ghost-teal:hover { background: var(--teal); color: #fff; }
.btn.on-dark { background: #fff; color: var(--teal); }
.btn.on-dark:hover { background: rgba(255,255,255,0.92); transform: translateY(-1px); }

.menu-toggle {
  display: none; background: none; border: 0;
  font-size: 1.5rem; cursor: pointer; color: var(--ink);
}

/* ── Eyebrow / Tags ───────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 18px;
}
.eyebrow.orange { color: var(--orange); }

.tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  background: var(--teal-pale); color: var(--teal-dark);
  margin-bottom: 16px;
}
.tag.orange { background: rgba(236,116,4,0.10); color: var(--orange-deep); }

/* ── Sections ─────────────────────────────────────────── */
section { padding: 96px 0; }
section.tint { background: var(--mist); }
section.dark {
  background: var(--ink); color: #fff;
}
section.dark p { color: rgba(255,255,255,0.68); }
section.dark .eyebrow { color: var(--teal); }

.section-head { max-width: 58ch; margin-bottom: 56px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head p { font-size: 1.08rem; margin-top: 14px; }

/* ── Grid helpers ─────────────────────────────────────── */
.grid { display: grid; gap: 28px; }
.cols-2 { grid-template-columns: 1fr 1fr; }
.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  padding: 0;
  background: var(--ink);
  overflow: hidden;
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(0,154,165,0.18) 0%, transparent 60%),
              linear-gradient(240deg, rgba(236,116,4,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  width: 100%;
  padding: 120px 0 100px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}
.hero .eyebrow { color: var(--teal); margin-bottom: 22px; }
.hero h1 {
  color: #fff;
  max-width: 16ch;
  margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--teal); }
.hero p.lede {
  font-size: 1.15rem; max-width: 48ch;
  color: rgba(255,255,255,0.70);
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero stat badges */
.hero-stats {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.hero-stat { text-align: left; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: #fff; letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 4px;
}
.hero-stat .num span { color: var(--teal); }
.hero-stat .label {
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.50); letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-divider {
  width: 1px; background: rgba(255,255,255,0.12);
  align-self: stretch;
}

/* Hero visual — network map */
.hero-visual {
  position: relative;
}
.network-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
}
.network-card .nc-title {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.45); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 20px;
}
.state-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.state-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.state-item .s-name {
  font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.72);
}
.state-item .s-count {
  font-family: var(--font-display);
  font-size: 0.88rem; font-weight: 700;
  color: var(--teal);
}
.state-item.hot {
  background: rgba(0,154,165,0.12);
  border-color: rgba(0,154,165,0.25);
}
.nc-total {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: space-between;
}
.nc-total .t-label { font-size: 0.82rem; color: rgba(255,255,255,0.50); font-weight: 500; }
.nc-total .t-num {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700; color: #fff; letter-spacing: -0.03em;
}
.nc-total .t-num span { color: var(--teal); }

/* Pulse dot */
.pulse-wrapper {
  position: absolute; top: -14px; right: -14px;
}
.pulse-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.pulse-dot::before {
  content: "";
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: rgba(0,154,165,0.5);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* ── Stats Bar ────────────────────────────────────────── */
.stats-bar {
  padding: 0;
  background: var(--teal);
}
.stats-bar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,0.18);
}
.stat-item {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.18);
  border-top: none; border-bottom: none;
  text-align: center;
}
.stat-item .s-num {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 700; color: #fff;
  letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 6px;
}
.stat-item .s-label {
  font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ── Three-track audience selector ───────────────────── */
.tracks { gap: 24px; }
.track-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 40px 36px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  display: flex; flex-direction: column;
}
.track-card:hover {
  border-color: var(--teal);
  box-shadow: 0 16px 48px rgba(0,154,165,0.10);
  transform: translateY(-3px);
}
.track-card.featured {
  background: var(--ink);
  border-color: transparent;
  grid-column: span 2;
}
.track-card.featured:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,0.28);
  border-color: rgba(0,154,165,0.3);
}
.track-card.featured .tag { background: rgba(0,154,165,0.20); color: var(--teal); }
.track-card.featured h3 { color: #fff; font-size: 1.5rem; margin-bottom: 14px; }
.track-card.featured p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 28px; }
.track-card.featured .track-features { margin-bottom: 32px; }
.track-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--ink); }
.track-card > p { flex: 1; margin-bottom: 28px; font-size: 0.95rem; }

.track-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.track-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: rgba(255,255,255,0.70);
}
.track-features li::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(0,154,165,0.20); border: 1.5px solid var(--teal);
  flex-shrink: 0; margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23009AA5' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px; background-repeat: no-repeat; background-position: center;
}
.track-features.dark-check li::before {
  background-color: rgba(0,154,165,0.15); border-color: rgba(0,154,165,0.4);
}

.track-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.track-icon svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; }

/* ── How it Works ─────────────────────────────────────── */
.steps { counter-reset: step; }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.step {
  padding: 36px 30px;
  border-right: 1.5px solid var(--line);
  position: relative;
}
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700;
  color: var(--teal-pale);
  line-height: 1; margin-bottom: 16px;
  letter-spacing: -0.05em;
}
.step h4 { margin-bottom: 10px; color: var(--ink); }
.step p { font-size: 0.9rem; }
.step-connector {
  position: absolute; right: -12px; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 50%;
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.step-connector svg { width: 10px; height: 10px; stroke: var(--teal); }

/* ── Value cards (benefits grid) ──────────────────────── */
.value-card {
  padding: 32px;
  border-radius: 16px;
  border: 1.5px solid var(--line);
  background: var(--white);
  transition: box-shadow .25s, border-color .25s;
}
.value-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.06); border-color: var(--teal); }
.value-card .vc-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.value-card .vc-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; }
.value-card h4 { margin-bottom: 8px; font-size: 1.02rem; }
.value-card p { font-size: 0.88rem; }

/* ── Savings callout ──────────────────────────────────── */
.savings-banner {
  background: linear-gradient(120deg, var(--teal-dark) 0%, var(--teal) 100%);
  border-radius: 24px;
  padding: 56px 64px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px;
}
.savings-banner .sb-num {
  font-family: var(--font-display);
  font-size: 6rem; font-weight: 700; color: #fff;
  line-height: 1; letter-spacing: -0.05em;
  flex-shrink: 0;
}
.savings-banner .sb-num span { color: rgba(255,255,255,0.5); font-size: 3rem; }
.savings-banner h2 { color: #fff; margin-bottom: 12px; }
.savings-banner p { color: rgba(255,255,255,0.72); max-width: 44ch; margin-bottom: 28px; }

/* ── Network coverage visual ──────────────────────────── */
.coverage-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.coverage-state {
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  transition: border-color .2s, background .2s;
}
.coverage-state:hover { background: var(--teal-pale); border-color: var(--teal); }
.coverage-state .cs-name { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.coverage-state .cs-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  margin-bottom: 2px;
}
.coverage-state .cs-count {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.4rem; color: var(--teal);
  letter-spacing: -0.03em;
}
.coverage-state .cs-label {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--grey); font-weight: 500;
}
.coverage-state .cs-right { text-align: right; }

/* ── Membership tiers ─────────────────────────────────── */
.tier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tier-card {
  border-radius: 20px;
  border: 1.5px solid var(--line);
  padding: 40px;
  position: relative; overflow: hidden;
}
.tier-card.premium {
  background: var(--ink);
  border-color: transparent;
}
.tier-card .t-badge {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  background: var(--teal-pale); color: var(--teal-dark);
  margin-bottom: 20px;
}
.tier-card.premium .t-badge { background: rgba(0,154,165,0.20); color: var(--teal); }
.tier-card h3 { margin-bottom: 10px; }
.tier-card.premium h3 { color: #fff; }
.tier-card > p { margin-bottom: 28px; font-size: 0.95rem; }
.tier-card.premium > p { color: rgba(255,255,255,0.62); }
.tier-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.tier-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem;
}
.tier-feature-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal-pale); border: 1.5px solid var(--teal);
  flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
}
.tier-card.premium .tier-feature-check {
  background: rgba(0,154,165,0.15); border-color: rgba(0,154,165,0.35);
}
.tier-feature-check svg { width: 10px; height: 10px; stroke: var(--teal); }
.tier-feature p { color: var(--slate); font-size: 0.88rem; margin-bottom: 0; }
.tier-card.premium .tier-feature p { color: rgba(255,255,255,0.65); }

/* ── Footer ───────────────────────────────────────────── */
footer.site {
  background: var(--ink); color: rgba(255,255,255,0.55);
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; max-width: 34ch; line-height: 1.7; }
.footer-brand .social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: border-color .2s, color .2s;
}
.social-link:hover { border-color: var(--teal); color: var(--teal); }
.social-link svg { width: 16px; height: 16px; fill: currentColor; }
.footer-col h5 {
  font-family: var(--font-display); font-size: 0.82rem;
  font-weight: 600; color: #fff; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem; color: rgba(255,255,255,0.50);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.40); transition: color .2s; }
.footer-bottom a:hover { color: var(--teal); }

/* Partner strip */
.partner-strip {
  background: var(--mist);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partner-strip-inner {
  display: flex; align-items: center; gap: 0;
}
.partner-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--grey);
  white-space: nowrap; margin-right: 36px;
}
.partner-list {
  display: flex; gap: 36px; align-items: center; flex-wrap: wrap;
}
.partner-pill {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 600;
  color: var(--slate);
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: var(--white);
  white-space: nowrap;
}

/* ── App download card ────────────────────────────────── */
.app-card {
  background: var(--ink);
  border-radius: 24px;
  padding: 56px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
}
.app-card h2 { color: #fff; margin-bottom: 14px; }
.app-card p { color: rgba(255,255,255,0.62); max-width: 42ch; margin-bottom: 28px; }
.app-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.app-btn {
  display: flex; align-items: center; gap: 11px;
  padding: 12px 20px; border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff; font-size: 0.88rem;
  transition: background .2s, border-color .2s;
}
.app-btn:hover { background: rgba(255,255,255,0.14); border-color: var(--teal); }
.app-btn svg { width: 24px; height: 24px; fill: #fff; }
.app-btn .ab-text .ab-sub { font-size: 0.68rem; opacity: 0.6; display: block; }
.app-btn .ab-text .ab-name { font-weight: 600; font-size: 0.92rem; }
.app-qr {
  width: 110px; height: 110px; border-radius: 14px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--slate); text-align: center; padding: 8px;
}

/* ── Scroll reveal ────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .05s; }
.d2 { transition-delay: .12s; }
.d3 { transition-delay: .20s; }
.d4 { transition-delay: .28s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  @keyframes pulse { to {} }
}

/* ── Mobile ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-inner { padding: 80px 0 60px; }
  .hero { min-height: auto; }
  .network-card { display: none; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .track-card.featured { grid-column: span 1; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.18); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .savings-banner { flex-direction: column; padding: 40px 32px; text-align: center; }
  .savings-banner .sb-num { font-size: 4rem; }
  .tier-grid { grid-template-columns: 1fr; }
  .app-card { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 20px 28px 28px; gap: 18px; z-index: 99;
  }
}

@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .savings-banner { padding: 32px 24px; }
}
/* ============================================================
   Legal / Privacy Policy page  (added for PDPA Privacy Policy)
   ============================================================ */
.legal-head {
  padding: 64px 0 32px;
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}
.legal-head h1 { margin: 14px 0 16px; }
.legal-head .lede { color: var(--slate); max-width: 720px; font-size: 1.05rem; }
.legal-doc { max-width: 768px; margin: 0 auto; padding: 56px 28px 72px; }
.legal-doc h2 {
  font-size: 1.25rem; color: var(--ink); margin: 40px 0 12px;
  padding-top: 8px;
}
.legal-doc h2:first-of-type { margin-top: 8px; }
.legal-doc p { color: var(--slate); margin: 0 0 14px; line-height: 1.7; }
.legal-doc strong { color: var(--ink); }
.legal-meta {
  font-size: 0.82rem; color: var(--grey); letter-spacing: 0.01em;
  padding-bottom: 8px; border-bottom: 1px solid var(--line); margin-bottom: 8px;
}
.legal-list {
  list-style: disc; padding-left: 1.3em; margin: 0 0 16px;
}
.legal-list li { color: var(--slate); margin: 0 0 9px; line-height: 1.65; }
.legal-list li strong { color: var(--ink); }
.legal-contact {
  background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; line-height: 1.8;
}
.legal-contact a { color: var(--teal); }
.legal-doc a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
/* Draft placeholders — must be removed before publishing */
.confirm {
  display: inline-block; background: #FFF1E0; color: var(--orange-deep, #DA4700);
  border: 1px dashed var(--orange, #EC7404); border-radius: 6px;
  font-size: 0.72rem; font-weight: 600; padding: 1px 7px; margin-left: 4px;
}
