/* ===========================================================
   POWERLAUNCH GLOBAL STYLES
   Brand: Navy #0D1F4E | Teal #2BBCD4 | Bg #F4F7FA | White
   =========================================================== */

:root {
  --navy: #0D1F4E;
  --navy-2: #162B62;
  --navy-3: #1E3A7B;
  --teal: #2BBCD4;
  --teal-2: #1E99AF;
  --teal-pale: #E6F8FB;
  --white: #FFFFFF;
  --bg: #F4F7FA;
  --bg-2: #EBF0F6;
  --text: #1A2440;
  --text-2: #3D4B6B;
  --text-3: #6B7A99;
  --line: #D8E0EE;
  --line-2: #E8EFF8;
  --wa: #1F8A5C;
  --wa-2: #176E47;
  --shadow-sm: 0 2px 8px rgba(13,31,78,0.06);
  --shadow: 0 8px 28px rgba(13,31,78,0.10);
  --shadow-lg: 0 20px 60px rgba(13,31,78,0.14);
  --r: 6px;
  --r-lg: 14px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--white);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

h1 { font-size: clamp(36px, 5.4vw, 68px); font-weight: 800; line-height: 1.08; letter-spacing: -0.025em; color: var(--navy); }
h2 { font-size: clamp(28px, 3.8vw, 48px); font-weight: 700; line-height: 1.14; letter-spacing: -0.02em; color: var(--navy); }
h3 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 700; line-height: 1.3; color: var(--navy); }
h4 { font-size: 18px; font-weight: 600; color: var(--navy); }
h5 { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); }
p { color: var(--text-2); line-height: 1.75; }

.teal { color: var(--teal); }
.navy { color: var(--navy); }

.wrap { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.wrap-sm { max-width: 820px; margin: 0 auto; padding: 0 32px; }
.wrap-lg { max-width: 1500px; margin: 0 auto; padding: 0 32px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: var(--r);
  font-size: 15px; font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-3); border-color: var(--navy-3); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-teal { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-2); border-color: var(--teal-2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(43,188,212,0.4); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.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: #fff; }
.btn-wa { background: var(--wa); color: #fff; border-color: var(--wa); box-shadow: 0 4px 14px rgba(31,138,92,0.22); }
.btn-wa:hover { background: var(--wa-2); border-color: var(--wa-2); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(31,138,92,0.32); }
.btn-lg { padding: 18px 34px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-2);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; max-width: 1400px; margin: 0 auto; padding: 0 32px;
  gap: 24px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-logo { flex-shrink: 0; }
.nav-links {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: var(--r);
  font-size: 14px; font-weight: 500; color: var(--text-2);
  white-space: nowrap;
  letter-spacing: -0.005em;
  transition: color 0.18s, background 0.18s;
  position: relative;
}
.nav-links > li > a:hover { color: var(--navy); background: var(--bg); }
.nav-links > li > a.active {
  color: var(--navy); background: transparent;
  font-weight: 600;
}
.nav-links > li > a.active::after {
  content: ''; position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--teal);
  border-radius: 2px;
}
.nav-links > li > a svg { transition: transform 0.2s; opacity: 0.6; }
.nav-links > li:hover > a svg { transform: rotate(180deg); opacity: 1; }

.nav-dd {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  min-width: 240px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all 0.22s; z-index: 100;
}
.nav-links > li:hover .nav-dd { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd a { display: block; padding: 11px 14px; border-radius: var(--r); font-size: 14px; color: var(--text-2); transition: all 0.15s; }
.nav-dd a:hover { background: var(--teal-pale); color: var(--teal-2); }

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

.hamburger { display: none; background: none; border: none; padding: 8px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; left: 0; right: 0; top: 76px; bottom: 0;
  height: calc(100vh - 76px);
  height: calc(100dvh - 76px);
  background: #fff; z-index: 999;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 24px 28px 60px;
  border-top: 1px solid var(--line-2);
}
.mobile-nav.open { display: block; }
.mobile-nav > a { display: block; padding: 18px 0; font-size: 17px; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--line-2); }
.mobile-nav .mob-cta { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }

/* ── SECTION ── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }
.bg-grey { background: var(--bg); }
.bg-navy { background: var(--navy); }
.bg-teal { background: var(--teal); }
.bg-navy-2 { background: var(--navy-2); }

.eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-2); margin-bottom: 18px;
  padding: 6px 14px; background: var(--teal-pale);
  border-radius: 100px;
}
.eyebrow-light {
  color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.12);
}

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center p { margin: 18px auto 0; max-width: 580px; }
.section-head p { margin-top: 16px; font-size: 17px; max-width: 580px; line-height: 1.7; }

/* ── WhatsApp Floating ── */
.wa-fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 990;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(31,138,92,0.30);
  transition: transform 0.25s, background 0.2s;
}
.wa-fab:hover { transform: scale(1.08); background: var(--wa-2); }

.wa-fab-pulse::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--wa); opacity: 0.35;
  animation: pulse 2.6s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.35; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ── FOOTER ── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-top {
  display: grid; grid-template-columns: 2.4fr 1fr 1fr 1.6fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 14px; line-height: 1.75; margin-top: 18px; color: rgba(255,255,255,0.55); max-width: 320px; }
.footer-logo-wrap {
  display: inline-block;
  background: #fff;
  padding: 10px 16px;
  border-radius: var(--r-lg);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.footer-logo-wrap img { height: 40px; display: block; }
.footer-col h5 { color: rgba(255,255,255,0.45); margin-bottom: 22px; font-size: 11px; }
.footer-col ul { display: flex; flex-direction: column; gap: 14px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.62); transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-contact { font-size: 14px; line-height: 1.9; color: rgba(255,255,255,0.62); }
.footer-contact strong { color: #fff; font-weight: 600; }
.footer-contact a { color: var(--teal); }
.footer-bottom {
  padding: 28px 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a:hover { color: var(--teal); }

/* ──────────────────────────────────────────────────────────
   HOMEPAGE
   ────────────────────────────────────────────────────────── */

/* Hero - split layout, NOT centred */
.hero {
  padding: 140px 0 80px;
  background:
    radial-gradient(circle at 88% 22%, rgba(43,188,212,0.10) 0%, transparent 45%),
    radial-gradient(circle at 12% 90%, rgba(13,31,78,0.06) 0%, transparent 50%),
    var(--bg);
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(13,31,78,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,31,78,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none; opacity: 0.6;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 70px;
  align-items: center;
}
.hero-left .pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 100px;
  background: #fff; border: 1px solid var(--line);
  font-size: 12px; font-weight: 600; color: var(--text-2);
  box-shadow: var(--shadow-sm);
}
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(43,188,212,0.18); }
.hero-h1 { margin: 24px 0; }
.hero-h1 .accent { position: relative; display: inline-block; color: var(--teal); }
.hero-h1 .accent::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px;
  height: 8px; background: rgba(43,188,212,0.18); z-index: -1;
}
.hero-sub { font-size: 18px; max-width: 540px; line-height: 1.7; color: var(--text-2); }
.hero-cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex; gap: 36px; align-items: center; flex-wrap: wrap;
}
.hero-meta-item { display: flex; flex-direction: column; gap: 2px; }
.hero-meta-num { font-size: 26px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.hero-meta-num .t { color: var(--teal); }
.hero-meta-lab { font-size: 12px; color: var(--text-3); font-weight: 500; }

/* Hero right widget */
.hero-widget {
  background: #fff; border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px; border: 1px solid var(--line-2);
  position: relative;
}
.hero-widget::before {
  content: ''; position: absolute; top: -10px; right: -10px;
  width: 80px; height: 80px; border-radius: var(--r-lg);
  background: var(--teal); z-index: -1; opacity: 0.15;
}
.hw-head { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--line-2); }
.hw-head-dot { width: 10px; height: 10px; border-radius: 50%; background: #34D058; box-shadow: 0 0 0 4px rgba(52,208,88,0.15); }
.hw-head-title { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: 0.04em; }
.hw-head-sub { font-size: 11px; color: var(--text-3); margin-left: auto; }

.hw-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line-2); }
.hw-row:last-child { border-bottom: none; }
.hw-icon { width: 36px; height: 36px; border-radius: var(--r); background: var(--teal-pale); display: flex; align-items: center; justify-content: center; color: var(--teal-2); flex-shrink: 0; }
.hw-text { flex: 1; }
.hw-text strong { display: block; font-size: 13px; color: var(--navy); font-weight: 600; }
.hw-text span { font-size: 12px; color: var(--text-3); }
.hw-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.hw-cta { margin-top: 24px; padding: 14px; background: linear-gradient(135deg, var(--teal-pale), #fff); border-radius: var(--r); text-align: center; font-size: 12px; color: var(--text-2); }
.hw-cta strong { color: var(--navy); display: block; font-size: 13px; margin-bottom: 2px; }

/* Trust strip */
.trust-strip {
  background: var(--white); border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2); padding: 22px 0;
}
.trust-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-2); font-weight: 500; }
.trust-item svg { color: var(--teal-2); flex-shrink: 0; }

