:root{
  --ink:#0f2f3a;
  --muted:#5c6b72;
  --bg:#ffffff;
  --tint:#f6fbfc;
  --line:#e7eff2;
  --brand:#1f7ea1;
  --brand2:#2cb5ad;
  --shadow: 0 18px 55px rgba(0,0,0,.08);
  --radius:16px;
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
.container{max-width:1120px;margin:0 auto;padding:0 22px;}

/* Header */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:24px 0; gap:20px;
}
.brand{
  display:flex;
  align-items:center;
}
.brand img{
  height:120px;
  width:auto;
  display:block;
}
.brand .name{font-weight:900;letter-spacing:-.2px;line-height:1.1;}
.brand .tag{font-size:12px;color:var(--muted);margin-top:2px;}
nav{display:flex;align-items:center;gap:18px;flex-wrap:wrap;justify-content:flex-end;}
nav a{font-weight:750;color:var(--ink);opacity:.92;}
nav a:hover{opacity:1;}
.nav-cta{
  padding:10px 14px;border-radius:12px;
  background: linear-gradient(135deg,var(--brand),var(--brand2));
  color:#fff;
  font-weight:950;
  border:1px solid rgba(0,0,0,0);
  box-shadow: 0 10px 26px rgba(31,126,161,.22);
}
.nav-cta:hover{ filter: brightness(.98); }
/* Buttons */
.btn-primary{
  display:inline-flex;align-items:center;justify-content:center;
  gap:10px;
  padding:12px 18px;border-radius:14px;
  background: linear-gradient(135deg,var(--brand),var(--brand2));
  color:#fff;font-weight:900;
  box-shadow: 0 10px 26px rgba(31,126,161,.22);
}
.btn-primary:hover{filter:brightness(.98);}
.btn-secondary{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 18px;border-radius:14px;
  border:1px solid #d6e2e6;background:#fff;font-weight:900;
}
.btn-secondary:hover{border-color:#c7d8dd;}

/* Hero */
.hero{ padding:56px 0 40px; }
.hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:44px;align-items:center;}
h1{font-size:46px;letter-spacing:-1px;line-height:1.05;margin:0 0 14px;}
.lead{font-size:16px;color:var(--muted);margin:0 0 18px;max-width:52ch;}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px;}
.trust{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px;}
.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border:1px solid #dce8ec;border-radius:999px;
  background:#fff;font-weight:800;color:#2b3f46;font-size:13px;
}

/* Sections */
.section{ padding:48px 0; }
.section.tint{background:var(--tint);}
.sectionHead{max-width:820px;margin:0 auto 26px;}
.sectionHead.center{text-align:center;}
h2{font-size:34px;letter-spacing:-.6px;line-height:1.12;margin:0 0 10px;}
.sub{color:var(--muted);margin:0;}

/* Cards */
.grid4{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:24px;}
.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px 18px 16px;
  background:#fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.04);
}
.card h3{margin:0 0 8px;font-size:16px;letter-spacing:-.2px;}
.card p{margin:0;color:var(--muted);}
.card .link{display:inline-block;margin-top:10px;font-weight:900;color:#1b6f8e;}

/* Approach visual */
.approachWrap{
  border-radius:24px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  overflow:hidden;
  padding:22px;
}
.approachWrap img{border-radius:18px;}
.note{margin:14px 0 0;color:var(--muted);font-size:14px;text-align:center;}

/* Pricing */
.pricing{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:24px;}
.priceCard{border:1px solid var(--line);border-radius:var(--radius);padding:18px;background:#fff;text-align:center;box-shadow:0 10px 28px rgba(0,0,0,.04);}
.priceCard .price{font-size:26px;font-weight:950;margin:8px 0 0;}

/* CTA band */
.ctaBand{
  background: linear-gradient(135deg,var(--brand),var(--brand2));
  color:#fff;
  padding:64px 0;
  text-align:center;
}
.ctaBand h2{color:#fff;}
.ctaBand .sub{color:rgba(255,255,255,.9);}
.ctaBand .ctaRow{margin-top:18px;display:flex;gap:12px;justify-content:center;flex-wrap:wrap;}
.ctaBand .btn-secondary{background:rgba(255,255,255,.14);border-color:rgba(255,255,255,.35);color:#fff;}

/* Forms */
.formGrid{display:grid;grid-template-columns:1fr 1fr;gap:22px;align-items:start;}
.formCard{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  background:#fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.04);
}
.formCard label{display:block;font-weight:900;margin:12px 0 6px;}
.formCard input,.formCard select,.formCard textarea{
  width:100%;padding:12px;border-radius:12px;
  border:1px solid #d6e2e6;background:#fbfeff;
}
.formCard button{border:0;cursor:pointer;margin-top:14px;}
.small{font-size:13px;color:var(--muted);}

/* Footer */
footer{border-top:1px solid var(--line);padding:26px 0;background:#fff;}
.footer{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:10px;
}
.footer .muted{
  color:var(--muted);
  text-align:center;
  margin:6px auto 0;
  font-size:15px;
  line-height:1.4;
}

@media (min-width:900px){
  .footer .muted{ white-space:nowrap; }
}

@media (max-width:899px){
  .footer .muted{ white-space:normal; }
}
.footerLinks{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  font-weight:900;
  justify-content:center;
}
.footerLinks a:hover{text-decoration:underline;}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr;gap:26px;}
  .grid4{grid-template-columns:repeat(2,1fr);}
  .pricing{grid-template-columns:repeat(2,1fr);}
  .formGrid{grid-template-columns:1fr;}
  h1{font-size:40px;}
}
@media (max-width: 560px){
  .grid4,.pricing{grid-template-columns:1fr;}
  .brand img{
    height:100px;
    width:auto;
    display:block;
  }
  nav{gap:12px;}
}

/* Hero right-side card (replaces diagram in hero) */
.heroCard{
  border-radius:24px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  padding:22px;
}
.heroCardTop{ display:flex; flex-direction:column; gap:10px; margin-bottom:14px; }
.heroCardBadge{
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background: rgba(44,181,173,.12);
  color: rgba(15,47,58,.92);
  font-weight:950;
  width: fit-content;
  font-size: 13px;
}
.heroCardTitle{ font-weight:950; font-size:18px; letter-spacing:-.3px; }
.heroCardGrid{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.heroMini{
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px;
  background: #fbfeff;
}
.heroMiniK{ font-size:12px; color: var(--muted); font-weight:850; }
.heroMiniV{ margin-top:4px; font-size:14px; font-weight:950; }
.heroCardNote{ margin-top:14px; color: var(--muted); font-size: 14px; }

/* MTD highlight band */
.mtdBand{
  background: linear-gradient(180deg, rgba(31,126,161,.10), rgba(44,181,173,.08));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.mtdGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items:start;
}
.mtdKicker{
  font-weight:950;
  color: rgba(15,47,58,.78);
  letter-spacing: .2px;
  margin-bottom: 8px;
}
.mtdPoints{
  display:grid;
  gap:12px;
}
.mtdPoint{
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  padding:14px;
  box-shadow: 0 10px 28px rgba(0,0,0,.04);
}
.mtdPoint strong{ display:block; font-weight:950; margin-bottom:4px; }
.mtdPoint span{ color: var(--muted); font-size: 14px; }

@media (max-width: 980px){
  .mtdGrid{ grid-template-columns: 1fr; }
}

/* WhatsApp floating button */
.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  background:#25D366;
  color:#fff;
  font-weight:900;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  z-index:999;
}
.wa-float:hover{ filter: brightness(.98); }
.wa-icon{ display:inline-flex; }
.wa-text{ font-size:14px; letter-spacing:-.2px; }
@media (max-width: 520px){
  .wa-text{ display:none; }
  .wa-float{ padding:12px; }
}

/* Calendly embed styling */
.calendly-inline-widget{
  border:1px solid #e9eef0;
  border-radius:18px;
  overflow:hidden;
  background:#fff;
}
/* Simple steps grid (Home) */
.stepsGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.stepCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.04);
}
.stepNum{
  width:34px;
  height:34px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
  background: rgba(31,126,161,.12);
  color: rgba(15,47,58,.92);
  margin-bottom: 10px;
}
.stepCard h3{ margin:0 0 6px; font-size:16px; }
.stepCard p{ margin:0; color: var(--muted); font-size: 14px; }

@media (max-width: 980px){
  .stepsGrid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .stepsGrid{ grid-template-columns: 1fr; }
}

/* Brand block (About page / method section) */
.brandBlock{
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 auto 18px;
  max-width: 980px;
}
.brandBlock img{
  width:46px;
  height:auto;
  display:block;
}
.brandText h3{
  margin:0;
  font-size:20px;
  font-weight:900;
  letter-spacing:-.2px;
}
.brandText p{
  margin:0;
  font-size:14px;
  color: var(--muted);
  font-weight:700;
}

/* Stronger method reassurance note */
.methodNote{
  font-size:18px;
  font-weight:950;
  text-align:center;
  margin-top:18px;
  color: rgba(15,47,58,.92);
}

.approachWrap .methodNote{ max-width: 70ch; margin-left:auto; margin-right:auto; }


.methodSteps{
display:flex;
justify-content:center;
gap:12px;
margin-top:10px;
margin-bottom:10px;
flex-wrap:wrap;
}

.methodSteps span{
background:#f3f6fb;
padding:10px 14px;
border-radius:999px;
font-size:15px;
font-weight:850;
color:#2f3e45;
border:1px solid #d9e3f2;
letter-spacing:.2px;
line-height:1;
}

.aboutStrap{
  max-width:820px;
  margin:16px auto 0;
  text-align:center;
  font-size:22px;
  font-weight:700;
  line-height:1.35;
  color:#1e2f3f;
}
.aboutStrap .line2{
  display:block;
  margin-top:6px;
  font-weight:800;
}


.methodSteps span:hover{ background:#eaf1ff; }

.brandLogo{min-width:auto;}
.miniTitle{
  margin: 12px 0 6px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .2px;
  text-transform: uppercase;
  color: rgba(15,47,58,.75);
}


.solutionsGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.miniList{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}
.miniList li{ margin: 6px 0; }

.textLink{
  display:inline-block;
  margin-top: 12px;
  font-weight: 800;
  color: rgba(31,126,161,1);
}

.ctaBand{
  margin-top: 18px;
  border:1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  background: #fbfeff;
}

.ctaBand h3{ margin:0; font-size: 18px; }
.ctaActions{ display:flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 1080px){
  .solutionsGrid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .solutionsGrid{ grid-template-columns: 1fr; }
  .ctaBand{ flex-direction: column; align-items: flex-start; }
}


/* --- Final polish --- */
.section{ padding:48px 0; }
.section.tight{ padding:36px 0; }
.section + .section{ padding:48px 0; }

.sectionHead.center{ text-align:center; }
.sectionHead h1, .sectionHead h2{ letter-spacing: -0.02em; }

/* Subtle divider helper */
.dividerLine{ height:1px; width:100%; background: rgba(12,32,41,.08); margin: 14px 0 0; border-radius: 999px; }

/* Highlight band */
.tint{
  background: radial-gradient(900px 420px at 50% 0%, rgba(44,181,173,.10), rgba(44,181,173,0) 70%),
              linear-gradient(180deg, rgba(31,126,161,.07), rgba(255,255,255,0) 45%);
}

/* Make cards feel more premium */
.card{
  box-shadow: 0 12px 36px rgba(11, 33, 41, .06);
}
.card h3{ margin-top:0; }

/* Better tables */
.mtdTable th, .mtdTable td{ padding: 12px 14px; }

/* Improve header spacing on small screens */
@media (max-width: 720px){
  .section{ padding:48px 0; }
}

.solutionsNote{margin:14px auto 0;max-width:860px;text-align:center;color:var(--muted);font-size:14px;}

#mtd.section{ padding:48px 0; }


/* Homepage redesign tweaks */
.heroNote{
  margin-top: 10px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 52ch;
}

.pricingCta{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
}

.pricingCta h3{ margin:0 0 6px; font-size: 18px; }
.pricingCta .muted{ margin:0; }

/* Reduce vertical gap between hero and next sections slightly */
.section.tight{ padding:36px 0; }

.logo img{ height:48px; width:auto; }

.header{ padding:14px 0; }

/* Highlight final consultation CTA */
.pricingCta{
  margin-top:10px;
  padding:28px 32px;
  border-radius:12px;
  background:linear-gradient(180deg,#eef6f7,#f7fbfc);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.pricingCta h3{
  font-size:22px;
  margin-bottom:6px;
  font-weight:700;
}

.pricingCta p{
  font-size:15px;
  color:#5c6b73;
  max-width:540px;
}

.pricingCta .btn-primary{
  padding:14px 22px;
  font-size:15px;
}

/* reduce big gap after pricing section */
.pricing-section{
  padding-bottom:28px;
}
.heroTrust{
  margin-top:10px;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 60ch;
  font-weight: 600;
}
.trustGrid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  margin-top: 18px;
}
.trustItem{
  background: #fff;
  border: 1px solid rgba(12,32,41,.08);
  border-radius: 12px;
  padding: 14px 14px;
  box-shadow: 0 10px 28px rgba(11,33,41,.05);
}
.trustItem strong{
  display:block;
  font-size: 14px;
  margin-bottom: 6px;
}
.trustItem span{
  display:block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
@media (max-width: 920px){
  .trustGrid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 520px){
  .trustGrid{ grid-template-columns: 1fr; }
}


/* Hero: soft band like the earlier design */
.hero--band{
  background: radial-gradient(900px 420px at 68% 40%, rgba(30,160,170,.16), rgba(255,255,255,0) 60%),
              radial-gradient(800px 380px at 35% 35%, rgba(44,146,190,.10), rgba(255,255,255,0) 55%);
  border-bottom: 1px solid rgba(12,32,41,.06);
}

/* Floating cards visual */
.heroVisual{
  position: relative;
  width: min(520px, 100%);
  height: 320px;
  margin-left: auto;
}

.floatCard{
  position:absolute;
  background:#fff;
  border: 1px solid rgba(12,32,41,.10);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 18px 50px rgba(11,33,41,.10);
  width: 320px;
}

.fcTop{
  display:flex;
  justify-content: space-between;
  align-items:center;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 10px;
}

.fcTag{
  font-weight: 700;
  color: #1e7e86;
  background: rgba(30,160,170,.10);
  border: 1px solid rgba(30,160,170,.18);
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11.5px;
}

.fcRow{
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
  padding: 5px 0;
  border-top: 1px solid rgba(12,32,41,.06);
}
.fcRow:first-of-type{ border-top: 0; }

.fcRow span{ color: var(--muted); }
.fcRow strong{ font-weight: 700; color: var(--text); }

.fcBar{
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(30,160,170,.75), rgba(44,146,190,.65));
  margin-top: 10px;
}

/* Card positions */
.fc1{ right: 8px; top: 10px; transform: rotate(6deg); width: 340px; }
.fc2{ left: 0; top: 120px; transform: rotate(-7deg); }
.fc3{ right: 0; top: 190px; transform: rotate(4deg); width: 340px; }
.fc4{ left: 60px; top: 40px; transform: rotate(-3deg); width: 300px; }

@media (max-width: 920px){
  .heroVisual{ height: 340px; margin: 10px auto 0; }
  .floatCard{ width: min(340px, 92vw); left: 50%; transform: translateX(-50%); }
  .fc1,.fc2,.fc3,.fc4{ left: 50%; right: auto; transform: translateX(-50%); }
  .fc1{ top: 0; }
  .fc4{ top: 98px; }
  .fc2{ top: 190px; }
  .fc3{ top: 282px; }
}

/* Hero: soft band background */
.hero--band{
  background:
    radial-gradient(900px 420px at 68% 40%, rgba(30,160,170,.16), rgba(255,255,255,0) 60%),
    radial-gradient(800px 380px at 35% 35%, rgba(44,146,190,.10), rgba(255,255,255,0) 55%);
  border-bottom: 1px solid rgba(12,32,41,.06);
}

/* Floating cards visual (hero right) */
.heroVisual{
  position: relative;
  width: min(520px, 100%);
  height: 320px;
  margin-left: auto;
}

.floatCard{
  position:absolute;
  background:#fff;
  border: 1px solid rgba(12,32,41,.10);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 18px 50px rgba(11,33,41,.10);
  width: 320px;
}

.fcTop{
  display:flex;
  justify-content: space-between;
  align-items:center;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 10px;
}

.fcTag{
  font-weight: 700;
  color: #1e7e86;
  background: rgba(30,160,170,.10);
  border: 1px solid rgba(30,160,170,.18);
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11.5px;
}

.fcRow{
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
  padding: 5px 0;
  border-top: 1px solid rgba(12,32,41,.06);
}
.fcRow:first-of-type{ border-top: 0; }

.fcRow span{ color: var(--muted); }
.fcRow strong{ font-weight: 700; color: var(--text); }

.fcBar{
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(30,160,170,.75), rgba(44,146,190,.65));
  margin-top: 10px;
}

/* Card positions */
.fc1{ right: 8px; top: 10px; transform: rotate(6deg); width: 340px; }
.fc2{ left: 0; top: 128px; transform: rotate(-7deg); }
.fc3{ right: 0; top: 204px; transform: rotate(4deg); width: 340px; }
.fc4{ left: 64px; top: 54px; transform: rotate(-3deg); width: 300px; }

@media (max-width: 920px){
  .heroVisual{ height: 360px; margin: 10px auto 0; }
  .floatCard{ width: min(340px, 92vw); left: 50%; transform: translateX(-50%); }
  .fc1,.fc2,.fc3,.fc4{ left: 50%; right: auto; transform: translateX(-50%); }
  .fc1{ top: 0; }
  .fc4{ top: 98px; }
  .fc2{ top: 196px; }
  .fc3{ top: 294px; }
}





.grid2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px;}
.cardLink{display:block;transition:transform .18s ease, box-shadow .18s ease;}
.cardLink:hover{transform:translateY(-3px);box-shadow:var(--shadow);}
.processExplainer{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;margin-top:24px;}
.processExplainer .card{height:100%;}
.quoteBand{align-items:center;}
.seoGrid .card{height:100%;}
@media (max-width: 980px){.grid2,.processExplainer{grid-template-columns:1fr;}nav{gap:12px;}}


