:root {
  --navy: #0b1728;
  --ink: #172033;
  --muted: #647084;
  --line: #d6e0ea;
  --panel: #ffffff;
  --wash: #f3f7fb;
  --green: #10b981;
  --green-soft: #ddf7ed;
  --green-dark: #047857;
  --orange: #f59e0b;
  --orange-soft: #fff3dc;
  --sky: #0ea5e9;
  --blue: #246bfe;
  --shadow: 0 22px 60px rgba(11, 23, 40, 0.12);
  --hard-shadow: 0 28px 80px rgba(11, 23, 40, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(11, 23, 40, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 23, 40, 0.035) 1px, transparent 1px),
    #f7fafc;
  background-size: 48px 48px;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--navy);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 5vw, 72px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  color: var(--navy);
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #475467;
  font-size: 14px;
  font-weight: 700;
}

.nav > a,
.nav-group > a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
}

.nav-group {
  position: relative;
}

.nav-group > a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  min-width: 230px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.nav-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--ink);
}

.nav-menu a:hover {
  background: var(--wash);
  color: var(--navy);
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-cta,
.primary-action,
.offer-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 850;
}

.header-cta {
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #12365a);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 72px) 64px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(16, 185, 129, 0.1), transparent 36%),
    linear-gradient(180deg, #fff 0%, #f4f8fb 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(11, 23, 40, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 23, 40, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 68%);
}

.hero-copy,
.report-card {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker,
.plan-label,
.mini-label {
  color: #08764c;
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 8px;
  background: var(--green-soft);
  border: 1px solid rgba(16, 185, 129, 0.18);
  margin: 0 0 22px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.16);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: var(--navy);
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1;
  letter-spacing: 0;
  max-width: 760px;
  margin-bottom: 24px;
}

.hero-text {
  color: #475467;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.52;
  max-width: 700px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 34px;
}

.primary-action {
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #12466c);
  box-shadow: 0 16px 34px rgba(11, 23, 40, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.primary-action:hover,
.header-cta:hover,
.offer-card a:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(11, 23, 40, 0.2);
  filter: saturate(1.08);
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 26px;
}

.signal-row span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: 8px;
  padding: 0 12px;
  color: #0f4f74;
  background: rgba(14, 165, 233, 0.08);
  font-size: 13px;
  font-weight: 850;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--navy);
}

.price strong {
  font-size: 34px;
}

.price span {
  color: var(--muted);
  font-weight: 750;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 680px;
}

.trust-row div {
  min-height: 98px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(11, 23, 40, 0.055);
}

.trust-row strong {
  display: block;
  color: var(--navy);
  font-size: 28px;
  margin-bottom: 6px;
}

.trust-row span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.report-card,
.preview-panel,
.offer-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.report-card {
  overflow: hidden;
  position: relative;
  box-shadow: var(--hard-shadow);
}

.report-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid var(--green);
  pointer-events: none;
}

.report-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #ffffff, #f4fbff);
}

.report-head h2 {
  margin: 7px 0 0;
  color: var(--navy);
  font-size: 22px;
}

.badge {
  align-self: start;
  white-space: nowrap;
  color: #08764c;
  background: var(--green-soft);
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
}

.saving-block {
  margin: 22px;
  padding: 20px;
  border: 1px solid #c4efde;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #effdf7, #fff),
    linear-gradient(90deg, rgba(16, 185, 129, 0.1) 1px, transparent 1px);
  background-size: auto, 22px 22px;
}

.saving-block span {
  display: block;
  color: #08764c;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 4px;
}

.saving-block strong {
  color: var(--green);
  font-size: 46px;
}

.finding-list {
  padding: 0 22px;
}

.finding-list article {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #edf2f7;
}

.finding-list h3 {
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 4px;
}

.finding-list p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 0;
}

.finding-list article > strong {
  color: #8a5600;
  background: var(--orange-soft);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12px;
  white-space: nowrap;
}

.icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  position: relative;
  background: #eef4fb;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  border-radius: 4px;
}

.compute::before {
  left: 8px;
  right: 8px;
  top: 9px;
  height: 13px;
  border: 2px solid var(--blue);
}

