/* ================= Tokens ================= */
:root{
  --navy: #070D3A;
  --navy-800: #0C1550;
  --navy-700: #131C63;
  --purple: #4E2A84;
  --purple-600: #5E349B;
  --purple-100: #F1EBFA;
  --blue: #116DFF;
  --white: #FFFFFF;
  --gray-50: #F7F7F9;
  --gray-100: #E2E2E2;
  --gray-300: #C5C5C5;
  --gray-500: #8F8F8F;
  --gray-700: #5F6360;
  --ink: #0A0A0A;
  --green: #1C8A5A;
  --amber: #B7791F;
  --red: #B0362E;

  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(7,13,58,0.06), 0 1px 1px rgba(7,13,58,0.04);
  --shadow-md: 0 8px 24px rgba(7,13,58,0.10), 0 2px 6px rgba(7,13,58,0.06);
  --shadow-lg: 0 24px 60px rgba(7,13,58,0.16), 0 8px 20px rgba(7,13,58,0.08);

  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul, ol{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,h5{ margin:0; font-family: var(--font); font-weight: 700; letter-spacing:-0.02em; color: var(--navy); }
p{ margin:0; }
button{ font-family: inherit; cursor:pointer; }
input[type="range"]{ width:100%; }

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ================= Reveal animation ================= */
.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in-view{
  opacity: 1;
  transform: translateY(0);
}

/* ================= Buttons ================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-weight:600;
  font-size:15px;
  border-radius: 999px;
  padding: 14px 26px;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--purple);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover{ background: var(--purple-600); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost{
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-300);
}
.btn-ghost:hover{ border-color: var(--navy); transform: translateY(-1px); }
.btn-outline{
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn-outline:hover{ background: var(--purple-100); }
.btn-large{ padding: 16px 30px; font-size: 16px; }
.btn-small{ padding: 10px 18px; font-size: 13.5px; }
.btn-full{ width:100%; }

/* ================= Header ================= */
.site-header{
  position: sticky;
  top:0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand{ display:flex; align-items:baseline; gap:6px; }
.brand-mark{ font-weight:800; font-size:18px; letter-spacing:0.02em; color: var(--navy); }
.brand-sub{ font-weight:600; font-size:12px; letter-spacing:0.16em; color: var(--purple); }
.site-nav{ display:flex; gap:30px; }
.site-nav a{
  font-size: 14.5px;
  font-weight:600;
  color: var(--gray-700);
  transition: color .15s ease;
}
.site-nav a:hover{ color: var(--navy); }

@media (max-width: 860px){
  .site-nav{ display:none; }
}

/* ================= Section scaffolding ================= */
section{ padding: 104px 0; }
.eyebrow{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
  display:block;
}
.eyebrow-light{ color: rgba(255,255,255,0.6); }
h2{
  font-size: clamp(28px, 4vw, 42px);
  line-height:1.12;
  max-width: 780px;
}
.section-sub{
  font-size: 18px;
  color: var(--gray-700);
  max-width: 640px;
  margin-top: 18px;
  line-height:1.55;
}
.section-sub-light{ color: rgba(255,255,255,0.72); }

/* ================= Hero ================= */
.hero{
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-800) 100%);
  padding: 88px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before{
  content:"";
  position:absolute;
  top:-200px; right:-160px;
  width:560px; height:560px;
  background: radial-gradient(circle, rgba(78,42,132,0.55) 0%, rgba(78,42,132,0) 70%);
  pointer-events:none;
}
.hero-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  position:relative;
  z-index:1;
}
.hero-copy{ max-width: 720px; }
.hero-copy .eyebrow{ color: #B79CE6; }
.hero h1{
  color: var(--white);
  font-size: clamp(34px, 4.8vw, 54px);
  line-height:1.08;
  max-width: 100%;
}
.hero-sub{
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  line-height:1.6;
  margin: 22px auto 0;
  max-width: 580px;
}
.hero-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top: 34px;
}
.hero .btn-ghost{ color: var(--white); border-color: rgba(255,255,255,0.35); }
.hero .btn-ghost:hover{ border-color: var(--white); }
.hero-microcopy{
  color: rgba(255,255,255,0.5);
  font-size: 13.5px;
  margin-top: 18px;
}

.tool-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.tool-card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 22px;
}
.tool-card-label{ font-weight:700; font-size:15px; color: var(--navy); }
.tool-card-tag{
  font-size: 11.5px;
  font-weight:600;
  color: var(--purple);
  background: var(--purple-100);
  padding: 5px 10px;
  border-radius: 999px;
}
.tool-field{ display:block; margin-bottom: 14px; }
.tool-field span{ display:block; font-size: 13px; font-weight:600; color: var(--gray-700); margin-bottom: 7px; }
.tool-field-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.input-affix{
  display:flex;
  align-items:center;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  overflow:hidden;
  background: var(--gray-50);
}
.input-affix .affix{ padding: 0 12px; color: var(--gray-500); font-weight:600; flex-shrink:0; }
.input-affix input{
  flex:1;
  border:none;
  background:transparent;
  padding: 12px 12px 12px 0;
  font-size: 16px;
  font-weight:600;
  font-family: var(--font);
  color: var(--navy);
  outline:none;
  min-width: 0;
}
.input-affix-suffix input{ padding: 12px 0 12px 12px; }
.input-affix-suffix .affix{ padding: 0 12px; }