/* Promise - alternating left/right */
.promise-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; margin-bottom: 120px;
}
.promise-block:last-child { margin-bottom: 0; }
.promise-block.flip { direction: rtl; }
.promise-block.flip > * { direction: ltr; }

.promise-text .num {
  display: inline-block; font-size: 64px; font-weight: 800;
  color: var(--bg-2); line-height: 1; letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.promise-text h2 { margin-bottom: 18px; }
.promise-text p { font-size: 17px; line-height: 1.8; }
.promise-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.promise-list-item { display: flex; gap: 14px; align-items: flex-start; }
.promise-list-item .icon { width: 24px; height: 24px; border-radius: 50%; background: var(--teal-pale); color: var(--teal-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 3px; }
.promise-list-item p { margin: 0; font-size: 15px; color: var(--text-2); }
.promise-list-item strong { color: var(--navy); }

.promise-visual {
  position: relative; aspect-ratio: 1.1/1;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
  border-radius: var(--r-lg); padding: 32px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.promise-visual::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(13,31,78,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,31,78,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}
.pv-card {
  position: relative; background: #fff;
  border-radius: var(--r-lg); padding: 28px;
  box-shadow: var(--shadow); width: 100%;
  border: 1px solid var(--line-2);
}
.pv-stat { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line-2); }
.pv-stat:last-child { border-bottom: none; }
.pv-stat strong { font-size: 13px; color: var(--text-2); font-weight: 500; }
.pv-stat span { font-weight: 700; color: var(--navy); font-size: 14px; }

/* States section */
.states-section { background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%); }
.state-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 36px; padding: 6px; background: #fff; border-radius: var(--r-lg); border: 1px solid var(--line-2); box-shadow: var(--shadow-sm); justify-content: center; }
.state-tab {
  padding: 11px 20px; border-radius: var(--r);
  font-size: 14px; font-weight: 600; color: var(--text-2);
  background: transparent; border: none; transition: all 0.2s;
}
.state-tab:hover { background: var(--bg); color: var(--navy); }
.state-tab.active { background: var(--navy); color: #fff; }

.state-panel { display: none; animation: fadeIn 0.3s ease; }
.state-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.state-panel-inner {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px;
  background: #fff; border-radius: var(--r-lg);
  border: 1px solid var(--line-2); padding: 48px;
}
.state-panel h3 { font-size: 32px; margin-bottom: 8px; letter-spacing: -0.02em; }
.state-panel-tag { display: inline-block; padding: 5px 12px; background: var(--teal-pale); color: var(--teal-2); font-size: 12px; font-weight: 700; border-radius: 100px; margin-bottom: 18px; letter-spacing: 0.04em; }
.state-panel-body p { font-size: 15px; line-height: 1.8; margin-bottom: 18px; }
.state-panel-best { margin-top: 24px; padding: 18px; background: var(--bg); border-radius: var(--r); border-left: 3px solid var(--teal); }
.state-panel-best strong { display: block; color: var(--navy); margin-bottom: 4px; font-size: 13px; }
.state-panel-best span { font-size: 14px; color: var(--text-2); line-height: 1.7; }

.state-panel-stats { display: flex; flex-direction: column; gap: 14px; }
.spt {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; background: var(--bg); border-radius: var(--r);
  border: 1px solid var(--line-2);
}
.spt-lab { font-size: 13px; color: var(--text-3); font-weight: 500; }
.spt-val { font-size: 15px; color: var(--navy); font-weight: 700; }

.states-note {
  margin-top: 48px; text-align: center;
  font-size: 14px; color: var(--text-3);
  padding: 18px 24px; background: var(--bg);
  border-radius: var(--r); display: inline-block;
}
.states-note strong { color: var(--navy); }

/* Stories - editorial, big quote */
.story-hero {
  background: var(--navy); color: #fff;
  padding: 96px 0; position: relative; overflow: hidden;
}
.story-hero::before {
  content: '\201C'; position: absolute;
  top: 20px; left: 6%; font-size: 280px;
  font-family: Georgia, serif; line-height: 1;
  color: var(--teal); opacity: 0.18;
}
.story-hero-quote {
  font-size: clamp(24px, 3vw, 36px); font-weight: 500;
  line-height: 1.4; max-width: 900px; margin: 0 auto;
  text-align: center; color: #fff;
  position: relative; letter-spacing: -0.01em;
}
.story-hero-author {
  margin-top: 36px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.sha-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 20px; color: #fff;
}
.sha-info strong { display: block; color: #fff; font-size: 15px; }
.sha-info span { color: rgba(255,255,255,0.6); font-size: 13px; }
.story-hero-meta {
  margin-top: 64px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.shm-stat strong { display: block; color: var(--teal); font-size: 32px; font-weight: 800; letter-spacing: -0.02em; }
.shm-stat span { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; text-transform: uppercase; }

/* CTA Strip */
.cta-strip { background: var(--navy); padding: 72px 0; }
.cta-strip-inner {
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 48px; align-items: center;
}
.cta-strip h2 { color: #fff; margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,0.75); font-size: 17px; }
.cta-strip-actions { display: flex; flex-direction: column; gap: 12px; }

/* ──────────────────────────────────────────────────────────
   PAGE-SPECIFIC: SERVICES
   ────────────────────────────────────────────────────────── */

.svc-hero {
  background: var(--bg); padding: 140px 0 80px;
  border-bottom: 1px solid var(--line-2);
}
.svc-hero-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; }
.svc-hero h1 { font-size: clamp(36px, 4.5vw, 56px); }

/* Service blocks - alternating */
.svc-block {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 80px; align-items: center; padding: 80px 0;
  border-bottom: 1px solid var(--line-2);
}
.svc-block:last-child { border-bottom: none; }
.svc-block.flip { grid-template-columns: 1.15fr 1fr; }
.svc-block.flip .svc-visual { order: -1; }
.svc-block .svc-num {
  font-size: 14px; font-weight: 700; color: var(--teal-2);
  letter-spacing: 0.12em; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.svc-block .svc-num::after { content: ''; flex: 1; height: 1px; background: var(--line); max-width: 60px; }
.svc-block h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 16px; }
.svc-block-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.svc-block-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text-2); }
.svc-block-list li svg { color: var(--teal-2); flex-shrink: 0; margin-top: 4px; }

.svc-visual {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
  border-radius: var(--r-lg); padding: 36px; aspect-ratio: 5/4;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.svc-visual.dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
}
.svc-visual-card {
  background: #fff; padding: 28px; border-radius: var(--r-lg);
  width: 100%; box-shadow: var(--shadow);
  border: 1px solid var(--line-2);
}

/* ──────────────────────────────────────────────────────────
   PAGE-SPECIFIC: HOW IT WORKS
   ────────────────────────────────────────────────────────── */

.process-flow {
  display: grid; grid-template-columns: 1fr; gap: 28px;
  max-width: 980px; margin: 0 auto;
}
.process-step-row {
  display: grid; grid-template-columns: 100px 1fr 1.4fr;
  gap: 32px; align-items: start;
  background: #fff; border-radius: var(--r-lg);
  padding: 36px; border: 1px solid var(--line-2);
  position: relative;
}
.process-step-row::before {
  content: ''; position: absolute; left: 76px; top: 100%;
  width: 1px; height: 28px; background: var(--line);
}
.process-step-row:last-child::before { display: none; }
.ps-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; flex-shrink: 0;
}
.ps-num.teal { background: var(--teal); }
.ps-text h3 { margin-bottom: 8px; }
.ps-text .ps-time { display: inline-block; padding: 4px 10px; background: var(--teal-pale); color: var(--teal-2); font-size: 11px; font-weight: 700; border-radius: 4px; letter-spacing: 0.06em; margin-bottom: 12px; }
.ps-text p { font-size: 15px; line-height: 1.7; }
.ps-detail { font-size: 14px; line-height: 1.8; }
.ps-detail strong { display: block; color: var(--navy); margin-bottom: 8px; font-size: 13px; letter-spacing: 0.04em; }
.ps-detail ul { display: flex; flex-direction: column; gap: 6px; }
.ps-detail li { padding-left: 18px; position: relative; color: var(--text-2); }
.ps-detail li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

/* ──────────────────────────────────────────────────────────
   PAGE-SPECIFIC: PRICING
   ────────────────────────────────────────────────────────── */

.price-card {
  max-width: 920px; margin: 0 auto;
  background: #fff; border-radius: var(--r-lg);
  border: 1px solid var(--line); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.price-card-top {
  background: var(--navy); color: #fff;
  padding: 48px 56px; position: relative; overflow: hidden;
}
.price-card-top::after {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,188,212,0.18) 0%, transparent 70%);
}
.price-card-top-inner { position: relative; display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.pct-label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; color: var(--teal); margin-bottom: 12px; }
.pct-title { font-size: 30px; font-weight: 700; color: #fff; margin-bottom: 6px; letter-spacing: -0.01em; }
.pct-sub { font-size: 14px; color: rgba(255,255,255,0.7); }
.pct-price { text-align: right; }
.pct-price .amount {
  font-size: 56px; font-weight: 800; color: #fff; line-height: 1;
  letter-spacing: -0.03em;
}
.pct-price .amount sup { font-size: 24px; vertical-align: top; color: var(--teal); margin-right: 4px; }
.pct-price .note { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 8px; line-height: 1.5; }

.price-card-body { padding: 48px 56px; }
.pcb-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 28px; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 36px; }
.price-grid-item { display: flex; gap: 12px; align-items: flex-start; }
.pgi-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 3px; }
.pgi-text strong { display: block; font-size: 14px; color: var(--navy); font-weight: 600; margin-bottom: 2px; }
.pgi-text span { font-size: 13px; color: var(--text-3); line-height: 1.5; }
.price-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--line-2); }
.price-cta-note { font-size: 13px; color: var(--text-3); font-style: italic; flex: 1; min-width: 200px; }

