:root {
  --bg: #f5f0e9;
  --bg-strong: #ece4d8;
  --surface: rgba(255, 253, 249, 0.94);
  --surface-strong: #173126;
  --surface-soft: #f8f3ec;
  --ink: #18261f;
  --ink-soft: #57655d;
  --line: rgba(24, 38, 31, 0.12);
  --line-strong: rgba(24, 38, 31, 0.24);
  --accent: #245843;
  --accent-strong: #173d2e;
  --accent-soft: #dbe8df;
  --warm: #c38f4a;
  --warm-soft: #efe1cb;
  --shadow: 0 8px 20px rgba(24, 38, 31, 0.05);
  --shadow-strong: 0 16px 32px rgba(24, 38, 31, 0.08);
  --hover-lift: -3px;
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 86px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #faf7f2 0%, var(--bg) 52%, #f1e9de 100%);
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding-bottom: 44px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: var(--header-height);
  padding: 16px 22px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.9);
  backdrop-filter: blur(12px);
  overflow: hidden;
  isolation: isolate;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.header-sweep-effect {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: 0;
  width: 22%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-170%) skewX(-14deg);
  transform-origin: center;
  will-change: transform, opacity;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(225, 236, 229, 0.02) 14%,
    rgba(219, 232, 223, 0.18) 34%,
    rgba(255, 255, 255, 0.58) 47%,
    rgba(245, 250, 247, 0.94) 50%,
    rgba(255, 255, 255, 0.58) 53%,
    rgba(219, 232, 223, 0.18) 66%,
    rgba(225, 236, 229, 0.02) 86%,
    transparent 100%
  );
  mix-blend-mode: screen;
  z-index: 4;
}

.header-sweep-effect::before {
  content: "";
  position: absolute;
  inset: -24% -82%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.02) 18%,
    rgba(221, 234, 226, 0.22) 50%,
    rgba(255, 255, 255, 0.02) 82%,
    transparent 100%
  );
  filter: blur(20px);
  opacity: 1;
}

.header-sweep-effect::after {
  content: "";
  position: absolute;
  top: 6%;
  bottom: 6%;
  left: 50%;
  width: 2px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 14%,
    rgba(255, 255, 255, 0.88) 50%,
    rgba(219, 232, 223, 0.72) 72%,
    transparent 100%
  );
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.3),
    0 0 18px rgba(219, 232, 223, 0.26);
}

.site-header > :not(.header-sweep-effect) {
  position: relative;
  z-index: 3;
}

.site-header.header-sweep .header-sweep-effect {
  animation: header-sweep-line 3600ms cubic-bezier(0.16, 0.68, 0.2, 1);
}

.site-header.is-scrolled {
  border-color: rgba(24, 38, 31, 0.08);
  background: rgba(255, 251, 246, 0.96);
  box-shadow: var(--shadow-strong);
}

@keyframes header-sweep-line {
  0% {
    transform: translateX(-170%) skewX(-14deg);
    opacity: 0;
  }

  10% {
    opacity: 0.98;
  }

  72% {
    opacity: 0.92;
  }

  100% {
    transform: translateX(560%) skewX(-14deg);
    opacity: 0;
  }
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  overflow: visible;
}

.brand {
  width: 252px;
  height: 56px;
}

.brand-logo,
.footer-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.site-nav {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  gap: 26px;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.header-cta,
.menu-toggle,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.header-cta {
  justify-self: end;
  padding: 13px 18px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.header-cta:hover,
.header-cta:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.section {
  padding: 60px 0;
}

section[id] {
  scroll-margin-top: 100px;
}

.hero-section {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  padding-top: clamp(28px, 4vw, 56px);
}

.hero-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 28px);
  align-items: start;
}

.hero-copy {
  display: grid;
  gap: clamp(20px, 2.6vw, 28px);
  max-width: none;
}

.hero-sidebar__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(36, 88, 67, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-sidebar__card strong,
.hero-stage__header strong {
  display: block;
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

.hero-stage__main {
  padding: clamp(26px, 3vw, 36px);
}

.hero-stage__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: end;
  margin-bottom: 24px;
}

.hero-stage__header strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 0.98;
}

.hero-stage__header p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.hero-stage__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.hero-stage__panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(24, 38, 31, 0.08);
  border-radius: var(--radius-md);
}

.hero-stage__panel--before {
  background: rgba(24, 38, 31, 0.04);
}

