/* ═══════════════════════════════════════════════════
   KHALIDMARJAN.COM — GLOBAL STYLESHEET
   Design: Clean Light Theme with Navy + Teal accents
   Inspired by Spencer Law Firm premium page design
═══════════════════════════════════════════════════ */

/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a2332;
  background: #fff;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* ── CSS TOKENS ───────────────────────────────────── */
:root {
  --navy:      #0f1e36;
  --navy2:     #1a2d4a;
  --teal:      #009688;
  --teal2:     #00796b;
  --teal-light:#e0f2f1;
  --teal-pale: #f0faf9;
  --cyan:      #00bcd4;
  --white:     #ffffff;
  --gray-50:   #f8fafc;
  --gray-100:  #f1f5f9;
  --gray-200:  #e2e8f0;
  --gray-300:  #cbd5e1;
  --gray-500:  #64748b;
  --gray-700:  #374151;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow:    0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 36px rgba(0,0,0,0.14);
  --radius:    10px;
  --max-w:     1060px;
}

/* ── LAYOUT ───────────────────────────────────────── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 76px 0; }
.section--alt { background: var(--gray-50); }
.section--pale { background: var(--teal-pale); }
.section--dark { background: var(--navy); color: #fff; }
.section--navy2 { background: var(--navy2); color: #fff; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media(max-width:900px){ .two-col { grid-template-columns:1fr; gap:32px; } .three-col { grid-template-columns:1fr 1fr; } .four-col { grid-template-columns:1fr 1fr; } }
@media(max-width:600px){ .three-col,.four-col { grid-template-columns:1fr; } }

/* ── TYPOGRAPHY ───────────────────────────────────── */
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 10px; display: block;
}
.eyebrow--white { color: #4dd0c4; }
h2.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3vw, 40px); font-weight: 800;
  line-height: 1.22; color: var(--navy); margin-bottom: 16px;
}
h2.section-title--white { color: #fff; }
.section-intro {
  font-size: 17px; color: var(--gray-700);
  max-width: 680px; margin-bottom: 48px; line-height: 1.7;
}
.section-intro--white { color: rgba(255,255,255,0.8); }

/* ── ANNOUNCEMENT BAR ─────────────────────────────── */
.alert-bar {
  background: var(--teal);
  color: #fff; text-align: center;
  padding: 10px 24px; font-size: 13.5px; font-weight: 600;
  position: sticky; top: 0; z-index: 200; letter-spacing: 0.01em;
}
.alert-bar a { color: #fff; text-decoration: underline; }

/* ── NAVBAR ───────────────────────────────────────── */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 40px; z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.nav-logo {
  display: flex; flex-direction: column; gap: 1px;
}
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 800; color: var(--navy); line-height: 1;
}
.nav-logo-tagline {
  font-size: 10.5px; font-weight: 600; color: var(--teal);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--gray-700);
  padding: 8px 12px; border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--teal); background: var(--teal-light); }
.nav-links a.active { color: var(--teal); font-weight: 700; }
.nav-cta {
  background: var(--teal); color: #fff !important;
  padding: 9px 20px !important; border-radius: 6px;
  font-weight: 700 !important; font-size: 14px !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--teal2) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }
@media(max-width:860px){
  .nav-links { display:none; position:fixed; top:106px; left:0; right:0; background:#fff;
    flex-direction:column; padding:16px; border-bottom:1px solid var(--gray-200);
    box-shadow:var(--shadow); z-index:99; }
  .nav-links.open { display:flex; }
  .nav-hamburger { display:flex; }
}

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 28px; border-radius: 6px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all 0.2s; text-decoration: none; white-space: nowrap; border: none;
}
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 4px 14px rgba(0,150,136,0.35); }
.btn-primary:hover { background: var(--teal2); transform: translateY(-1px); color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.8); }
.btn-outline-teal { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline-teal:hover { background: var(--teal); color: #fff; }
.btn-white { background: #fff; color: var(--teal); box-shadow: var(--shadow); }
.btn-white:hover { background: var(--teal-light); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy2); color: #fff; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0a2a50 55%, #0f1e36 100%);
  color: #fff; padding: 80px 0 72px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: center; }
@media(max-width:900px){ .hero-inner { grid-template-columns:1fr; } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 40px; padding: 6px 16px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; color: #4dd0c4; margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; background: #4dd0c4; border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(30px, 4vw, 52px); font-weight: 800; line-height: 1.18;
  margin-bottom: 20px; color: #fff;
}
.hero h1 em { font-style: normal; color: #4dd0c4; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.82); line-height: 1.65; margin-bottom: 32px; max-width: 560px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 36px; }
.hero-fact { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.85); }
.hero-fact::before { content: '✓'; color: #4dd0c4; font-weight: 700; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── HERO INTAKE CARD ─────────────────────────────── */
.hero-card {
  background: #fff; border-radius: 14px;
  padding: 32px 28px; box-shadow: var(--shadow-lg); color: var(--navy);
}
.card-head {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 700; color: var(--navy);
  margin-bottom: 5px; line-height: 1.3;
}
.card-sub {
  font-size: 13px; color: var(--gray-500);
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}
.card-sub strong { color: var(--teal); }
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block; font-size: 11.5px; font-weight: 700;
  color: var(--gray-700); margin-bottom: 5px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--gray-200); border-radius: 6px;
  font-size: 14px; font-family: inherit; color: var(--navy);
  transition: border 0.2s; background: var(--gray-50);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--teal); background: #fff;
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--teal); color: #fff; border: none; border-radius: 6px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: background 0.2s; margin-top: 4px; font-family: inherit;
  letter-spacing: 0.02em;
}
.form-submit:hover { background: var(--teal2); }
.form-note { font-size: 11px; color: var(--gray-500); text-align: center; margin-top: 10px; line-height: 1.5; }
.form-success {
  display: none; background: var(--teal-light); border: 1px solid var(--teal);
  border-radius: 8px; padding: 16px 20px; text-align: center;
  color: var(--teal2); font-weight: 600; font-size: 14px; margin-top: 12px;
}