.tool-slider-field{ margin-bottom: 18px; }
.tool-slider-field:last-of-type{ margin-bottom: 0; }
.tool-slider-field .field-label-row{ margin-bottom: 10px; }
.tool-slider-field .field-label-row span:first-child{ font-weight:600; font-size:13px; color: var(--gray-700); }
.tool-slider-field .field-value{ font-size: 14px; padding: 3px 10px; }

.quick-result{
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px dashed var(--gray-100);
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.quick-metric{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.quick-metric-label{ font-size: 13px; color: var(--gray-700); font-weight:600; }
.quick-metric strong{
  font-size: 19px;
  color: var(--purple);
  font-weight:800;
  white-space:nowrap;
}
.quick-turns{ display:flex; align-items:center; gap:8px; }
.quick-turns-arrow{ color: var(--gray-500); font-weight:600; }
.quick-turns-target{ color: var(--green); }
.quick-note{
  margin-top: 2px;
  font-size: 12px;
  color: var(--gray-500);
  line-height:1.55;
}

@media (max-width: 480px){
  .tool-field-row{ grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 900px){
  .hero{ padding-top: 60px; }
}

/* ================= Problem ================= */
.problem{
  background: var(--navy);
  color: var(--white);
}
.problem h2{ color: var(--white); max-width: 720px; }
.problem-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  margin-top: 44px;
  align-items:start;
}
.problem-lead p{
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height:1.7;
  margin-bottom: 18px;
}
.problem-stats{ display:flex; flex-direction:column; gap:22px; }
.problem-stats li{
  display:flex;
  gap:18px;
  align-items:flex-start;
  padding: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
}
.stat-num{
  font-size: 34px;
  font-weight:800;
  color: #B79CE6;
  line-height:1;
  flex-shrink:0;
}
.stat-label{ font-size: 14.5px; color: rgba(255,255,255,0.72); line-height:1.5; }

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

/* ================= Quick Calculator ================= */
.quick-calc{ background: var(--gray-50); }
.quick-calc-tool{
  margin-top: 44px;
  max-width: 640px;
}
.quick-calc-tool .tool-card{ padding: 36px; }

/* ================= Estimator ================= */
.estimator-panel{
  margin-top: 48px;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  overflow:hidden;
}
.estimator-inputs{ padding: 44px; }
.field-block{ margin-bottom: 36px; }
.field-block:last-child{ margin-bottom:0; }
.field-label-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom: 14px;
}
.field-label-row label{ font-weight:600; font-size:15.5px; color: var(--navy); }
.field-value{
  font-weight:800;
  font-size: 17px;
  color: var(--purple);
  background: var(--purple-100);
  padding: 4px 12px;
  border-radius: 999px;
}
input[type="range"]{
  -webkit-appearance:none;
  appearance:none;
  height:6px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--purple) var(--fill,50%), var(--gray-100) var(--fill,50%), var(--gray-100) 100%);
  outline:none;
}
input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance:none;
  appearance:none;
  width:22px; height:22px;
  border-radius:50%;
  background: var(--white);
  border: 4px solid var(--purple);
  box-shadow: var(--shadow-sm);
  cursor:pointer;
}
input[type="range"]::-moz-range-thumb{
  width:14px; height:14px;
  border-radius:50%;
  background: var(--white);
  border: 4px solid var(--purple);
  cursor:pointer;
}
.range-scale{
  display:flex;
  justify-content:space-between;
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 8px;
  font-weight:600;
}
.pill-group{ display:flex; gap:10px; flex-wrap:wrap; }
.pill{
  border: 1.5px solid var(--gray-100);
  background: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight:600;
  color: var(--gray-700);
  transition: all .15s ease;
}
.pill:hover{ border-color: var(--purple); color: var(--navy); }
.pill.active{
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.estimator-output{
  background: var(--navy);
  display:flex;
  align-items:center;
  padding: 44px;
}
.output-card{ width:100%; }
.output-tag{
  display:inline-block;
  font-size: 12px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color: #B79CE6;
  margin-bottom: 10px;
}
.output-card h3{
  color: var(--white);
  font-size: 30px;
  margin-bottom: 12px;
  transition: opacity .2s ease;
}
.output-scope{
  color: rgba(255,255,255,0.68);
  font-size: 14.5px;
  line-height:1.6;
  margin-bottom: 26px;
  min-height: 66px;
}
.output-metrics{
  display:flex;
  gap: 14px;
  margin-bottom: 20px;
}
.output-metric{
  flex:1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.metric-label{
  display:block;
  font-size: 11.5px;
  font-weight:600;
  color: rgba(255,255,255,0.5);
  text-transform:uppercase;
  letter-spacing:0.05em;
  margin-bottom: 6px;
}
.metric-value{
  display:block;
  font-size: 21px;
  font-weight:800;
  color: var(--white);
}
.output-note{
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 22px;
  line-height:1.5;
}

@media (max-width: 900px){
  .estimator-panel{ grid-template-columns: 1fr; }
}

/* ================= Worked Example ================= */
.worked{ background: var(--navy-800); color: var(--white); }
.worked h2{ color: var(--white); }
.worked-panel{
  margin-top: 44px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.worked-summary{ margin-bottom: 34px; }
.worked-total{ margin-bottom: 22px; display:flex; align-items:baseline; gap:14px; flex-wrap:wrap; }
.worked-total-label{ font-size: 13.5px; color: rgba(255,255,255,0.55); font-weight:600; width:100%; }
.worked-total-value{ font-size: 34px; font-weight:800; color: var(--white); }
.worked-total-sub{ font-size: 13.5px; color: rgba(255,255,255,0.5); }
.worked-bar{
  display:flex;
  width:100%;
  height: 46px;
  border-radius: 10px;
  overflow:hidden;
}
.worked-bar-seg{ height:100%; }
.seg-healthy{ background: #2E7D5B; }
.seg-excess{ background: var(--purple); }
.seg-risk{ background: #B0362E; }

.worked-legend{
  display:flex;
  flex-wrap:wrap;
  gap: 20px;
  margin-top: 16px;
}
.legend-item{
  display:flex;
  align-items:center;
  gap:8px;
  font-size: 13px;
  font-weight:600;
  color: rgba(255,255,255,0.68);
}
.legend-dot{
  width:10px; height:10px;
  border-radius:50%;
  flex-shrink:0;
}

.worked-rows{ display:flex; flex-direction:column; gap:2px; }
.worked-row{
  width:100%;
  text-align:left;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  color: var(--white);
}
.worked-row-head{ display:flex; align-items:center; gap:14px; }
.worked-row-caret{ font-size: 13px; color: #B79CE6; transition: transform .2s ease; flex-shrink:0; }
.worked-row[aria-expanded="true"] .worked-row-caret{ transform: rotate(90deg); }
.worked-row-title{ flex:1; font-weight:600; font-size:15px; }
.worked-row-fig{ font-weight:700; font-size: 14px; color: #B79CE6; }
.worked-row-detail{
  max-height:0;
  overflow:hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 20px;
}
.worked-row-detail.open{ max-height: 220px; padding: 6px 20px 18px; }
.worked-row-detail ul{ display:flex; flex-direction:column; gap:10px; }
.worked-row-detail li{
  display:flex;
  justify-content:space-between;
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.worked-row-detail li span:last-child{ font-weight:600; color: var(--white); }
.worked-source{
  margin-top: 24px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}

/* ================= How it works ================= */
.steps{
  margin-top: 52px;
  display:flex;
  flex-direction:column;
}
.step{
  display:flex;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--gray-100);
}
.step:last-child{ border-bottom: 1px solid var(--gray-100); }
.step-num{
  font-size: 15px;
  font-weight:800;
  color: var(--white);
  background: var(--purple);
  width: 44px; height:44px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.step-body h3{ font-size: 20px; margin-bottom: 8px; }
.step-body p{ color: var(--gray-700); font-size: 15.5px; line-height:1.6; max-width: 640px; }

@media (max-width: 640px){
  .step{ gap:18px; }
  .step-body h3{ font-size: 17px; }
}

/* ================= Comparison Table ================= */
.tiers{ background: var(--navy); color: var(--white); }
.tiers h2{ color: var(--white); }
.table-wrap{
  margin-top: 48px;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
}
.compare-table{
  width:100%;
  border-collapse: collapse;
  min-width: 760px;
  table-layout: fixed;
}
.compare-table th, .compare-table td{
  padding: 16px 20px;
  text-align:center;
  vertical-align: middle;
  word-wrap: break-word;
}
.compare-table thead th{
  padding-top: 32px;
  padding-bottom: 24px;
  vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  width: 24%;
}
.feature-col{
  text-align:left !important;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight:500;
  width: 28%;
}
.tier-name{ display:block; font-size: 17px; font-weight:700; color: var(--white); margin-bottom:10px; }
.tier-fee{ display:block; font-size: 24px; font-weight:800; color: #B79CE6; }
.tier-time{ display:block; font-size: 12.5px; color: rgba(255,255,255,0.5); margin-top:4px; font-weight:600; }
.tier-badge{
  display:inline-block;
  font-size: 10.5px;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color: var(--navy);
  background: #B79CE6;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.tier-featured{ background: rgba(78,42,132,0.28); }
.compare-table tbody tr{ border-bottom: 1px solid rgba(255,255,255,0.06); }
.compare-table .yes{ color: #6FCF97; font-weight:800; font-size:16px; }
.compare-table .no{ color: rgba(255,255,255,0.25); }
.section-divider td{
  text-align:left !important;
  font-size: 11.5px;
  font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color: #B79CE6;
  background: rgba(255,255,255,0.04);
  padding-top: 12px;
  padding-bottom: 12px;
}
.compare-table tfoot td{ padding-top: 26px; padding-bottom: 30px; }

/* ================= Deliverables ================= */
.deliv-tiers{
  margin-top: 44px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items:start;
}
.deliv-tier{
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 22px;
  display:flex;
  flex-direction:column;
  gap: 16px;
}
.deliv-tier-featured{
  background: var(--purple-100);
  border-color: var(--purple);
}
.deliv-tier-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 10px;
  padding: 0 4px;
}
.deliv-tier-name{ font-size: 15px; font-weight:700; color: var(--navy); }
.deliv-tier-note{
  font-size: 11px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color: var(--purple);
}
.deliv-card{
  background: var(--white);
  padding: 26px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  transition: box-shadow .2s ease, transform .2s ease;
}
.deliv-card:hover{ box-shadow: var(--shadow-md); transform: translateY(-3px); }
.deliv-icon{ font-size: 26px; display:block; margin-bottom: 14px; }
.deliv-card h3{ font-size: 16px; margin-bottom: 8px; }
.deliv-card p{ font-size: 14px; color: var(--gray-700); line-height:1.6; }

@media (max-width: 900px){
  .deliv-tiers{ grid-template-columns: 1fr; }
}

/* ================= Credibility ================= */
.credibility{ background: var(--gray-50); }
.cred-grid{
  margin-top: 44px;
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.cred-copy p{
  font-size: 16.5px;
  color: var(--gray-700);
  line-height:1.7;
  margin-bottom: 18px;
}
.cred-pillars{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cred-pillar{
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px;
}
.cred-num{ font-size:13px; font-weight:800; color: var(--purple); }
.cred-pillar h4{ font-size: 15.5px; margin: 10px 0 8px; }
.cred-pillar p{ font-size: 13.5px; color: var(--gray-700); line-height:1.55; }

@media (max-width: 900px){
  .cred-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .cred-pillars{ grid-template-columns: 1fr; }
}

/* ================= FAQ ================= */
.faq-list{ margin-top: 40px; display:flex; flex-direction:column; }
.faq-item{ border-top: 1px solid var(--gray-100); }
.faq-item:last-child{ border-bottom: 1px solid var(--gray-100); }
.faq-q{
  width:100%;
  background:none;
  border:none;
  padding: 24px 4px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  text-align:left;
}
.faq-q span:first-child{ font-size: 16.5px; font-weight:600; color: var(--navy); }
.faq-toggle{
  flex-shrink:0;
  width: 30px; height:30px;
  border-radius:50%;
  background: var(--gray-50);
  color: var(--purple);
  font-size: 18px;
  font-weight:600;
  display:flex; align-items:center; justify-content:center;
  transition: transform .2s ease, background .2s ease;
}
.faq-q[aria-expanded="true"] .faq-toggle{ transform: rotate(45deg); background: var(--purple-100); }
.faq-a{
  max-height:0;
  overflow:hidden;
  transition: max-height .3s ease;
}
.faq-a p{
  padding: 0 4px 26px;
  font-size: 15px;
  color: var(--gray-700);
  line-height:1.65;
  max-width: 760px;
}

/* ================= Final CTA ================= */
.final-cta{
  background: linear-gradient(135deg, var(--purple) 0%, var(--navy) 100%);
  text-align:center;
  padding: 120px 0;
}
.final-cta .eyebrow{ color: #E4D6FA; }
.final-cta h2{
  color: var(--white);
  margin: 0 auto;
  max-width: 640px;
}
.final-cta .section-sub{ color: rgba(255,255,255,0.78); margin-left:auto; margin-right:auto; }
.cta-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top: 36px;
}
.final-cta .btn-ghost{ color: var(--white); border-color: rgba(255,255,255,0.4); }
.final-cta .btn-ghost:hover{ border-color: var(--white); }
.final-cta .btn-primary{ background: var(--white); color: var(--purple); }
.final-cta .btn-primary:hover{ background: #F1EBFA; }

/* ================= Footer ================= */
.site-footer{ background: var(--navy); padding: 56px 0; }
.footer-inner{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap: 40px;
}
.footer-brand{ display:block; }
.footer-brand .brand-mark{ color: var(--white); margin-right: 6px; }
.footer-brand .brand-sub{ color: #B79CE6; }
.footer-brand p{ color: rgba(255,255,255,0.4); font-size: 13px; margin-top: 14px; }
.footer-links{ display:flex; gap: 60px; }
.footer-col h5{ color: rgba(255,255,255,0.4); font-size: 11.5px; text-transform:uppercase; letter-spacing:0.08em; margin-bottom: 14px; }
.footer-col a{ display:block; color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 10px; }
.footer-col a:hover{ color: var(--white); }

@media (max-width: 640px){
  section{ padding: 72px 0; }
  .estimator-inputs, .estimator-output{ padding: 28px; }
  .worked-panel{ padding: 26px; }
}
