/* ============================================================
   TGCP · TIECEC Global Care Plan
   Design system — built for tgcp.tiecec.com
   No external fonts / images / CDNs: everything renders offline.
   ============================================================ */

:root {
  --ink:        #0C2433;
  --ink-2:      #13364A;
  --ink-3:      #1E4557;
  --accent:     #C2873B;
  --accent-2:   #A96E28;
  --accent-sf:  #F6E9D6;
  --teal:       #1D6F6B;
  --teal-sf:    #E2F0EE;
  --cream:      #FAF7F2;
  --cream-2:    #F2EDE4;
  --white:      #FFFFFF;
  --line:       #E4DED3;
  --line-2:     #D2C9BA;
  --text:       #1B2B35;
  --muted:      #667C87;
  --muted-2:    #8A9AA3;
  --ok:         #2E7D6B;
  --warn:       #B77B1E;
  --na:         #8C7D6B;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman",
           "Songti SC", "SimSun", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;

  --radius:   14px;
  --radius-s: 8px;
  --radius-l: 22px;
  --shadow-s: 0 1px 2px rgba(12,36,51,.06), 0 4px 14px rgba(12,36,51,.05);
  --shadow-m: 0 2px 6px rgba(12,36,51,.06), 0 14px 40px rgba(12,36,51,.08);
  --shadow-l: 0 8px 20px rgba(12,36,51,.08), 0 30px 70px rgba(12,36,51,.12);
  --max: 1180px;
  --nav-h: 70px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 600; line-height: 1.22; margin: 0 0 .55em; letter-spacing: -.01em; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .4em; }
strong { font-weight: 650; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 26px; }
.container-narrow { max-width: 860px; }

/* ---------- utility ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 14px;
}
.eyebrow.cream { color: rgba(255,255,255,.62); }
.lead { font-size: 19px; line-height: 1.72; color: #3A4C58; }
.muted { color: var(--muted); }
.small { font-size: 14px; line-height: 1.65; }
.center { text-align: center; }
.mt-0 { margin-top: 0 } .mb-0 { margin-bottom: 0 }
.mt-s { margin-top: 12px } .mt-m { margin-top: 24px } .mt-l { margin-top: 44px }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

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

/* ============================================================
   Header
   ============================================================ */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.head-inner {
  display: flex; align-items: center; gap: 22px;
  height: var(--nav-h); max-width: var(--max); margin: 0 auto; padding: 0 26px;
}
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(145deg, var(--ink-2), var(--ink));
  display: grid; place-items: center;
  color: var(--accent); font-family: var(--serif); font-weight: 700;
  font-size: 15px; letter-spacing: .04em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.09);
}
.brand-text strong { display: block; font-family: var(--serif); font-size: 17.5px; letter-spacing: .015em; line-height: 1.15; }
.brand-text span { display: block; font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); line-height: 1.3; }

.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.main-nav a {
  font-size: 14.5px; font-weight: 500; color: #3B4B57;
  padding: 8px 12px; border-radius: 8px; transition: .18s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--ink); background: var(--cream-2); }
.main-nav a.active { color: var(--accent-2); background: var(--accent-sf); font-weight: 650; }

.head-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 0;
  border: 1px solid var(--line-2); border-radius: 999px; padding: 3px;
  background: var(--white);
}
.lang-switch a {
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  padding: 5px 11px; border-radius: 999px; color: var(--muted); transition: .18s;
}
.lang-switch a.on { background: var(--ink); color: #fff; }

.burger {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line-2);
  border-radius: 10px; background: var(--white); cursor: pointer;
  align-items: center; justify-content: center; padding: 0;
}
.burger i { display: block; width: 18px; height: 1.6px; background: var(--ink); position: relative; }
.burger i::before, .burger i::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 1.6px; background: var(--ink);
}
.burger i::before { top: -6px } .burger i::after { top: 6px }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: .2s cubic-bezier(.4,0,.2,1); white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 2px 10px rgba(194,135,59,.28); }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(194,135,59,.34); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-1px); }
.btn-ghost { border-color: var(--line-2); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); background: var(--cream); }
.btn-light { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }
.btn-sm { padding: 9px 17px; font-size: 13.5px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   Sections
   ============================================================ */
section { padding: 88px 0; }
section.tight { padding: 56px 0; }
.section-head { max-width: 760px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); }
.section-head p { color: var(--muted); font-size: 17px; margin-bottom: 0; }