.storage::before {
  left: 8px;
  right: 8px;
  top: 8px;
  height: 16px;
  border: 2px solid var(--green);
  border-radius: 50%;
}

.logs::before {
  left: 9px;
  top: 8px;
  width: 14px;
  height: 18px;
  border: 2px solid var(--orange);
}

.cost-chart {
  height: 98px;
  margin: 22px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  border-radius: 8px;
  padding: 12px 14px 0;
  background:
    linear-gradient(180deg, transparent 24%, #eef3f7 24%, #eef3f7 25%, transparent 25%),
    linear-gradient(180deg, transparent 49%, #eef3f7 49%, #eef3f7 50%, transparent 50%),
    linear-gradient(180deg, transparent 74%, #eef3f7 74%, #eef3f7 75%, transparent 75%);
}

.cost-chart span {
  width: 38px;
  border-radius: 7px 7px 0 0;
  background: var(--blue);
  animation: growBar 850ms ease both;
  transform-origin: bottom;
}

.cost-chart span:nth-last-child(-n+3) {
  background: var(--green);
}

.scan-line {
  height: 3px;
  width: 130px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 128px;
  opacity: 0.75;
  animation: scan 3.4s ease-in-out infinite;
}

.strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip div {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  color: var(--navy);
  background: #fff;
  font-weight: 850;
}

.provider-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.provider-strip a {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: #0f4f74;
  background: #f8fcff;
  font-weight: 900;
}

.provider-strip a:hover {
  background: #eef9ff;
}

.computheure-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
  padding: clamp(36px, 6vw, 72px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(14, 165, 233, 0.1), transparent 42%),
    #fff;
}

.computheure-proof h2 {
  max-width: 620px;
  margin: 12px 0 14px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
}

.computheure-proof p {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.computheure-proof a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 0 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid article {
  min-height: 160px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fcff;
}

.proof-grid strong {
  color: var(--navy);
  font-size: 22px;
}

.proof-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.visual-story {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1.05fr;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, #fff, #f8fbfe);
  border-bottom: 1px solid var(--line);
}

.story-card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--panel);
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(11, 23, 40, 0.06);
}

.story-card h2 {
  color: var(--navy);
  font-size: 26px;
  line-height: 1.14;
  margin: 10px 0 12px;
}

.story-card p {
  color: #475467;
  line-height: 1.5;
  margin-bottom: 0;
}

.story-label {
  color: #08764c;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.story-icon {
  width: 96px;
  height: 96px;
  position: absolute;
  right: 20px;
  bottom: 18px;
  opacity: 0.14;
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 45%, var(--orange) 45%, var(--orange) 55%, transparent 55%),
    linear-gradient(180deg, var(--blue) 0 18%, transparent 18% 28%, var(--green) 28% 46%, transparent 46% 56%, var(--orange) 56% 74%, transparent 74%);
}

.before-after {
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.16), transparent 45%),
    var(--navy);
}

.before-after .story-label {
  color: #b9f1d8;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.comparison div {
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.comparison span,
.comparison strong {
  display: block;
}

.comparison span {
  color: #b7c2d0;
  font-size: 13px;
  font-weight: 800;
}

.comparison strong {
  color: #fff;
  font-size: 29px;
  margin-top: 6px;
}

.comparison div:last-child strong {
  color: #5ff0aa;
}

.delta {
  margin-top: 16px;
  color: #102033;
  background: #b9f1d8;
  border-radius: 8px;
  padding: 13px 14px;
  font-weight: 900;
  text-align: center;
}

.section {
  padding: clamp(62px, 9vw, 108px) clamp(18px, 5vw, 72px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.section h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.section p {
  color: #475467;
  font-size: 18px;
  line-height: 1.58;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.steps article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(11, 23, 40, 0.045);
}

.steps span {
  color: var(--green);
  font-weight: 900;
}

.steps h3 {
  margin: 12px 0 8px;
  color: var(--navy);
}

.steps p {
  font-size: 15px;
  margin: 0;
}

.report-section {
  background: var(--wash);
}

.resources-section {
  background: #fff;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.resource-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.08), transparent 42%),
    #fff;
  box-shadow: 0 12px 30px rgba(11, 23, 40, 0.045);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.resource-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(11, 23, 40, 0.09);
}

.resource-card span {
  color: #08764c;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-card h3 {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.14;
  margin: 18px 0 10px;
}

.resource-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.check-section {
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.08), transparent 36%),
    #fff;
}

.check-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 26px;
  align-items: start;
}

