/* ============================================================
   PARTNER WITH CARE — MAIN STYLESHEET
   Brand Style Guide V2, May 2026
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --navy:      #01377D;
  --navy-dark: #012A5E;
  --blue:      #009DD1;
  --green:     #7ED348;
  --white:     #FFFFFF;
  --charcoal:  #222B36;
  --slate:     #5A6573;
  --mist:      #EAF4FA;
  --leaf:      #EFF9E6;

  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius:    14px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(1,55,125,.10);
  --shadow-lg: 0 12px 48px rgba(1,55,125,.16);
  --ease:      cubic-bezier(.22,1,.36,1);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container    { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.container-sm { max-width:  860px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 600px) {
  .container, .container-sm { padding: 0 20px; }
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.4rem, 5vw,   4rem);  font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem);font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2vw,   1.5rem);font-weight: 700; }
h4 { font-size: 1rem;   font-weight: 700; }
h5 { font-size: .85rem; font-weight: 700; }

p { line-height: 1.7; }
.lead { font-size: 1.1rem; color: var(--slate); line-height: 1.75; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow.green  { color: var(--green); }
.eyebrow.white  { color: rgba(255,255,255,.65); }
.eyebrow.slate  { color: var(--slate); }

.accent       { color: var(--green); }
.text-navy    { color: var(--navy); }
.text-blue    { color: var(--blue); }
.text-white   { color: #fff; }
.text-center  { text-align: center; }

/* ── SECTION HEAD ───────────────────────────────────────────── */
.section-head            { margin-bottom: 56px; }
.section-head h2         { margin-bottom: 14px; }
.section-head.center     { text-align: center; }
.section-head.center .lead { max-width: 640px; margin: 0 auto; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: -.01em;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .2s;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover  { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn:active { transform: translateY(0); }

.btn-primary        { background: var(--navy);  color: #fff; }
.btn-primary:hover  { background: var(--navy-dark); }
.btn-green          { background: var(--green); color: var(--navy); }
.btn-green:hover    { background: #6dc23a; }
.btn-outline        { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover  { background: var(--navy); color: #fff; }
.btn-outline-white  { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-sm { padding: 10px 20px; font-size: .82rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* ── NAV ────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(1,55,125,.07);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(1,55,125,.12); }

.topbar {
  background: var(--navy);
  padding: 6px 40px;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  font-size: .75rem;
  font-family: var(--font-body);
  color: rgba(255,255,255,.7);
}
.topbar a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s; }
.topbar a:hover { color: #fff; }
@media (max-width: 600px) { .topbar { padding: 6px 20px; } }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 600px) { .nav-inner { padding: 0 20px; } }

.brand-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand-link img { height: 34px; width: auto; }

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-links a:hover         { background: var(--mist); color: var(--navy); }
.nav-links a.active,
.nav-links a[aria-current] { color: var(--navy); font-weight: 600; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .875rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -.01em;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; transition: .2s; }
@media (max-width: 840px) {
  .nav-links   { display: none; }
  .nav-phone   { display: none; }
  .nav-toggle  { display: flex; margin-left: auto; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 104px; left: 0; right: 0;
    background: #fff;
    padding: 16px 24px 24px;
    border-bottom: 1px solid #eee;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    z-index: 800;
  }
  .nav-links.open a { padding: 12px 16px; font-size: 1rem; }
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 104px;
}
.hero-sm { min-height: 62vh; }

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    rgba(1,55,125,.9) 0%,
    rgba(1,55,125,.6) 50%,
    rgba(1,55,125,.15) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-block: 80px;
}
@media (max-width: 840px) {
  .hero-grid { grid-template-columns: 1fr; padding-block: 48px; }
}

.hero-copy { color: #fff; }
.hero-copy h1 { color: #fff; margin-bottom: 20px; }
.hero-copy .lead { color: rgba(255,255,255,.85); margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Squiggle SVG decoration */
.squiggle { position: absolute; pointer-events: none; z-index: 1; }

/* ── LIVE BUDGET CARD ───────────────────────────────────────── */
.budget-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(1,55,125,.25);
  padding: 28px;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.bc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.live-badge {
  background: var(--green);
  color: var(--navy);
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: .06em;
}
.bc-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}
.bc-sub { font-size: .82rem; color: var(--slate); margin-bottom: 16px; }
.bc-bar {
  height: 6px;
  background: #eee;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 20px;
}
.bc-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  width: 49%;
  transition: width 1.2s var(--ease);
}
.bc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid #f0f0f0;
  font-size: .84rem;
  color: var(--charcoal);
}
.status-pill {
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.pill-paid      { background: var(--leaf);   color: #2d7a0a; }
.pill-scheduled { background: #FFF3CD;        color: #856404; }
.pill-ready     { background: var(--mist);    color: var(--navy); }
.bc-badge {
  margin-top: 14px;
  background: var(--leaf);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
}
.badge-dot {
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── STAT BAND ──────────────────────────────────────────────── */
.stat-band { background: var(--blue); padding: 60px 0; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 700px) { .stat-grid { grid-template-columns: repeat(2,1fr); } }
.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.8rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-label { font-size: .82rem; color: rgba(255,255,255,.75); }

/* ── USP CARDS ──────────────────────────────────────────────── */
.usp-section { padding: 96px 0; }
.usp-section.bg-mist { background: var(--mist); }
.usp-section.bg-white { background: var(--white); }

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 24px;
}

.usp-card {
  background: #fff;
  border: 1.5px solid rgba(1,55,125,.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s;
}
.usp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.usp-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.usp-card:hover::before { transform: scaleX(1); }

.usp-icon {
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin-bottom: 20px;
  /* icons have transparent bg — display cleanly on any bg */
}
.usp-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.05rem; }
.usp-card p  { font-size: .9rem; color: var(--slate); line-height: 1.65; }

/* ── PARTIES / FOUR PARTIES SECTION ────────────────────────── */
.parties-section { background: var(--navy); padding: 96px 0; }
.parties-section .section-head h2  { color: #fff; }
.parties-section .section-head .lead { color: rgba(255,255,255,.75); }

.parties-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
@media (max-width: 900px) { .parties-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .parties-grid { grid-template-columns: 1fr; } }

.party-card {
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: background .25s, transform .25s var(--ease);
}
.party-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.party-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  color: rgba(255,255,255,.08);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
}
.party-icon {
  width: 64px; height: 64px;
  object-fit: contain;
  margin-bottom: 16px;
}
.party-card h3 { color: #fff; font-size: 1rem; margin-bottom: 10px; }
.party-card p  { color: rgba(255,255,255,.65); font-size: .86rem; line-height: 1.6; }

.thesis-banner {
  margin-top: 48px;
  background: rgba(126,211,72,.12);
  border: 1px solid rgba(126,211,72,.3);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  text-align: center;
  line-height: 1.6;
}
.thesis-banner .accent { color: var(--green); }

/* ── COMPARISON TABLE ───────────────────────────────────────── */
.compare-section { padding: 96px 0; background: var(--mist); }

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 860px) { .compare-grid { grid-template-columns: 1fr; } }

.compare-col       { background: #fff; padding: 36px; border-right: 1px solid #eee; }
.compare-col:last-child { border-right: none; }
.compare-col.us    { background: var(--navy); }
.compare-col .cml  {
  display: block;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--slate); margin-bottom: 10px;
}
.compare-col.us .cml { color: rgba(255,255,255,.5); }
.compare-col h3 { color: var(--navy); margin-bottom: 20px; font-size: 1.05rem; }
.compare-col.us h3 { color: #fff; }
.compare-col ul  { list-style: none; }
.compare-col li  {
  padding: 11px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: .88rem;
  color: var(--charcoal);
  display: flex; gap: 10px; align-items: flex-start;
  line-height: 1.55;
}
.compare-col.us li { color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.12); }
.compare-col li::before     { content: '→'; color: var(--slate); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.compare-col.us li::before  { content: '✓'; color: var(--green); }

/* ── SPLIT SECTIONS ─────────────────────────────────────────── */
.split-section { padding: 96px 0; }
.split-section.bg-mist { background: var(--mist); }
.split-section.bg-leaf { background: var(--leaf); }
.split-section.bg-green { background: var(--green); }
.split-section.bg-navy  { background: var(--navy); }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-grid.reversed .split-img { order: -1; }
@media (max-width: 800px) {
  .split-grid, .split-grid.reversed { grid-template-columns: 1fr; }
  .split-grid.reversed .split-img { order: 0; }
}

.split-img { position: relative; }
.split-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 460px;
}
.split-img .img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  font-size: .84rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  max-width: 250px;
  line-height: 1.4;
}

.split-copy h2 { margin-bottom: 16px; }
.split-copy p  { margin-bottom: 14px; color: var(--slate); }
.split-copy .lead { color: var(--slate); margin-bottom: 16px; }

.highlight-bar {
  margin-top: 20px;
  background: var(--mist);
  border-left: 4px solid var(--blue);
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
  line-height: 1.5;
}

/* ── CHECKLIST ──────────────────────────────────────────────── */
.checklist { list-style: none; margin-top: 24px; }
.checklist li {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: .92rem;
  line-height: 1.55;
  align-items: flex-start;
}
.checklist li:last-child { border-bottom: none; }
.check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--leaf);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 1px;
}
.check-icon.blue { background: var(--mist); color: var(--navy); }
.checklist li strong { color: var(--navy); }
.checklist li span  { color: var(--slate); font-size: .87rem; display: block; margin-top: 3px; }

/* ── CARD ───────────────────────────────────────────────────── */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(1,55,125,.07);
}
.card.dark {
  background: var(--navy);
  border-color: transparent;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 24px;
}

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, #56c220 100%);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 800px) { .cta-banner { grid-template-columns: 1fr; padding: 40px 32px; } }
.cta-banner h2 { font-size: clamp(1.8rem,3.5vw,2.4rem); color: var(--navy); margin-bottom: 12px; }
.cta-banner p  { color: rgba(1,55,125,.8); font-size: 1rem; }
.cta-banner-actions { display: flex; flex-direction: column; gap: 14px; }

/* ── QUOTE SECTION ──────────────────────────────────────────── */
.quote-section { padding: 96px 0; background: var(--leaf); }
.quote-block   { max-width: 720px; margin: 0 auto; text-align: center; }
.quote-mark    { font-family: var(--font-display); font-size: 5rem; color: var(--green); line-height: .5; display: inline-block; margin-bottom: 20px; }
.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem,3vw,2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 24px;
}
.quote-block cite {
  font-style: normal;
  font-size: .9rem;
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-section { padding: 96px 0; }
.faq-list    { max-width: 760px; margin: 0 auto; }
details.faq  { border-bottom: 1px solid rgba(1,55,125,.1); }
details.faq summary {
  padding: 22px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: color .2s;
  user-select: none;
}
details.faq summary:hover { color: var(--blue); }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform .25s var(--ease);
}
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq p {
  padding: 0 0 22px;
  font-size: .92rem;
  color: var(--slate);
  line-height: 1.75;
}

/* ── FORM ───────────────────────────────────────────────────── */
.form-section { padding: 96px 0; background: var(--navy); }
.form-section h2   { color: #fff; margin-bottom: 12px; }
.form-section .lead { color: rgba(255,255,255,.72); margin-bottom: 48px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-group       { display: flex; flex-direction: column; gap: 7px; }
.form-group.full  { grid-column: 1 / -1; }

.form-group label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.form-group.light label { color: var(--slate); }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 14px 18px;
  color: #fff;
  font-size: .95rem;
  font-family: var(--font-body);
  transition: border-color .2s, background .2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: rgba(255,255,255,.15);
}
.form-group select option { color: var(--charcoal); background: #fff; }

/* Light form variant (contact page) */
.form-group.light input,
.form-group.light select,
.form-group.light textarea {
  background: var(--mist);
  border-color: rgba(1,55,125,.15);
  color: var(--charcoal);
}
.form-group.light input::placeholder,
.form-group.light textarea::placeholder { color: var(--slate); }
.form-group.light input:focus,
.form-group.light select:focus,
.form-group.light textarea:focus {
  border-color: var(--blue);
  background: #fff;
}

/* ── PRICING TABLE ──────────────────────────────────────────── */
.table-wrap { overflow-x: auto; margin-top: 36px; }
.pricing-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.pricing-table th {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  padding: 14px 20px;
  background: var(--mist);
  border-bottom: 2px solid rgba(1,55,125,.12);
}
.pricing-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(1,55,125,.07);
  color: var(--charcoal);
  vertical-align: top;
  line-height: 1.6;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--mist); }
.pricing-table td strong { color: var(--navy); }
.pricing-table td .sub { font-size: .82rem; color: var(--slate); display: block; margin-top: 3px; }

/* ── TIMELINE ───────────────────────────────────────────────── */
.timeline { margin-top: 48px; max-width: 640px; margin-inline: auto; }
.timeline-item { display: flex; gap: 24px; margin-bottom: 36px; }
.timeline-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.timeline-body h4 { color: var(--navy); margin-bottom: 6px; }
.timeline-body p  { font-size: .9rem; color: var(--slate); line-height: 1.7; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: var(--charcoal); padding: 72px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 32px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo { height: 30px; width: auto; margin-bottom: 20px; }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.8; }

.site-footer h4 {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul li a,
.site-footer ul li span {
  font-size: .875rem;
  color: rgba(255,255,255,.62);
  text-decoration: none;
  transition: color .2s;
}
.site-footer ul li a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .78rem;
  color: rgba(255,255,255,.32);
}

/* ── STICKY MOBILE BAR ──────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  padding: 12px 20px;
  z-index: 800;
  text-align: center;
}
@media (max-width: 640px) { .sticky-cta { display: block; } }
.sticky-cta a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ── PROMISE HERO (interior pages) ─────────────────────────── */
.page-hero {
  padding: 136px 0 80px;
  background: var(--navy);
  text-align: center;
}
.page-hero h1     { color: #fff; margin-bottom: 16px; }
.page-hero .lead  { color: rgba(255,255,255,.75); max-width: 580px; margin: 0 auto; }

/* ── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; }
.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .20s; }
.delay-3 { transition-delay: .30s; }
.delay-4 { transition-delay: .40s; }

/* ── UTILITY ────────────────────────────────────────────────── */
.mt-0  { margin-top:  0;    }
.mt-16 { margin-top: 16px;  }
.mt-24 { margin-top: 24px;  }
.mt-32 { margin-top: 32px;  }
.mt-48 { margin-top: 48px;  }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.gap-row { display: flex; gap: 16px; flex-wrap: wrap; }
.gap-row.center { justify-content: center; }

/* ── CIRCLE PHOTO ───────────────────────────────────────────── */
.circle-photo {
  border-radius: 50%;
  width: 380px; height: 380px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
@media (max-width: 560px) { .circle-photo { width: 260px; height: 260px; } }

/* ── NOTEBOOK / CALLOUT ─────────────────────────────────────── */
.callout {
  background: var(--mist);
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  font-size: .92rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.5;
}
.callout.green { background: var(--leaf); border-color: var(--green); }

/* ── DARK BAND ──────────────────────────────────────────────── */
.dark-band {
  background: var(--navy);
  padding: 96px 0;
  text-align: center;
}
.dark-band h2   { color: #fff; max-width: 840px; margin: 0 auto 16px; }
.dark-band .lead { color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto 40px; }

/* ── CONTACT PAGE SPECIFIC ──────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card { margin-bottom: 20px; }
.contact-info-card h4 { color: var(--navy); margin-bottom: 10px; }
.contact-info-card p  { font-size: .88rem; color: var(--slate); line-height: 1.7; }
.contact-info-card a  { color: var(--blue); text-decoration: none; }
.contact-info-card a:hover { text-decoration: underline; }