.bg-cream { background: var(--cream); }
.bg-ink   { background: var(--ink); color: #DCE6EB; }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: #fff; }
.bg-ink .lead, .bg-ink p { color: #B9C8D1; }
.bg-ink .muted, .bg-ink .small { color: #93A6B2; }
.bg-line { border-top: 1px solid var(--line); }

/* section divider ornament */
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 620px at 82% -8%, rgba(194,135,59,.20), transparent 62%),
    radial-gradient(800px 520px at 6% 108%, rgba(29,111,107,.26), transparent 60%),
    linear-gradient(155deg, #0C2433 0%, #12354A 46%, #0B2C33 100%);
  color: #E7EEF2;
  padding: 96px 0 84px;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,.035) 0 1px, transparent 1px 26px);
}
.hero > .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(34px, 5vw, 58px); color: #fff; letter-spacing: -.02em; margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: #F0C98A; }
.hero .lead { color: #C6D6DF; font-size: 20px; max-width: 620px; }
.hero .btn-row { margin-top: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 34px; }
.hero-badge {
  font-size: 12.5px; font-weight: 600; letter-spacing: .01em;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.17); color: #DCE8EE;
}
.hero-badge b { color: #F0C98A; font-weight: 700; }

/* hero side card — the Two Bills visual */
.bill-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-l);
  padding: 26px; backdrop-filter: blur(6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.bill-card h3 { font-size: 15px; color: #fff; margin-bottom: 4px; font-family: var(--sans); letter-spacing: .02em; }
.bill-card .bill-sub { font-size: 12.5px; color: #93A6B2; margin-bottom: 20px; }
.bill {
  border-radius: 12px; padding: 15px 17px; margin-bottom: 11px;
  border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.045);
}
.bill b { display: block; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 5px; }
.bill .amt { font-family: var(--serif); font-size: 23px; font-weight: 700; color: #fff; line-height: 1.2; }
.bill .to { font-size: 12.5px; margin-top: 4px; }
.bill.b1 b { color: #8FC7C1 } .bill.b1 .to { color: #9DB3BE }
.bill.b2 b { color: #F0C98A } .bill.b2 .to { color: #9DB3BE }
.bill-note { font-size: 12.5px; color: #93A6B2; margin: 14px 0 0; line-height: 1.6; }

/* ============================================================
   Stat strips
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { background: var(--white); padding: 24px 20px; }
.stat .n { font-family: var(--serif); font-size: clamp(26px, 3vw, 34px); font-weight: 700; color: var(--ink); line-height: 1.1; }
.stat .n span { color: var(--accent); }
.stat .l { font-size: 13.5px; color: var(--muted); margin-top: 7px; line-height: 1.5; }
.stat .src { font-size: 11px; color: var(--muted-2); margin-top: 7px; }
.src-note { font-size: 12.5px; color: var(--muted-2); margin-top: 14px; line-height: 1.6; }

/* ============================================================
   Cards & grids
   ============================================================ */
.grid { display: grid; gap: 22px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  transition: .24s cubic-bezier(.4,0,.2,1);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); border-color: var(--line-2); }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card h4 { font-size: 16px; margin-bottom: 8px; }
.card p:last-child { margin-bottom: 0; }
.card .small { color: var(--muted); }

.card-accent { border-top: 3px solid var(--accent); }
.card-teal { border-top: 3px solid var(--teal); }

.card-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
  background: var(--accent-sf); color: var(--accent-2); margin-bottom: 13px;
}
.card-tag.teal { background: var(--teal-sf); color: var(--teal); }
.card-tag.ink { background: var(--cream-2); color: var(--ink-3); }

/* plain, bordered list panel */
.panel {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.panel-body { padding: 26px; }
.panel-head { padding: 18px 26px; border-bottom: 1px solid var(--line); background: var(--cream); }
.panel-head h3 { margin: 0; font-size: 17px; }

/* dark card variant */
.card-dark {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius); padding: 26px;
}
.card-dark h3, .card-dark h4 { color: #fff; }
.card-dark p { color: #B7C7D2; }
.card-dark .card-tag { background: rgba(240,201,138,.15); color: #F0C98A; }

/* ============================================================
   Chips / status
   ============================================================ */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 650; letter-spacing: .03em;
  padding: 4px 11px; border-radius: 999px; white-space: nowrap;
  border: 1px solid transparent; line-height: 1.5;
}
.chip.ok    { background: var(--teal-sf); color: var(--ok); border-color: #C6E2DC; }
.chip.pend  { background: #FBF1DF; color: var(--warn); border-color: #EBD9B4; }
.chip.na    { background: #EFEAE2; color: var(--na); border-color: var(--line-2); }
.chip.dot::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ============================================================
   Tables
   ============================================================ */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
table.data { width: 100%; border-collapse: collapse; min-width: 660px; font-size: 14.5px; }
table.data th {
  text-align: left; font-family: var(--sans); font-size: 11.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  padding: 14px 18px; background: var(--cream); border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
table.data td { padding: 15px 18px; border-bottom: 1px solid var(--line); vertical-align: top; line-height: 1.62; }
table.data tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover { background: #FCFAF7; }
table.data td b { color: var(--ink); }
table.data .num { font-family: var(--serif); font-weight: 700; font-size: 16px; color: var(--accent-2); white-space: nowrap; }
.table-cap { font-size: 12.5px; color: var(--muted-2); margin-top: 12px; }

/* ============================================================
   Steps / timeline
   ============================================================ */
.steps { display: grid; gap: 0; grid-template-columns: repeat(3, 1fr); }
.step {
  position: relative; padding: 26px 24px 26px 0;
  border-top: 2px solid var(--line-2);
}
.step .k {
  font-family: var(--serif); font-size: 13px; font-weight: 700; letter-spacing: .1em;
  color: var(--accent-2); margin-bottom: 8px;
}
.step h3 { font-size: 18.5px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); margin-bottom: 0; }

.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: ''; position: absolute; left: 9px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--teal));
  opacity: .45; border-radius: 2px;
}
.tl-item { position: relative; padding-bottom: 30px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ''; position: absolute; left: -30px; top: 8px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--white); border: 2.5px solid var(--accent);
}
.tl-when {
  font-family: var(--sans); font-size: 11.5px; font-weight: 700; letter-spacing: .11em;
  text-transform: uppercase; color: var(--accent-2); margin-bottom: 5px;
}
.tl-item h4 { font-size: 17.5px; margin-bottom: 6px; }
.tl-item p { font-size: 14.5px; color: var(--muted); margin-bottom: 0; }
.tl-item ul { font-size: 14.5px; color: var(--muted); margin-bottom: 0; }

/* ============================================================
   Itinerary cards (D1–D4)
   ============================================================ */
.itin { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.itin-day {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; display: flex; flex-direction: column;
}
.itin-day .d {
  font-family: var(--serif); font-size: 13px; font-weight: 700; letter-spacing: .1em;
  color: var(--accent-2); margin-bottom: 6px;
}
.itin-day h4 { font-size: 16.5px; margin-bottom: 9px; }
.itin-day p { font-size: 13.5px; color: var(--muted); margin-bottom: 0; line-height: 1.65; }

/* ============================================================
   Value breakdown list
   ============================================================ */
.val-list { list-style: none; margin: 0; padding: 0; }
.val-list li {
  display: flex; gap: 18px; align-items: baseline;
  padding: 15px 0; border-bottom: 1px dashed var(--line);
}
.val-list li:last-child { border-bottom: 0; }
.val-list .lbl { flex: 1; }
.val-list .lbl b { display: block; font-size: 15.5px; font-weight: 600; }
.val-list .lbl span { font-size: 13.5px; color: var(--muted); line-height: 1.6; display: block; margin-top: 2px; }
.val-list .amt {
  font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--ink);
  white-space: nowrap;
}
.val-list li.total { border-top: 2px solid var(--ink); border-bottom: 0; padding-top: 18px; margin-top: 4px; }
.val-list li.total .lbl b { font-size: 17px; }
.val-list li.total .amt { color: var(--accent-2); font-size: 22px; }

/* ============================================================
   Two-bills explainer
   ============================================================ */
.bills-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.bill-box { border-radius: var(--radius-l); padding: 30px; position: relative; overflow: hidden; }
.bill-box.a { background: linear-gradient(160deg, #F1F7F6, #E7F1EF); border: 1px solid #CFE4E0; }
.bill-box.b { background: linear-gradient(160deg, #FCF5EA, #F7EBD8); border: 1px solid #EBD9B4; }
.bill-box .who {
  font-size: 11.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 12px;
}
.bill-box.a .who { color: var(--teal) } .bill-box.b .who { color: var(--accent-2) }
.bill-box h3 { font-size: 23px; margin-bottom: 12px; }
.bill-box ul { margin-bottom: 0; font-size: 14.5px; }
.bill-box .bill-to {
  margin-top: 18px; padding-top: 15px; border-top: 1px dashed rgba(0,0,0,.13);
  font-size: 13.5px; color: var(--muted);
}
.bill-box .bill-to b { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 3px; }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 44px 20px 0; position: relative;
  font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--ink);
  transition: .18s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-2); }
.faq-item summary::after {
  content: ''; position: absolute; right: 6px; top: 29px;
  width: 11px; height: 11px; border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(45deg); transition: .22s; opacity: .75;
}
.faq-item[open] summary::after { transform: rotate(-135deg); top: 32px; }
.faq-item .faq-body { padding: 0 60px 24px 0; font-size: 15.5px; color: #43545F; }
.faq-item .faq-body p:last-child, .faq-item .faq-body ul:last-child { margin-bottom: 0; }

/* ============================================================
   Callout
   ============================================================ */
.callout {
  border-left: 3px solid var(--accent); background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px;
  font-size: 15px; line-height: 1.72;
}
.callout.ink { border-left-color: var(--ink); background: #F4F7F9; }
.callout.teal { border-left-color: var(--teal); background: var(--teal-sf); }
.callout.warn { border-left-color: var(--warn); background: #FDF6E9; }
.callout p:last-child { margin-bottom: 0; }
.callout b { color: var(--ink); }

.banner {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 20px; border-radius: var(--radius-s); font-size: 14.5px; line-height: 1.65;
}
.banner.warn { background: #FDF3E2; border: 1px solid #EBD9B4; color: #6E4E13; }
.banner.info { background: #EFF6F5; border: 1px solid #CFE4E0; color: #1D5752; }
.banner b { display: block; margin-bottom: 2px; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: linear-gradient(140deg, var(--ink) 0%, #123A4E 55%, var(--teal) 140%);
  color: #fff; border-radius: var(--radius-l); padding: 54px 48px; position: relative; overflow: hidden;
}
.cta-band::after {
  content: ''; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px;
  border-radius: 50%; background: radial-gradient(circle, rgba(194,135,59,.30), transparent 68%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(26px, 3.2vw, 36px); color: #fff; }
.cta-band p { color: #C2D2DC; font-size: 17px; max-width: 620px; }
.cta-band .btn-row { margin-top: 26px; }

/* ============================================================
   Form
   ============================================================ */
.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 34px; box-shadow: var(--shadow-s);
}
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 650; color: var(--ink-3); letter-spacing: .01em; }
.field label .req { color: var(--accent-2); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; color: var(--text);
  padding: 11px 14px; border: 1px solid var(--line-2); border-radius: var(--radius-s);
  background: var(--white); transition: .18s; width: 100%;
}
.field textarea { min-height: 118px; resize: vertical; line-height: 1.65; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(194,135,59,.14);
}
.field .hint { font-size: 12.5px; color: var(--muted-2); }
.form-note { font-size: 13px; color: var(--muted); margin-top: 18px; line-height: 1.65; }
.form-status {
  margin-top: 18px; padding: 14px 18px; border-radius: var(--radius-s); font-size: 14.5px;
  background: var(--teal-sf); border: 1px solid #CFE4E0; color: var(--ok); display: none;
}
.form-status.show { display: block; }

/* ============================================================
   Footer
   ============================================================ */
.site-foot { background: var(--ink); color: #93A6B2; padding: 60px 0 30px; font-size: 14px; }
.site-foot h4 { color: #fff; font-size: 13px; font-family: var(--sans); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; font-weight: 700; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px; }
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin-bottom: 9px; }
.site-foot a { color: #93A6B2; transition: .18s; }
.site-foot a:hover { color: #F0C98A; }
.foot-brand { color: #C6D6DF; font-size: 14.5px; line-height: 1.7; }
.foot-brand .brand-mark { margin-bottom: 14px; }
.foot-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12.5px; color: #7E909B;
}
.disclaimer {
  font-size: 12.5px; color: #7E909B; line-height: 1.7; margin-top: 26px;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1);
}

/* ============================================================
   Reveal animation
   ============================================================ */
/* Reveal animation — gated behind .js so content is never hidden without JS */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s cubic-bezier(.4,0,.2,1); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 72px 0 64px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .itin { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .g4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .main-nav {
    display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0; padding: 10px 18px 18px;
    box-shadow: var(--shadow-m); max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 10px; font-size: 16px; border-bottom: 1px solid var(--cream-2); border-radius: 0; }
  .main-nav a:last-child { border-bottom: 0; }
  .burger { display: flex; }
  .head-actions { margin-left: auto; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .bills-wrap { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .g2, .g3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .itin { grid-template-columns: 1fr; }
  .step { padding: 22px 0; }
  .hero-badges { gap: 7px; }
  .cta-band { padding: 36px 26px; border-radius: var(--radius); }
  .form-card { padding: 24px; }
  .foot-grid { grid-template-columns: 1fr; }
  .val-list li { flex-direction: column; gap: 4px; }
  .head-inner { padding: 0 20px; }
  .brand-text span { display: none; }
}

/* ============================================================
   Print / handoff
   ============================================================ */
@media print {
  .site-head, .site-foot, .cta-band, .burger { display: none !important; }
  body { background: #fff; color: #000; }
  .bg-ink { background: #fff !important; color: #000 !important; }
  .bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #000 !important; }
}