/* Homepage redesign v2 */
.brand img{
  height:56px;
}
nav{
  gap:14px;
}
.hero-home{
  padding:72px 0 56px;
  background:
    radial-gradient(900px 480px at 0% 0%, rgba(44,181,173,.10), rgba(44,181,173,0) 62%),
    radial-gradient(760px 420px at 100% 0%, rgba(31,126,161,.12), rgba(31,126,161,0) 58%),
    linear-gradient(180deg,#f8fcfd 0%, #ffffff 72%);
}
.hero-home-grid{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr);
  gap:34px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(31,126,161,.10);
  color:rgba(15,47,58,.88);
  font-size:13px;
  font-weight:900;
  margin-bottom:14px;
}
.hero-copy h1{
  max-width:12.5ch;
  font-size:58px;
  line-height:1.02;
  margin-bottom:16px;
}
.hero-copy .lead{
  font-size:18px;
  max-width:58ch;
  margin-bottom:0;
}
.hero-microproof{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.hero-microproof span{
  display:inline-flex;
  align-items:center;
  padding:9px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid #dce8ec;
  font-size:13px;
  font-weight:850;
}
.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:22px;
}
.statCard{
  padding:16px;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 12px 32px rgba(11,33,41,.05);
}
.statCard strong{
  display:block;
  font-size:15px;
  margin-bottom:6px;
}
.statCard span{
  color:var(--muted);
  font-size:14px;
}
.hero-panel-wrap{position:relative;}
.hero-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:24px;
  box-shadow:0 22px 60px rgba(11,33,41,.10);
}
.panel-top{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
  margin-bottom:18px;
}
.panel-top h2{
  font-size:29px;
  margin-bottom:0;
}
.panel-kicker{
  color:var(--muted);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-bottom:8px;
}
.panel-badge{
  flex:0 0 auto;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(44,181,173,.12);
  font-weight:900;
  font-size:13px;
}
.process-list{
  display:grid;
  gap:14px;
}
.process-item{
  display:grid;
  grid-template-columns:44px 1fr;
  gap:14px;
  align-items:flex-start;
  padding:14px;
  border-radius:18px;
  background:#fbfeff;
  border:1px solid #e8f1f4;
}
.process-num{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
  background:linear-gradient(135deg, rgba(31,126,161,.14), rgba(44,181,173,.18));
}
.process-item strong{
  display:block;
  margin-bottom:4px;
}
.process-item p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}
.panel-note-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:16px;
}
.noteTile{
  padding:14px;
  border-radius:18px;
  background:linear-gradient(180deg,#ffffff,#f7fbfc);
  border:1px solid var(--line);
}
.noteTile span{
  display:block;
  color:var(--muted);
  font-size:13px;
  margin-bottom:4px;
}
.noteTile strong{
  font-size:14px;
}
.section-tight-top{padding-top:20px;}
.service-feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:24px;
}
.serviceFeatureCard{
  display:block;
  padding:24px;
  border-radius:24px;
  background:linear-gradient(180deg,#ffffff,#fbfdff);
  border:1px solid rgba(31,68,96,.08);
  box-shadow:0 14px 36px rgba(11,33,41,.06);
}
.serviceFeatureCard h3{
  margin:0 0 10px;
  font-size:20px;
  letter-spacing:-.03em;
}
.serviceFeatureCard p{
  margin:0;
  color:var(--muted);
}
.serviceIcon{
  width:56px;
  height:56px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
  flex:0 0 auto;
  transition:transform .28s ease, box-shadow .28s ease;
}
.serviceIcon--soft{
  background:linear-gradient(180deg,#eef8fb,#e4f0f5);
  border:1px solid rgba(31,68,96,.10);
  box-shadow:0 8px 20px rgba(14,58,79,.08), inset 0 1px 0 rgba(255,255,255,.92);
}
.serviceIconSvg{
  width:28px;
  height:28px;
  display:block;
}
.serviceIconSvg--check{width:28px; height:28px;}
.serviceIconSvg--check path,
.serviceIconSvg--house path,
.serviceIconSvg--device path,
.serviceIconSvg--device rect,
.serviceIconSvg--briefcase path,
.serviceIconSvg--briefcase rect,
.serviceIconSvg--calculator path,
.serviceIconSvg--calculator rect{
  vector-effect:non-scaling-stroke;
}
.serviceIconSvg--check .stroke-main,
.serviceIconSvg--house .stroke-main,
.serviceIconSvg--device .stroke-main,
.serviceIconSvg--briefcase .stroke-main,
.serviceIconSvg--calculator .stroke-main{stroke:#2a8ccf;}
.serviceIconSvg--check .stroke-accent,
.serviceIconSvg--house .stroke-accent,
.serviceIconSvg--device .stroke-accent,
.serviceIconSvg--briefcase .stroke-accent,
.serviceIconSvg--calculator .stroke-accent{stroke:#8b5cf6;}
.serviceIconSvg--check .stroke-soft,
.serviceIconSvg--house .stroke-soft,
.serviceIconSvg--device .stroke-soft,
.serviceIconSvg--briefcase .stroke-soft,
.serviceIconSvg--calculator .stroke-soft{stroke:#2c8f99;}
.serviceFeatureCard:hover .serviceIcon--soft,
.serviceCardPremium:hover .serviceIcon--soft,
.servicePageHero:hover .serviceIcon--soft{
  transform:translateY(-3px);
  box-shadow:0 14px 24px rgba(17,77,95,.12), inset 0 1px 0 rgba(255,255,255,.94);
}
.serviceCardPremium .serviceIcon{margin-bottom:18px;}
.servicePageHero{
  display:grid;
  gap:18px;
  justify-items:center;
  text-align:center;
}
.servicePageHero .serviceIcon{
  width:64px;
  height:64px;
  border-radius:20px;
  margin-bottom:0;
}
.servicePageHero .serviceIconSvg{width:30px; height:30px;}
.valueStripSection{padding-top:4px;}
.valueStrip{
  border:1px solid var(--line);
  border-radius:28px;
  background:linear-gradient(180deg,#ffffff,#f9fcfd);
  padding:28px;
  box-shadow:0 16px 40px rgba(11,33,41,.05);
  max-width:1060px;
  margin:0 auto;
}
.valueIntro{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:22px;
  align-items:end;
  margin-bottom:18px;
}
.valueIntro h2{margin:0;}
.valueGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.valueCard{
  padding:18px;
  border-radius:20px;
  background:#fff;
  border:1px solid var(--line);
}
.valueCard strong{
  display:block;
  margin-bottom:7px;
}
.valueCard p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}
.refinedSteps .stepCard{
  padding:20px;
  border-radius:20px;
}

.refinedStepsHome .stepCardJourney{
  padding:18px 18px 18px;
}

.stepCardTop{
  display:flex;
  align-items:flex-start;
  justify-content:flex-start;
  gap:12px;
  margin-bottom:14px;
}

.stepIcon{
  width:60px;
  height:60px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(12,32,41,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.88);
  flex:0 0 60px;
  background-repeat:no-repeat;
  background-position:center;
  background-size:30px 30px;
}

.stepIcon svg{
  display:none;
}

.refinedStepsHome .stepNum{
  display:none;
}

.stepIconReview{
  background-color:#eef6fb;
  border-color:#d7e6f2;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='5.5' fill='%23ffffff' stroke='%231f6d89' stroke-width='1.6'/%3E%3Cpath d='M15.5 15.5 20 20' stroke='%231f6d89' stroke-width='1.7' stroke-linecap='round'/%3E%3Cpath d='M8.7 11h4.7' stroke='%2348b7b1' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E");
}

.stepIconRecords{
  background-color:#eef7f2;
  border-color:#d7e9df;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3.5 7.5a2 2 0 0 1 2-2h4l1.6 1.8H18.5a2 2 0 0 1 2 2v7.2a2 2 0 0 1-2 2H5.5a2 2 0 0 1-2-2z' fill='%23f4c95d'/%3E%3Cpath d='M3.5 9.4h17' stroke='%23227c72' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M8 13h5M8 16h7' stroke='%231f6d89' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.stepIconReturn{
  background-color:#fff5ef;
  border-color:#f0dfd1;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 3.8h6l4 4v10.5a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V5.8a2 2 0 0 1 2-2z' fill='%23ffffff' stroke='%231f6d89' stroke-width='1.5'/%3E%3Cpath d='M14 3.8v4h4' fill='%23dff4f2' stroke='%231f6d89' stroke-width='1.5'/%3E%3Cpath d='m9.2 14 1.8 1.8 3.8-4.1' stroke='%2348b7b1' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.stepIconFiled{
  background-color:#eff8f3;
  border-color:#dbeadd;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4v9' stroke='%231f6d89' stroke-width='1.7' stroke-linecap='round'/%3E%3Cpath d='m8.3 8.2 3.7-4 3.7 4' fill='none' stroke='%231f6d89' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5 16.8h9.2' stroke='%231f6d89' stroke-width='1.7' stroke-linecap='round'/%3E%3Cpath d='M17.1 13.7a3.4 3.4 0 1 1 0 6.8 3.4 3.4 0 0 1 0-6.8Z' fill='%2348b7b1'/%3E%3Cpath d='m15.8 17.2.9.9 1.7-1.9' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.mtdGridHome{align-items:center;}
.mtdPointsStrong .mtdPoint{padding:18px;}
.pricingHome .priceCard p{
  margin:10px 0 0;
  color:var(--muted);
  font-size:14px;
}
.featuredPrice{
  position:relative;
  overflow:hidden;
}
.priceTag{
  display:inline-flex;
  margin-bottom:10px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(31,126,161,.10);
  font-size:12px;
  font-weight:900;
}
.consultBand{
  display:flex;
  justify-content:space-between;
  gap:22px;
  align-items:center;
  padding:28px;
  border-radius:24px;
  background:linear-gradient(135deg, rgba(31,126,161,.10), rgba(44,181,173,.12));
  border:1px solid #d7e8ed;
}
.consultBand h2{
  margin-bottom:8px;
}
.consultBand p{
  margin:0;
  max-width:60ch;
}
.consultActions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
@media (max-width: 1100px){
  .hero-copy h1{font-size:50px; max-width:none;}
  .service-feature-grid,.valueGrid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width: 980px){
  .brand img{height:50px;}
  .hero-home-grid,
  .valueIntro{grid-template-columns:1fr;}
  .hero-stats,
  .panel-note-grid,
  .pricingHome{grid-template-columns:repeat(2,1fr);}
  .consultBand{flex-direction:column; align-items:flex-start;}
  .consultActions{justify-content:flex-start;}
}
@media (max-width: 720px){
  .nav{padding:16px 0;}
  .hero-home{padding:44px 0 34px;}
  .hero-copy h1{font-size:40px;}
  .hero-copy .lead{font-size:17px;}
  .panel-top{flex-direction:column;}
}
@media (max-width: 560px){
  .brand img{height:44px;}
  .hero-stats,
  .panel-note-grid,
  .service-feature-grid,
  .valueGrid,
  .pricingHome{grid-template-columns:1fr;}
  .hero-panel,
  .valueStrip,
  .consultBand{padding:20px;}
}


/* Services and About redesign */
.kicker{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(31,126,161,.10);
  color:rgba(15,47,58,.88);
  font-size:13px;
  font-weight:950;
  margin-bottom:12px;
}

.aboutHero,
.servicesHero{
  background:linear-gradient(180deg,#f7fcfd 0%, #ffffff 72%);
}

.aboutHeroGrid,
.serviceSplit{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:32px;
  align-items:start;
}

.aboutVisualCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:12px;
  box-shadow:var(--shadow);
}
.aboutVisualCard img{
  width:100%;
  height:auto;
  display:block;
  border-radius:20px;
}

.premiumProcess{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.processCard{
  position:relative;
  padding-top:58px;
}
.processNum{
  position:absolute;
  top:18px;
  left:18px;
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:rgba(31,126,161,.12);
  font-size:13px;
  font-weight:950;
}
.aboutValues{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.valueCard{min-height:100%;}

.serviceHighlights{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:24px;
}
.serviceHighlight{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow:0 12px 36px rgba(11,33,41,.05);
}
.serviceHighlight strong{
  display:block;
  margin-bottom:6px;
  font-size:16px;
}
.serviceHighlight span{
  color:var(--muted);
  font-size:14px;
}

.serviceDeck{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.serviceCardPremium{
  position:relative;
  padding:22px;
  border-radius:20px;
}
.serviceCardPremium h3{
  font-size:22px;
  margin-bottom:8px;
}
.serviceCardPremium p{
  font-size:15px;
}
.featuredService{
  background:linear-gradient(180deg, rgba(31,126,161,.06), rgba(255,255,255,1) 45%);
}
.serviceTag{
  display:inline-block;
  margin-bottom:12px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(44,181,173,.12);
  font-size:12px;
  font-weight:950;
}
.serviceBulletGrid,
.serviceMiniGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:18px 0 20px;
}
.serviceBullet{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
  box-shadow:0 10px 28px rgba(0,0,0,.04);
}
.serviceBullet strong{
  display:block;
  margin-bottom:4px;
}
.serviceBullet span{
  color:var(--muted);
  font-size:14px;
}
.servicePanel{
  padding:22px;
  border-radius:24px;
}
.servicePanel--insight{
  position:relative;
  margin-top:18px;
  background:linear-gradient(180deg,#f8fbff 0%, #eef5fb 100%);
  border:1px solid #dce7f1;
  border-left:4px solid var(--brand);
  box-shadow:0 16px 38px rgba(10,31,40,.06);
}
.servicePanelEyebrow{
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:#ffffff;
  color:#2c5b72;
  border:1px solid #d8e4ee;
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:12px;
  box-shadow:0 4px 10px rgba(10,31,40,.04);
}
.servicePanel--insight h3{
  margin:0 0 8px;
  font-size:31px;
  line-height:1.08;
}
.servicePanelIntro{
  margin:0;
  color:var(--muted);
  max-width:none;
  font-size:15px;
  line-height:1.6;
}
.serviceMiniGrid--impact{
  margin-top:20px;
}
.heroMini--impact{
  background:rgba(255,255,255,.84);
  border:1px solid #d8e5ef;
  border-radius:18px;
  padding:16px 16px 15px;
  box-shadow:0 8px 20px rgba(10,31,40,.035);
}
.heroMini--impact .heroMiniK{
  color:#48606f;
  font-size:13px;
  margin-bottom:6px;
}
.heroMini--impact .heroMiniV{
  margin-top:0;
  font-size:16px;
  line-height:1.35;
}
.serviceCtaBand{
  margin-top:0;
  background:#fbfeff;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}
.serviceCtaBand .ctaActions{
  justify-content:center;
  width:100%;
}
.serviceCtaBand .sub{
  margin-left:auto;
  margin-right:auto;
}

@media (max-width: 980px){
  .aboutHeroGrid,
  .serviceSplit,
  .premiumProcess,
  .aboutValues,
  .serviceHighlights,
  .serviceDeck{
    grid-template-columns:1fr;
  }
  .servicePanel--insight{
    margin-top:0;
  }
  .servicePanel--insight h3{
    font-size:27px;
  }
  .servicePanelIntro{
    font-size:15px;
    line-height:1.55;
  }
}

@media (max-width: 640px){
  .serviceBulletGrid,
  .serviceMiniGrid{
    grid-template-columns:1fr;
  }
}


/* Final homepage hero with approved journey image */
.hero-home-final{
  padding: 48px 0 34px;
  background: linear-gradient(180deg,#f8fbfc 0%, #ffffff 100%);
}
.hero-home-grid-final{
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(620px, 1.26fr);
  gap: 34px;
  align-items: start;
}
.hero-copy-final h1{
  max-width: 820px;
  font-size: 68px;
  line-height: 0.97;
  letter-spacing: -1.8px;
  margin: 0;
}
.hero-copy-final .lead{
  max-width: 760px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 22px;
}
.hero-support{
  max-width: 760px;
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.55;
}
.hero-actions-final{
  margin-top: 22px;
}
.hero-tags-final{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin-top: 18px;
  max-width: 820px;
}
.hero-tags-final span{
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(23,53,77,.14);
  background:#fff;
  border-radius:999px;
  padding:11px 16px;
  font-size:14px;
  font-weight:800;
  line-height:1;
  box-shadow:0 8px 20px rgba(23,53,77,.05);
}
.hero-tags-final span::before{
  content:"✓";
  margin-right:8px;
  color: var(--teal-700);
  font-weight:900;
}
.hero-image-wrap{
  justify-self:end;
  align-self:start;
  width:min(100%, 1180px);
  margin-top:-6px;
}
.hero-journey-image{
  width:100%;
  height:auto;
  display:block;
  filter: drop-shadow(0 30px 42px rgba(22,50,73,.08));
}
@media (max-width: 1180px){
  .hero-home-grid-final{ grid-template-columns: 1fr; gap: 26px; }
  .hero-copy-final h1{ font-size: 58px; max-width:none; }
  .hero-copy-final .lead, .hero-support{ max-width:none; }
  .hero-image-wrap{ width:min(100%, 1080px); justify-self:center; margin-top:8px; }
}
@media (max-width: 760px){
  .hero-home-final{ padding: 34px 0 22px; }
  .hero-copy-final h1{ font-size: 42px; letter-spacing:-1px; line-height:1; }
  .hero-copy-final .lead{ font-size: 17px; }
  .hero-tags-final{ gap:10px; }
  .hero-tags-final span{ font-size:13px; padding:10px 14px; }
}


/* Final tidy-up helpers */
.muted{color:var(--muted);}
.grey{background:var(--tint);}
.grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;margin-top:24px;}
.hero-buttons{display:flex;gap:12px;flex-wrap:wrap;}
.bullets,.checklist{margin:0;padding-left:20px;color:var(--ink);}
.bullets li,.checklist li{margin:0 0 10px;color:var(--muted);}
.checklist{list-style:none;padding-left:0;display:grid;gap:10px;}
.checklist li{position:relative;padding-left:26px;margin:0;}
.checklist li::before{content:"✓";position:absolute;left:0;top:0;font-weight:900;color:var(--brand);}
.pricingCta{display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap;}
.kicker{display:inline-block;font-size:13px;font-weight:900;letter-spacing:.02em;text-transform:uppercase;color:var(--brand);margin-bottom:10px;}
@media (max-width:980px){.grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width:560px){.grid{grid-template-columns:1fr;}.pricingCta{align-items:flex-start;}}


/* Homepage hero refinement after review */
.brand img{
  height:84px;
}
@media (max-width: 980px){
  .brand img{height:72px;}
}
@media (max-width: 560px){
  .brand img{height:60px;}
}

.hero-home-grid-final{
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 28px 42px;
  align-items: center;
}
.hero-copy-final{
  align-self: center;
}
.hero-copy-final h1{
  max-width: 9.8ch;
  font-size: 72px;
}
.hero-image-wrap{
  justify-self: stretch;
  align-self: center;
  width: 100%;
  margin-top: 0;
}
.hero-journey-image{
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
.hero-detail-band{
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 24px 28px;
  align-items: start;
  margin-top: -12px;
  padding-top: 4px;
}
.hero-detail-copy .lead,
.hero-detail-copy .hero-support{
  max-width: 72ch;
}
.hero-detail-copy .lead{
  margin-top: 0;
}
.hero-detail-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.hero-actions-final{
  margin-top: 0;
}
.hero-tags-final{
  margin-top: 16px;
  max-width: none;
}
@media (max-width: 1180px){
  .hero-home-grid-final{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-copy-final h1{
    max-width: 12ch;
    font-size: 60px;
  }
  .hero-image-wrap{
    justify-self: center;
  }
  .hero-detail-band{
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 0;
  }
}
@media (max-width: 760px){
  .hero-copy-final h1{
    max-width: none;
    font-size: 42px;
  }
}


/* Homepage hero refinement v3 */
.brand img{
  height: 96px;
}
@media (max-width: 980px){
  .brand img{height:78px;}
}
@media (max-width: 560px){
  .brand img{height:62px;}
}

.hero-home-final{
  padding: 42px 0 30px;
}
.hero-home-grid-final{
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 22px 52px;
  align-items: center;
}
.hero-copy-final h1{
  max-width: 10ch;
  font-size: 72px;
  line-height: .96;
}
.hero-image-wrap{
  position: relative;
  justify-self: stretch;
  align-self: center;
  width: 100%;
  max-width: 920px;
  margin: 0 0 0 auto;
  padding: 12px 8px 0;
}
.hero-image-wrap::before{
  content: "";
  position: absolute;
  inset: 4% 0 2% 8%;
  border-radius: 36px;
  background: radial-gradient(circle at 55% 45%, rgba(77,198,214,.12), rgba(77,198,214,0) 58%);
  pointer-events: none;
}
.hero-journey-image{
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 0 0 auto;
  transform: scale(1.08);
  transform-origin: center right;
  filter: drop-shadow(0 26px 42px rgba(22,50,73,.08));
}
.hero-detail-band{
  grid-column: 1 / -1;
  display: block;
  margin-top: 6px;
}
.hero-detail-copy .lead,
.hero-detail-copy .hero-support{
  max-width: none;
}
.hero-detail-copy .lead{
  margin-top: 0;
  margin-bottom: 8px;
}
.hero-detail-copy .hero-support{
  margin-top: 0;
}
.hero-detail-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  margin-top: 18px;
}
.hero-actions-final{
  margin-top: 0;
}
.hero-tags-final{
  margin-top: 14px;
  max-width: 980px;
}
@media (max-width: 1180px){
  .hero-home-grid-final{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-copy-final h1{
    max-width: 12ch;
    font-size: 60px;
  }
  .hero-image-wrap{
    max-width: 820px;
    margin: 0 auto;
    padding-top: 0;
  }
  .hero-journey-image{
    max-width: 780px;
    margin: 0 auto;
    transform: scale(1.02);
    transform-origin: center;
  }
  .hero-detail-actions{
    margin-top: 16px;
  }
}
@media (max-width: 760px){
  .hero-home-final{
    padding: 32px 0 18px;
  }
  .hero-copy-final h1{
    max-width: none;
    font-size: 42px;
  }
  .hero-image-wrap::before{
    inset: 6% 0 0;
  }
  .hero-journey-image{
    transform: none;
  }
}

/* Final polish pass v4 */
.hero-home-grid-final{
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  gap: 20px 56px;
}
.hero-copy-final h1{
  max-width: 9.6ch;
  font-size: 70px;
}
.hero-image-wrap{
  max-width: 980px;
  padding: 4px 0 0;
}
.hero-image-wrap::before{
  inset: 2% -2% 2% 6%;
  border-radius: 42px;
  background:
    radial-gradient(circle at 58% 48%, rgba(77,198,214,.16), rgba(77,198,214,0) 56%),
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0));
}
.hero-journey-image{
  max-width: 940px;
  transform: scale(1.14);
}
.hero-detail-band{
  margin-top: 2px;
}
.hero-detail-copy .lead,
.hero-detail-copy .hero-support{
  max-width: 96ch;
}
.hero-detail-copy .lead{
  font-size: 17px;
}
.hero-support{
  font-size: 17px;
}
.hero-detail-actions{
  margin-top: 20px;
}
.hero-actions-final{
  gap: 14px;
}
.hero-tags-final{
  display:flex;
  flex-wrap:wrap;
  gap: 10px 12px;
  max-width: 1040px;
}
.hero-tags-final span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  border: 1px solid rgba(31,126,161,.16);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(244,250,252,1));
  color: rgba(15,47,58,.95);
  padding: 11px 16px;
  border-radius:999px;
  box-shadow: 0 10px 22px rgba(16,47,64,.05);
  font-size:14px;
  font-weight:800;
  line-height:1.15;
  position: relative;
}
.hero-tags-final span::before{
  content: "✓";
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  flex: 0 0 20px;
  background: linear-gradient(135deg, rgba(31,126,161,.16), rgba(44,181,173,.24));
  box-shadow: inset 0 0 0 1px rgba(31,126,161,.10);
  color: #15748f;
  font-size: 12px;
  font-weight: 900;
  transform: translateY(0);
}
.hero-tags-final span::after{
  content:none;
}

/* Final refinement v5 */
.hero-copy-final .eyebrow{
  font-weight: 950;
  letter-spacing: .02em;
  box-shadow: 0 8px 20px rgba(16,47,64,.05);
}

.aboutHeroGrid{
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 34px 44px;
  align-items: center;
}
.aboutVisualCard{
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  padding: 14px;
  border-radius: 32px;
}
.aboutVisualCard img{
  border-radius: 24px;
  transform: scale(1.05);
  transform-origin: center;
}
.aboutHero .lead{
  max-width: 60ch;
}

.serviceHighlight,
.serviceCardPremium,
.servicePanel,
.valueCard,
.serviceFeatureCard,
.stepCard,
.priceCard{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.serviceHighlight:hover,
.serviceCardPremium:hover,
.servicePanel:hover,
.serviceFeatureCard:hover,
.stepCard:hover,
.priceCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(10,31,40,.08);
  border-color: rgba(31,126,161,.16);
}
nav a[aria-current="page"]{
  color: var(--brand);
}

@media (max-width: 1180px){
  .hero-home-grid-final{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-copy-final h1{
    max-width: 12ch;
    font-size: 58px;
  }
  .hero-image-wrap{
    max-width: 900px;
    margin: 0 auto;
  }
  .hero-journey-image{
    max-width: 860px;
    transform: scale(1.06);
    transform-origin: center;
  }
  .aboutHeroGrid{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .aboutVisualCard{
    max-width: 820px;
  }
}
@media (max-width: 760px){
  .hero-copy-final h1{
    max-width: none;
    font-size: 42px;
  }
  .hero-image-wrap{
    max-width: none;
  }
  .hero-journey-image{
    max-width: 100%;
    transform: none;
  }
  .hero-tags-final span{
    padding: 10px 14px 10px 15px;
    font-size: 13px;
  }
  .hero-tags-final span::after{
    left: 15px;
  }
  .aboutVisualCard img{
    transform: none;
  }
}


/* Final refinement v6 */
.nav{
  padding: 18px 0;
}
nav{
  gap: 16px;
}
.brand img{
  height: 132px;
}
.hero-copy-final .eyebrow{
  font-size: 15px;
  padding: 10px 16px;
}
.hero-home-grid-final{
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 18px 52px;
  align-items: start;
}
.hero-image-wrap{
  max-width: 1040px;
  padding-top: 0;
}
.hero-journey-image{
  max-width: 990px;
  transform: scale(1.18);
  transform-origin: center;
}
.hero-detail-band{
  margin-top: -6px;
}
.hero-detail-copy .lead{
  max-width: none;
  font-size: 16px;
}
.hero-detail-copy .hero-support{
  max-width: none;
}
@media (min-width: 900px){
  .hero-detail-copy .lead{
    white-space: nowrap;
  }
}
@media (max-width: 1180px){
  .brand img{
    height: 122px;
  }
  .hero-home-grid-final{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-image-wrap{
    max-width: 940px;
  }
  .hero-journey-image{
    max-width: 900px;
    transform: scale(1.09);
  }
  .hero-detail-band{
    margin-top: 2px;
  }
}
@media (max-width: 760px){
  .nav{
    padding: 14px 0;
  }
  .brand img{
    height: 108px;
  }
  .hero-copy-final .eyebrow{
    font-size: 13px;
    padding: 8px 12px;
  }
  .hero-detail-copy .lead{
    white-space: normal;
    font-size: 16px;
  }
}


/* Production refresh v10 */
.container{max-width:1280px;}
.nav{padding:16px 0;}
nav{gap:14px;}
.brand img{height:138px;}
.hero-home-final{padding:34px 0 28px;}
.hero-home-grid-final{grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:18px 40px;align-items:start;}
.hero-copy-final h1{max-width:14ch;font-size:62px;line-height:1.01;letter-spacing:-1.4px;}
.hero-copy-final h1 .headline-line{display:block;}
.hero-copy-final h1 .headline-line:last-child{max-width:12.5ch;}
.hero-copy-final .eyebrow{font-size:16px;padding:10px 16px;}
.hero-image-wrap{max-width:1080px;padding-top:2px;}
.hero-journey-image{max-width:1020px;transform:scale(1.14);transform-origin:center;}
.hero-detail-band{margin-top:0;padding-top:0;}
.hero-detail-copy .lead{font-size:16px;max-width:none;margin-bottom:8px;}
.hero-detail-copy .hero-support{max-width:none;}
.hero-detail-actions{margin-top:16px;}
.hero-tags-final{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:10px;max-width:none;overflow:visible;padding-bottom:0;align-items:stretch;}
.hero-tags-final::-webkit-scrollbar{display:none;}
.hero-tags-final span{display:flex;align-items:center;justify-content:center;min-height:42px;padding:9px 12px;font-size:12.5px;gap:8px;white-space:nowrap;text-align:center;width:100%;}
.hero-tags-final span::before{width:18px;height:18px;flex:0 0 18px;font-size:11px;}
.section-tight-top{padding-top:22px;}
.valueStripSection{padding-top:4px;}
.valueIntro .eyebrow{font-size:14px;padding:9px 14px;font-weight:950;}
.valueIntro h2{font-size:38px;}
@media (min-width:900px){.hero-detail-copy .lead{white-space:nowrap;}}
@media (max-width:1180px){.container{max-width:1180px;} .brand img{height:122px;} .hero-home-grid-final{grid-template-columns:1fr;gap:18px;} .hero-copy-final h1{max-width:14ch;font-size:56px;} .hero-image-wrap{max-width:940px;margin:0 auto;} .hero-journey-image{max-width:900px;transform:scale(1.07);} .hero-tags-final{grid-template-columns:repeat(3,minmax(0,1fr));}}
@media (max-width:760px){.container{padding:0 18px;} .brand img{height:100px;} .hero-copy-final .eyebrow{font-size:13px;padding:8px 12px;} .hero-copy-final h1{max-width:none;font-size:42px;letter-spacing:-1px;line-height:1.02;} .hero-journey-image{max-width:100%;transform:none;} .hero-detail-copy .lead{white-space:normal;font-size:16px;} .hero-tags-final{grid-template-columns:repeat(2,minmax(0,1fr));} .hero-tags-final span{font-size:12.5px;padding:9px 12px;}}

.serviceCtaBand--simple{
  padding:40px 32px;
  min-height:0;
  background:linear-gradient(180deg,#fbfeff 0%, #f4f9fc 100%);
  border:1px solid #d7e5ec;
  box-shadow:0 12px 28px rgba(10,31,40,.04);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.serviceCtaBand--simple:hover{
  box-shadow:0 18px 36px rgba(10,31,40,.07);
  border-color:#c7dbe6;
  transform:translateY(-1px);
}
.serviceCtaBand--simple .serviceCtaCopy{
  max-width:780px;
}
.serviceCtaBand--simple h3{
  margin:0 0 6px;
  font-size:28px;
  line-height:1.15;
  font-weight:950;
  color:#1f3b57;
  letter-spacing:-.02em;
}
.serviceCtaBand--simple .sub{
  max-width:640px;
  margin:0 auto;
  font-size:18px;
  line-height:1.5;
  color:#355263;
  font-weight:600;
}
@media (max-width:760px){
  .serviceCtaBand--simple{padding:30px 22px;}
  .serviceCtaBand--simple h3{font-size:24px;}
  .serviceCtaBand--simple .sub{font-size:17px;}
}


/* MTD page refresh */
.hero--simple{
  padding: 68px 0 42px;
  border-bottom: 1px solid rgba(12,32,41,.06);
}
.sectionHead--narrow{
  max-width: 1080px;
}
.sub--hero{
  max-width: 980px;
  margin: 0 auto;
  text-wrap: balance;
}
.sub--hero-sa{
  max-width: 800px;
}
.heroTrustLine{
  margin: 14px auto 0;
  max-width: 800px;
  font-size: 14px;
  font-weight: 800;
  color: #45606c;
}
.sectionIntroMini{
  margin: 10px auto 0;
  max-width: 820px;
  font-size: 15px;
  line-height: 1.55;
  color: #163949;
}
.section--mtd-main{
  padding-top: 40px;
}
.grid3{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.infoGrid--mtd{
  align-items: stretch;
  margin-top: 4px;
}
.infoCard{
  min-height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.infoCard:hover{
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}
.infoCard p{
  margin: 0 0 12px;
}
.infoCard .bullets,
.infoCard .checklist{
  margin: 0;
}
.infoCard--accent{
  background: linear-gradient(180deg, rgba(31,126,161,.07), rgba(44,181,173,.04));
  border-color: #d9e9ee;
}
.miniCopy{
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}

 .mtdTimeline{
  margin-top: 10px;
  display: grid;
  gap: 12px;
}
.mtdTimelineItem{
  position: relative;
  padding: 14px 16px 14px 22px;
  border: 1px solid #d9e6ea;
  border-radius: 16px;
  background: linear-gradient(180deg, #fbfeff, #f7fbfd);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}
.mtdTimelineItem::before{
  content: "";
  position: absolute;
  left: 12px;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
}
.mtdTimelineDate{
  display: inline-flex;
  align-items: center;
  margin-bottom: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(31,126,161,.1);
  color: #14526a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
}
.mtdTimelineAmount{
  display: block;
  color: #12384a;
  font-weight: 900;
  line-height: 1.35;
}
.closingPanel{
  margin-top: 24px;
  padding: 44px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fbfeff;
  text-align: center;
  box-shadow: 0 12px 36px rgba(11,33,41,.05);
  transition: all .3s ease;
}
.closingPanel:hover{
  box-shadow: 0 16px 40px rgba(11,33,41,.08);
}
.closingPanel h2{
  margin: 0 0 8px;
  color: #1f3b57;
}
.closingPanel p{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.downloadPanel{
  margin-top: 22px;
  padding: 22px 24px;
  border-top: 1px solid #e6edf3;
  border-left: 1px solid #dbe8ee;
  border-right: 1px solid #dbe8ee;
  border-bottom: 1px solid #dbe8ee;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fcfe);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
}
.downloadPanel h3{
  margin: 0 0 6px;
  font-size: 20px;
  color: #12384a;
}
.downloadPanel p{
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}
.secondaryCta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid #cfe1e8;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.secondaryCta--download{
  background: linear-gradient(135deg, #3aa6a1, #2f8f95);
  color: #ffffff;
  border-color: transparent;
  font-weight: 900;
  letter-spacing: .2px;
  box-shadow: 0 10px 24px rgba(47,143,149,.22);
}
.secondaryCta--download:hover{
  transform: translateY(-2px);
  background: linear-gradient(135deg, #349d98, #2b858b);
  box-shadow: 0 16px 30px rgba(47,143,149,.28);
}
.secondaryCta--download span{
  font-size: 16px;
  line-height: 1;
}
@media (min-width: 1024px){
  .sub--hero{ white-space: nowrap; }
}
@media (max-width: 1200px){
  .grid3{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px){
  .grid3{ grid-template-columns: 1fr; }
  .hero--simple{ padding: 56px 0 38px; }
  .section--mtd-main{ padding-top: 34px; }
  .downloadPanel{ flex-direction: column; align-items: flex-start; }
  .secondaryCta{ width: 100%; }
}


/* Final consistency refinements v32 */
.aboutHero{
  padding-bottom: 26px;
}
.aboutHero .sub--hero{
  max-width: 58ch;
  white-space: normal;
  text-wrap: pretty;
}
.aboutHero .heroTrustLine,
.aboutHero .sectionIntroMini{
  max-width: 58ch;
}
.aboutHero .trust{
  gap: 10px;
  max-width: 58ch;
}
.aboutHero .pill{
  padding: 8px 14px;
}
.section--about-process{
  padding-top: 18px;
}
.section--closing-tight{
  padding-top: 24px;
  padding-bottom: 34px;
}
.section--mtd-main{
  padding-top: 30px;
}
.infoGrid--mtd{
  margin-top: 0;
}
.closingPanel{
  margin-top: 18px;
}
@media (max-width: 980px){
  .aboutHero .sub--hero,
  .aboutHero .heroTrustLine,
  .aboutHero .sectionIntroMini,
  .aboutHero .trust{
    max-width: 100%;
  }
  .section--about-process{
    padding-top: 24px;
  }
  .section--closing-tight{
    padding-top: 26px;
    padding-bottom: 34px;
  }
}


/* About page hero polish v33 */
.aboutHero .lead{
  margin-bottom: 14px;
}
.aboutHero .heroTrustLine{
  margin-top: 0;
  font-size: 15px;
  font-weight: 900;
  color: #26495a;
}
.heroProofLine{
  margin-top: 12px;
  max-width: 58ch;
  font-size: 15px;
  line-height: 1.5;
  color: #163949;
  font-weight: 700;
}
.heroProofLine span{
  display: inline-block;
  margin: 0 8px;
  color: #5f7a86;
  font-weight: 900;
}
.aboutHero .trust,
.aboutHero .sectionIntroMini{
  display: none;
}
.aboutHero .kicker{
  font-size: 13px;
  letter-spacing: .03em;
}
@media (max-width: 980px){
  .heroProofLine{
    max-width: 100%;
  }
}


/* About hero premium refinement v35 */
.aboutHeroCopy{
  max-width: 600px;
  justify-self: start;
  position: relative;
}
.aboutHeroCopy > *{
  margin-left: 0;
  text-align: left;
}
.aboutHero h1{
  max-width: 12.5ch;
  font-size: clamp(2.8rem, 4.3vw, 4.25rem);
  line-height: 1.06;
  margin-bottom: 18px;
}
.aboutHero .lead,
.aboutHero .heroTrustLine,
.aboutHero .heroProofLine{
  max-width: 540px;
  margin-left: 0;
}
.aboutHero .lead{
  text-wrap: pretty;
  margin-bottom: 14px;
}
.aboutHero .heroTrustLine{
  margin-bottom: 14px;
  font-weight: 800;
}
.aboutHeroCopy::after{
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2a8ca1, #49c0b4);
  margin-top: 18px;
}
.heroProofLine.valueStrip{
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  font-size: 14px;
  line-height: 1.45;
  color: #234558;
  font-weight: 700;
}
.heroProofLine.valueStrip span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.heroProofLine.valueStrip span::before{
  content: "✓";
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(73,192,180,.12);
  color: #2a8ca1;
  font-size: 12px;
  font-weight: 900;
  flex: 0 0 18px;
}
@media (max-width: 980px){
  .aboutHeroCopy,
  .aboutHero .lead,
  .aboutHero .heroTrustLine,
  .aboutHero .heroProofLine{
    max-width: 100%;
  }
  .aboutHero h1{
    max-width: none;
    font-size: clamp(2.2rem, 9vw, 3.4rem);
  }
  .heroProofLine.valueStrip{
    gap: 10px 14px;
  }
}


/* About hero premium refinement v36 */
.aboutHero{
  background: linear-gradient(180deg, #f7fbfd 0%, #f9fcfd 100%);
}
.aboutHeroGrid{
  align-items: center;
  gap: 34px;
}
.aboutHeroCopy{
  max-width: 560px;
  padding-right: 12px;
}
.aboutHero h1{
  max-width: 11.5ch;
  font-size: clamp(3rem, 4.6vw, 4.5rem);
  margin-bottom: 16px;
}
.aboutHero .lead{
  max-width: 52ch;
  margin-bottom: 12px;
}
.aboutHero .heroTrustLine{
  max-width: 52ch;
  margin-bottom: 0;
}
.aboutHeroCopy::after{
  display:none;
}
.aboutVisualCard--premium{
  justify-self: end;
  margin-top: 10px;
}
.aboutVisualCard--premium img{
  max-width: 95%;
  margin-left: auto;
}
.valueStripFull{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap: 14px 34px;
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid #dfeaec;
  max-width: 1040px;
  color:#234558;
  font-size:14px;
  font-weight:800;
}
.valueStripFull span{
  white-space:nowrap;
}
@media (max-width: 980px){
  .aboutHeroGrid{
    gap: 22px;
  }
  .aboutVisualCard--premium{
    margin-top: 0;
    justify-self: stretch;
  }
  .aboutVisualCard--premium img{
    max-width: 100%;
  }
  .valueStripFull{
    justify-content:flex-start;
    gap: 10px 18px;
    padding-top: 14px;
  }
}


/* About hero final alignment v37 */
.aboutHeroGrid{
  align-items:start;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
}
.aboutHeroCopy{
  max-width: 620px;
  padding-right: 8px;
}
.aboutHero .lead{
  max-width: 56ch;
}
.heroTrustLine--center{
  max-width: none;
  text-align: center;
  margin: 18px auto 10px;
  font-size: 15px;
  font-weight: 800;
  color: #26495a;
}
.valueStripFull{
  border-top: 1px solid #dfeaec;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  width: 100%;
  max-width: none;
  justify-content: space-between;
  gap: 14px 22px;
  margin-top: 12px;
  padding: 16px 0 0;
}
.valueStripFull span{
  flex: 1 1 220px;
  justify-content: center;
}
.aboutVisualCard--premium{
  margin-top: 6px;
  align-self: center;
}
.aboutVisualCard--premium img{
  max-width: 100%;
  display:block;
}
.section--about-process{
  padding-top: 12px;
}
@media (max-width: 980px){
  .aboutHeroGrid{
    grid-template-columns:1fr;
  }
  .heroTrustLine--center{
    text-align:left;
    margin: 16px 0 8px;
  }
  .valueStripFull{
    justify-content:flex-start;
    gap:10px 16px;
  }
  .valueStripFull span{
    flex: 0 1 auto;
    justify-content:flex-start;
  }
}


/* About hero refinement v38 */
.aboutHeroGrid{
  align-items: start;
}
.aboutHeroSide{
  display: grid;
  gap: 20px;
  align-self: start;
}
.aboutSupportPanel{
  padding: 24px 26px 26px;
  border: 1px solid #d9e6eb;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  box-shadow: 0 14px 34px rgba(10,31,40,.05);
}
.aboutSupportIntro{
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
.aboutSupportEyebrow{
  margin: 0;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #2a8ca1;
}
.aboutSupportPanel h2{
  margin: 0;
  max-width: 22ch;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #163949;
}
.aboutSupportGrid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.aboutSupportItem{
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 16px 16px 16px 46px;
  border: 1px solid #dce8ed;
  border-radius: 18px;
  background: #fbfeff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92);
  position: relative;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
  color: #234558;
}
.aboutSupportItem::before{
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(73,192,180,.14);
  color: #2a8ca1;
  font-size: 12px;
  font-weight: 900;
}
.heroTrustLine--center,
.valueStripFull{
  display: none;
}
@media (max-width: 980px){
  .aboutHeroSide{
    gap: 16px;
  }
  .aboutSupportPanel{
    padding: 22px 20px;
    border-radius: 22px;
  }
  .aboutSupportGrid{
    grid-template-columns: 1fr;
  }
  .aboutSupportPanel h2{
    max-width: none;
    font-size: clamp(1.35rem, 5vw, 1.7rem);
  }
}


/* About page premium finalisation v39 */
.aboutHero{
  padding-top:56px;
  padding-bottom:34px;
}
.aboutHeroGrid{
  gap:38px;
}
.aboutHeroCopy{
  display:grid;
  align-content:start;
  gap:0;
  padding-top:8px;
}
.aboutHero .lead{
  max-width:53ch;
  margin-bottom:18px;
  font-size:16px;
  line-height:1.72;
  color:#516774;
}
.aboutHeroActions{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  margin:0 0 16px;
}
.aboutHeroLink{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#1c5266;
  font-weight:900;
}
.aboutHeroLink::after{
  content:"→";
  font-size:15px;
  line-height:1;
}
.aboutHeroProof{
  display:flex;
  flex-wrap:wrap;
  gap:10px 12px;
  max-width:560px;
}
.aboutHeroProof span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.86);
  border:1px solid #dbe8ec;
  box-shadow:0 10px 26px rgba(14,58,79,.05);
  color:#24495b;
  font-size:13px;
  font-weight:850;
}
.aboutHeroProof span::before{
  content:"✓";
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(73,192,180,.14);
  color:#2a8ca1;
  font-size:11px;
  font-weight:900;
  flex:0 0 18px;
}
.aboutSupportPanel{
  padding:26px 28px 28px;
  box-shadow:0 18px 40px rgba(10,31,40,.06);
}
.aboutSupportIntro{
  gap:10px;
  margin-bottom:18px;
}
.aboutSupportPanel h2{
  max-width:24ch;
  font-size:clamp(1.56rem,2vw,2.06rem);
}
.aboutSupportGrid{
  gap:14px;
}
.aboutSupportItem{
  min-height:80px;
  padding:18px 18px 18px 48px;
  border-radius:18px;
  background:linear-gradient(180deg,#ffffff 0%, #f7fbfd 100%);
  box-shadow:0 8px 22px rgba(16,54,67,.04), inset 0 1px 0 rgba(255,255,255,.95);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.aboutSupportItem:nth-child(1),
.aboutSupportItem:nth-child(4){
  background:linear-gradient(180deg,#f4fbfc 0%, #ffffff 100%);
}
.aboutSupportItem:nth-child(2),
.aboutSupportItem:nth-child(3){
  background:linear-gradient(180deg,#f5fafd 0%, #ffffff 100%);
}
.aboutSupportItem:hover{
  transform:translateY(-2px);
  border-color:#cfe1e8;
  box-shadow:0 14px 28px rgba(16,54,67,.08), inset 0 1px 0 rgba(255,255,255,.95);
}
.section--about-process{
  padding-top:18px;
}
.closingPanel{
  max-width:980px;
}
@media (max-width: 980px){
  .aboutHero{
    padding-bottom:28px;
  }
  .aboutHeroGrid{
    gap:26px;
  }
  .aboutHeroActions{
    gap:12px;
  }
  .aboutHeroProof{
    max-width:none;
  }
  .aboutSupportPanel{
    padding:22px 20px 22px;
  }
  .aboutSupportPanel h2{
    max-width:none;
  }
}
@media (max-width: 640px){
  .aboutHeroProof{
    display:grid;
    grid-template-columns:1fr;
  }
  .aboutHeroProof span{
    justify-content:flex-start;
  }
  .aboutHeroActions{
    align-items:stretch;
  }
}

/* About page final tidy v40 */
.aboutHeroActions{
  margin: 8px 0 0;
}
.aboutHeroLink{
  padding: 0;
}
.aboutHeroProof{
  display:none;
}
.aboutHeroCopy{
  padding-top: 10px;
}
.aboutHeroGrid{
  align-items: start;
}
.aboutSupportPanel{
  margin-top: -2px;
}
.aboutSupportEyebrow{
  color:#2d7f98;
}
.section--closing-tight .container{
  max-width:1120px;
}
.closingPanel{
  width:100%;
  max-width:none;
  margin-top: 20px;
}
@media (max-width:980px){
  .closingPanel{
    width:100%;
  }
}


/* About page refinement v41 */
.aboutHero{
  padding-bottom:26px;
}
.aboutHeroGrid{
  grid-template-columns:minmax(0,1fr) minmax(420px, 560px);
  gap:42px;
  align-items:start;
}
.aboutHeroCopy{
  max-width:560px;
}
.aboutHero .lead{
  margin-bottom:0;
}
.aboutHeroSide{
  display:grid;
  gap:14px;
  align-content:start;
}
.aboutHeroActions--side{
  justify-content:flex-start;
  margin:0;
  padding-left:6px;
}
.aboutSupportPanel--full{
  margin-top:24px;
  width:100%;
  padding:28px 30px 30px;
}
.aboutSupportPanel--full .aboutSupportIntro{
  display:grid;
  grid-template-columns:minmax(240px, 360px) minmax(0,1fr);
  align-items:end;
  gap:18px 30px;
  margin-bottom:20px;
}
.aboutSupportPanel--full .aboutSupportEyebrow{
  margin:0;
}
.aboutSupportPanel--full h2{
  max-width:none;
  margin:0;
  font-size:clamp(1.5rem,1.9vw,2rem);
  line-height:1.12;
}
.aboutSupportPanel--full .aboutSupportGrid{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.aboutSupportPanel--full .aboutSupportItem{
  min-height:88px;
}
.section--closing-tight .container{
  max-width:1280px;
}
.closingPanel{
  margin-top:20px;
  width:100%;
  max-width:none;
}
@media (max-width: 1120px){
  .aboutHeroGrid{
    grid-template-columns:1fr;
    gap:28px;
  }
  .aboutHeroCopy{
    max-width:none;
  }
  .aboutHeroSide{
    max-width:760px;
  }
  .aboutSupportPanel--full .aboutSupportIntro{
    grid-template-columns:1fr;
    gap:10px;
  }
  .aboutSupportPanel--full .aboutSupportGrid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width: 640px){
  .aboutHeroActions--side{
    padding-left:0;
  }
  .aboutSupportPanel--full{
    padding:22px 20px 22px;
  }
  .aboutSupportPanel--full .aboutSupportGrid{
    grid-template-columns:1fr;
  }
}


/* About page refinement v42 */
.aboutHero{
  padding-bottom:24px;
}
.aboutHeroGrid{
  align-items:center;
  gap:40px;
}
.aboutHeroCopy{
  align-self:center;
}
.aboutHeroSide{
  gap:16px;
  justify-self:end;
  width:100%;
  max-width:560px;
  padding-top:22px;
}
.aboutVisualCard--premium{
  margin-top:12px;
}
.aboutHeroActions--side{
  padding-left:10px;
  margin-top:2px;
}
.aboutSupportPanel--full{
  margin-top:18px;
  padding:24px 28px 26px;
}
.aboutSupportPanel--full .aboutSupportIntro{
  display:block;
  margin-bottom:16px;
}
.aboutSupportIntro--simple{
  max-width:920px;
}
.aboutSupportPanel--full .aboutSupportEyebrow{
  margin-bottom:8px;
}
.aboutSupportSummary{
  margin:0;
  max-width:900px;
  font-size:16px;
  line-height:1.6;
  font-weight:600;
  color:#446170;
}
.aboutSupportPanel--full h2{
  display:none;
}
.aboutSupportPanel--full .aboutSupportGrid{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.aboutSupportPanel--full .aboutSupportItem{
  min-height:76px;
}
.aboutClosingBand{
  width:100%;
}
@media (max-width:1120px){
  .aboutHeroSide{
    justify-self:start;
    max-width:760px;
    padding-top:0;
  }
  .aboutVisualCard--premium{
    margin-top:0;
  }
  .aboutSupportSummary{
    max-width:none;
  }
}
@media (max-width:640px){
  .aboutHeroActions--side{
    padding-left:0;
  }
  .aboutSupportSummary{
    font-size:15px;
  }
}


/* About page refinement v43 */
.aboutHeroGrid{
  align-items:start;
}
.aboutHeroSide{
  padding-top:56px;
}
.aboutVisualCard--premium{
  margin-top:0;
}
.aboutHeroActions--side{
  margin-top:4px;
}
.keepTogether{
  white-space:nowrap;
}
.aboutSupportSummary{
  max-width:980px;
}
.aboutSupportPanel--full{
  padding:24px 28px 28px;
}
.aboutSupportPanel--full .aboutSupportGrid{
  gap:16px;
}
.aboutSupportPanel--full .aboutSupportItem{
  min-height:74px;
  padding:15px 18px 15px 58px;
  align-items:center;
  font-weight:800;
  letter-spacing:-0.01em;
  background:linear-gradient(180deg,#f8fcfd 0%,#eef7fa 100%);
  border-color:#cfe0e8;
  box-shadow:0 10px 24px rgba(18,65,88,.06);
}
.aboutSupportPanel--full .aboutSupportItem:nth-child(1){
  background:linear-gradient(180deg,#f8fcfd 0%,#eef8fa 100%);
}
.aboutSupportPanel--full .aboutSupportItem:nth-child(2){
  background:linear-gradient(180deg,#f8fbfd 0%,#edf5fb 100%);
}
.aboutSupportPanel--full .aboutSupportItem:nth-child(3){
  background:linear-gradient(180deg,#f9fcfd 0%,#eef7f8 100%);
}
.aboutSupportPanel--full .aboutSupportItem:nth-child(4){
  background:linear-gradient(180deg,#f7fbfc 0%,#ecf6fa 100%);
}
.aboutSupportPanel--full .aboutSupportItem::before{
  left:18px;
  width:24px;
  height:24px;
  font-size:13px;
  font-weight:900;
  color:#ffffff;
  background:linear-gradient(180deg,#49c0b4 0%, #2f9eb0 100%);
  box-shadow:0 8px 18px rgba(47,158,176,.22), 0 0 0 1px rgba(45,127,152,.10);
}
.aboutClosingBand{
  max-width:none;
}
@media (max-width:1120px){
  .aboutHeroSide{
    padding-top:12px;
  }
}
@media (max-width:760px){
  .aboutSupportPanel--full .aboutSupportItem{
    min-height:unset;
  }
}


/* About page final audience section */
.section--who-we-help{
  padding-top:44px;
}
.sectionHead--compact{
  max-width:760px;
  margin-bottom:22px;
}
.aboutAudienceGrid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.audienceCard{
  min-height:100%;
  padding:24px 22px 22px;
  border-color:#d8e6ec;
  background:linear-gradient(180deg,#ffffff 0%, #f8fcfd 100%);
  box-shadow:0 14px 34px rgba(11,33,41,.06);
  transition:transform .18s ease, box-shadow .18s ease;
}
.audienceCard:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(11,33,41,.09);
}
.audienceIcon{
  width:48px;
  height:48px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
  background:linear-gradient(180deg,#edf8fa 0%, #e4f2f7 100%);
  border:1px solid #d4e4eb;
  box-shadow:0 10px 22px rgba(31,126,161,.10);
}
.audienceIcon svg{
  width:24px;
  height:24px;
  fill:none;
  stroke:#1f7ea1;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.audienceCard h3{
  margin:0 0 8px;
  font-size:18px;
  letter-spacing:-0.02em;
}
.audienceCard p{
  margin:0;
  color:#52666f;
  line-height:1.6;
}
@media (max-width:900px){
  .aboutAudienceGrid{
    grid-template-columns:1fr;
  }
}


/* Final premium wording polish */
.aboutHeroCopy h1{
  max-width:12ch;
}
.aboutAudienceGrid .audienceCard{
  height:100%;
}


/* Final homepage hero image containment fix v56 */
.hero-home-grid-final{
  grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
  gap:18px 44px;
  align-items:start;
}
.hero-image-wrap{
  position:relative;
  overflow:hidden;
  width:100%;
  max-width:960px;
  justify-self:end;
  align-self:start;
  padding-top:0;
  border-radius:0;
}
.hero-journey-image{
  display:block;
  width:100%;
  max-width:none;
  height:auto;
  transform:scale(1.05) translateX(-2.5%);
  transform-origin:center;
}
.hero-detail-band{
  position:relative;
  z-index:2;
  margin-top:2px;
  padding-top:0;
}
.hero-detail-copy .lead,
.hero-detail-copy .hero-support{
  position:relative;
  z-index:2;
}
@media (min-width:900px){
  .hero-detail-copy .lead{
    white-space:nowrap;
    max-width:none;
  }
}
@media (max-width:1180px){
  .hero-home-grid-final{
    grid-template-columns:1fr;
    gap:18px;
  }
  .hero-image-wrap{
    max-width:940px;
    justify-self:center;
  }
  .hero-journey-image{
    transform:scale(1.03);
  }
}
@media (max-width:760px){
  .hero-image-wrap{
    max-width:100%;
  }
  .hero-journey-image{
    transform:none;
  }
}

/* v59 hero tags full-width rebalance */
.hero-detail-actions{width:100%;}
.hero-tags-final{width:100%;grid-template-columns:0.95fr 0.95fr 1.08fr 0.98fr 1.12fr 0.92fr;justify-items:stretch;}
.hero-tags-final span{width:100%;}
@media (max-width:1180px){.hero-tags-final{grid-template-columns:repeat(3,minmax(0,1fr));}}
@media (max-width:760px){.hero-tags-final{grid-template-columns:repeat(2,minmax(0,1fr));}}


/* About process icons refinement v61 */
.premiumProcess--icons{
  gap:18px;
}
.processCard--icon{
  position:relative;
  padding:24px 18px 20px;
  border-radius:22px;
  background:linear-gradient(180deg,#ffffff 0%, #f8fbfd 100%);
  border:1px solid #dbe8ed;
  box-shadow:0 12px 30px rgba(15,49,63,.05);
  min-height:100%;
}
.processCard--icon::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.92);
  pointer-events:none;
}
.processIcon{
  width:64px;
  height:64px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.95);
  background-repeat:no-repeat;
  background-position:center;
  background-size:34px 34px;
}
.processIcon--records{
  background-color:#eef7f2;
  border:1px solid #d7e9df;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3.5 7.5a2 2 0 0 1 2-2h4l1.6 1.8H18.5a2 2 0 0 1 2 2v7.2a2 2 0 0 1-2 2H5.5a2 2 0 0 1-2-2z' fill='%23f4c95d'/%3E%3Cpath d='M3.5 9.4h17' stroke='%23227c72' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M8 13h5M8 16h7' stroke='%231f6d89' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}
.processIcon--accounts{
  background-color:#eef6fb;
  border:1px solid #d7e6f2;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='4.5' width='16' height='15' rx='2.5' fill='%23ffffff' stroke='%231f6d89' stroke-width='1.5'/%3E%3Cpath d='M8 9.5h8' stroke='%231f6d89' stroke-width='1.5' stroke-linecap='round'/%3E%3Crect x='8' y='12' width='2.4' height='4.5' rx='1.2' fill='%2348b7b1'/%3E%3Crect x='11' y='10.5' width='2.4' height='6' rx='1.2' fill='%2378c7ff'/%3E%3Crect x='14' y='8.5' width='2.4' height='8' rx='1.2' fill='%23f4c95d'/%3E%3C/svg%3E");
}
.processIcon--tax{
  background-color:#fff5ef;
  border:1px solid #f0dfd1;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 3.8h6l4 4v10.5a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V5.8a2 2 0 0 1 2-2z' fill='%23ffffff' stroke='%231f6d89' stroke-width='1.5'/%3E%3Cpath d='M14 3.8v4h4' fill='%23dff4f2' stroke='%231f6d89' stroke-width='1.5'/%3E%3Cpath d='m9.2 14 1.8 1.8 3.8-4.1' stroke='%2348b7b1' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.processIcon--filing{
  background-color:#eff8f3;
  border:1px solid #dbeadd;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4v9' stroke='%231f6d89' stroke-width='1.7' stroke-linecap='round'/%3E%3Cpath d='m8.3 8.2 3.7-4 3.7 4' fill='none' stroke='%231f6d89' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5 16.8h9.2' stroke='%231f6d89' stroke-width='1.7' stroke-linecap='round'/%3E%3Cpath d='M17.1 13.7a3.4 3.4 0 1 1 0 6.8 3.4 3.4 0 0 1 0-6.8Z' fill='%2348b7b1'/%3E%3Cpath d='m15.8 17.2.9.9 1.7-1.9' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.processCard--icon h3{
  margin:0 0 12px;
  font-size:1.05rem;
}
.processCard--icon p{
  margin:0;
  color:#5e7380;
  line-height:1.65;
}
@media (max-width: 980px){
  .premiumProcess--icons{
    grid-template-columns:1fr;
  }
  .processCard--icon{
    padding:22px 18px 18px;
  }
}


/* About intro refinement v65 */
.about-intro{
  max-width:520px;
  border-left:3px solid #2f8f8b;
  padding-left:16px;
  margin-top:4px;
}
.about-intro p{
  margin:0;
}
.about-intro-kicker{
  font-size:15px;
  line-height:1.45;
  color:#6b7c85;
  margin-bottom:8px;
}
.about-intro-principle{
  font-size:18px;
  line-height:1.45;
  font-weight:600;
  color:#0f2f35;
  margin-bottom:10px;
}
.about-intro-support{
  font-size:15px;
  line-height:1.55;
  color:#6b7c85;
}
.aboutHero .about-intro{
  margin-left:0;
  text-wrap:pretty;
}
@media (max-width:980px){
  .about-intro{
    max-width:100%;
  }
}


/* Homepage journey animation v66 */
.hero-image-wrap-animated{
  position:relative;
  isolation:isolate;
}
.journey-animation{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index:2;
  overflow:visible;
}
.journey-path-guide{display:none;}
.journey-pulse--glow{
  fill:rgba(82, 201, 209, 0.66);
}
.journey-pulse--core{
  fill:#ffffff;
  stroke:#42b8c2;
  stroke-width:3.2;
}
.journey-completion-ring{
  fill:none;
  stroke:rgba(82, 201, 209, 0.72);
  stroke-width:3;
  transform-origin:1909px 1050px;
  animation:journeyCompletionPulse 28s ease-in-out infinite;
  opacity:0;
}
@keyframes journeyCompletionPulse{
  0%, 90%{opacity:0; transform:scale(0.72);}
  93%{opacity:0.98; transform:scale(1);}
  97%{opacity:0.46; transform:scale(1.75);}
  100%{opacity:0; transform:scale(2.15);}
}
@media (prefers-reduced-motion: reduce){
  .journey-animation{display:none;}
}


/* Launch polish pass v77 */
body{overflow-x:hidden;}
.nav-cta{padding:11px 16px;box-shadow:0 12px 30px rgba(31,126,161,.24);transition:transform .22s ease, box-shadow .22s ease, filter .22s ease;}
.nav-cta:hover{transform:translateY(-1px);box-shadow:0 16px 34px rgba(31,126,161,.28);}
.hero-home-final{padding:30px 0 24px;}
.hero-home-grid-final{grid-template-columns:minmax(0,.97fr) minmax(0,1.03fr);gap:18px 32px;align-items:start;}
.hero-copy-final{padding-right:12px;}
.hero-copy-final h1{max-width:13.5ch;font-size:clamp(3rem,4.25vw,4.05rem);line-height:1.01;}
.hero-copy-final .headline-line:last-child{max-width:none;}
.hero-image-wrap{max-width:920px;justify-self:end;margin-left:auto;padding-top:8px;padding-right:8px;}
.hero-journey-image{width:100%;max-width:860px;transform:scale(1.01);transform-origin:center right;}
.hero-detail-band{grid-column:1 / -1;width:100%;min-width:0;justify-self:stretch;align-self:start;display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,520px);gap:18px 24px;align-items:center;margin-top:10px;}
.hero-detail-copy{min-width:0;width:100%;max-width:none;}
.hero-detail-copy .lead,.hero-detail-copy .hero-support{max-width:62ch;white-space:normal;}
.hero-detail-copy .lead{margin:0;font-size:17px;line-height:1.62;color:#516774;}
.hero-detail-copy .hero-support{margin:8px 0 0;}
.hero-detail-actions{display:flex;flex-direction:column;align-items:flex-start;gap:10px;margin-top:0;max-width:520px;width:100%;justify-self:end;}
.hero-actions-final{margin-top:0;}
.hero-actions-final .btn-primary{padding:15px 24px;font-size:16px;box-shadow:0 16px 40px rgba(31,126,161,.28);animation:heroCtaPulse 2.8s ease-in-out infinite;}
.hero-actions-final .btn-primary::after{content:"→";font-size:16px;line-height:1;}
.hero-actions-final .btn-secondary{padding:14px 20px;}
.hero-cta-note{margin:0;font-size:13px;font-weight:850;color:#5b7079;}
@keyframes heroCtaPulse{0%,100%{transform:translateY(0);box-shadow:0 16px 40px rgba(31,126,161,.28);}50%{transform:translateY(-1px);box-shadow:0 20px 46px rgba(31,126,161,.34);}}
.valueStripSection{padding-top:0;padding-bottom:24px;}
.valueStripSection .container{padding-left:20px;padding-right:20px;}
.section-process-tight{padding-top:30px;}
.aboutSupportGrid{grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;}
.aboutSupportItem{min-height:0;}
.aboutAudienceGrid{grid-template-columns:repeat(4,minmax(0,1fr));}
.hero-tags-final{grid-template-columns:repeat(3,minmax(0,1fr));}
@media (max-width:1200px){
  .hero-home-grid-final{grid-template-columns:1fr;gap:20px;}
  .hero-copy-final{padding-right:0;}
  .hero-copy-final h1{max-width:14ch;font-size:clamp(2.8rem,6.2vw,3.5rem);}
  .hero-image-wrap{max-width:860px;justify-self:center;margin:0 auto;padding-right:0;}
  .hero-journey-image{max-width:820px;transform:none;}
  .hero-detail-band{grid-column:auto;grid-template-columns:1fr;}
  .hero-detail-actions{max-width:none;justify-self:start;}
}
@media (max-width:980px){
  .aboutSupportGrid,.aboutAudienceGrid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width:760px){
  .hero-home-final{padding:28px 0 18px;}
  .nav{row-gap:10px;}
  nav{gap:10px 12px;}
  .hero-copy-final h1{font-size:clamp(2.4rem,10vw,3rem);max-width:none;}
  .hero-detail-copy .lead{font-size:16px;}
  .hero-actions-final{display:grid;grid-template-columns:1fr;gap:12px;width:100%;}
  .hero-actions-final a{width:100%;}
  .hero-detail-actions{align-items:stretch;}
  .hero-cta-note{text-align:center;}
  .hero-tags-final{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;}
  .hero-tags-final span{white-space:normal;min-height:52px;line-height:1.25;}
  .section-tight-top{padding-top:14px;}
  .section-process-tight{padding-top:22px;}
  .valueStripSection{padding-bottom:18px;}
}
@media (max-width:560px){
  .brand img{height:92px;}
  .hero-image-wrap{max-width:100%;}
  .aboutSupportGrid,.aboutAudienceGrid{grid-template-columns:1fr;}
}


/* Final homepage balance v78 */
.hero-home-final{padding:30px 0 22px;}
.hero-home-grid-final{grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:18px 40px;align-items:start;}
.hero-copy-final{padding-right:0;}
.hero-copy-final h1{max-width:14ch;font-size:62px;line-height:1.01;letter-spacing:-1.4px;}
.hero-copy-final h1 .headline-line:last-child{max-width:12.5ch;}
.hero-image-wrap{max-width:1080px;justify-self:end;margin-left:auto;padding-top:2px;padding-right:0;}
.hero-journey-image{width:100%;max-width:1000px;transform:scale(1.07);transform-origin:center right;}
.hero-detail-band{grid-column:1 / -1;width:100%;display:block;margin-top:0;padding-top:0;}
.hero-detail-copy .lead,.hero-detail-copy .hero-support{max-width:none;}
.hero-detail-copy .lead{margin:0 0 10px;font-size:17px;line-height:1.62;color:#516774;}
.hero-detail-actions{display:block;max-width:none;width:100%;justify-self:auto;margin-top:14px;}
.hero-actions-final{display:flex;flex-wrap:wrap;gap:12px;margin-top:0;}
.hero-actions-final .btn-primary{padding:14px 22px;font-size:16px;box-shadow:none;animation:none;}
.hero-actions-final .btn-primary::after{content:none;}
.hero-actions-final .btn-secondary{padding:14px 20px;}
.hero-cta-note{margin:10px 0 0;font-size:12.5px;font-weight:800;color:#5b7079;}
.hero-tags-final{margin-top:12px;display:grid;grid-template-columns:0.95fr 0.95fr 1.08fr 0.98fr 1.12fr 0.92fr;gap:10px;max-width:none;}
.section-process-tight{padding-top:36px;}
@media (max-width:1180px){.hero-home-grid-final{grid-template-columns:1fr;gap:18px;}.hero-copy-final h1{max-width:14ch;font-size:56px;}.hero-image-wrap{max-width:940px;justify-self:center;margin:0 auto;}.hero-journey-image{max-width:900px;transform:scale(1.07);}.hero-detail-actions{margin-top:14px;}.hero-tags-final{grid-template-columns:repeat(3,minmax(0,1fr));}}
@media (max-width:760px){.hero-home-final{padding:28px 0 18px;}.hero-copy-final h1{max-width:none;font-size:42px;letter-spacing:-1px;line-height:1.02;}.hero-image-wrap{max-width:100%;}.hero-journey-image{max-width:100%;transform:none;}.hero-detail-copy .lead{font-size:16px;}.hero-actions-final{display:grid;grid-template-columns:1fr;gap:12px;width:100%;}.hero-actions-final a{width:100%;}.hero-cta-note{text-align:center;}.hero-tags-final{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;}.hero-tags-final span{white-space:normal;min-height:52px;line-height:1.25;}}


/* Final homepage authority line */
.hero-authority{margin:6px 0 0;font-size:15px;font-weight:700;letter-spacing:-0.01em;color:#4a5b63;}
@media (max-width:760px){.hero-authority{font-size:14px;line-height:1.45;}}