.price-compare { margin-top: 80px; }
.price-compare h2 { text-align: center; margin-bottom: 12px; }
.price-compare > p { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.compare-table {
  background: #fff; border-radius: var(--r-lg);
  border: 1px solid var(--line); overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line-2);
}
.compare-row:last-child { border-bottom: none; }
.compare-cell { padding: 18px 20px; font-size: 14px; color: var(--text-2); display: flex; align-items: center; }
.compare-row.head { background: var(--bg); }
.compare-row.head .compare-cell { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: 0.04em; }
.compare-row.us { background: rgba(43,188,212,0.04); }
.compare-row.us .compare-cell:first-child { font-weight: 700; color: var(--navy); }
.cmp-yes { color: var(--teal-2); font-weight: 700; }
.cmp-no { color: #C0392B; }

/* ──────────────────────────────────────────────────────────
   PAGE-SPECIFIC: ABOUT
   ────────────────────────────────────────────────────────── */

.about-hero { padding: 140px 0 80px; background: var(--bg); }
.about-hero-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 72px; align-items: center; }

.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.av-item { padding-top: 28px; border-top: 2px solid var(--teal); }
.av-item h3 { font-size: 20px; margin-bottom: 12px; }
.av-item p { font-size: 14px; line-height: 1.75; }

.about-stats {
  background: var(--navy); color: #fff;
  padding: 80px 0; text-align: center;
}
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.as-item .num { font-size: 56px; font-weight: 800; color: var(--teal); line-height: 1; letter-spacing: -0.03em; }
.as-item .lab { margin-top: 12px; font-size: 13px; color: rgba(255,255,255,0.7); letter-spacing: 0.06em; }

/* ──────────────────────────────────────────────────────────
   PAGE-SPECIFIC: STORIES
   ────────────────────────────────────────────────────────── */

.stories-hero { padding: 140px 0 60px; background: var(--bg); }
.stories-grid { display: flex; flex-direction: column; gap: 48px; }

/* New story block: header + story + google review */
.story-block {
  background: #fff; border: 1px solid var(--line-2);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all 0.25s ease;
}
.story-block:hover { box-shadow: var(--shadow); border-color: var(--teal); }

.story-header {
  padding: 32px 40px 24px;
  border-bottom: 1px solid var(--line-2);
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: start;
}
.story-header-meta {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  font-size: 12px; color: var(--text-3);
  letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 14px;
}
.story-header-meta .dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--text-3); align-self: center;
}
.story-header h2 {
  font-size: 24px; line-height: 1.3;
  color: var(--navy); letter-spacing: -0.015em;
  margin-bottom: 0;
}
.story-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; background: var(--teal-pale);
  color: var(--teal-2); font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; border-radius: 100px;
  white-space: nowrap; align-self: start;
}
.story-badge.representative {
  background: #FFF4E6; color: #B8651D;
}

.story-body {
  padding: 32px 40px;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}

.story-narrative {
  border-right: 1px solid var(--line-2);
  padding-right: 40px;
}
.story-narrative-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--text-3); text-transform: uppercase;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.story-narrative-label::before {
  content: ''; width: 24px; height: 1px; background: var(--teal);
}
.story-narrative p {
  font-size: 15px; line-height: 1.75;
  color: var(--text-2); margin-bottom: 14px;
}
.story-narrative p:last-of-type { margin-bottom: 0; }
.story-narrative strong { color: var(--navy); font-weight: 600; }

