@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #eef7f6;
  --surface: rgba(255, 255, 255, 0.84);
  --text: #12383b;
  --muted: #567679;
  --line: rgba(24, 96, 100, 0.12);
  --sea-900: #0f4d53;
  --sea-800: #146168;
  --sea-700: #1b6f74;
  --sea-600: #2a888d;
  --sea-400: #73b8b8;
  --foam: #dbf1ef;
  --shadow: 0 30px 60px rgba(20, 68, 72, 0.12);
  --shadow-soft: 0 18px 36px rgba(20, 68, 72, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  background:
    radial-gradient(circle at top left, rgba(148, 208, 204, 0.46), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(197, 227, 221, 0.8), transparent 24%),
    linear-gradient(180deg, #f4fbfa 0%, var(--bg) 46%, #f8fcfb 100%);
}

img,
video {
  max-width: 100%;
}

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

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
}

.ambient {
  position: fixed;
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.75;
  z-index: 0;
  animation: drift 18s ease-in-out infinite;
}

.ambient-left {
  width: 360px;
  height: 360px;
  left: -90px;
  top: 120px;
  background: radial-gradient(circle, rgba(118, 194, 190, 0.34) 0%, transparent 72%);
}

.ambient-right {
  width: 440px;
  height: 440px;
  right: -120px;
  top: 420px;
  background: radial-gradient(circle, rgba(177, 221, 217, 0.34) 0%, transparent 70%);
  animation-duration: 24s;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 20px 0 0;
  transition: padding 0.25s ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(20, 97, 104, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(16, 60, 64, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(27, 111, 116, 0.1);
  box-shadow: 0 12px 28px rgba(16, 60, 64, 0.08);
}

.brand-logo,
.footer-logo,
.thankyou-logo,
.hero-brand-logo {
  display: block;
}

.brand-logo {
  width: 100%;
  height: 100%;
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.75rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--sea-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.audio-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(27, 111, 116, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--sea-900);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 20px 42px rgba(16, 60, 64, 0.12);
  backdrop-filter: blur(18px);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.audio-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(27, 111, 116, 0.22);
}

.audio-toggle.is-active {
  background: rgba(219, 241, 239, 0.92);
  border-color: rgba(27, 111, 116, 0.22);
}

.audio-toggle-floating {
  position: fixed;
  top: 108px;
  right: 24px;
  z-index: 12;
  max-width: calc(100vw - 32px);
}

.audio-toggle-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(219, 241, 239, 0.86);
  border: 1px solid rgba(27, 111, 116, 0.12);
  color: var(--sea-700);
  flex-shrink: 0;
}

.audio-toggle-icon svg {
  width: 20px;
  height: 20px;
}

.audio-toggle-copy {
  display: grid;
  gap: 1px;
  text-align: left;
}

.audio-toggle-label {
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.audio-toggle-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(27, 111, 116, 0.32);
  box-shadow: 0 0 0 6px rgba(27, 111, 116, 0.08);
  transition: background 0.18s ease, box-shadow 0.18s ease;
  flex-shrink: 0;
}

.audio-toggle.is-active .audio-toggle-dot {
  background: var(--sea-600);
  box-shadow: 0 0 0 6px rgba(42, 136, 141, 0.14);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled,
.button[aria-busy="true"] {
  opacity: 0.72;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.button-primary {
  color: white;
  background: linear-gradient(145deg, var(--sea-600), var(--sea-800));
  box-shadow: 0 14px 24px rgba(24, 96, 100, 0.16);
}

.button-secondary {
  color: var(--sea-900);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(27, 111, 116, 0.16);
}

.button-tertiary {
  color: var(--sea-900);
  background: rgba(219, 241, 239, 0.58);
  border-color: rgba(27, 111, 116, 0.12);
}

.button-compact {
  padding: 11px 18px;
  white-space: nowrap;
}

.hero {
  position: relative;
  padding: 40px 0 64px;
  isolation: isolate;
  min-height: 680px;
  display: flex;
  align-items: stretch;
}

.hero-media,
.hero-poster,
.hero-video,
.hero-media-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
}

.hero-poster {
  background:
    linear-gradient(180deg, rgba(11, 55, 59, 0.2), rgba(11, 55, 59, 0.56)),
    linear-gradient(135deg, rgba(219, 241, 239, 0.26), rgba(20, 97, 104, 0.3)),
    url("https://cdn.pixabay.com/video/2022/03/19/111263-690770660_large.jpg") center 32% / cover no-repeat;
  transform: scale(1.06);
  animation: heroPosterFloat 24s ease-in-out infinite;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero.hero-media-ready .hero-video {
  opacity: 1;
}

.hero.hero-media-ready .hero-poster {
  opacity: 0.28;
}

.hero-media-overlay {
  background:
    linear-gradient(180deg, rgba(244, 250, 249, 0.9) 0%, rgba(241, 249, 248, 0.76) 34%, rgba(238, 247, 246, 0.86) 100%),
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.38) 28%, transparent 58%),
    radial-gradient(circle at 14% 24%, rgba(222, 245, 243, 0.38), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(98, 168, 170, 0.14), transparent 22%);
}

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

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 84px;
  background:
    radial-gradient(circle at 20% -50%, rgba(115, 184, 184, 0.14), transparent 44%),
    linear-gradient(180deg, transparent 0%, rgba(219, 241, 239, 0.34) 100%);
  z-index: 0;
}

