/* ================= 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;
}

.hero-stack{
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stack-label{
  display:block;
  font-size: 12px;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.stack-badges{
  display:flex;
  justify-content:center;
  gap: 14px;
  flex-wrap:wrap;
}
.stack-badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 18px 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 14px;
  font-weight:600;
  color: rgba(255,255,255,0.85);
  transition: border-color .15s ease, background .15s ease;
}
.stack-badge:hover{ border-color: rgba(255,255,255,0.32); background: rgba(255,255,255,0.09); }
.stack-icon{ width:22px; height:22px; flex-shrink:0; border-radius:6px; }

.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-lead{
  max-width: 760px;
  margin-top: 28px;
  margin-bottom: 44px;
}
.problem-lead p{
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height:1.7;
  margin-bottom: 18px;
}
.benefit-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.benefit-card{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
}
.benefit-icon{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(183,156,230,0.16);
  border: 1px solid rgba(183,156,230,0.4);
  color: #B79CE6;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 15px;
  font-weight:800;
  flex-shrink:0;
}
.benefit-body{ display:flex; flex-direction:column; gap:6px; }
.benefit-title{ font-size: 15.5px; font-weight:700; color: var(--white); line-height:1.3; }
.benefit-desc{ font-size: 13.5px; color: rgba(255,255,255,0.68); line-height:1.55; }

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

/* ================= 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;
}
.module-list{ display:flex; flex-direction:column; gap: 10px; }
.module-item{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  cursor:pointer;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-100);
  background: var(--white);
  transition: border-color .15s ease, background .15s ease;
}
.module-item:hover{ border-color: var(--purple); }
.module-checkbox{
  position:absolute;
  width:1px; height:1px;
  opacity:0;
  pointer-events:none;
}
.module-check{
  flex-shrink:0;
  width: 19px; height:19px;
  margin-top: 1px;
  border-radius: 5px;
  border: 1.5px solid var(--gray-300);
  color: transparent;
  font-size: 12px;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: all .15s ease;
}
.module-checkbox:checked ~ .module-check{
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}
.module-checkbox:focus-visible ~ .module-check{
  outline: 2px solid var(--purple);
  outline-offset: 2px;
}
.module-item:has(.module-checkbox:checked){
  border-color: var(--purple);
  background: var(--purple-100);
}
.module-text{ font-size: 13.5px; font-weight:600; color: var(--navy); line-height:1.4; }
.module-addon{ color: var(--purple); font-weight:700; }
.module-included{ color: var(--green) !important; }
.module-item-core{
  border-color: var(--purple);
  background: var(--purple-100);
}
.module-item-core .module-check{
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}

.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;
  min-height: 44px;
}
.output-suggestion{
  display:none;
  font-size: 13px;
  font-weight:600;
  color: #B79CE6;
  background: rgba(183,156,230,0.12);
  border: 1px solid rgba(183,156,230,0.3);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-top: 14px;
  line-height:1.5;
}
.output-suggestion.visible{ display:block; }
.output-lines{
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255,255,255,0.15);
}
.output-lines:empty{ display:none; }
.output-line{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding: 4px 0;
}
.output-line-value{ font-weight:700; color: rgba(255,255,255,0.9); white-space:nowrap; }
.output-line-implementation{
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #B79CE6;
  font-weight:700;
}
.price-rows{
  margin-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.price-row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 14px;
  padding: 18px 2px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.price-row-label{
  font-size: 14px;
  font-weight:600;
  color: rgba(255,255,255,0.65);
}
.price-row-value{
  font-size: 26px;
  font-weight:800;
  color: var(--white);
  white-space:nowrap;
}
.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-panel{
  margin-top: 0;
  background: var(--navy-800);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.worked-summary{ margin-bottom: 0; }

/* ================= What You Get: shared layout ================= */
.wyg-section{ margin-top: 48px; }
.wyg-section:first-of-type{ margin-top: 44px; }
.wyg-stat-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.wyg-stat{
  padding: 0 20px;
  border-left: 1px solid rgba(255,255,255,0.12);
  display:flex;
  flex-direction:column;
  gap: 6px;
}
.wyg-stat:first-child{ padding-left:0; border-left:none; }
.wyg-stat-label{ font-size: 12px; font-weight:600; color: rgba(255,255,255,0.55); }
.wyg-stat-value{ font-size: 28px; font-weight:800; color: var(--white); }
.wyg-stat-value.neg{ color: #FF9B8A; }
.wyg-stat-value.pos{ color: #6FCF97; }

.callout-anchor{ position:relative; }
.callout-anchor:hover .pdash-tooltip{
  opacity:1;
  transform: translateX(-50%) translateY(0);
}
.callout-anchor .pdash-info-dot{ top:-8px; right:-8px; }

@media (max-width: 640px){
  .wyg-stat-row{ grid-template-columns: 1fr; gap: 18px; }
  .wyg-stat{ border-left:none; padding-left:0; border-top: 1px solid rgba(255,255,255,0.12); padding-top:14px; }
  .wyg-stat:first-child{ border-top:none; padding-top:0; }
}
.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(--amber); }
.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-row-title{ flex:1; font-weight:600; font-size:15px; color: var(--white); }
.worked-row-fig{ font-weight:700; font-size: 14px; color: #B79CE6; }
.worked-source{
  margin-top: 24px;
  font-size: 12.5px;
}

/* ================= EBITDA waterfall chart ================= */
.waterfall-block{ margin-top: 26px; }
.waterfall-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 18px 20px;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.waterfall-chart-wrap{
  background: var(--navy);
  border: 1px solid var(--navy);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 32px 24px 18px;
}
.waterfall-chart{
  display:flex;
  align-items:stretch;
  gap: 18px;
  height: 260px;
}
.waterfall-col{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 10px;
  min-width:0;
  position:relative;
}
.waterfall-col::after{
  content:"";
  position:absolute;
  right:-10px;
  top:0;
  bottom:32px;
  width:1px;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,0.18) 0 4px, transparent 4px 9px);
}
.waterfall-col:last-child::after{ display:none; }
.waterfall-value{
  font-size: 13.5px;
  font-weight:800;
  color: var(--white);
  white-space:nowrap;
}
.waterfall-col-total .waterfall-value{ color: #B79CE6; }
.waterfall-track{
  flex:1;
  width:100%;
  max-width: 88px;
  display:flex;
  flex-direction:column;
  align-items:stretch;
}
.waterfall-spacer{ width:100%; }
.waterfall-fill{
  width:100%;
  min-height: 4px;
  border-radius: 6px;
  background: linear-gradient(180deg, #F3EDFC 0%, #D3BEEF 100%);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.waterfall-fill-total{
  background: linear-gradient(180deg, #FFFFFF 0%, #EDE7F9 100%);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.waterfall-col-label{
  font-size: 12px;
  font-weight:600;
  color: rgba(255,255,255,0.6);
  text-align:center;
  line-height:1.3;
}

@media (max-width: 640px){
  .waterfall-chart{ height: 200px; gap: 10px; }
  .waterfall-value{ font-size: 11.5px; }
  .waterfall-col-label{ font-size: 10.5px; }
  .waterfall-col::after{ display:none; }
}

/* ================= 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: var(--navy-700);
  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%;
}
.compare-table.cols-2 thead th{ width: 30%; }
.compare-table.cols-2 .feature-col{ width: 40%; }
.compare-table tfoot td{
  padding-top: 22px;
  padding-bottom: 26px;
}
.compare-table tfoot .tier-sample-link{ margin-top: 0; }
.feature-col{
  text-align:left !important;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight:500;
  width: 28%;
}
.tier-name{ display:flex; align-items:center; justify-content:center; min-height: 44px; font-size: 17px; line-height:1.3; 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-sample-link{
  display:inline-block;
  font-size: 12px;
  font-weight:700;
  color: #B79CE6;
  margin-top: 14px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(183,156,230,0.4);
  transition: color .15s ease, border-color .15s ease;
}
.tier-sample-link:hover{ color: var(--white); border-color: var(--white); }
.tier-badge{
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  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;
  white-space: nowrap;
}
.tier-featured{ background: rgba(78,42,132,0.28); position: relative; }
.compare-table tbody tr{ border-bottom: 1px solid rgba(255,255,255,0.06); }
.compare-table tbody td.yes, .compare-table tbody td.no{ background: 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); }
.compare-table .value-cell{
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight:600;
  line-height:1.4;
  white-space: normal;
}
.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;
}
/* ================= Pricing rows (in feature table) ================= */
.pricing-row td{
  background: linear-gradient(90deg, rgba(183,156,230,0.16) 0%, rgba(183,156,230,0.05) 100%);
  padding-top: 20px;
  padding-bottom: 20px;
}
.pricing-row .feature-col{
  color: var(--white);
  font-weight:700;
  font-size: 15px;
}
.pricing-row:first-of-type td{ border-top: 2px solid rgba(183,156,230,0.5); }
.pricing-row:last-of-type td{ border-bottom: 2px solid rgba(183,156,230,0.5); }
.pricing-cell{
  font-size: 20px;
  font-weight:800;
  color: #B79CE6;
  white-space:nowrap;
}
.pricing-note{
  display:block;
  font-size: 10.5px;
  font-weight:600;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  text-transform:none;
  letter-spacing:normal;
  white-space:normal;
}
.addon-services{ margin-top: 48px; }
.addon-services-label{
  font-size: 13px;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.addon-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.addon-card{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 26px;
}
.addon-card-tag{
  display:inline-block;
  font-size: 11px;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color: #B79CE6;
  margin-bottom: 12px;
}
.addon-card h5{ font-size: 17px; color: var(--white); margin-bottom: 10px; }
.addon-card p{ font-size: 14px; color: rgba(255,255,255,0.68); line-height:1.6; margin-bottom: 16px; }
.addon-price{
  display:inline-block;
  font-size: 13px;
  font-weight:700;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 999px;
}

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

.tiers-cta{
  margin-top: 40px;
  text-align: center;
}
.tiers-cta-text{
  font-size: 17px;
  font-weight:600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

/* ================= Sample Output (2D table / 3D chart) ================= */
.sample-output{
  margin-top: 40px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.sample-output-head{ margin-bottom: 26px; }
.sample-output-tag{
  display:inline-block;
  font-size: 11px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color: var(--purple);
  background: var(--purple-100);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.sample-output-head h3{ font-size: 21px; margin-bottom: 8px; }
.sample-output-head p{ font-size: 14.5px; color: var(--gray-700); line-height:1.6; max-width: 680px; }

/* --- RAG status badges (Red/Amber/Green) --- */
.rag-badge{
  display:inline-block;
  font-size: 10px;
  font-weight:700;
  letter-spacing:0.01em;
  padding: 4px 7px;
  border-radius: 999px;
  white-space:nowrap;
}
.rag-green{ background: rgba(28,138,90,0.12); color: var(--green); }
.rag-amber{ background: rgba(183,121,31,0.12); color: var(--amber); }
.rag-red{ background: rgba(176,54,46,0.1); color: var(--red); }
.dot-green{ background: var(--green); }
.dot-amber{ background: var(--amber); }
.dot-red{ background: var(--red); }

/* --- Interactive project dashboard mockup --- */
.pdash-wrap{ margin-top: 32px; }
.pdash-intro{ margin-bottom: 18px; }
.pdash-intro-tag{
  display:inline-block;
  font-size: 11px;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color: var(--purple);
  background: var(--purple-100);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.pdash-intro h4{ font-size: 18px; color: var(--navy); margin-bottom: 6px; }
.pdash-intro p{ font-size: 13.5px; color: var(--gray-700); line-height:1.6; max-width: 680px; }
.pdash-hint{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size: 12px;
  font-weight:600;
  color: var(--purple);
  margin-top: 8px;
}
.pdash-hint-dot{
  width:16px; height:16px; border-radius:50%;
  background: var(--purple-100); color: var(--purple);
  display:inline-flex; align-items:center; justify-content:center;
  font-size:10px; font-weight:800; flex-shrink:0;
}

.pdash-card{
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.pdash-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 16px 24px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border-bottom: 1px solid var(--gray-100);
}
.pdash-header-title{ font-size: 15.5px; font-weight:700; color: var(--navy); text-align:center; flex:1; }
.pdash-header-nav{ color: var(--gray-300); font-weight:800; font-size:15px; }
.pdash-header-brand{ font-weight:800; font-size:13px; letter-spacing:0.04em; color: var(--purple); }

.pdash-top-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr;
  border-bottom: 1px solid var(--gray-100);
}
.pdash-section{
  position:relative;
  padding: 20px 24px;
  border-left: 1px solid var(--gray-100);
  cursor: help;
}
.pdash-section:first-child{ border-left:none; }
.pdash-top-grid .pdash-section:hover,
.pdash-section:hover{ background: var(--purple-100); }
.pdash-section-head{
  font-size: 11px;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color: var(--white);
  background: var(--purple);
  display:inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.pdash-info-dot{
  position:absolute;
  top: 16px;
  right: 16px;
  width: 18px; height:18px;
  border-radius:50%;
  background: var(--purple-100);
  color: var(--purple);
  font-size: 11px;
  font-weight:800;
  display:flex; align-items:center; justify-content:center;
}

.pdash-kv-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin-bottom: 14px;
}
.pdash-kv-grid div{ display:flex; flex-direction:column; gap:3px; }
.pdash-kv-grid span{ font-size: 10.5px; font-weight:600; color: var(--gray-500); text-transform:uppercase; letter-spacing:0.02em; }
.pdash-kv-grid strong{ font-size: 13px; font-weight:700; color: var(--navy); }
.pdash-longfield{ margin-top: 12px; }
.pdash-longfield span{ display:block; font-size: 10.5px; font-weight:600; color: var(--gray-500); text-transform:uppercase; letter-spacing:0.02em; margin-bottom: 4px; }
.pdash-longfield p{ font-size: 13px; color: var(--gray-700); line-height:1.55; }

.pdash-health-top{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.pdash-health-stat{ display:flex; flex-direction:column; gap:6px; }
.pdash-health-stat span{ font-size: 11px; font-weight:600; color: var(--gray-700); text-transform:uppercase; letter-spacing:0.02em; }
.pdash-health-stat strong{ font-size: 16px; font-weight:800; color: var(--navy); }
.pdash-health-buttons{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pdash-health-btn{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 4px;
  padding: 18px 14px;
  border-radius: var(--radius-md);
  color: var(--white);
  text-align:center;
}
.pdash-health-btn-label{ font-size: 11px; font-weight:700; text-transform:uppercase; letter-spacing:0.03em; opacity:.85; }
.pdash-health-btn-status{ font-size: 16px; font-weight:800; }
.pdash-health-btn-green{ background: var(--green); }
.pdash-health-btn-amber{ background: var(--amber); }
.pdash-health-btn-red{ background: var(--red); }
.pdash-optional-badge{
  display:inline-block;
  font-size: 10px;
  font-weight:700;
  letter-spacing:0.02em;
  text-transform:none;
  color: var(--purple);
  background: var(--purple-100);
  padding: 3px 9px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}

.pdash-table-wrap{ overflow-x:auto; }
.pdash-table{ width:100%; border-collapse:collapse; min-width: 560px; }
.pdash-table th, .pdash-table td{ padding: 8px 10px; font-size: 12px; text-align:right; white-space:nowrap; }
.pdash-table th:first-child, .pdash-table td:first-child{ text-align:left; }
.pdash-table thead th{ font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:0.02em; color: var(--gray-500); border-bottom: 1px solid var(--gray-100); }
.pdash-raid .pdash-table th, .pdash-raid .pdash-table td{ text-align:left; }
.pdash-table tbody td{ color: var(--navy); font-weight:600; border-bottom: 1px solid var(--gray-100); }
.pdash-table tbody tr:last-child td{ border-bottom:none; }
.pdash-table .pos{ color: var(--green); }
.pdash-table .neg{ color: var(--red); }

.pdash-update p{ font-size: 13px; color: var(--gray-700); line-height:1.6; }

.pdash-plan{ border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.pdash-plan-list{ display:flex; flex-direction:column; gap: 10px; margin-top: 4px; }
.pdash-plan-row{ display:grid; grid-template-columns: 170px 1fr 70px; align-items:center; gap: 12px; }
.pdash-plan-name{ font-size: 12px; font-weight:600; color: var(--navy); }
.pdash-plan-track{ position:relative; height: 10px; background: var(--gray-50); border-radius: 999px; overflow:hidden; }
.pdash-plan-bar{ position:absolute; top:0; height:100%; background: var(--purple); border-radius:999px; }
.pdash-plan-bar.behind{ background: var(--red); }
.pdash-plan-delta{ font-size: 11px; font-weight:700; color: var(--gray-700); text-align:right; }
.pdash-plan-delta.behind{ color: var(--red); }

.pdash-tooltip{
  position:absolute;
  left:50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);
  width: min(280px, 85vw);
  background: var(--navy);
  color: rgba(255,255,255,0.92);
  font-size: 12px;
  font-weight:500;
  line-height:1.5;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  opacity:0;
  pointer-events:none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 5;
}
.pdash-tooltip::after{
  content:"";
  position:absolute;
  top:100%; left:50%;
  transform:translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--navy);
}
.pdash-section:hover .pdash-tooltip{
  opacity:1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 760px){
  .pdash-top-grid{ grid-template-columns: 1fr; }
  .pdash-section{ border-left:none; border-top: 1px solid var(--gray-100); }
  .pdash-section:first-child{ border-top:none; }
  .pdash-kv-grid{ grid-template-columns: 1fr; }
  .pdash-health-grid{ grid-template-columns: 1fr 1fr; }
  .pdash-plan-row{ grid-template-columns: 110px 1fr 60px; }
  .pdash-tooltip{ position:static; transform:none; opacity:1; width:100%; margin-top:10px; display:none; }
  .pdash-section:hover .pdash-tooltip{ display:block; }
  .pdash-tooltip::after{ display:none; }
}

/* --- Sample initiative list table (Smartsheet-style) --- */
.initiative-table-wrap{
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  background: var(--white);
}
.initiative-table{
  width:100%;
  border-collapse: collapse;
  min-width: 860px;
}
.initiative-table th, .initiative-table td{
  padding: 13px 16px;
  font-size: 13.5px;
  text-align: left;
  white-space: nowrap;
}
.initiative-table thead th{
  font-size: 10.5px;
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color: var(--gray-700);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}
.initiative-table tbody tr{ border-bottom: 1px solid var(--gray-100); }
.initiative-table tbody tr:last-child{ border-bottom:none; }
.initiative-table tbody td{ color: var(--navy); font-weight:600; }
.initiative-table td:first-child{ font-weight:700; white-space:normal; min-width: 220px; }

/* --- Waterfall on light background (dark card wrapper) --- */
.maturity-badge{
  display:inline-flex; align-items:center; justify-content:center;
  width: 30px; height:30px; border-radius:50%;
  background: var(--purple); color: var(--white);
  font-size: 12px; font-weight:800;
}

@media (max-width: 480px){
  .sample-output{ padding: 22px; }
}

/* --- Implementation Management visuals --- */
.impl-visual{
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-100);
}
.impl-visual:first-of-type{ margin-top: 36px; padding-top: 0; border-top:none; }
.impl-visual-head{ margin-bottom: 24px; }
.impl-visual-tag{
  display:inline-block;
  font-size: 11px;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}
.impl-visual-head h4{ font-size: 18px; color: var(--navy); margin-bottom: 6px; }
.impl-visual-head p{ font-size: 13.5px; color: var(--gray-700); line-height:1.6; max-width: 640px; }

/* Inventory health dashboard chart */
.dashboard-chart-wrap{
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px 24px 6px;
}
.dashboard-chart-scroll{
  overflow-x: auto;
}
.dashboard-chart{
  display:flex;
  align-items:flex-end;
  gap: 8px;
  height: 220px;
  min-width: 640px;
  padding-top: 20px;
}
.dashboard-bar{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-end;
  height: 100%;
  gap: 6px;
  min-width: 34px;
}
.dashboard-bar-value{ font-size: 10.5px; font-weight:700; color: var(--navy); white-space:nowrap; }
.dashboard-bar-fill{ width:100%; border-radius: 4px 4px 0 0; transition: height .3s ease; min-height: 3px; }
.dashboard-bar-actual .dashboard-bar-fill{ background: var(--purple); }
.dashboard-bar-target .dashboard-bar-fill{
  background: var(--purple-100);
  border: 1.5px dashed var(--purple);
}
.dashboard-bar-label{ font-size: 10.5px; color: var(--gray-500); font-weight:600; padding-bottom: 12px; }
.dashboard-legend{ display:flex; gap: 22px; padding: 14px 4px 18px; }
.dashboard-dot-actual{ background: var(--purple); }
.dashboard-dot-target{ background: var(--purple-100); border: 1.5px dashed var(--purple); }
.dashboard-legend .legend-item{ color: var(--gray-700); }

/* Initiative governance framework (L0-L5 tracker) */
.gate-tracker{
  display:flex;
  gap: 0;
}
.gate-step{
  flex:1;
  position:relative;
  padding: 0 10px;
  text-align:center;
}
.gate-step::before{
  content:"";
  position:absolute;
  top: 19px;
  left:-50%;
  width:100%;
  height:2px;
  background: var(--gray-100);
  z-index:0;
}
.gate-step:first-child::before{ display:none; }
.gate-badge{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 38px; height:38px;
  border-radius:50%;
  background: var(--white);
  border: 2px solid var(--purple);
  color: var(--purple);
  font-size: 13px;
  font-weight:800;
  margin-bottom: 12px;
}
.gate-step-final .gate-badge{ background: var(--purple); color: var(--white); }
.gate-step-body h5{ font-size: 13.5px; color: var(--navy); margin-bottom: 6px; }
.gate-step-body p{ font-size: 12px; color: var(--gray-700); line-height:1.45; }

@media (max-width: 900px){
  .gate-tracker{ flex-direction:column; gap: 20px; }
  .gate-step{ display:flex; align-items:flex-start; gap:14px; text-align:left; padding:0; }
  .gate-step::before{ display:none; }
  .gate-badge{ margin-bottom:0; flex-shrink:0; }
  .gate-step-body{ flex:1; }
}

/* Governance rhythm cards */
.rhythm-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.rhythm-card{
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 22px;
}
.rhythm-card-featured{ border-color: var(--purple); background: var(--purple-100); }
.rhythm-freq{
  display:inline-block;
  font-size: 11px;
  font-weight:700;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color: var(--purple);
  background: var(--purple-100);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.rhythm-card-featured .rhythm-freq{ background: var(--white); }
.rhythm-card h5{ font-size: 15px; color: var(--navy); margin-bottom: 8px; }
.rhythm-card p{ font-size: 13px; color: var(--gray-700); line-height:1.55; }

@media (max-width: 900px){
  .rhythm-grid{ 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; }
.cta-alt-contact{
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-top: 20px;
}
.cta-alt-contact a{ color: rgba(255,255,255,0.9); text-decoration: underline; }
.cta-alt-contact a:hover{ color: var(--white); }

/* ================= 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; }
}