.story-services {
  margin-top: 22px; padding-top: 18px;
  border-top: 1px dashed var(--line-2);
}
.story-services-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--text-3); text-transform: uppercase;
  margin-bottom: 10px;
}
.story-service-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.story-service-tag {
  font-size: 12px; font-weight: 500;
  padding: 4px 10px; background: var(--bg);
  border: 1px solid var(--line-2);
  color: var(--text-2); border-radius: 6px;
}

/* Google review block */
.story-review {
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, #FAFBFC 0%, #fff 100%);
  border-radius: var(--r-lg);
  padding: 24px 26px; position: relative;
  border: 1px solid var(--line-2);
}
.story-review-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.google-mark {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--text-2); text-transform: uppercase;
}
.google-mark-icon {
  width: 16px; height: 16px;
}
.story-review-stars {
  display: flex; gap: 2px;
}
.story-review-stars svg { color: #FBBC04; }

.story-review-text {
  font-size: 15px; line-height: 1.7;
  color: var(--text); font-style: italic;
  margin-bottom: 18px; flex: 1;
  letter-spacing: -0.005em;
}
.story-review-text::before {
  content: '"'; font-size: 36px; line-height: 0;
  color: var(--teal); opacity: 0.5;
  vertical-align: -8px; margin-right: 4px;
  font-family: Georgia, serif;
}

.story-review-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--line-2);
  gap: 12px;
}
.story-review-author {
  display: flex; align-items: center; gap: 10px;
  flex: 1; min-width: 0;
}
.story-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--teal); font-weight: 700;
  font-family: Georgia, serif; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.story-review-author-info { min-width: 0; }
.story-review-author-info strong {
  display: block; font-size: 13px; color: var(--navy);
  font-weight: 600; line-height: 1.3;
}
.story-review-author-info span {
  font-size: 11px; color: var(--text-3);
}
.story-review-link {
  font-size: 12px; font-weight: 600;
  color: var(--teal-2); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 4px;
  transition: color 0.18s;
}
.story-review-link:hover { color: var(--navy); }
.story-review-link svg { transition: transform 0.18s; }
.story-review-link:hover svg { transform: translate(2px, -2px); }

/* Mobile responsive for story blocks */
@media (max-width: 1024px) {
  .story-header { padding: 24px 28px 20px; grid-template-columns: 1fr; }
  .story-body { grid-template-columns: 1fr; padding: 28px; gap: 28px; }
  .story-narrative { border-right: none; border-bottom: 1px solid var(--line-2); padding-right: 0; padding-bottom: 28px; }
  .story-header h2 { font-size: 21px; }
  .stories-grid { gap: 32px; }
}
@media (max-width: 600px) {
  .story-header, .story-body { padding: 22px 20px; }
  .story-header h2 { font-size: 19px; }
  .story-narrative p, .story-review-text { font-size: 14px; }
}

/* ──────────────────────────────────────────────────────────
   PAGE-SPECIFIC: FAQ
   ────────────────────────────────────────────────────────── */

.faq-hero { padding: 140px 0 60px; background: var(--bg); text-align: center; }

.faq-cats { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.faq-cat-btn {
  padding: 9px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  background: var(--bg); border: 1px solid var(--line);
  color: var(--text-2); transition: all 0.2s;
}
.faq-cat-btn:hover { background: var(--bg-2); }
.faq-cat-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--line-2);
  border-radius: var(--r-lg); overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: var(--teal); }
.faq-item.open { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 22px 28px; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; cursor: pointer;
}
.faq-q-text { font-size: 16px; font-weight: 600; color: var(--navy); flex: 1; line-height: 1.4; }
.faq-q-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg); color: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-q-icon { background: var(--teal); color: #fff; transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 28px 24px;
  font-size: 15px; line-height: 1.8; color: var(--text-2);
}
.faq-a strong { color: var(--navy); }
.faq-item.open .faq-a { display: block; }

/* ──────────────────────────────────────────────────────────
   PAGE-SPECIFIC: CONTACT
   ────────────────────────────────────────────────────────── */

.contact-hero { padding: 140px 0 60px; background: var(--bg); text-align: center; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; }