.check-form,
.score-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(11, 23, 40, 0.08);
}

.check-form {
  padding: 24px;
  display: grid;
  gap: 18px;
}

.check-form label,
.check-form legend {
  color: var(--navy);
  font-weight: 850;
}

.check-form select {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.check-form fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  display: grid;
  gap: 12px;
}

.check-form fieldset label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #475467;
  font-weight: 700;
}

.check-form input {
  margin-top: 4px;
  accent-color: var(--green);
}

.check-form button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #12466c);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.privacy-note {
  margin: 0;
  color: #08764c;
  background: var(--green-soft);
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  font-weight: 750;
}

.score-panel {
  padding: 24px;
  position: sticky;
  top: 96px;
}

.score-label {
  color: #08764c;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.score-ring {
  --score: 0deg;
  width: 148px;
  height: 148px;
  margin: 12px 0 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 42px;
  font-weight: 950;
  background:
    radial-gradient(circle at center, #fff 0 58%, transparent 59%),
    conic-gradient(var(--green) 0 var(--score), #edf2f7 var(--score) 360deg);
  box-shadow: inset 0 0 0 1px rgba(11, 23, 40, 0.04);
}

.score-panel h3 {
  color: var(--navy);
  font-size: 26px;
  margin-bottom: 10px;
}

.score-panel p {
  font-size: 15px;
}

.score-panel ul {
  margin: 0 0 22px;
  padding-left: 19px;
  color: #475467;
  line-height: 1.7;
  font-weight: 700;
}

.score-panel a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #12466c);
  font-weight: 900;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.report-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.preview-panel {
  padding: 28px;
}

.preview-line {
  height: 14px;
  width: 48%;
  border-radius: 8px;
  background: #dfe8f2;
  margin-bottom: 12px;
}

.preview-line.wide {
  width: 78%;
  height: 22px;
  background: var(--navy);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 26px 0;
}

.preview-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.preview-grid strong,
.preview-grid span {
  display: block;
}

.preview-grid strong {
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 6px;
}

.preview-grid span {
  color: var(--muted);
  font-weight: 700;
}

.preview-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.preview-table div {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr;
}

.preview-table div:first-child {
  background: var(--navy);
  color: #fff;
  font-weight: 850;
}

.preview-table span {
  padding: 13px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.deliverables {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.deliverables li {
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-weight: 850;
}

.offers {
  background: #fff;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.offer-card {
  padding: 26px;
  box-shadow: none;
}

.offer-card.featured {
  border-color: #b8e7d5;
  box-shadow: var(--shadow);
}

.offer-card h3 {
  color: var(--navy);
  font-size: 25px;
  margin: 12px 0 10px;
}

.plan-price {
  color: var(--navy);
  font-size: 34px;
  font-weight: 900;
  margin: 20px 0;
}

.plan-price span {
  color: var(--muted);
  font-size: 15px;
}

.offer-card ul {
  padding-left: 20px;
  color: #475467;
  line-height: 1.8;
  margin-bottom: 24px;
}

.offer-card a {
  background: var(--navy);
  color: #fff;
  padding: 0 18px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 72px);
  background: var(--wash);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 850;
}

details p {
  margin: 12px 0 0;
  font-size: 15px;
}

.footer {
  padding: 44px clamp(18px, 5vw, 72px) 26px;
  border-top: 1px solid var(--line);
  background: #081424;
  color: #d8e2ee;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.6fr);
  gap: clamp(28px, 5vw, 68px);
}

.footer .brand {
  color: #fff;
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0;
  color: #aebbd0;
  line-height: 1.65;
  font-weight: 600;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badges span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.footer-links h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer-links a {
  display: block;
  padding: 5px 0;
  color: #aebbd0;
  font-size: 14px;
  font-weight: 650;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #aebbd0;
  font-size: 14px;
  font-weight: 650;
}

.footer p {
  margin: 0;
}

.content-page {
  background: #fff;
}

.content-hero {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px) clamp(42px, 6vw, 72px);
  background:
    linear-gradient(115deg, rgba(16, 185, 129, 0.12), transparent 36%),
    linear-gradient(180deg, #fff 0%, #f5f9fc 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.content-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(11, 23, 40, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 23, 40, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
}

.content-hero > * {
  position: relative;
  z-index: 1;
}

.content-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 5vw, 70px);
}

.content-hero p:not(.eyebrow) {
  max-width: 780px;
  color: #475467;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.content-grid,
.content-split,
.report-sample,
.content-faq,
.cta-band {
  margin: 0 clamp(18px, 5vw, 72px);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(44px, 7vw, 76px) 0;
}

.content-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(11, 23, 40, 0.055);
}

.content-card span {
  color: var(--green-dark);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 13px;
}

.content-card h2 {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
  margin: 14px 0 10px;
}

.content-card p {
  color: #475467;
  line-height: 1.58;
  margin: 0;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 72px);
  padding: clamp(44px, 7vw, 76px) 0;
  border-top: 1px solid var(--line);
}

.content-split h2 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
}