.hero-grid,
.source-layout,
.contact-shell,
.audience-layout {
  display: grid;
  gap: 22px;
}

.hero-shell {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 980px;
  justify-items: center;
}

.hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  width: 100%;
}

html.reveal-ready .hero-panel,
html.reveal-ready .section-heading,
html.reveal-ready .feature-card,
html.reveal-ready .track-card,
html.reveal-ready .module-card,
html.reveal-ready .step-card,
html.reveal-ready .benefit-card,
html.reveal-ready .source-card,
html.reveal-ready .team-card,
html.reveal-ready .pricing-card,
html.reveal-ready .report-shell,
html.reveal-ready .calculator-shell,
html.reveal-ready .lead-form,
html.reveal-ready .contact-copy,
html.reveal-ready .thankyou-shell,
html.reveal-ready .legal-shell {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow,
.section-kicker,
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(219, 241, 239, 0.88);
  border: 1px solid rgba(27, 111, 116, 0.1);
  color: var(--sea-800);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-copy h2,
.thankyou-shell h1,
.legal-shell h1 {
  margin: 20px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 11.2ch;
  font-size: clamp(3.7rem, 7.4vw, 6rem);
  color: #11393d;
  line-height: 0.92;
  text-wrap: balance;
}

.hero-lead,
.section-heading p,
.contact-copy p,
.thankyou-shell p,
.legal-shell p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-lead {
  max-width: 760px;
  margin: 20px auto 0;
  color: #274d51;
  font-size: 1.1rem;
  line-height: 1.72;
}

.hero-details {
  display: grid;
  gap: 8px;
  justify-items: center;
  margin-top: 16px;
}

.hero-detail {
  margin: 0;
  color: var(--sea-900);
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.62;
}

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

.hero-actions {
  margin-top: 22px;
}

.hero-copy .eyebrow,
.hero-followup-intro .section-kicker {
  margin-inline: auto;
}

.hero-lockup {
  display: grid;
  gap: 2px;
  justify-items: center;
  margin-bottom: 12px;
}

.hero-lockup-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sea-900);
  letter-spacing: 0.01em;
}

.hero-lockup-subtitle {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.hero-panel,
.contact-shell,
.thankyou-shell,
.legal-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(232, 246, 244, 0.72));
  border: 1px solid rgba(27, 111, 116, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 12px;
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 54px 0 18px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -12%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115, 184, 184, 0.26), transparent 70%);
}

.hero-card,
.feature-card,
.benefit-card,
.step-card,
.audience-card,
.source-card,
.team-card,
.lead-form,
.thankyou-shell,
.legal-shell {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-card,
.feature-card,
.benefit-card,
.team-card,
.source-card,
.step-card {
  padding: 20px;
}

.hero-panel .hero-card {
  padding: 16px;
}

.hero-card-stack,
.audience-list {
  display: grid;
  gap: 14px;
}

.hero-card-main {
  margin-bottom: 12px;
}

.hero-card-main .panel-label {
  margin-bottom: 16px;
}

.hero-panel-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  padding: 18px 16px 0;
}

.hero-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.hero-bottom-actions .button {
  min-width: 220px;
}

.hero-bottom-actions .button-primary {
  box-shadow: 0 10px 18px rgba(24, 96, 100, 0.12);
}

.hero-followup {
  padding: 36px 0 28px;
}