.contact-side { display: flex; flex-direction: column; gap: 28px; }
.contact-wa-card {
  background: var(--navy); color: #fff;
  padding: 36px; border-radius: var(--r-lg);
  position: relative; overflow: hidden;
}
.contact-wa-card::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,0.2) 0%, transparent 70%);
}
.cwc-wrap { position: relative; }
.cwc-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--wa); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.cwc-h { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.cwc-p { font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 24px; line-height: 1.7; }

.contact-info-block { background: #fff; padding: 32px; border-radius: var(--r-lg); border: 1px solid var(--line-2); }
.cib-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line-2); }
.cib-row:last-child { border-bottom: none; }
.cib-icon { width: 36px; height: 36px; border-radius: var(--r); background: var(--teal-pale); color: var(--teal-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cib-content strong { display: block; font-size: 11px; color: var(--text-3); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.cib-content span { font-size: 14px; color: var(--text); }

.form-card {
  background: #fff; padding: 48px;
  border-radius: var(--r-lg); border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
}
.form-card h2 { font-size: 28px; margin-bottom: 8px; }
.form-card > p { font-size: 14px; color: var(--text-3); margin-bottom: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-size: 12px; font-weight: 600; color: var(--navy); letter-spacing: 0.04em; }
.fg label .req { color: var(--teal-2); }
.fg input, .fg select, .fg textarea {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r); padding: 13px 16px;
  font-size: 14px; color: var(--text);
  font-family: inherit; outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--teal); background: #fff;
  box-shadow: 0 0 0 3px rgba(43,188,212,0.12);
}
.fg textarea { resize: vertical; min-height: 110px; }
.fg select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230D1F4E' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px;
}
.fg select option { background: #fff; }
.fg-radios { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.fg-radio { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; color: var(--text-2); }
.fg-radio input { width: 17px; height: 17px; accent-color: var(--teal); cursor: pointer; }
.fg-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 13px; color: var(--text-2); line-height: 1.6; }
.fg-check input { width: 17px; height: 17px; accent-color: var(--teal); cursor: pointer; margin-top: 2px; flex-shrink: 0; }
.form-submit-row { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.form-note-text { font-size: 12px; color: var(--text-3); text-align: center; line-height: 1.6; }

/* ──────────────────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .promise-block { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; }
  .promise-block.flip { direction: ltr; }
  .state-panel-inner { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .svc-block, .svc-block.flip { grid-template-columns: 1fr; gap: 40px; }
  .svc-block.flip .svc-visual { order: 0; }
  .svc-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-strip-inner { grid-template-columns: 1fr; gap: 28px; }
  .compare-row { grid-template-columns: 1.6fr 1fr 1fr; }
  .compare-row .compare-cell:nth-child(4),
  .compare-row .compare-cell:nth-child(5) { display: none; }
  .story-card, .story-card.flip { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .story-card.flip .sc-visual { order: 0; }
  .sc-visual { aspect-ratio: 16/9; max-height: 180px; font-size: 60px; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .wrap, .wrap-sm, .wrap-lg { padding: 0 20px; }
  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta-wrap .btn { display: none; }
  .nav-cta-wrap .btn-wa-mob { display: inline-flex; padding: 8px 14px; font-size: 12px; }
  .nav-inner { height: 64px; padding: 0 20px; }
  .nav-logo img { height: 38px; }
  .mobile-nav { top: 64px; height: calc(100vh - 64px); height: calc(100dvh - 64px); }
  .hero { padding: 100px 0 56px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-meta { gap: 24px; }
  .hero-meta-num { font-size: 22px; }
  .promise-text .num { font-size: 48px; }
  .process-step-row { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  .process-step-row::before { display: none; }
  .ps-num { width: 52px; height: 52px; font-size: 18px; }
  .price-card-top, .price-card-body { padding: 32px 24px; }
  .pct-price { text-align: left; }
  .pct-price .amount { font-size: 44px; }
  .price-grid { grid-template-columns: 1fr; }
  .price-cta { flex-direction: column; align-items: stretch; }
  .price-cta .btn { width: 100%; justify-content: center; }
  .compare-row { grid-template-columns: 1.4fr 1fr 1fr; font-size: 12px; }
  .compare-cell { padding: 12px 14px; font-size: 13px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-card { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .as-item .num { font-size: 40px; }
  .state-tabs { padding: 4px; gap: 3px; }
  .state-tab { padding: 9px 14px; font-size: 12px; }
  .story-hero-meta { gap: 28px; }
  .shm-stat strong { font-size: 24px; }
  .price-compare { margin-top: 56px; }
  .compare-row.head .compare-cell { font-size: 11px; }
  .wa-fab { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .cta-strip { padding: 56px 0; }
  .svc-hero { padding: 100px 0 60px; }
  .about-hero, .stories-hero, .faq-hero, .contact-hero { padding: 100px 0 40px; }
  .story-hero { padding: 64px 0; }
  .story-hero::before { font-size: 180px; top: 4px; }
  .footer-logo-wrap { padding: 8px 14px; }
  .footer-logo-wrap img { height: 34px; }
}

@media (max-width: 480px) {
  .about-stats-grid { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1.5fr 1fr; }
  .compare-row .compare-cell:nth-child(3) { display: none; }
  .price-card-top-inner { flex-direction: column; }
}

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ──────────────────────────────────────────────────────────
   BLOG
   ────────────────────────────────────────────────────────── */

/* Blog index hero */
.blog-hero {
  padding: 140px 0 60px;
  background: var(--bg);
}
.blog-hero h1 { max-width: 800px; }
.blog-hero p { max-width: 640px; font-size: 18px; margin-top: 20px; }

/* Blog index grid */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.blog-card {
  background: #fff; border: 1px solid var(--line-2);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all 0.25s ease;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  border-color: var(--teal); transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.blog-card-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 24px;
}
.blog-card-img::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(43,188,212,0.25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(43,188,212,0.15), transparent 50%);
}
.blog-card-num {
  position: relative; z-index: 1;
  font-size: 64px; font-weight: 800; line-height: 1;
  color: rgba(255,255,255,0.12); letter-spacing: -0.03em;
}
.blog-card-tag {
  position: absolute; top: 18px; left: 18px;
  padding: 5px 11px; background: rgba(255,255,255,0.92);
  color: var(--navy); border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  display: flex; gap: 12px; align-items: center;
  font-size: 12px; color: var(--text-3); margin-bottom: 12px;
}
.blog-card-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-3); }
.blog-card h3 {
  font-size: 19px; line-height: 1.35; margin-bottom: 12px;
  color: var(--navy); flex: 1;
}
.blog-card p {
  font-size: 14px; line-height: 1.6; color: var(--text-2);
  margin-bottom: 18px;
}
.blog-card-link {
  font-size: 13px; font-weight: 600; color: var(--teal-2);
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto;
}
.blog-card-link svg { transition: transform 0.2s; }
.blog-card:hover .blog-card-link svg { transform: translateX(4px); }

/* Featured (first) blog card */
.blog-featured {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
  background: #fff; border: 1px solid var(--line-2);
  border-radius: var(--r-lg); overflow: hidden;
  margin-bottom: 48px;
  transition: all 0.25s ease;
}
.blog-featured:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.blog-featured .blog-card-img { aspect-ratio: auto; padding: 48px; }
.blog-featured .blog-card-num { font-size: 96px; }
.blog-featured .blog-card-body { padding: 48px; justify-content: center; }
.blog-featured h2 { font-size: 32px; line-height: 1.2; margin-bottom: 18px; }
.blog-featured p { font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
.blog-featured .featured-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; background: var(--teal-pale);
  color: var(--teal-2); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; border-radius: 100px;
  margin-bottom: 16px;
}

/* Article page */
.article-hero {
  padding: 130px 0 50px;
  background: var(--bg);
  border-bottom: 1px solid var(--line-2);
}
.article-hero-inner { max-width: 760px; margin: 0 auto; }
.article-breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; color: var(--text-3); margin-bottom: 28px;
}
.article-breadcrumb a { color: var(--text-2); }
.article-breadcrumb a:hover { color: var(--teal-2); }
.article-breadcrumb svg { color: var(--text-3); }

.article-tag {
  display: inline-block; padding: 5px 12px;
  background: var(--teal-pale); color: var(--teal-2);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  border-radius: 100px; margin-bottom: 18px;
}

.article-hero h1 {
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.article-meta {
  display: flex; gap: 20px; align-items: center;
  margin-top: 32px; padding-top: 28px;
  border-top: 1px solid var(--line-2);
  flex-wrap: wrap;
}
.article-author { display: flex; align-items: center; gap: 12px; }
.article-author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--teal); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; font-family: Georgia, serif;
}
.article-author-info strong { display: block; font-size: 14px; color: var(--navy); }
.article-author-info span { font-size: 12px; color: var(--text-3); }
.article-meta-item {
  font-size: 13px; color: var(--text-3);
  display: flex; align-items: center; gap: 6px;
}