.article-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.article-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  color: var(--navy);
  background: #fff;
  font-weight: 800;
}

.report-sample {
  margin-top: clamp(42px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.checklist-panel {
  margin: clamp(42px, 6vw, 70px) clamp(18px, 5vw, 72px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.checklist-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: cloud-list;
}

.checklist-panel li {
  counter-increment: cloud-list;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  color: #334155;
  font-weight: 750;
  line-height: 1.5;
}

.checklist-panel li::before {
  content: counter(cloud-list, decimal-leading-zero);
  color: var(--green-dark);
  font-weight: 950;
}

.checklist-panel li:last-child {
  border-bottom: 0;
}

.site-map-list {
  margin: clamp(42px, 6vw, 70px) clamp(18px, 5vw, 72px) clamp(54px, 8vw, 92px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.site-map-list a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(11, 23, 40, 0.045);
}

.site-map-list span,
.site-map-list strong {
  display: block;
}

.site-map-list span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.site-map-list strong {
  color: var(--navy);
  font-size: 20px;
}

.contact-options {
  margin: 0 clamp(18px, 5vw, 72px) clamp(44px, 7vw, 76px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-options article {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.08), transparent 46%),
    #fff;
  box-shadow: 0 14px 34px rgba(11, 23, 40, 0.055);
}

.contact-options span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-options h2 {
  color: var(--navy);
  font-size: 25px;
  line-height: 1.14;
  margin: 16px 0 10px;
}

.contact-options p {
  color: #475467;
  line-height: 1.55;
  margin: 0 0 22px;
}

.contact-options a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 8px;
  padding: 0 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #12466c);
  font-weight: 900;
}

.simulator-layout {
  margin: clamp(42px, 6vw, 70px) clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 26px;
  align-items: start;
}

.roi-form,
.roi-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(11, 23, 40, 0.08);
}

.roi-form {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.roi-form label {
  color: var(--navy);
  font-weight: 850;
}

.roi-form input,
.roi-form select {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.roi-form button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #12466c);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.check-flags {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.check-flags[hidden] {
  display: none;
}

.check-flags legend {
  color: var(--navy);
  font-weight: 850;
  padding: 0 0 6px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.check-item input {
  width: auto;
  min-height: auto;
  margin-top: 3px;
  flex-shrink: 0;
}

.roi-result {
  padding: 24px;
  position: sticky;
  top: 96px;
}

.roi-result > strong {
  display: block;
  color: var(--green);
  font-size: 54px;
  line-height: 1;
  margin: 14px 0 8px;
}

.roi-result > span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 22px;
}

.roi-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.roi-metrics div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f8fbfe;
}

.roi-metrics b,
.roi-metrics small {
  display: block;
}

.roi-metrics b {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 4px;
}

.roi-metrics small {
  color: var(--muted);
  font-weight: 800;
}

.roi-result p:not(.score-label) {
  color: #475467;
  line-height: 1.55;
}

.roi-result a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #12466c);
  font-weight: 900;
}

.brief-layout {
  margin: clamp(42px, 6vw, 70px) clamp(18px, 5vw, 72px) clamp(54px, 8vw, 92px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 26px;
  align-items: start;
}

.brief-form,
.brief-output {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(11, 23, 40, 0.08);
}

.brief-form {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.brief-form label {
  color: var(--navy);
  font-weight: 850;
}

.brief-form input,
.brief-form select,
.brief-form textarea,
.brief-output textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.brief-form input,
.brief-form select {
  min-height: 48px;
}

.brief-form textarea,
.brief-output textarea {
  resize: vertical;
  line-height: 1.5;
}

.brief-form button,
.brief-actions button,
.brief-actions a {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.brief-form button,
.brief-actions a {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #12466c);
}

.brief-actions button {
  color: var(--navy);
  background: var(--green-soft);
}

.brief-output {
  padding: 24px;
  position: sticky;
  top: 96px;
}

.brief-output textarea {
  min-height: 290px;
  margin: 12px 0 16px;
}

.brief-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.brief-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--green-dark);
  font-weight: 850;
}

.glossary-list {
  margin: clamp(42px, 6vw, 70px) clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.glossary-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(11, 23, 40, 0.045);
}

.glossary-list span {
  display: block;
  color: var(--navy);
  font-size: 22px;
  font-weight: 950;
  margin-bottom: 8px;
}

.glossary-list p {
  color: #475467;
  line-height: 1.58;
  margin: 0;
}

.timeline {
  margin: clamp(42px, 6vw, 70px) clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.timeline article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.08), transparent 46%),
    #fff;
  box-shadow: 0 12px 28px rgba(11, 23, 40, 0.045);
}