/* ── TRUST STRIP ──────────────────────────────────── */
.trust-strip {
  background: var(--navy); border-top: 3px solid var(--teal);
  padding: 20px 0;
}
.trust-strip-inner {
  display: flex; gap: 32px; align-items: center;
  justify-content: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85);
}
.trust-item .t-icon { font-size: 20px; }

/* ── CARDS ────────────────────────────────────────── */
.card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow); border-color: var(--teal); transform: translateY(-2px); }
.card-icon { font-size: 32px; margin-bottom: 14px; }
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px;
}
.card p { font-size: 14px; color: var(--gray-700); line-height: 1.7; }
.card-link { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--teal); }
.card-link:hover { text-decoration: underline; }
.card-teal { border-top: 3px solid var(--teal); }
.card-navy { background: var(--navy); color: #fff; }
.card-navy h3 { color: #fff; }
.card-navy p { color: rgba(255,255,255,0.8); }

/* ── STATS ────────────────────────────────────────── */
.stat-box {
  background: var(--navy); color: #fff;
  border-radius: var(--radius); padding: 28px 20px; text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px; font-weight: 800; color: #4dd0c4; line-height: 1;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 6px; line-height: 1.4; }
.stat-light { background: var(--teal-light); }
.stat-light .stat-num { color: var(--teal); }
.stat-light .stat-label { color: var(--gray-700); }

/* ── PROCESS STEPS ────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding-bottom: 32px; position: relative; }
.step:last-child { padding-bottom: 0; }
.step::before { content: ''; position: absolute; left: 25px; top: 52px; bottom: 0; width: 2px; background: var(--gray-200); }
.step:last-child::before { display: none; }
.step-num {
  width: 52px; height: 52px; background: var(--teal); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; flex-shrink: 0; z-index: 1;
  font-family: 'Playfair Display', serif;
}
.step-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-top: 13px; margin-bottom: 6px; }
.step-desc { font-size: 14px; color: var(--gray-700); line-height: 1.65; }

/* ── FAQ ACCORDION ────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; padding: 18px 20px; display: flex;
  align-items: center; justify-content: space-between;
  font-size: 15px; font-weight: 600; color: var(--navy);
  background: none; border: none; cursor: pointer; text-align: left;
  gap: 12px; transition: background 0.15s;
}
.faq-q:hover { background: var(--gray-50); }
.faq-q.open { color: var(--teal); }
.faq-arrow { font-size: 18px; flex-shrink: 0; transition: transform 0.25s; color: var(--teal); }
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 18px; font-size: 14px; color: var(--gray-700); line-height: 1.75; border-top: 1px solid var(--gray-200); }
.faq-a.show { display: block; }

/* ── COMPARISON TABLE ─────────────────────────────── */
.compare-wrap { overflow-x: auto; }
.compare { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare th { padding: 13px 16px; text-align: left; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-500); border-bottom: 2px solid var(--gray-200); }
.compare th.hl { color: var(--teal); }
.compare td { padding: 12px 16px; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); }
.compare tr:last-child td { border-bottom: none; }
.compare tr:hover td { background: var(--gray-50); }
.compare .yes { color: var(--teal); font-weight: 700; }
.compare .no { color: var(--gray-300); }
.compare .hl-cell { font-weight: 700; color: var(--navy); }

/* ── PRICING ──────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
@media(max-width:860px){ .pricing-grid { grid-template-columns: 1fr; max-width:400px; margin: 0 auto; } }
.price-card {
  background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: 12px; padding: 32px 28px;
}
.price-card.featured {
  border-color: var(--teal); position: relative;
  box-shadow: 0 8px 32px rgba(0,150,136,0.15);
}
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 16px; border-radius: 20px; white-space: nowrap; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-name { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-500); margin-bottom: 10px; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 800; color: var(--navy); line-height: 1; }
.price-currency { font-size: 18px; vertical-align: super; }
.price-period { font-size: 13px; color: var(--gray-500); margin-bottom: 8px; }
.price-desc { font-size: 13px; color: var(--gray-500); margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-100); line-height: 1.5; }
.price-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.price-list li { font-size: 13px; color: var(--gray-700); display: flex; gap: 8px; }
.price-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.price-list li.na { color: var(--gray-300); }
.price-list li.na::before { content: '–'; color: var(--gray-300); font-weight: 400; }

/* ── CTA BAND ─────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  padding: 76px 0; text-align: center;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: #fff; margin-bottom: 14px;
}
.cta-band p { font-size: 17px; color: rgba(255,255,255,0.88); max-width: 580px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── BREADCRUMB ───────────────────────────────────── */
.breadcrumb { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 12px 0; }
.breadcrumb-inner { font-size: 13px; color: var(--gray-500); display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.breadcrumb-inner a { color: var(--teal); }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-inner .sep { color: var(--gray-300); }

/* ── PHOTO BOX ────────────────────────────────────── */
.photo-box {
  background: linear-gradient(135deg, var(--navy), #1b3a5a);
  border-radius: 14px; aspect-ratio: 4/3; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.photo-box img { width: 100%; height: 100%; object-fit: cover; }
.photo-box-placeholder { font-size: 72px; color: rgba(255,255,255,0.1); }

/* ── BADGES ───────────────────────────────────────── */
.badge { display: inline-block; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; letter-spacing: 0.04em; }
.badge-teal { background: var(--teal-light); color: var(--teal2); }
.badge-navy { background: var(--navy); color: #4dd0c4; }
.badge-new { background: #fef3c7; color: #92400e; }

/* ── COUNTRY TAGS ─────────────────────────────────── */
.country-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.country-tag {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--gray-200); border-radius: 8px;
  padding: 9px 16px; font-size: 14px; font-weight: 600; color: var(--navy);
}

/* ── TIMELINE ─────────────────────────────────────── */
.timeline { display: flex; flex-direction: column; }
.tl-item { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding-bottom: 28px; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ''; position: absolute; left: 45px; top: 36px; bottom: 0; width: 2px; background: var(--gray-200); }
.tl-item:last-child::before { display: none; }
.tl-year { font-size: 12px; font-weight: 700; color: var(--teal); text-align: right; padding-top: 5px; }
.tl-dot { width: 12px; height: 12px; background: var(--teal); border-radius: 50%; position: absolute; left: 40px; top: 6px; z-index: 1; }
.tl-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.tl-desc { font-size: 13px; color: var(--gray-700); line-height: 1.65; }

/* ── ALERTS / NOTICE BOXES ────────────────────────── */
.notice { border-radius: 8px; padding: 16px 20px; font-size: 14px; line-height: 1.6; }
.notice-teal { background: var(--teal-light); border-left: 4px solid var(--teal); color: var(--teal2); }
.notice-navy { background: #e8f0fe; border-left: 4px solid var(--navy); color: var(--navy); }

/* ── FOOTER ───────────────────────────────────────── */
.footer {
  background: var(--navy); color: rgba(255,255,255,0.85);
  padding: 60px 0 28px; border-top: 3px solid var(--teal);
}
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media(max-width:860px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media(max-width:500px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-logo-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.footer-logo-tagline { font-size: 11px; font-weight: 600; color: var(--teal); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-about { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 20px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.75); transition: color 0.15s; }
.footer-col ul li a:hover { color: #4dd0c4; }
.footer-contact-line { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 10px; }
.footer-contact-line .icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-socials { display: flex; gap: 10px; }
.footer-social { width: 34px; height: 34px; background: rgba(255,255,255,0.08); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: background 0.2s; }
.footer-social:hover { background: var(--teal); }

/* ── RESPONSIVE ───────────────────────────────────── */
@media(max-width:600px){
  .section { padding: 52px 0; }
  .hero { padding: 56px 0 48px; }
  .hero h1 { font-size: 28px; }
  .cta-band { padding: 52px 0; }
  .hero-ctas { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}

/* ── PAGE-SPECIFIC UTILITIES ──────────────────────── */
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--gray-500); }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.gap-list { display: flex; flex-direction: column; gap: 10px; }
.check-list { display: flex; flex-direction: column; gap: 9px; }
.check-list li { display: flex; gap: 10px; font-size: 14px; color: var(--gray-700); }
.check-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.inline-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.inline-tag { background: var(--teal-light); color: var(--teal2); padding: 5px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; }