/* Article body container */
.article-body { padding: 64px 0 96px; background: #fff; }
.article-content {
  max-width: 720px; margin: 0 auto; padding: 0 32px;
}
.article-content > * + * { margin-top: 24px; }
.article-content p {
  font-size: 17px; line-height: 1.8; color: var(--text-2);
}
.article-content p strong { color: var(--navy); font-weight: 600; }
.article-content h2 {
  font-size: 28px; line-height: 1.3; color: var(--navy);
  margin-top: 56px; padding-top: 8px; letter-spacing: -0.015em;
}
.article-content h3 {
  font-size: 22px; line-height: 1.35; color: var(--navy);
  margin-top: 40px; letter-spacing: -0.01em;
}
.article-content h2:first-child,
.article-content h3:first-child { margin-top: 0; }

.article-content ul, .article-content ol {
  padding-left: 0; list-style: none;
  display: flex; flex-direction: column; gap: 12px;
}
.article-content ul li, .article-content ol li {
  position: relative; padding-left: 26px;
  font-size: 17px; line-height: 1.75; color: var(--text-2);
}
.article-content ul li::before {
  content: ''; position: absolute; left: 6px; top: 12px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
}
.article-content ol { counter-reset: item; }
.article-content ol li { counter-increment: item; }
.article-content ol li::before {
  content: counter(item) ".";
  position: absolute; left: 0; top: 0;
  font-weight: 700; color: var(--teal-2);
  font-size: 16px;
}

.article-content blockquote {
  margin: 36px 0; padding: 24px 28px;
  background: var(--bg); border-left: 4px solid var(--teal);
  border-radius: var(--r); font-size: 18px;
  line-height: 1.7; color: var(--text); font-style: italic;
}
.article-content blockquote cite {
  display: block; margin-top: 12px; font-size: 14px;
  color: var(--text-3); font-style: normal;
}

.article-content code {
  background: var(--bg-2); padding: 2px 8px;
  border-radius: 4px; font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
  font-size: 14px; color: var(--navy);
}
.article-content a {
  color: var(--teal-2); text-decoration: underline;
  text-decoration-color: var(--teal-pale);
  text-underline-offset: 3px; text-decoration-thickness: 2px;
  transition: text-decoration-color 0.18s;
}
.article-content a:hover { text-decoration-color: var(--teal); }

/* Article callout box */
.article-callout {
  margin: 40px 0; padding: 28px 32px;
  background: linear-gradient(135deg, var(--teal-pale) 0%, #fff 100%);
  border: 1px solid rgba(43,188,212,0.2);
  border-radius: var(--r-lg);
}
.article-callout-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.article-callout-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.article-callout-title {
  font-size: 14px; font-weight: 700; color: var(--navy);
  letter-spacing: 0.02em;
}
.article-callout p {
  font-size: 16px; line-height: 1.7; color: var(--text);
  margin-top: 0;
}
.article-callout p strong { color: var(--navy); }

/* Article comparison table */
.article-table-wrap { margin: 32px 0; overflow-x: auto; }
.article-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
}
.article-table th, .article-table td {
  padding: 14px 16px; text-align: left;
  font-size: 14px; border-bottom: 1px solid var(--line-2);
}
.article-table th {
  background: var(--navy); color: #fff;
  font-weight: 700; letter-spacing: 0.02em;
}
.article-table tr:last-child td { border-bottom: none; }
.article-table tr:nth-child(even) td { background: var(--bg); }
.article-table strong { color: var(--navy); }

/* Article CTA box */
.article-cta {
  margin: 56px 0 0;
  background: var(--navy); color: #fff;
  padding: 40px 36px; border-radius: var(--r-lg);
  text-align: center;
}
.article-cta h3 {
  color: #fff; font-size: 24px; margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.article-cta p {
  color: rgba(255,255,255,0.78); font-size: 16px;
  margin: 0 auto 24px; max-width: 480px; line-height: 1.7;
}
.article-cta-actions {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap;
}

/* Article footer / FAQ section */
.article-faq {
  margin-top: 64px; padding-top: 48px;
  border-top: 1px solid var(--line-2);
}
.article-faq h2 { margin-bottom: 24px; }
.article-faq-item {
  border: 1px solid var(--line-2); border-radius: var(--r-lg);
  margin-bottom: 12px; overflow: hidden;
  transition: border-color 0.2s;
}
.article-faq-item:hover { border-color: var(--teal); }
.article-faq-item.open { border-color: var(--teal); }
.article-faq-q {
  width: 100%; background: none; border: none;
  padding: 18px 24px; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; cursor: pointer;
}
.article-faq-q span {
  font-size: 15px; font-weight: 600; color: var(--navy);
  line-height: 1.4; flex: 1;
}
.article-faq-q .icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--bg); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.3s, background 0.2s;
}
.article-faq-item.open .icon { background: var(--teal); color: #fff; transform: rotate(45deg); }
.article-faq-a {
  display: none; padding: 0 24px 20px;
  font-size: 15px; line-height: 1.75; color: var(--text-2);
}
.article-faq-item.open .article-faq-a { display: block; }

/* Related articles */
.related-articles {
  background: var(--bg); padding: 80px 0;
  border-top: 1px solid var(--line-2);
}
.related-articles h2 { margin-bottom: 36px; font-size: 28px; }

/* Reviewed by */
.reviewed-by {
  margin: 40px 0; padding: 20px 24px;
  background: var(--bg); border-radius: var(--r);
  border-left: 3px solid var(--navy);
  font-size: 14px; line-height: 1.6;
  color: var(--text-2);
}
.reviewed-by strong { color: var(--navy); }

/* Article TOC */
.article-toc {
  margin: 32px 0 48px; padding: 24px 28px;
  background: var(--bg); border-radius: var(--r-lg);
  border: 1px solid var(--line-2);
}
.article-toc h4 {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 14px;
}
.article-toc ol {
  padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
.article-toc ol li {
  padding-left: 0; counter-increment: toc;
  font-size: 14px;
}
.article-toc ol li::before {
  content: counter(toc) "."; margin-right: 8px;
  color: var(--teal-2); font-weight: 700; font-size: 13px;
}
.article-toc a { color: var(--text-2); transition: color 0.15s; }
.article-toc a:hover { color: var(--teal-2); }

/* Mobile article responsive */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured .blog-card-img { aspect-ratio: 16/9; padding: 32px; }
  .blog-featured .blog-card-num { font-size: 72px; }
  .blog-featured .blog-card-body { padding: 32px; }
  .blog-featured h2 { font-size: 26px; }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-hero { padding: 100px 0 40px; }
  .article-hero { padding: 100px 0 40px; }
  .article-hero h1 { font-size: 28px; }
  .article-content { padding: 0 20px; }
  .article-content p,
  .article-content ul li,
  .article-content ol li { font-size: 16px; line-height: 1.75; }
  .article-content h2 { font-size: 24px; margin-top: 40px; }
  .article-content h3 { font-size: 20px; margin-top: 32px; }
  .article-callout { padding: 20px 22px; }
  .article-cta { padding: 32px 24px; }
  .article-cta h3 { font-size: 20px; }
  .article-meta { gap: 16px; }
  .article-table th, .article-table td { padding: 11px 12px; font-size: 13px; }
  .related-articles { padding: 56px 0; }
}

/* ──────────────────────────────────────────────────────────
   LEGAL PAGES (Privacy / Terms / Refund)
   ────────────────────────────────────────────────────────── */

.legal-hero {
  padding: 130px 0 50px;
  background: var(--bg);
  border-bottom: 1px solid var(--line-2);
}
.legal-hero-inner { max-width: 760px; margin: 0 auto; }
.legal-hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.legal-hero p {
  font-size: 16px; line-height: 1.7;
  color: var(--text-2); max-width: 600px;
}
.legal-meta {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--line-2);
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-3);
}
.legal-meta strong { color: var(--navy); }