.hero-followup-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.hero-followup-intro {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.hero-followup-intro h2 {
  margin: 16px 0 0;
  font-size: clamp(2rem, 4vw, 3.05rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #111111;
}

.hero-followup-intro p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-highlights-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hero-card h2,
.hero-card h3,
.feature-card h3,
.benefit-card h3,
.step-card h3 {
  margin: 0 0 12px;
}

.hero-card h2 {
  font-size: 1.34rem;
  line-height: 1.12;
}

.hero-card-mini h3,
.feature-card h3,
.benefit-card h3,
.step-card h3 {
  font-size: 1.08rem;
}

.hero-card p,
.feature-card p,
.benefit-card p,
.step-card p,
.team-card p,
.audience-card p,
.legal-shell h2 + p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section {
  position: relative;
  padding: 92px 0;
  scroll-margin-top: 118px;
}

.section-compact {
  padding: 52px 0 28px;
}

.section-tinted {
  background:
    linear-gradient(180deg, rgba(219, 241, 239, 0.54), rgba(238, 247, 246, 0.1)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2));
}

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

.section-actions {
  margin-bottom: 24px;
}

.section-heading h2,
.contact-copy h2,
.thankyou-shell h1,
.legal-shell h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.tracks-grid,
.feature-grid,
.modules-grid,
.benefits-grid,
.pricing-grid,
.team-grid,
.steps-grid,
.source-points {
  display: grid;
  gap: 18px;
}

.tracks-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.modules-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid,
.benefits-grid,
.team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: white;
  font-weight: 800;
  background: linear-gradient(145deg, var(--sea-600), var(--sea-800));
  box-shadow: 0 12px 28px rgba(27, 111, 116, 0.2);
}

.track-card,
.module-card,
.pricing-card,
.report-shell {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.calculator-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.94fr) minmax(320px, 1.06fr);
  gap: 22px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(232, 246, 244, 0.8));
  border: 1px solid rgba(27, 111, 116, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.track-card,
.module-card,
.pricing-card {
  padding: 24px;
}

.track-card h3,
.module-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.track-card p,
.module-card p,
.report-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.track-points {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.track-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-top: 12px;
  border-top: 1px solid rgba(27, 111, 116, 0.1);
  color: var(--sea-900);
}

.track-dot {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: linear-gradient(145deg, var(--sea-600), var(--sea-400));
}

.module-meta,
.report-caption {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(219, 241, 239, 0.92);
  border: 1px solid rgba(27, 111, 116, 0.1);
  color: var(--sea-800);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.module-card-accent {
  background:
    linear-gradient(180deg, rgba(231, 245, 243, 0.96), rgba(255, 255, 255, 0.88)),
    rgba(255, 255, 255, 0.82);
  border-color: rgba(27, 111, 116, 0.18);
}

.module-card-accent h3 {
  color: var(--sea-900);
}

.module-card p {
  margin-top: 12px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
}

.pricing-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 0.96;
  color: var(--sea-900);
}

.pricing-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.pricing-features {
  display: grid;
  gap: 12px;
  margin-top: 2px;
  flex: 1 1 auto;
}

.pricing-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--sea-900);
  line-height: 1.6;
}

.pricing-dot {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: linear-gradient(145deg, var(--sea-600), var(--sea-400));
}

.pricing-card-accent {
  background:
    linear-gradient(180deg, rgba(231, 245, 243, 0.98), rgba(255, 255, 255, 0.9));
  border-color: rgba(27, 111, 116, 0.18);
}

.calculator-panel,
.calculator-result {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(27, 111, 116, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.calculator-fields {
  display: grid;
  gap: 18px;
}

.calculator-field {
  display: grid;
  gap: 10px;
}

.calculator-field > span {
  color: var(--sea-900);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.45;
}

.range-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.range-head strong {
  font-size: 1.5rem;
  color: var(--sea-900);
}

.range-head small,
.calculator-note,
.calculator-hint {
  color: var(--muted);
  line-height: 1.6;
}

.calculator-field input[type="range"] {
  width: 100%;
  accent-color: var(--sea-700);
}

.calculator-quantity-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.calculator-helper {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.calculator-scale-note {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(231, 245, 243, 0.86), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(27, 111, 116, 0.12);
  color: var(--sea-800);
  font-size: 0.9rem;
  line-height: 1.55;
}

.calculator-field select,
.calculator-field input[type="number"] {
  width: 100%;
  border: 1px solid rgba(27, 111, 116, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
}

.calculator-field input[type="number"] {
  max-width: 180px;
}

.calculator-field select:focus,
.calculator-field input[type="number"]:focus {
  outline: none;
  border-color: rgba(27, 111, 116, 0.4);
  box-shadow: 0 0 0 4px rgba(115, 184, 184, 0.14);
  background: #fff;
}

.calculator-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(219, 241, 239, 0.88);
  border: 1px solid rgba(27, 111, 116, 0.1);
  color: var(--sea-800);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.calculator-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.calc-metric {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(27, 111, 116, 0.1);
}

.calc-metric span,
.calc-metric small {
  color: var(--muted);
}

.calc-metric strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  line-height: 0.95;
  color: var(--sea-900);
}

.calc-metric-accent {
  background:
    linear-gradient(180deg, rgba(231, 245, 243, 0.96), rgba(255, 255, 255, 0.9));
  border-color: rgba(27, 111, 116, 0.18);
}

.calculator-summary {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(27, 111, 116, 0.1);
}

.calculator-summary p {
  margin: 0;
}

.calculator-actions {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.section-source::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(126, 190, 187, 0.18), transparent 24%),
    radial-gradient(circle at 85% 65%, rgba(228, 217, 193, 0.24), transparent 18%);
  pointer-events: none;
}

.source-layout,
.contact-shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.source-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.source-card {
  display: flex;
  align-items: end;
  min-height: 180px;
  font-size: 1.02rem;
  line-height: 1.5;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(219, 241, 239, 0.64));
}

.team-card {
  min-height: 210px;
}

.team-value {
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: var(--sea-900);
}

.report-shell {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(232, 246, 244, 0.8));
}