.hero-stage__panel--after {
  background: rgba(36, 88, 67, 0.08);
}

.hero-stage__label {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-stage__divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stage__divider span {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(24, 38, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.9);
}

.hero-stage__divider span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 46%;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: translate(-50%, -50%) rotate(45deg);
}

.hero-sidebar {
  display: grid;
  gap: 18px;
}

.hero-sidebar__card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(24, 38, 31, 0.08);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-sidebar__card strong {
  font-size: 1.6rem;
  line-height: 1.08;
}

.hero-sidebar__card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.hero-sidebar__list,
.hero-stage__panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-sidebar__list li,
.hero-stage__panel li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.hero-sidebar__list li::before,
.hero-stage__panel li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--warm);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(36, 88, 67, 0.38);
}

.hero-copy h1,
.section-intro h2,
.objection-card h2,
.scan-card h2,
.cta-card h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: none;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.94;
}

.hero-copy .lead {
  max-width: none;
}

.section-intro h2,
.objection-card h2,
.scan-card h2,
.cta-card h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.98;
}

.lead,
.section-copy,
.problem-callout p,
.solution-card p,
.service-card li,
.result-card p,
.case-placeholder p,
.objection-card p,
.scan-card p,
.visual-card li,
.visual-stat p,
.footer-note {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.lead {
  max-width: 60ch;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  padding: 14px 22px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-strong);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 251, 246, 0.7);
  color: var(--ink);
}

.button-large {
  padding: 16px 28px;
  font-size: 1rem;
}

.hero-points,
.service-card ul,
.visual-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.service-card li,
.visual-card li {
  position: relative;
  padding-left: 22px;
}

.hero-points li::before,
.service-card li::before,
.visual-card li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--warm);
}