.legal-body { padding: 56px 0 96px; background: #fff; }
.legal-content {
  max-width: 760px; margin: 0 auto; padding: 0 32px;
}

.legal-toc {
  margin: 0 0 48px; padding: 24px 28px;
  background: var(--bg); border-radius: var(--r-lg);
  border: 1px solid var(--line-2);
}
.legal-toc h4 {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 14px;
}
.legal-content .legal-toc ol {
  padding: 0; list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  counter-reset: legal-toc;
  margin: 0;
}
.legal-content .legal-toc ol li {
  counter-increment: legal-toc;
  font-size: 14px; padding-left: 0;
  line-height: 1.5;
}
.legal-content .legal-toc ol li::before {
  content: counter(legal-toc) "."; margin-right: 8px;
  color: var(--teal-2); font-weight: 700;
  position: static;  /* override the absolute positioning from .legal-content ol li::before */
}
.legal-toc a {
  color: var(--text-2); transition: color 0.15s;
}
.legal-toc a:hover { color: var(--teal-2); }

.legal-content h2 {
  font-size: 24px; line-height: 1.3; color: var(--navy);
  margin-top: 56px; margin-bottom: 16px;
  letter-spacing: -0.015em;
  padding-top: 8px;
  scroll-margin-top: 100px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h2 .legal-num {
  display: inline-block; font-size: 14px;
  color: var(--teal-2); font-weight: 700;
  margin-right: 12px; letter-spacing: 0.05em;
  vertical-align: 4px;
}
.legal-content h3 {
  font-size: 17px; line-height: 1.4; color: var(--navy);
  margin-top: 32px; margin-bottom: 12px;
  font-weight: 600;
}
.legal-content p {
  font-size: 16px; line-height: 1.75;
  color: var(--text-2); margin-bottom: 16px;
}
.legal-content p strong { color: var(--navy); font-weight: 600; }
.legal-content ul, .legal-content ol {
  padding-left: 0; list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin: 16px 0 20px;
}
.legal-content ul li, .legal-content ol li {
  position: relative; padding-left: 24px;
  font-size: 16px; line-height: 1.7;
  color: var(--text-2);
}
.legal-content ul li::before {
  content: ''; position: absolute;
  left: 6px; top: 11px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
}
.legal-content ol { counter-reset: legal-list; }
.legal-content ol li { counter-increment: legal-list; }
.legal-content ol li::before {
  content: counter(legal-list) ".";
  position: absolute; left: 0; top: 0;
  font-weight: 700; color: var(--teal-2);
  font-size: 14px;
}
.legal-content a {
  color: var(--teal-2); text-decoration: underline;
  text-decoration-color: var(--teal-pale);
  text-underline-offset: 3px; text-decoration-thickness: 2px;
}
.legal-content a:hover { text-decoration-color: var(--teal); }

.legal-callout {
  margin: 24px 0; padding: 20px 24px;
  background: var(--bg); border-left: 3px solid var(--navy);
  border-radius: 0 var(--r) var(--r) 0;
  font-size: 15px; line-height: 1.7;
}
.legal-callout strong { color: var(--navy); display: block; margin-bottom: 4px; }

.legal-table-wrap { margin: 20px 0 24px; overflow-x: auto; }
.legal-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
  font-size: 14px;
}
.legal-table th, .legal-table td {
  padding: 12px 14px; text-align: left;
  border-bottom: 1px solid var(--line-2);
}
.legal-table th {
  background: var(--navy); color: #fff;
  font-weight: 700; letter-spacing: 0.02em;
  font-size: 12px; text-transform: uppercase;
}
.legal-table tr:last-child td { border-bottom: none; }
.legal-table tr:nth-child(even) td { background: var(--bg); }
.legal-table strong { color: var(--navy); }

.legal-contact-block {
  margin-top: 56px; padding: 28px 32px;
  background: var(--bg); border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
}
.legal-contact-block h3 {
  font-size: 17px; color: var(--navy);
  margin-bottom: 8px;
}
.legal-contact-block p {
  font-size: 14px; margin-bottom: 6px; color: var(--text-2);
}

@media (max-width: 768px) {
  .legal-hero { padding: 100px 0 40px; }
  .legal-content { padding: 0 20px; }
  .legal-content .legal-toc ol { grid-template-columns: 1fr; }
  .legal-content h2 { font-size: 20px; margin-top: 40px; }
  .legal-content h3 { font-size: 16px; margin-top: 24px; }
  .legal-content p, .legal-content ul li, .legal-content ol li { font-size: 15px; }
  .legal-meta { gap: 16px; font-size: 12px; }
}

/* ──────────────────────────────────────────────────────────
   ITIN SERVICE BLOCK
   ────────────────────────────────────────────────────────── */

.itin-service {
  background: linear-gradient(135deg, #fff 0%, var(--bg) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 0; overflow: hidden;
  position: relative;
}
.itin-service-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 0;
}
.itin-service-content {
  padding: 56px 48px; position: relative;
}
.itin-service-visual {
  padding: 48px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.itin-service-visual::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(43,188,212,0.18), transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(43,188,212,0.12), transparent 55%);
}

/* Price + guarantee row */
.itin-price-row {
  display: flex; gap: 14px; align-items: center;
  flex-wrap: wrap; margin: 20px 0 24px;
}
.itin-price-tag {
  display: inline-flex; align-items: baseline; gap: 6px;
  padding: 10px 18px; background: var(--navy);
  color: #fff; border-radius: 100px;
  font-weight: 700;
}
.itin-price-tag .currency {
  font-size: 14px; opacity: 0.7;
}
.itin-price-tag .amount {
  font-size: 22px; letter-spacing: -0.01em;
}
.itin-price-tag .label {
  font-size: 11px; opacity: 0.65;
  margin-left: 6px; letter-spacing: 0.05em;
  text-transform: uppercase; font-weight: 600;
}
.itin-guarantee {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; background: var(--teal-pale);
  border: 1px solid rgba(43,188,212,0.3);
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  color: var(--navy);
}
.itin-guarantee svg { color: var(--teal-2); flex-shrink: 0; }

/* Why ITIN list */
.itin-why-list {
  display: flex; flex-direction: column; gap: 12px;
  margin: 24px 0;
}
.itin-why-list li {
  position: relative; padding-left: 28px;
  font-size: 15px; line-height: 1.65;
  color: var(--text-2);
  list-style: none;
}
.itin-why-list li::before {
  content: ''; position: absolute; left: 4px; top: 8px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
}
.itin-why-list li strong { color: var(--navy); }

/* Process timeline */
.itin-timeline {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; margin: 28px 0 8px;
  padding-top: 24px; border-top: 1px solid var(--line-2);
}
.itin-step {
  text-align: center; position: relative;
}
.itin-step::after {
  content: ''; position: absolute;
  top: 16px; right: -4px; width: 8px; height: 1px;
  background: var(--line);
}
.itin-step:last-child::after { display: none; }
.itin-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg); color: var(--teal-2);
  font-weight: 700; font-size: 13px;
  margin: 0 auto 8px;
  border: 2px solid var(--line-2);
}
.itin-step-label {
  font-size: 12px; line-height: 1.4;
  color: var(--text-2);
}
.itin-step-label strong { color: var(--navy); display: block; margin-bottom: 2px; }

/* Disclosure */
.itin-disclosure {
  margin-top: 32px; padding: 18px 22px;
  background: rgba(255,255,255,0.6);
  border: 1px dashed var(--line);
  border-radius: var(--r);
  font-size: 13px; line-height: 1.6;
  color: var(--text-3);
}
.itin-disclosure strong { color: var(--navy); }