.report-table-wrap {
  margin-top: 18px;
  overflow: auto;
  border-radius: 22px;
  border: 1px solid rgba(27, 111, 116, 0.12);
  background: rgba(255, 255, 255, 0.86);
}

.report-table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
}

.report-table th,
.report-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(27, 111, 116, 0.1);
}

.report-table thead th {
  color: var(--sea-900);
  font-size: 0.88rem;
  font-weight: 800;
  background: rgba(237, 247, 245, 0.92);
}

.report-table tbody tr:last-child td {
  border-bottom: 0;
}

.report-table tbody tr:nth-child(even) td {
  background: rgba(248, 252, 251, 0.8);
}

.report-note {
  margin-top: 18px;
}

.contact-shell {
  padding: 34px;
}

.contact-copy {
  position: sticky;
  top: 104px;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(27, 111, 116, 0.12);
  color: var(--sea-900);
  font-weight: 700;
}

.lead-form,
.thankyou-shell,
.legal-shell {
  padding: 26px;
}

.form-intro h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.form-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.field-wide {
  grid-column: 1 / -1;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  color: var(--sea-900);
  font-size: 0.92rem;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(27, 111, 116, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(27, 111, 116, 0.4);
  box-shadow: 0 0 0 4px rgba(115, 184, 184, 0.14);
  background: #fff;
}

.lead-form input.is-invalid,
.lead-form textarea.is-invalid,
.lead-form input[aria-invalid="true"],
.lead-form textarea[aria-invalid="true"] {
  border-color: rgba(194, 55, 75, 0.82);
  box-shadow: 0 0 0 4px rgba(194, 55, 75, 0.14);
  background: rgba(255, 244, 246, 0.96);
}

.form-actions {
  margin-top: 22px;
}

.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.site-footer {
  padding: 0 0 36px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 111, 116, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.footer-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
}

.footer-copy,
.footer-meta {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
}

.footer-side {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.footer-support {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
  text-align: right;
}

.footer-support-logo {
  display: block;
  width: 121px;
  height: auto;
  border-radius: 6px;
  flex: 0 0 auto;
}

.footer-meta {
  text-align: right;
}

.thankyou-page,
.legal-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 0;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(880px, calc(100% - 24px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.16);
  z-index: 40;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(12px);
}

.cookie-banner-copy {
  min-width: 0;
}

.cookie-banner-text {
  margin: 0;
  color: #6b6b72;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.cookie-banner-link {
  color: #3157ff;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.cookie-banner-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-banner-action {
  min-width: 148px;
  padding: 18px 24px;
  border: 1px solid transparent;
  border-radius: 18px;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
}

.cookie-banner-action:hover {
  transform: translateY(-1px);
}

.cookie-banner-action:focus-visible,
.cookie-banner-link:focus-visible {
  outline: 3px solid rgba(42, 136, 141, 0.18);
  outline-offset: 3px;
}

.cookie-banner-action-decline {
  color: var(--sea-900);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(27, 111, 116, 0.16);
  box-shadow: 0 14px 28px rgba(20, 68, 72, 0.08);
}

.cookie-banner-action-accept {
  color: white;
  background: linear-gradient(145deg, var(--sea-600), var(--sea-800));
  box-shadow: 0 14px 28px rgba(24, 96, 100, 0.16);
}

.thankyou-actions {
  margin-top: 28px;
}

.thankyou-logo {
  width: 72px;
  height: 72px;
  margin-bottom: 14px;
}

.legal-shell h2 {
  margin: 28px 0 10px;
  font-size: 1.2rem;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, 18px, 0) scale(1.03);
  }
}