.visual-card,
.visual-stat,
.problem-item,
.problem-callout,
.solution-card,
.service-card,
.result-card,
.case-placeholder,
.roi-panel,
.roi-card,
.objection-card,
.scan-card,
.cta-card {
  border: 1px solid rgba(24, 38, 31, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.visual-card {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.visual-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(24, 38, 31, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visual-card--large {
  background: var(--surface);
  height: 100%;
  align-content: center;
}

.visual-card__header {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.visual-chip,
.service-card__tag,
.problem-callout__label,
.case-placeholder__label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(36, 88, 67, 0.14);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-card__header strong {
  font-size: 1.4rem;
  line-height: 1.35;
}

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

.visual-column {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(24, 38, 31, 0.08);
}

.visual-column--before {
  background: rgba(24, 38, 31, 0.04);
}

.visual-column--after {
  background: rgba(36, 88, 67, 0.08);
}

.visual-column:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(24, 38, 31, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visual-column__label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin: 0;
}

.hero-stats {
  width: 100vw;
  gap: clamp(18px, 2vw, 28px);
  margin-left: calc(50% - 50vw);
  padding: 0 max(20px, calc((100vw - var(--container)) / 2));
}

.hero-stats .visual-stat {
  min-height: 100%;
  padding: 24px clamp(24px, 3vw, 36px);
}

.visual-stat {
  height: 100%;
  padding: 18px 20px;
  border-radius: var(--radius-md);
}

.visual-stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(24, 38, 31, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visual-stat span,
.result-card__metric {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-stat strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1;
}

.section-intro {
  display: grid;
  gap: 16px;
  max-width: 680px;
  margin-bottom: 34px;
}

.problem-section {
  position: relative;
}

.problem-grid,
.results-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 24px;
  align-items: start;
}

.problem-list {
  display: grid;
  gap: 16px;
}

.problem-item,
.solution-card,
.service-card,
.result-card {
  padding: 24px;
  border-radius: var(--radius-md);
}

.problem-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
}

.problem-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(24, 38, 31, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-item span,
.solution-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--warm-soft);
  color: #83510f;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.problem-item p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.6;
}

.problem-callout {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.problem-callout:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(24, 38, 31, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-callout strong,
.case-placeholder strong {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.02;
}

.solution-section,
.services-section,
.results-section,
.cta-section {
  position: relative;
}

.solution-grid,
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.solution-card {
  display: grid;
  gap: 18px;
  background: rgba(255, 251, 246, 0.94);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(24, 38, 31, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card h3,
.service-card h3 {
  margin: 0;
  font-size: 1.28rem;
}

.solution-note {
  margin: 28px 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.service-card {
  display: grid;
  gap: 18px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(24, 38, 31, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card__top {
  display: grid;
  gap: 12px;
}

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

.result-card {
  min-height: 180px;
}

.result-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(24, 38, 31, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card__metric {
  color: var(--accent);
}

.case-placeholder {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.case-placeholder:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(24, 38, 31, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roi-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr);
  gap: 24px;
  align-items: start;
}

.roi-copy {
  margin-bottom: 0;
}

.roi-range {
  display: grid;
  gap: 14px;
  margin-top: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.roi-range:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(24, 38, 31, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roi-range__header,
.roi-band {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.roi-range__header span {
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 0.9rem;
}

.roi-band span,
.roi-card span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.roi-range__header strong,
.roi-band strong,
.roi-card strong {
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.roi-range__header strong {
  font-size: 0.9rem;
}

.roi-slider {
  width: 100%;
  height: 8px;
  appearance: none;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 88, 67, 0.12), rgba(36, 88, 67, 0.3));
  outline: none;
}

.roi-slider::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 4px 12px rgba(24, 38, 31, 0.12);
  cursor: pointer;
}

.roi-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 4px 12px rgba(24, 38, 31, 0.12);
  cursor: pointer;
}

.roi-slider::-moz-range-track {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 88, 67, 0.12), rgba(36, 88, 67, 0.3));
}

.roi-range__scale {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.roi-note {
  margin: 18px 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.roi-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.roi-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(24, 38, 31, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.roi-card {
  padding: 22px;
  border-radius: var(--radius-md);
}

.roi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(24, 38, 31, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roi-card strong {
  display: block;
  margin: 8px 0 12px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 0.98;
}

.roi-card p,
.roi-band p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.roi-band {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(24, 38, 31, 0.02);
}

.roi-band:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(24, 38, 31, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roi-band strong {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.objection-card {
  display: grid;
  gap: 18px;
  max-width: 900px;
  padding: 38px;
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.objection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(24, 38, 31, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scan-card,
.cta-card {
  display: grid;
  justify-items: start;
  gap: 22px;
  padding: 42px;
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.scan-card:hover,
.cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(24, 38, 31, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.text-link {
  width: fit-content;
  color: var(--accent);
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent-strong);
}

.scan-note {
  font-weight: 600;
}

.visual-card,
.visual-stat,
.problem-item,
.problem-callout,
.service-card,
.roi-range,
.roi-panel,
.roi-card,
.roi-band,
.scan-card,
.cta-card {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.visual-card:hover,
.visual-stat:hover,
.problem-item:hover,
.problem-callout:hover,
.service-card:hover,
.roi-range:hover,
.roi-panel:hover,
.roi-card:hover,
.roi-band:hover,
.scan-card:hover,
.cta-card:hover {
  transform: translateY(var(--hover-lift));
  box-shadow: var(--shadow-strong);
}

.visual-column {
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.visual-column:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(24, 38, 31, 0.14);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.footer-brand {
  width: 220px;
  height: 48px;
}

html.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

html.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *:not(.header-sweep-effect),
  *:not(.header-sweep-effect)::before,
  *:not(.header-sweep-effect)::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 16px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(24, 38, 31, 0.08);
    border-radius: 24px;
    background: rgba(255, 251, 246, 0.98);
    box-shadow: 0 18px 38px rgba(24, 38, 31, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero-intro,
  .hero-stage,
  .hero-stage__header,
  .problem-grid,
  .roi-layout,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .solution-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .results-list,
  .roi-results,
  .visual-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stage__grid {
    grid-template-columns: 1fr;
  }

  .hero-stage__divider {
    display: none;
  }

}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header {
    top: 12px;
    padding: 14px 16px;
    border-radius: 30px;
  }

  .brand {
    width: 221px;
    height: 49px;
  }

  .brand-logo,
  .footer-logo {
    transform: none;
  }

  .section {
    padding: 72px 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 14vw, 4.8rem);
  }

  .visual-columns,
  .results-list,
  .roi-results,
  .visual-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    padding: 0 24px;
  }

  .problem-item {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .objection-card,
  .hero-sidebar__card,
  .scan-card,
  .cta-card,
  .problem-callout,
  .case-placeholder,
  .roi-range,
  .roi-panel,
  .visual-card {
    padding: 26px;
  }

  .roi-range__header,
  .roi-band {
    align-items: start;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