/* The ITIN card itself — replicates the IRS-style card */
.itin-card {
  width: 100%; max-width: 360px;
  aspect-ratio: 1.586 / 1;  /* standard credit-card aspect */
  background:
    linear-gradient(135deg, #f4f1e8 0%, #ece8db 100%);
  border-radius: 14px;
  padding: 20px 22px 18px;
  position: relative; z-index: 2;
  font-family: 'Courier New', monospace;
  color: #2c2415;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.6);
  overflow: hidden;
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}
.itin-card:hover { transform: rotate(0deg) scale(1.02); }
.itin-card::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.4), transparent 40%),
    repeating-linear-gradient(45deg, transparent 0, transparent 2px, rgba(180,160,110,0.04) 2px, rgba(180,160,110,0.04) 4px);
  pointer-events: none;
}
.itin-card-header {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}
.itin-card-eagle {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.itin-card-eagle svg { width: 100%; height: 100%; color: #2c2415; }
.itin-card-titles {
  flex: 1; padding-left: 12px;
  font-family: 'Times New Roman', Georgia, serif;
}
.itin-card-titles .t1 {
  font-size: 8px; font-weight: 700;
  letter-spacing: 0.08em; line-height: 1.3;
  text-transform: uppercase;
}
.itin-card-titles .t2 {
  font-size: 7px; line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600; margin-top: 2px;
}
.itin-card-titles .t3 {
  font-size: 8px; font-weight: 800;
  letter-spacing: 0.04em; line-height: 1.3;
  text-transform: uppercase;
  margin-top: 4px; color: #5a3a14;
}
.itin-card-number {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 22px; font-weight: 700;
  letter-spacing: 0.04em;
  color: #2c2415;
  margin-bottom: 16px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}
.itin-card-name-label {
  font-size: 7px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(44,36,21,0.55);
  font-family: 'Times New Roman', serif;
  margin-bottom: 4px;
}
.itin-card-name {
  font-size: 14px; font-weight: 700;
  font-family: 'Times New Roman', Georgia, serif;
  letter-spacing: 0.03em;
  color: #2c2415; line-height: 1.2;
  text-transform: uppercase;
  min-height: 18px;
  word-break: break-word;
}
.itin-card-name.placeholder { color: rgba(44,36,21,0.4); font-style: italic; font-weight: 500; }
.itin-card-stripe {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(90, 58, 20, 0.4) 50%, transparent 100%);
}
.itin-card-watermark {
  position: absolute; right: 18px; bottom: 28px;
  font-size: 6px; opacity: 0.4;
  letter-spacing: 0.1em;
  font-family: monospace;
}

/* Personalisation input */
.itin-name-input-wrap {
  width: 100%; max-width: 360px;
  margin-top: 28px; position: relative; z-index: 2;
}
.itin-name-input-label {
  display: block; font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 8px; font-weight: 600;
}
.itin-name-input {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--r);
  color: #fff; font-size: 15px;
  font-family: inherit;
  transition: all 0.2s;
  outline: none;
}
.itin-name-input::placeholder { color: rgba(255,255,255,0.4); }
.itin-name-input:focus {
  border-color: var(--teal);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 4px rgba(43,188,212,0.15);
}
.itin-input-hint {
  font-size: 11px; color: rgba(255,255,255,0.55);
  margin-top: 8px; text-align: center;
}

/* Action buttons */
.itin-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 28px;
}

/* Mobile responsive */
@media (max-width: 1024px) {
  .itin-service-grid { grid-template-columns: 1fr; }
  .itin-service-content { padding: 40px 32px; }
  .itin-service-visual { padding: 48px 32px; }
  .itin-timeline { grid-template-columns: repeat(2, 1fr); gap: 16px 8px; }
  .itin-step::after { display: none; }
}
@media (max-width: 600px) {
  .itin-service-content { padding: 32px 24px; }
  .itin-service-visual { padding: 40px 24px; }
  .itin-card { max-width: 320px; }
  .itin-card-number { font-size: 18px; }
  .itin-card-name { font-size: 13px; }
  .itin-price-tag .amount { font-size: 18px; }
  .itin-price-tag { padding: 8px 14px; }
}

/* ──────────────────────────────────────────────────────────
   PRICING ITIN ADD-ON TOGGLE
   ────────────────────────────────────────────────────────── */

/* Title bump when ITIN bundle is active */
.price-card.bundle-active .pct-title::after {
  content: ' + ITIN';
  color: var(--teal);
  font-weight: 700;
}

/* Price flip animation */
.pct-price .amount {
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.price-card.bundle-active .pct-price .amount {
  animation: priceFlip 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes priceFlip {
  0% { opacity: 0; transform: translateY(8px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Bundle savings badge — hidden by default */
.bundle-savings-badge {
  display: none;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--teal);
  margin-top: 8px;
}
.price-card.bundle-active .bundle-savings-badge { display: block; }

/* Hidden ITIN feature row in feature grid — shown when active */
.price-grid-item.itin-feature {
  display: none;
  background: linear-gradient(135deg, var(--teal-pale) 0%, transparent 80%);
  border-radius: var(--r);
  padding: 12px 14px;
  border: 1px solid rgba(43,188,212,0.2);
}
.price-card.bundle-active .price-grid-item.itin-feature {
  display: flex;
  animation: featureSlideIn 0.4s ease-out;
}
@keyframes featureSlideIn {
  0% { opacity: 0; transform: translateY(-4px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── ITIN ADD-ON TOGGLE ── */
.itin-addon {
  display: block;
  margin: 24px 0 4px;
  padding: 20px 24px;
  background: var(--bg);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  overflow: hidden;
}
.itin-addon:hover { border-color: rgba(43,188,212,0.5); }
.itin-addon.active {
  background: linear-gradient(135deg, #EBF9FB 0%, #fff 100%);
  border-color: var(--teal);
}

.itin-addon-input {
  position: absolute; left: -9999px;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}

.itin-addon-row {
  display: flex; gap: 16px; align-items: flex-start;
}

.itin-addon-check {
  flex-shrink: 0; margin-top: 1px;
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 2px solid var(--line);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.itin-addon-check svg {
  width: 13px; height: 13px; color: #fff;
  opacity: 0; transform: scale(0.5);
  transition: all 0.18s;
}
.itin-addon.active .itin-addon-check {
  background: var(--teal); border-color: var(--teal);
}
.itin-addon.active .itin-addon-check svg {
  opacity: 1; transform: scale(1);
}

.itin-addon-content { flex: 1; min-width: 0; }

.itin-addon-head {
  display: flex; align-items: center;
  gap: 12px; flex-wrap: wrap;
  margin-bottom: 8px;
}
.itin-addon-title {
  font-size: 15px; font-weight: 700;
  color: var(--navy);
}
.itin-addon-price {
  font-size: 13px; font-weight: 700;
  color: var(--teal-2);
  background: rgba(43,188,212,0.1);
  padding: 2px 10px; border-radius: 100px;
}

.itin-addon-desc {
  font-size: 13px; line-height: 1.65;
  color: var(--text-2); margin-bottom: 10px;
}
.itin-addon-desc strong { color: var(--navy); }

.itin-addon-perks {
  display: flex; flex-wrap: wrap;
  gap: 4px 16px;
}
.itin-addon-perk {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 500; color: var(--text-2);
}
.itin-addon-perk svg { color: var(--teal-2); flex-shrink: 0; }

.itin-addon-saved {
  display: none;
  margin-top: 10px;
  font-size: 12px; font-weight: 600; color: var(--teal-2);
}
.itin-addon.active .itin-addon-saved { display: block; }

@media (max-width: 600px) {
  .itin-addon { padding: 18px 18px; }
  .itin-addon-title { font-size: 14px; }
}

/* ── CONTACT INTENT BUTTONS ── */
.contact-intent-btn {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: var(--bg);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
.contact-intent-btn:hover {
  background: var(--teal-pale);
  border-color: var(--teal);
  transform: translateX(3px);
}
.cib-btn-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-2);
  transition: all 0.2s;
}
.contact-intent-btn:hover .cib-btn-icon {
  background: var(--teal); color: #fff; border-color: var(--teal);
}
.cib-btn-text {
  flex: 1; min-width: 0;
}
.cib-btn-text strong {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--navy); line-height: 1.3; margin-bottom: 2px;
}
.cib-btn-text span {
  font-size: 12px; color: var(--text-3); line-height: 1.4;
}
.cib-btn-arrow {
  flex-shrink: 0; color: var(--text-3);
  transition: color 0.2s, transform 0.2s;
}
.contact-intent-btn:hover .cib-btn-arrow {
  color: var(--teal-2); transform: translateX(2px);
}

@media (max-width: 768px) {
  .contact-intent-btn { padding: 14px 16px; gap: 12px; }
  .cib-btn-icon { width: 36px; height: 36px; border-radius: 8px; }
  .cib-btn-text strong { font-size: 13px; }
}