@keyframes heroPosterFloat {
  0%,
  100% {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.1) translate3d(-8px, -12px, 0);
  }
}

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

  .hero-grid,
  .hero-followup-shell,
  .contact-shell,
  .source-layout,
  .tracks-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-shell {
    gap: 18px;
  }

  .calculator-shell,
  .modules-grid,
  .feature-grid,
  .benefits-grid,
  .pricing-grid,
  .team-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .source-points {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand-lockup {
    justify-content: center;
  }

  .footer-side {
    justify-items: center;
  }

  .footer-support {
    text-align: center;
    justify-content: center;
  }

  .footer-links,
  .footer-meta {
    justify-content: center;
    text-align: center;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 20px;
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-banner-action {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .site-header {
    padding-top: 14px;
  }

  .header-inner {
    gap: 16px;
    padding: 13px 16px;
    border-radius: 28px;
  }

  .brand {
    gap: 12px;
  }

  .brand-text strong {
    font-size: 0.96rem;
  }

  .hero {
    padding: 28px 0 58px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-followup {
    padding: 48px 0 24px;
  }

  .hero-followup-shell {
    gap: 22px;
  }

  .hero-followup-intro {
    max-width: 720px;
    padding: 0;
  }

  .hero-highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy,
  .contact-shell {
    padding: 24px;
  }

  .hero-panel {
    padding: 10px;
  }

  .hero-bottom-actions .button {
    min-width: 0;
  }

  .hero-card,
  .feature-card,
  .benefit-card,
  .step-card,
  .source-card,
  .team-card,
  .lead-form,
  .thankyou-shell,
  .legal-shell,
  .report-shell,
  .calculator-panel,
  .calculator-result {
    padding: 18px;
  }

  .hero-panel .hero-card {
    padding: 15px;
  }

  .hero h1 {
    max-width: 11.2ch;
    font-size: clamp(3.15rem, 9vw, 4.75rem);
  }

  .hero-lead,
  .section-heading p,
  .contact-copy p,
  .thankyou-shell p,
  .legal-shell p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .section {
    padding: 78px 0;
    scroll-margin-top: 104px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .contact-copy h2,
  .thankyou-shell h1,
  .legal-shell h1 {
    font-size: clamp(2.2rem, 7vw, 3.5rem);
  }

  .report-shell,
  .calculator-shell {
    padding: 20px;
  }

  .calculator-shell {
    gap: 18px;
  }

  .calc-metric strong {
    font-size: 2rem;
  }
}

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

  .site-header {
    padding-top: 10px;
  }

  .header-inner {
    padding: 12px 14px;
    border-radius: 22px;
  }

  .brand-text small,
  .button-compact {
    display: none;
  }

  .brand {
    gap: 10px;
  }

  .brand-text strong {
    font-size: 0.94rem;
  }

  .audio-toggle-floating {
    top: auto;
    right: 14px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 14px);
  }

  .audio-toggle {
    gap: 10px;
    padding: 10px 13px;
    font-size: 0.84rem;
    border-radius: 18px;
  }

  .audio-toggle-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .audio-toggle-icon svg {
    width: 18px;
    height: 18px;
  }

  .audio-toggle-label {
    font-size: 0.7rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .hero-lockup {
    margin-bottom: 10px;
  }

  .hero-lockup-name {
    font-size: 0.95rem;
  }

  .hero-lockup-subtitle {
    font-size: 0.76rem;
  }

  .hero {
    padding-top: 32px;
    padding-bottom: 60px;
    min-height: auto;
  }

  .hero-media {
    border-radius: 0 0 32px 32px;
  }

  .hero-media-overlay {
    background:
      linear-gradient(180deg, rgba(244, 250, 249, 0.96) 0%, rgba(241, 249, 248, 0.94) 36%, rgba(240, 248, 247, 0.88) 70%, rgba(238, 247, 246, 0.96) 100%),
      radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.66), transparent 52%),
      radial-gradient(circle at 14% 18%, rgba(222, 245, 243, 0.34), transparent 28%);
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
    max-width: 11.4ch;
    line-height: 0.9;
  }

  .hero-copy {
    padding: 28px 0 8px;
  }

  .hero-followup {
    padding: 42px 0 20px;
  }

  .hero-followup-intro {
    padding: 0;
  }

  .hero-followup-intro h2 {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  .hero-followup-intro p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

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

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .hero-detail {
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .tracks-grid,
  .calculator-metrics,
  .modules-grid,
  .feature-grid,
  .benefits-grid,
  .pricing-grid,
  .team-grid,
  .steps-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
    scroll-margin-top: 88px;
  }

  .hero-panel,
  .hero-copy,
  .report-shell,
  .calculator-shell,
  .calculator-panel,
  .calculator-result,
  .contact-shell,
  .lead-form,
  .thankyou-shell,
  .legal-shell {
    padding: 20px;
  }

  .hero-actions,
  .form-actions,
  .thankyou-actions {
    flex-direction: column;
  }

  .hero-bottom-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-bottom-actions .button,
  .button {
    width: 100%;
  }

  .hero-panel-footer {
    padding: 16px 8px 0;
  }

  .hero-card-main {
    min-height: auto;
  }

  .calculator-quantity-row {
    flex-direction: column;
    align-items: stretch;
  }

  .calculator-field input[type="number"] {
    max-width: none;
  }

  .range-head {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .calculator-badge,
  .section-kicker,
  .eyebrow,
  .panel-label {
    font-size: 0.74rem;
    padding: 7px 11px;
  }

  .report-shell {
    padding: 18px;
  }

  .report-caption {
    margin-bottom: 2px;
  }

  .report-table-wrap {
    overflow: visible;
    background: transparent;
    border: 0;
    margin-top: 16px;
  }

  .report-table,
  .report-table tbody,
  .report-table tr,
  .report-table td {
    display: block;
    width: 100%;
  }

  .report-table {
    min-width: 0;
  }

  .report-table thead {
    display: none;
  }

  .report-table tbody {
    display: grid;
    gap: 14px;
  }

  .report-table tbody tr {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(27, 111, 116, 0.12);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
  }

  .report-table tbody tr:nth-child(even) td,
  .report-table td {
    background: transparent;
  }

  .report-table td {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
    padding: 12px 14px;
  }

  .report-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .report-table td:first-child {
    padding-top: 14px;
  }

  .report-table td:last-child {
    border-bottom: 0;
    padding-bottom: 14px;
  }

  .contact-shell {
    gap: 18px;
  }

  .contact-points {
    gap: 8px;
  }

  .footer-inner {
    gap: 14px;
    padding: 22px 18px 96px;
  }

  .cookie-banner {
    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
    width: min(100%, calc(100% - 16px));
    padding: 16px;
    border-radius: 20px;
  }

  .cookie-banner-text {
    font-size: 0.94rem;
  }

  .cookie-banner-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .cookie-banner-action {
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
  }

  .footer-brand-lockup {
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .site-header {
    padding-top: 8px;
  }

  .header-inner {
    padding: 10px 12px;
    border-radius: 20px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .brand-text strong {
    font-size: 0.9rem;
  }

  .audio-toggle {
    gap: 9px;
    padding: 9px 12px;
    border-radius: 16px;
    box-shadow: 0 14px 28px rgba(16, 60, 64, 0.12);
  }

  .audio-toggle-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .audio-toggle-copy {
    gap: 0;
  }

  .audio-toggle-label {
    font-size: 0.66rem;
  }

  .audio-toggle-dot {
    width: 8px;
    height: 8px;
  }

  .hero {
    padding-top: 26px;
    padding-bottom: 52px;
  }

  .hero-copy,
  .hero-panel,
  .report-shell,
  .calculator-shell,
  .calculator-panel,
  .calculator-result,
  .contact-shell,
  .lead-form,
  .thankyou-shell,
  .legal-shell {
    padding: 18px;
  }

  .hero-panel {
    padding: 8px;
  }

  .hero-lockup-name {
    font-size: 0.92rem;
  }

  .hero-lockup-subtitle {
    font-size: 0.74rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 14vw, 3.45rem);
    max-width: 11.4ch;
  }

  .hero-followup {
    padding: 38px 0 16px;
  }

  .hero-followup-intro {
    padding: 0;
  }

  .hero-followup-intro h2 {
    font-size: clamp(1.85rem, 10.5vw, 2.55rem);
  }

  .hero-lead,
  .section-heading p,
  .contact-copy p,
  .thankyou-shell p,
  .legal-shell p {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .hero-detail,
  .form-note,
  .calculator-helper,
  .calculator-scale-note,
  .calculator-hint,
  .report-note {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2,
  .contact-copy h2,
  .thankyou-shell h1,
  .legal-shell h1 {
    font-size: clamp(2rem, 11vw, 2.95rem);
  }

  .hero-card,
  .feature-card,
  .benefit-card,
  .step-card,
  .source-card,
  .team-card {
    padding: 16px;
  }

  .hero-panel .hero-card {
    padding: 14px;
  }

  .hero-card h2 {
    font-size: 1.18rem;
  }

  .hero-card-mini h3,
  .feature-card h3,
  .benefit-card h3,
  .step-card h3,
  .form-intro h3 {
    font-size: 1.02rem;
  }

  .step-number {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 15px;
  }

  .calculator-shell {
    gap: 14px;
    padding: 14px;
  }

  .calculator-panel,
  .calculator-result {
    padding: 16px;
  }

  .calculator-fields {
    gap: 16px;
  }

  .calculator-field {
    gap: 8px;
  }

  .range-head strong {
    font-size: 1.28rem;
  }

  .calculator-field select,
  .calculator-field input[type="number"],
  .lead-form input,
  .lead-form textarea {
    padding: 13px 14px;
    border-radius: 14px;
  }

  .calculator-metrics {
    gap: 12px;
    margin-top: 14px;
  }

  .calc-metric {
    gap: 6px;
    padding: 16px;
    border-radius: 18px;
  }

  .calc-metric strong {
    font-size: 1.72rem;
  }

  .calculator-summary {
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
  }

  .form-grid {
    margin-top: 18px;
    gap: 14px;
  }

  .form-actions {
    margin-top: 18px;
  }

  .footer-inner {
    padding: 20px 16px 92px;
  }

  .footer-brand {
    font-size: 1.7rem;
  }

  .thankyou-page,
  .legal-page {
    padding: 28px 0;
  }
}

@media (hover: none) and (pointer: coarse) {
  .site-nav,
  .button-compact {
    display: none !important;
  }

  .container {
    width: min(var(--container), calc(100% - 20px)) !important;
  }

  .hero-grid,
  .hero-followup-shell,
  .calculator-shell,
  .contact-shell,
  .source-layout,
  .tracks-grid,
  .calculator-metrics,
  .modules-grid,
  .feature-grid,
  .benefits-grid,
  .pricing-grid,
  .team-grid,
  .steps-grid,
  .form-grid,
  .source-points {
    grid-template-columns: 1fr !important;
  }

  .site-header {
    padding-top: 8px !important;
  }

  .header-inner {
    gap: 12px !important;
    padding: 10px 12px !important;
    border-radius: 20px !important;
  }

  .brand {
    gap: 10px !important;
  }

  .brand-mark {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
  }

  .brand-text small {
    display: none !important;
  }

  .brand-text strong {
    font-size: 0.92rem !important;
  }

  .hero,
  .section {
    scroll-margin-top: 86px !important;
  }

  .hero {
    padding: 26px 0 50px !important;
    min-height: auto !important;
  }

  .hero-followup {
    padding: 38px 0 16px !important;
  }

  .hero-media {
    border-radius: 0 0 28px 28px !important;
  }

  .hero-media-overlay {
    background:
      linear-gradient(180deg, rgba(244, 250, 249, 0.97) 0%, rgba(241, 249, 248, 0.95) 36%, rgba(240, 248, 247, 0.9) 72%, rgba(238, 247, 246, 0.96) 100%),
      radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.64), transparent 52%),
      radial-gradient(circle at 14% 18%, rgba(222, 245, 243, 0.42), transparent 28%) !important;
  }

  .hero-copy,
  .hero-panel,
  .report-shell,
  .calculator-shell,
  .calculator-panel,
  .calculator-result,
  .contact-shell,
  .lead-form,
  .thankyou-shell,
  .legal-shell {
    padding: 16px !important;
  }

  .hero-copy {
    padding: 26px 0 8px !important;
  }

  .hero-panel {
    padding: 8px !important;
  }

  .hero-lockup {
    margin-bottom: 10px !important;
  }

  .hero-lockup-name {
    font-size: 0.92rem !important;
  }

  .hero-lockup-subtitle {
    font-size: 0.74rem !important;
  }

  .hero-followup-intro {
    padding: 0 !important;
  }

  .hero-followup-intro h2 {
    font-size: clamp(1.85rem, 10vw, 2.5rem) !important;
  }

  .hero-followup-intro p {
    font-size: 0.95rem !important;
    line-height: 1.58 !important;
  }

  .eyebrow,
  .section-kicker,
  .panel-label,
  .calculator-badge {
    font-size: 0.72rem !important;
    padding: 7px 10px !important;
  }

  .hero h1 {
    max-width: 11.4ch !important;
    font-size: clamp(2.35rem, 12vw, 3.3rem) !important;
    line-height: 0.92 !important;
  }

  .hero-highlights-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-lead,
  .section-heading p,
  .contact-copy p,
  .thankyou-shell p,
  .legal-shell p {
    font-size: 0.95rem !important;
    line-height: 1.58 !important;
  }

  .hero-detail,
  .form-note,
  .calculator-helper,
  .calculator-scale-note,
  .calculator-hint,
  .report-note {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
  }

  .hero-panel-footer {
    padding: 14px 4px 0 !important;
  }

  .hero-actions,
  .form-actions,
  .thankyou-actions {
    flex-direction: column !important;
  }

  .hero-bottom-actions {
    flex-direction: column !important;
  }

  .button,
  .hero-actions .button,
  .hero-bottom-actions .button {
    width: 100% !important;
  }

  .hero-card,
  .feature-card,
  .benefit-card,
  .step-card,
  .source-card,
  .team-card {
    padding: 16px !important;
  }

  .hero-panel .hero-card {
    padding: 14px !important;
  }

  .hero-card-main {
    min-height: auto !important;
  }

  .hero-card h2 {
    font-size: 1.18rem !important;
  }

  .hero-card-mini h3,
  .feature-card h3,
  .benefit-card h3,
  .step-card h3,
  .form-intro h3 {
    font-size: 1.02rem !important;
  }

  .section {
    padding: 62px 0 !important;
  }

  .section-heading {
    margin-bottom: 24px !important;
  }

  .section-heading h2,
  .contact-copy h2,
  .thankyou-shell h1,
  .legal-shell h1 {
    font-size: clamp(2rem, 11vw, 2.9rem) !important;
  }

  .step-number {
    width: 46px !important;
    height: 46px !important;
    margin-bottom: 14px !important;
    border-radius: 15px !important;
  }

  .calculator-shell {
    gap: 14px !important;
    padding: 14px !important;
  }

  .calculator-panel,
  .calculator-result {
    padding: 16px !important;
  }

  .calculator-fields {
    gap: 16px !important;
  }

  .calculator-field {
    gap: 8px !important;
  }

  .calculator-quantity-row {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .calculator-field select,
  .calculator-field input[type="number"],
  .lead-form input,
  .lead-form textarea {
    padding: 13px 14px !important;
    border-radius: 14px !important;
  }

  .calculator-field input[type="number"] {
    max-width: none !important;
  }

  .range-head {
    flex-wrap: wrap !important;
    align-items: flex-start !important;
  }

  .range-head strong {
    font-size: 1.28rem !important;
  }

  .calculator-metrics {
    gap: 12px !important;
    margin-top: 14px !important;
  }

  .calc-metric {
    gap: 6px !important;
    padding: 16px !important;
    border-radius: 18px !important;
  }

  .calc-metric strong {
    font-size: 1.7rem !important;
  }

  .calculator-summary {
    gap: 10px !important;
    margin-top: 16px !important;
    padding-top: 16px !important;
  }

  .report-shell {
    padding: 16px !important;
  }

  .report-table-wrap {
    overflow: visible !important;
    background: transparent !important;
    border: 0 !important;
    margin-top: 16px !important;
  }

  .report-table,
  .report-table tbody,
  .report-table tr,
  .report-table td {
    display: block !important;
    width: 100% !important;
  }

  .report-table {
    min-width: 0 !important;
  }

  .report-table thead {
    display: none !important;
  }

  .report-table tbody {
    display: grid !important;
    gap: 14px !important;
  }

  .report-table tbody tr {
    overflow: hidden !important;
    border-radius: 18px !important;
    border: 1px solid rgba(27, 111, 116, 0.12) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: var(--shadow-soft) !important;
  }

  .report-table tbody tr:nth-child(even) td,
  .report-table td {
    background: transparent !important;
  }

  .report-table td {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    padding: 12px 14px !important;
    border-bottom: 1px solid rgba(27, 111, 116, 0.08) !important;
  }

  .report-table td::before {
    content: attr(data-label) !important;
    color: var(--muted) !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
  }

  .report-table td:last-child {
    border-bottom: 0 !important;
  }

  .contact-copy {
    position: static !important;
  }

  .contact-shell {
    gap: 18px !important;
  }

  .contact-points {
    gap: 8px !important;
  }

  .form-grid {
    gap: 14px !important;
    margin-top: 18px !important;
  }

  .form-actions {
    margin-top: 18px !important;
  }

  .audio-toggle-floating {
    top: auto !important;
    right: 12px !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px) !important;
    max-width: none !important;
  }

  .audio-toggle {
    width: 54px !important;
    height: 54px !important;
    padding: 0 !important;
    gap: 0 !important;
    justify-content: center !important;
    border-radius: 18px !important;
    box-shadow: 0 14px 28px rgba(16, 60, 64, 0.14) !important;
  }

  .audio-toggle-copy,
  .audio-toggle-dot {
    display: none !important;
  }

  .audio-toggle-icon {
    width: 34px !important;
    height: 34px !important;
    border-radius: 11px !important;
  }

  .audio-toggle-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  .footer-inner {
    gap: 14px !important;
    padding: 20px 16px 88px !important;
  }

  .footer-links {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .footer-brand {
    font-size: 1.7rem !important;
  }
}