.timeline span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 8px;
  padding: 0 10px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.timeline h2 {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.12;
  margin: 18px 0 10px;
}

.timeline p {
  color: #475467;
  line-height: 1.55;
  margin: 0;
}

.sample-row {
  display: grid;
  grid-template-columns: 1.6fr 0.55fr 0.55fr 0.7fr;
}

.sample-row span {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  color: #475467;
  font-weight: 750;
}

.sample-head {
  background: var(--navy);
}

.sample-head span {
  color: #fff;
  font-weight: 900;
}

.content-faq {
  padding: clamp(44px, 7vw, 76px) 0;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-bottom: clamp(54px, 8vw, 92px);
  padding: 30px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.18), transparent 45%),
    var(--navy);
}

.cta-band h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.cta-band p {
  margin: 0;
  color: #c9d4e2;
  font-size: 17px;
  line-height: 1.5;
}

.cta-band a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 8px;
  padding: 0 18px;
  color: var(--navy);
  background: var(--green-soft);
  font-weight: 950;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  flex-wrap: wrap;
}

.cta-band a.secondary-cta {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

@media (max-width: 920px) {
  .site-header {
    height: auto;
    min-height: 76px;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav {
    order: 3;
    width: 100%;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-top: 8px;
    border-top: 1px solid var(--line);
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .nav > a,
  .nav-group > a {
    min-height: 36px;
    flex: 0 0 auto;
    padding: 0 2px;
  }

  .nav-group > a::after,
  .nav-menu {
    display: none;
  }

  .hero,
  .two-column,
  .report-preview,
  .check-layout,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .strip,
  .provider-strip,
  .visual-story,
  .computheure-proof,
  .proof-grid,
  .offer-grid,
  .resource-grid,
  .content-grid,
  .content-split,
  .site-map-list,
  .contact-options,
  .simulator-layout,
  .brief-layout,
  .glossary-list,
  .timeline {
    grid-template-columns: 1fr;
  }

  .content-grid {
    gap: 14px;
  }

  .sample-row {
    grid-template-columns: 1fr;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    width: 100%;
  }

  .roi-result,
  .brief-output {
    position: static;
  }

  .steps,
  .trust-row,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .report-card {
    max-width: 560px;
  }

  .score-panel {
    position: static;
  }

  .footer-main,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@keyframes growBar {
  from {
    transform: scaleY(0.18);
    opacity: 0.45;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes scan {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(285px);
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  h1 {
    font-size: 42px;
  }

  .finding-list article,
  .preview-table div {
    grid-template-columns: 1fr;
  }

  .finding-list .icon {
    display: none;
  }

  .finding-list article > strong {
    justify-self: start;
  }
}
