:root {
  --navy-950: #061225;
  --navy-900: #07182f;
  --navy-800: #0b2344;
  --navy-700: #12345f;
  --blue-100: #eaf2ff;
  --white: #ffffff;
  --soft-white: #f7fbff;
  --line: rgba(255, 255, 255, 0.14);
  --ink: #102033;
  --muted: #5d6b7c;
  --orange: #9f5a2a;
  --orange-2: #c47a3f;
  --green: #32d583;
  --yellow: #c47a3f;
  --red: #ff5a67;
  --shadow: 0 24px 70px rgba(3, 12, 27, 0.22);
  --radius: 8px;
  --container: 1180px;
  --header-height: 78px;
}

/* Final lock: third-party badge images must never set the CTA layout size. */
.cta-trust-signals--official > * {
  min-height: 0 !important;
  overflow: hidden !important;
}

.cta-trust-signals--official > a,
.cta-trust-signals--official img,
.cta-trust-signals--official svg,
.cta-trust-signals--official iframe {
  display: block !important;
  max-width: 100% !important;
  max-height: 100% !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1 {
  max-width: 860px;
  color: var(--white);
  font-size: clamp(2.45rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 1.35rem;
}

.hero h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.35rem, 4.8vw, 4.35rem);
  line-height: 1.04;
}

h2 {
  color: var(--navy-950);
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

h3 {
  color: inherit;
  font-size: 1.08rem;
  line-height: 1.25;
  margin-bottom: 0.65rem;
}

.title-anim,
.title-standard {
  will-change: opacity, transform, filter, clip-path;
}

.title-anim {
  opacity: 0;
  transform: translateY(34px) scale(0.975);
  overflow: visible;
  padding-top: 20px;
  padding-bottom: 20px;
  transition:
    opacity 1850ms ease,
    transform 2100ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 1850ms ease,
    clip-path 2200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.title-standard {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.title-visible {
  opacity: 1;
  transform: translateY(0);
  filter: none;
  clip-path: inset(0 0 0 0);
}

.title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.58em) scale(0.98);
  filter: blur(6px);
  transition:
    opacity 1700ms ease,
    transform 1900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 1700ms ease;
}

.title-visible .title-word {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.title-visible .title-word:nth-child(1) {
  transition-delay: 90ms;
}

.title-visible .title-word:nth-child(2) {
  transition-delay: 210ms;
}

.title-visible .title-word:nth-child(4) {
  transition-delay: 330ms;
}

.title-visible .title-word:nth-child(5) {
  transition-delay: 450ms;
}

.title-accent {
  position: relative;
  display: inline-block;
  font-weight: inherit;
  line-height: inherit;
  vertical-align: baseline;
}

.title-wipe::after {
  content: "";
  position: absolute;
  inset: 0 -0.08em;
  z-index: -1;
  border-radius: 0.18em;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  background: currentColor;
  filter: blur(16px);
}

.title-copper {
  color: #c47a3f;
  background: linear-gradient(115deg, #e2a66f 0%, #9f5a2a 44%, #f0c08c 72%, #c47a3f 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-red {
  color: #c95f66;
}

.title-green {
  color: #3aa879;
}

.title-neutral {
  color: inherit;
}

.title-visible .title-copper {
  animation: liquidTitleShine 2600ms ease 520ms both;
}

.title-visible .title-wipe::after {
  animation: titleHighlightWipe 1900ms cubic-bezier(0.16, 1, 0.3, 1) 420ms both;
}

.title-type {
  clip-path: inset(0 100% 0 0);
  overflow: visible;
  white-space: normal;
}

.title-visible .title-type {
  animation: titleTypeIn 1800ms cubic-bezier(0.16, 1, 0.3, 1) 420ms both;
}

.title-hero {
  filter: blur(12px);
  transform: translateY(26px) scale(0.96);
}

.title-hero.title-visible {
  text-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.title-blur {
  filter: blur(18px);
  transform: translateY(34px) scale(0.98);
}

.title-mask,
.title-glass {
  clip-path: inset(0 0 100% 0);
  transform: translateY(28px);
}

.title-glass {
  filter: blur(12px);
}

.title-urgent {
  filter: blur(10px);
  transform: translateY(26px) scale(0.965);
}

.title-growth {
  transform: translateY(26px) scale(0.98);
}

.title-page {
  filter: blur(10px);
  transform: translateY(24px) scale(0.985);
}

.title-words {
  transform: translateY(18px);
}

.title-depth {
  filter: blur(12px);
  transform: translateY(28px) rotateX(16deg) scale(0.965);
  transform-origin: center bottom;
}

.title-depth.title-visible {
  transform: translateY(0) rotateX(0) scale(1);
}

.title-fade {
  filter: blur(8px);
  transform: translateY(24px);
}

.title-final .title-word {
  transform: translateY(0.62em);
}

.title-final.title-visible .title-word {
  transform: translateY(0) scale(1);
}

.title-anim.title-visible,
.title-standard.title-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: none;
  clip-path: inset(0 0 0 0);
}

@keyframes liquidTitleShine {
  0% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 0 rgba(211, 154, 94, 0));
  }
  55% {
    filter: drop-shadow(0 10px 22px rgba(211, 154, 94, 0.16));
  }
  100% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 0 rgba(211, 154, 94, 0));
  }
}

@keyframes titleHighlightWipe {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  45% {
    opacity: 0.16;
  }
  100% {
    opacity: 0.07;
    transform: scaleX(1);
  }
}

@keyframes titleTypeIn {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

@media (max-width: 768px) {
  .title-anim {
    transform: translateY(18px);
    transition-duration: 1250ms;
  }

  .title-standard {
    transform: translateY(8px);
    transition-duration: 500ms;
  }

  .title-word {
    transform: translateY(0.36em);
    filter: blur(4px);
    transition-duration: 1100ms;
  }

  .title-blur,
  .title-glass,
  .title-hero,
  .title-urgent,
  .title-depth,
  .title-page {
    filter: blur(7px);
  }

  .title-visible .title-type {
    animation-duration: 1050ms;
  }

  .final-cta h2.title-final {
    line-height: 1.14;
    padding-bottom: 0.12em;
    overflow: visible;
  }

  .title-final .title-word {
    transform: translateY(0.28em);
  }
}

/* Privacy notice for the site's necessary local preference only. */
.privacy-notice {
  position: fixed;
  z-index: 1000;
  inset: auto 20px 20px auto;
  width: min(420px, calc(100vw - 40px));
}

.privacy-notice__panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: #081a35;
  color: #f7f9fc;
  box-shadow: 0 18px 44px rgba(2, 11, 29, 0.28);
}

.privacy-notice__eyebrow {
  margin: 0 0 6px;
  color: #d89150;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-notice h2 {
  margin: 0;
  color: #fff;
  font-size: 1.35rem;
}

.privacy-notice__panel > p:not(.privacy-notice__eyebrow) {
  margin: 10px 0 0;
  color: #d5dbe6;
  font-size: 0.95rem;
  line-height: 1.55;
}

.privacy-notice__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.privacy-notice__actions a,
.privacy-settings-link {
  color: #f7f9fc;
  font: inherit;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-notice__button {
  border: 1px solid #eab276;
  border-radius: 6px;
  padding: 10px 14px;
  background: #bd7438;
  color: #071830;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.privacy-settings-link {
  margin: 10px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

@media (max-width: 640px) {
  .privacy-notice {
    inset: auto 14px 14px;
    width: auto;
  }

  .privacy-notice__panel {
    padding: 20px;
  }
}

p {
  color: var(--muted);
  margin-bottom: 1rem;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 112px 0;
  position: relative;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  background: var(--orange);
  color: var(--navy-950);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 18, 37, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  background: rgba(6, 18, 37, 0.94);
  box-shadow: 0 12px 36px rgba(2, 9, 20, 0.28);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 850;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

.logo-image {
  display: block;
  width: clamp(138px, 13vw, 190px);
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 12px 28px rgba(159, 90, 42, 0.28);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--white);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 16px 34px rgba(159, 90, 42, 0.28);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-small {
  min-height: 42px;
  padding: 0 15px;
  font-size: 0.88rem;
}

.btn-card {
  width: 100%;
  color: var(--navy-950);
  background: var(--white);
  border-color: rgba(7, 24, 47, 0.12);
}

.btn-inline-cta {
  margin-top: 22px;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 86px 0 190px;
  background:
    radial-gradient(circle at 14% 18%, rgba(159, 90, 42, 0.24), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(83, 151, 255, 0.18), transparent 34%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 48%, #0d2b52);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 260px;
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0) 0%, rgba(247, 251, 255, 0.24) 38%, var(--soft-white) 100%);
  pointer-events: none;
}

.hero-grid {
  display: block;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero-visual {
  margin: 0 auto;
}

.eyebrow {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 0.9rem;
}

.hero-subheadline {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  margin-bottom: 1.35rem;
}

.hero-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 860px;
  margin: 1.35rem auto 1.35rem;
}

.hero-proof-stats article {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 18px 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.hero-proof-stats strong {
  display: grid;
  gap: 4px;
  color: var(--orange-2);
  line-height: 1;
  margin-bottom: 0;
}

.hero-proof-stats .stat-prefix {
  display: block;
  color: var(--orange-2);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  font-weight: 850;
  line-height: 1;
}

.hero-proof-stats .stat-number {
  display: block;
  color: var(--orange-2);
  font-size: clamp(2.25rem, 4vw, 3.45rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-proof-stats article > span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.32;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 1.1rem;
  margin-bottom: 1.2rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.trust-badges strong {
  margin-right: 2px;
  color: var(--white);
}

.trust-badges .trust-badge-wide {
  min-width: min(100%, 320px);
  justify-content: center;
}

.google-review-widget {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 14px;
}

.google-review-widget > * {
  max-width: 100%;
}

.google-review-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 292px);
  min-height: 48px;
  padding: 8px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.google-review-button:hover,
.google-review-button:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(159, 90, 42, 0.42);
  transform: translateY(-2px);
}

.cta-trust-signals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.cta-conversion-group {
  display: flex;
  flex: 0 1 100%;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: min(100%, 430px);
  min-width: 0;
  margin-inline: auto;
}

.cta-conversion-group > .btn {
  align-self: center;
  width: auto;
  max-width: 100%;
  margin: 0;
}

.cta-trust-signals .google-review-button {
  width: auto;
  min-width: 164px;
  min-height: 58px;
  gap: 8px;
  padding: 8px 12px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(10, 35, 67, 0.14);
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 8px 22px rgba(8, 28, 55, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.google-rating-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 31px;
  height: 31px;
  background: conic-gradient(from 35deg, #4285f4 0 25%, #34a853 0 48%, #fbbc05 0 72%, #ea4335 0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.google-rating-copy {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.google-rating-copy strong {
  color: var(--navy-900);
  font-size: 0.78rem;
}

.google-rating-copy span {
  color: #53647b;
  font-size: 0.7rem;
  font-weight: 750;
}

.google-rating-copy i {
  color: #f6bf40;
  font-size: 0.66rem;
  font-style: normal;
  letter-spacing: 0.02em;
}

.cta-trust-signals .google-review-button:hover,
.cta-trust-signals .google-review-button:focus-visible {
  color: var(--navy-900);
  background: var(--white);
  border-color: rgba(159, 90, 42, 0.46);
}

.cta-provenexpert-seal {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.cta-provenexpert-seal > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta-proseal-widget {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 58px;
  min-width: 58px;
  height: 58px;
  min-height: 58px;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.cta-proseal-widget [class*="pe-"] {
  max-width: 100%;
}

.cta-proseal-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-content: center;
  color: #1f1f1f;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 0.88;
  text-align: center;
  text-decoration: none;
}

.cta-proseal-fallback span {
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  justify-self: center;
  margin-bottom: 3px;
  border-radius: 50%;
  background: #d0b662;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.cta-proseal-fallback strong,
.cta-proseal-fallback em {
  display: block;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
}

.cta-proseal-fallback em {
  font-size: 0.66rem;
  font-weight: 500;
}

.cta-trust-signals #pe_badge_dtbrfwxc,
.cta-trust-signals #pe_badge_dtbrfwxc .pe-flip-outer,
.cta-trust-signals #pe_badge_dtbrfwxc .pe-flip-inner,
.cta-trust-signals #pe_badge_dtbrfwxc .pe-flip-front,
.cta-trust-signals #pe_badge_dtbrfwxc .pe-flip-back,
.cta-trust-signals #pe_badge_dtbrfwxc .pe-flip-front img,
.cta-trust-signals #pe_badge_dtbrfwxc .pe-flip-back img {
  width: 58px !important;
  height: 58px !important;
}

.cta-trust-signals #pe_badge_dtbrfwxc .pe-flip-back img:not(.pe-parent-fixed) {
  left: 0 !important;
  top: 0 !important;
  margin: 0 !important;
  transform: none !important;
}

/* Official Google + ProvenExpert review and award group. */
.cta-trust-signals--official {
  --official-seal-height: 62px;
  justify-content: flex-start;
  width: min(100%, 620px);
  margin: 0;
  gap: 9px;
  flex-wrap: wrap;
}

.cta-trust-signals--official .google-review-button {
  min-width: 158px;
  min-height: var(--official-seal-height);
  height: var(--official-seal-height);
  padding: 7px 12px;
}

.cta-provenexpert-official-badge,
.cta-provenexpert-award {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: var(--official-seal-height);
  min-width: var(--official-seal-height);
  height: var(--official-seal-height);
  line-height: 0;
}

.cta-provenexpert-official-badge img,
.cta-provenexpert-award img {
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.cta-provenexpert-review-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: calc(var(--official-seal-height) * 1.2);
  min-width: calc(var(--official-seal-height) * 1.2);
  height: var(--official-seal-height);
  overflow: hidden;
  border-radius: 10px;
  line-height: 0;
  box-shadow: 0 8px 18px rgba(3, 20, 43, 0.12);
}

.cta-provenexpert-review-seal img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

@media (max-width: 480px) {
  .cta-trust-signals {
    gap: 8px;
  }

  .cta-conversion-group {
    width: min(100%, 340px);
    gap: 8px;
  }

  .cta-conversion-group > .btn {
    width: min(100%, 320px);
  }

  .cta-trust-signals .google-review-button {
    min-width: 152px;
    min-height: 54px;
    padding: 7px 10px;
  }

  .cta-trust-signals--official {
    --official-seal-height: 52px;
    justify-content: flex-start;
    gap: 7px;
  }

  .cta-trust-signals--official .google-review-button {
    min-width: 140px;
    padding: 6px 10px;
  }

  .cta-provenexpert-seal,
  .cta-proseal-widget,
  .cta-trust-signals #pe_badge_dtbrfwxc,
  .cta-trust-signals #pe_badge_dtbrfwxc .pe-flip-outer,
  .cta-trust-signals #pe_badge_dtbrfwxc .pe-flip-inner,
  .cta-trust-signals #pe_badge_dtbrfwxc .pe-flip-front,
  .cta-trust-signals #pe_badge_dtbrfwxc .pe-flip-back,
  .cta-trust-signals #pe_badge_dtbrfwxc .pe-flip-front img,
  .cta-trust-signals #pe_badge_dtbrfwxc .pe-flip-back img {
    width: 52px !important;
    height: 52px !important;
  }
}

@media (max-width: 360px) {
  .cta-trust-signals--official {
    --official-seal-height: 48px;
    gap: 6px;
  }

  .cta-trust-signals--official .google-review-button {
    min-width: 132px;
    padding-inline: 8px;
  }

  .cta-trust-signals--official .google-rating-mark {
    width: 26px;
    height: 26px;
    font-size: 1.7rem;
  }

  .cta-trust-signals--official .google-rating-copy strong {
    font-size: 0.72rem;
  }

  .cta-trust-signals--official .google-rating-copy span {
    font-size: 0.65rem;
  }
}

/* Final responsive size lock for all CTA review marks. */
.cta-trust-signals--official {
  --official-seal-height: 38px;
  gap: 5px !important;
}

.cta-trust-signals--official .google-review-button {
  inline-size: 118px !important;
  min-inline-size: 118px !important;
  max-inline-size: 118px !important;
  block-size: 38px !important;
  min-block-size: 38px !important;
  max-block-size: 38px !important;
}

.cta-trust-signals--official .cta-provenexpert-official-badge {
  inline-size: 38px !important;
  min-inline-size: 38px !important;
  max-inline-size: 38px !important;
  block-size: 38px !important;
  min-block-size: 38px !important;
  max-block-size: 38px !important;
}

.cta-trust-signals--official .cta-provenexpert-review-seal {
  inline-size: 46px !important;
  min-inline-size: 46px !important;
  max-inline-size: 46px !important;
  block-size: 38px !important;
  min-block-size: 38px !important;
  max-block-size: 38px !important;
}

.cta-trust-signals--official .cta-provenexpert-official-badge img,
.cta-trust-signals--official .cta-provenexpert-review-seal img {
  display: block !important;
  inline-size: 100% !important;
  max-inline-size: 100% !important;
  block-size: 100% !important;
  max-block-size: 100% !important;
  object-fit: contain !important;
}

@media (max-width: 640px) {
  .cta-trust-signals--official {
    --official-seal-height: 30px;
    gap: 4px !important;
  }

  .cta-trust-signals--official .google-review-button {
    inline-size: 96px !important;
    min-inline-size: 96px !important;
    max-inline-size: 96px !important;
    block-size: 30px !important;
    min-block-size: 30px !important;
    max-block-size: 30px !important;
  }

  .cta-trust-signals--official .cta-provenexpert-official-badge {
    inline-size: 30px !important;
    min-inline-size: 30px !important;
    max-inline-size: 30px !important;
    block-size: 30px !important;
    min-block-size: 30px !important;
    max-block-size: 30px !important;
  }

  .cta-trust-signals--official .cta-provenexpert-review-seal {
    inline-size: 36px !important;
    min-inline-size: 36px !important;
    max-inline-size: 36px !important;
    block-size: 30px !important;
    min-block-size: 30px !important;
    max-block-size: 30px !important;
  }
}

/* Final CTA trust-mark sizing: external image dimensions must never affect layout. */
.cta-trust-signals--official,
.cta-trust-signals--official.funnel-trust-signals {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  width: fit-content !important;
  max-width: calc(100vw - 32px) !important;
  height: 34px !important;
  min-height: 0 !important;
  max-height: 34px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  overflow: hidden !important;
  line-height: 0 !important;
}

.cta-trust-signals--official > * {
  display: flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  justify-content: center !important;
  height: 34px !important;
  min-height: 0 !important;
  max-height: 34px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  line-height: 0 !important;
  box-sizing: border-box !important;
}

.cta-trust-signals--official > .google-review-button {
  flex-basis: 106px !important;
  width: 106px !important;
  min-width: 106px !important;
  max-width: 106px !important;
}

.cta-trust-signals--official > .cta-provenexpert-official-badge {
  flex-basis: 34px !important;
  width: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
}

.cta-trust-signals--official > .cta-provenexpert-review-seal {
  flex-basis: 42px !important;
  width: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
}

.cta-trust-signals--official > a > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  transform: none !important;
}

@media (max-width: 640px) {
  .cta-trust-signals--official,
  .cta-trust-signals--official.funnel-trust-signals {
    gap: 4px !important;
    height: 28px !important;
    max-height: 28px !important;
  }

  .cta-trust-signals--official > * {
    height: 28px !important;
    max-height: 28px !important;
  }

  .cta-trust-signals--official > .google-review-button {
    flex-basis: 90px !important;
    width: 90px !important;
    min-width: 90px !important;
    max-width: 90px !important;
  }

  .cta-trust-signals--official > .cta-provenexpert-official-badge {
    flex-basis: 28px !important;
    width: 28px !important;
    min-width: 28px !important;
    max-width: 28px !important;
  }

  .cta-trust-signals--official > .cta-provenexpert-review-seal {
    flex-basis: 36px !important;
    width: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
  }
}

.hero-disclaimer {
  max-width: 720px;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.hero-video-card {
  overflow: hidden;
  width: min(100%, 620px);
  max-width: 100%;
  margin: 0 auto;
  color: var(--white);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-intro-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 16.38;
  min-height: 0;
  cursor: pointer;
  background: #071a35;
}

.hero-intro-video:focus-visible {
  outline: 3px solid #e3a166;
  outline-offset: -3px;
}

.hero-intro-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-intro-video::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(3, 13, 30, 0.62));
}

.hero-intro-video__sound {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 5px;
  background: rgba(5, 19, 40, 0.8);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  opacity: 1;
  transition: opacity 180ms ease;
}

.hero-intro-video:hover .hero-intro-video__sound,
.hero-intro-video:focus-visible .hero-intro-video__sound,
.hero-intro-video.is-audible .hero-intro-video__sound {
  opacity: 1;
}

@media (max-width: 768px) {
  .hero > .container.hero-grid {
    width: min(100%, var(--container));
    min-width: 0;
    max-width: 100%;
    padding-inline: 18px;
  }

  .hero-copy,
  .hero-visual,
  .hero-video-card,
  .hero-intro-video {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .hero-video-card {
    width: min(100%, 390px);
  }

  .hero-intro-video {
    min-height: 0;
    aspect-ratio: 9 / 16;
  }
}

@media (max-width: 480px) {
  .hero > .container.hero-grid {
    padding-inline: 16px;
  }

  .hero-video-card {
    width: 100%;
  }
}

.hero-video-placeholder {
  position: relative;
  aspect-ratio: 16 / 8.6;
  min-height: 310px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(159, 90, 42, 0.2), transparent 28%),
    linear-gradient(145deg, rgba(11, 35, 68, 0.9), rgba(6, 18, 37, 0.98));
}

.hero-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(0.92) contrast(1.04);
}

.hero-video-placeholder::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  pointer-events: none;
}

.hero-video-placeholder::before {
  content: "ENES VIDEO";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.play-button {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(159, 90, 42, 0.35);
  position: relative;
  z-index: 1;
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--navy-950);
}

.hero-video-placeholder p,
.hero-video-placeholder small {
  position: relative;
  z-index: 1;
}

.hero-video-placeholder p {
  color: var(--white);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 850;
  margin: 6px 0 0;
}

.hero-video-placeholder small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.leak-section {
  margin-top: -96px;
  padding-top: 148px;
  background:
    linear-gradient(180deg, var(--soft-white) 0%, var(--white) 72%),
    var(--white);
  transition: background 520ms ease, color 520ms ease;
}

.leak-section.leak-after {
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #07182f 0%, #0b2344 56%, #07182f 100%);
}

.leak-section.leak-after .section-heading h2,
.leak-section.leak-after .section-heading p {
  color: var(--white);
}

.leak-section.leak-after .eyebrow {
  color: var(--orange-2);
}

.leak-toggle-panel {
  width: min(100%, 760px);
  margin: -6px auto 30px;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.leak-toggle-panel p {
  max-width: 680px;
  margin: 0;
}

.leak-toggle-panel small {
  color: rgba(93, 107, 124, 0.8);
  font-weight: 800;
}

.leak-section.leak-after .leak-toggle-panel p,
.leak-section.leak-after .leak-toggle-panel small {
  color: rgba(255, 255, 255, 0.72);
}

.leak-toggle {
  min-width: min(100%, 310px);
  min-height: 54px;
  display: grid;
  grid-template-columns: 1fr 76px 1fr;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  color: var(--navy-950);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(247, 251, 255, 0.52));
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  box-shadow: 0 22px 70px rgba(7, 24, 47, 0.14);
  backdrop-filter: blur(24px) saturate(150%);
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 220ms ease, box-shadow 220ms ease, background 420ms ease;
}

.leak-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 86px rgba(7, 24, 47, 0.18);
}

.leak-toggle-track {
  position: relative;
  height: 38px;
  padding: 4px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 90, 103, 0.22), rgba(255, 255, 255, 0.88));
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.88),
    inset 0 -12px 22px rgba(7, 24, 47, 0.08);
}

.leak-toggle-track i {
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.88), transparent 30%),
    linear-gradient(145deg, #ff5a67, #c43e4f);
  box-shadow: 0 10px 26px rgba(196, 62, 79, 0.34);
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), background 420ms ease, box-shadow 420ms ease;
}

.leak-toggle[aria-pressed="true"] {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  border-color: rgba(255, 255, 255, 0.18);
}

.leak-toggle[aria-pressed="true"] .leak-toggle-track {
  background:
    linear-gradient(135deg, rgba(50, 213, 131, 0.24), rgba(255, 255, 255, 0.18));
}

.leak-toggle[aria-pressed="true"] .leak-toggle-track i {
  transform: translateX(38px);
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.9), transparent 30%),
    linear-gradient(145deg, #32d583, #1fa36a);
  box-shadow: 0 10px 30px rgba(50, 213, 131, 0.34);
}

.leak-system {
  position: relative;
  width: min(100%, 1040px);
  min-height: 660px;
  margin: 12px auto 56px;
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 0 215px;
  isolation: isolate;
}

.leak-system::before {
  content: "";
  position: absolute;
  inset: 54px 92px 78px;
  z-index: -1;
  border-radius: 54px;
  background:
    radial-gradient(circle at 48% 34%, rgba(159, 90, 42, 0.16), transparent 31%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.48), rgba(234, 242, 255, 0.34));
  filter: blur(1px);
  box-shadow: 0 34px 110px rgba(7, 24, 47, 0.1);
  transition: background 520ms ease, box-shadow 520ms ease;
}

.leak-system.is-after::before {
  background:
    radial-gradient(circle at 50% 34%, rgba(50, 213, 131, 0.18), transparent 31%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(18, 52, 95, 0.28));
  box-shadow: 0 38px 130px rgba(3, 12, 27, 0.38);
}

.leak-income {
  position: relative;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.leak-income span {
  display: inline-flex;
  min-width: 190px;
  align-items: baseline;
  gap: 8px;
  justify-content: center;
  padding: 12px 22px;
  color: var(--navy-950);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 255, 0.76));
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(7, 24, 47, 0.1);
  font-weight: 900;
}

.leak-income strong {
  color: #b67232;
  font-size: 0.92em;
}

.leak-system.is-after .leak-income span {
  color: var(--white);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
  border-color: rgba(255, 255, 255, 0.18);
}

.leak-system.is-after .leak-income strong {
  color: var(--green);
}

.leak-income i {
  position: relative;
  width: 12px;
  height: 62px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(91, 151, 255, 0.14);
}

.leak-income i::after {
  content: "";
  position: absolute;
  inset: -70% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(184, 117, 55, 0.94), transparent);
  animation: leakIncomeFlow 2.4s linear infinite;
}

.leak-system.is-after .leak-income i {
  background: rgba(50, 213, 131, 0.14);
}

.leak-system.is-after .leak-income i::after {
  background: linear-gradient(to bottom, transparent, rgba(50, 213, 131, 0.94), transparent);
}

.leak-vessel {
  position: relative;
  width: 460px;
  height: 390px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 44px 44px 72px 72px;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.26)),
    rgba(232, 241, 255, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 22px 0 34px rgba(255, 255, 255, 0.22),
    0 38px 100px rgba(7, 24, 47, 0.16);
  backdrop-filter: blur(24px) saturate(145%);
  transition: border-color 520ms ease, background 520ms ease, box-shadow 520ms ease;
}

.leak-vessel::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 34px 34px 62px 62px;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.32), transparent 35% 72%, rgba(196, 122, 63, 0.08));
}

.leak-vessel::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 0% 34%, rgba(159, 90, 42, 0.1), transparent 10%),
    radial-gradient(circle at 100% 34%, rgba(159, 90, 42, 0.09), transparent 10%),
    radial-gradient(circle at 0% 62%, rgba(159, 90, 42, 0.08), transparent 10%),
    radial-gradient(circle at 100% 62%, rgba(159, 90, 42, 0.08), transparent 10%);
  opacity: 1;
  transition: opacity 520ms ease;
}

.leak-system.is-after .leak-vessel {
  border-color: rgba(255, 255, 255, 0.26);
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08)),
    rgba(18, 52, 95, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 22px 0 34px rgba(255, 255, 255, 0.1),
    0 42px 120px rgba(3, 12, 27, 0.32);
}

.leak-system.is-after .leak-vessel::after {
  opacity: 0;
}

.leak-spills {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 1;
  transition: opacity 420ms ease, transform 520ms ease;
}

.leak-spills span {
  display: none;
}

.leak-spills span::after {
  content: "";
  position: absolute;
  inset: 3px 0 4px 4px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 18% 50%, rgba(226, 166, 111, 0.65), transparent 16%),
    radial-gradient(ellipse at 46% 52%, rgba(226, 166, 111, 0.42), transparent 14%),
    radial-gradient(ellipse at 72% 48%, rgba(226, 166, 111, 0.28), transparent 12%);
  transform: translateX(-18px);
  animation: leakCornerWave 1.55s linear infinite;
}

.leak-spills::before {
  content: "";
  position: absolute;
  top: 230px;
  right: -7px;
  width: 34px;
  height: 48px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-left: 0;
  border-radius: 0 18px 18px 0;
  background:
    radial-gradient(circle at 2px 50%, rgba(184, 117, 55, 0.88) 0 6px, rgba(226, 166, 111, 0.68) 7px, transparent 12px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.08));
  clip-path: polygon(0 10%, 42% 0, 100% 16%, 74% 34%, 100% 52%, 73% 70%, 100% 88%, 44% 100%, 0 88%, 20% 68%, 0 50%, 20% 31%);
  filter: drop-shadow(0 0 12px rgba(184, 117, 55, 0.2));
}

.leak-spills::after {
  content: none;
}

.leak-system.is-after .leak-spills {
  opacity: 0;
  transform: scale(0.94);
}

.leak-liquid {
  position: absolute;
  inset: auto 12px 12px;
  height: 30%;
  overflow: hidden;
  border-radius: 24px 24px 58px 58px;
  background: linear-gradient(180deg, rgba(227, 168, 103, 0.72), rgba(172, 99, 45, 0.9));
  box-shadow:
    inset 0 10px 26px rgba(255, 255, 255, 0.32),
    0 -10px 34px rgba(172, 99, 45, 0.18);
  animation: leakLiquidBreathe 6s ease-in-out infinite;
  transition: height 620ms cubic-bezier(0.2, 0.8, 0.2, 1), background 520ms ease, box-shadow 520ms ease;
}

.leak-liquid::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10%;
  width: 120%;
  height: 25px;
  border-radius: 50%;
  background: rgba(226, 166, 111, 0.88);
  animation: leakLiquidWave 5s ease-in-out infinite;
}

.leak-system.is-after .leak-liquid {
  height: 80%;
  background: linear-gradient(180deg, rgba(229, 177, 110, 0.76), rgba(186, 112, 55, 0.92));
  box-shadow:
    inset 0 10px 26px rgba(255, 255, 255, 0.34),
    0 -12px 42px rgba(50, 213, 131, 0.1);
}

.leak-core {
  position: absolute;
  top: 54px;
  left: 50%;
  z-index: 4;
  width: 238px;
  padding: 20px;
  text-align: center;
  transform: translateX(-50%);
  color: var(--white);
  background:
    radial-gradient(circle at 28% 12%, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(145deg, var(--navy-950), var(--navy-700));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 20px 46px rgba(7, 24, 47, 0.24);
  transition: background 520ms ease, box-shadow 520ms ease, transform 520ms ease;
}

.leak-system.is-after .leak-core {
  background:
    radial-gradient(circle at 28% 12%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(8, 31, 60, 0.98), rgba(18, 52, 95, 0.92));
  box-shadow: 0 22px 54px rgba(50, 213, 131, 0.12);
  transform: translateX(-50%) translateY(-3px);
}

.leak-core small,
.leak-core strong,
.leak-remaining small,
.leak-remaining strong,
.leak-solution strong {
  display: block;
}

.leak-core small {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.leak-core strong {
  font-size: 1.08rem;
}

.before-copy,
.after-copy {
  transition: opacity 280ms ease, transform 360ms ease;
}

.after-copy,
.leak-system.is-after .before-copy {
  display: none;
}

.leak-system.is-after .after-copy {
  display: inline;
}

.leak-core .before-copy,
.leak-core .after-copy,
.leak-remaining .before-copy,
.leak-remaining .after-copy,
.leak-solution .before-copy,
.leak-solution .after-copy,
.leak-mobile-flow .before-copy,
.leak-mobile-flow .after-copy,
.leak-mobile-points .before-copy,
.leak-mobile-points .after-copy {
  display: block;
}

.leak-system.is-after .leak-core .before-copy,
.leak-system.is-after .leak-remaining .before-copy,
.leak-system.is-after .leak-solution .before-copy,
.leak-system.is-after .leak-mobile-flow .before-copy,
.leak-system.is-after .leak-mobile-points .before-copy,
.leak-system .leak-core .after-copy,
.leak-system .leak-remaining .after-copy,
.leak-system .leak-solution .after-copy,
.leak-system .leak-mobile-flow .after-copy,
.leak-system .leak-mobile-points .after-copy {
  display: none;
}

.leak-system.is-after .leak-core .after-copy,
.leak-system.is-after .leak-remaining .after-copy,
.leak-system.is-after .leak-solution .after-copy,
.leak-system.is-after .leak-mobile-flow .after-copy,
.leak-system.is-after .leak-mobile-points .after-copy {
  display: block;
}

.leak-port {
  position: absolute;
  z-index: 5;
  width: 230px;
  color: var(--navy-950);
  font-size: 0.8rem;
  font-weight: 850;
  transition: transform 420ms ease, opacity 420ms ease;
}

.leak-port::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 86px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 90, 103, 0.12), rgba(255, 90, 103, 0.76));
  transition: background 420ms ease;
}

.leak-port::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(255, 90, 103, 0.12), 0 0 22px rgba(255, 90, 103, 0.42);
  animation: leakPulse 2.8s ease-in-out infinite;
  transition: background 420ms ease, box-shadow 420ms ease;
}

.leak-port-card {
  min-height: 64px;
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 249, 253, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(7, 24, 47, 0.09);
  backdrop-filter: blur(16px);
  transition: background 420ms ease, border-color 420ms ease, box-shadow 420ms ease, color 420ms ease;
}

.leak-port-card em {
  color: inherit;
  font-style: normal;
  line-height: 1.25;
}

.leak-sign {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, #ff5a67, #c43e4f);
  border-radius: 50%;
  font-size: 1.08rem;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(255, 90, 103, 0.24);
  transition: background 420ms ease, box-shadow 420ms ease;
}

.leak-amount {
  display: block;
  margin-top: 2px;
  color: var(--red);
  font-size: 0.95rem;
}

.leak-system.is-after .leak-port {
  color: var(--white);
}

.leak-system.is-after .leak-port::before {
  background: linear-gradient(90deg, rgba(50, 213, 131, 0.12), rgba(50, 213, 131, 0.76));
}

.leak-system.is-after .leak-port::after {
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(50, 213, 131, 0.12), 0 0 24px rgba(50, 213, 131, 0.42);
}

.leak-system.is-after .leak-port-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 42px rgba(3, 12, 27, 0.22);
}

.leak-system.is-after .leak-sign {
  background: linear-gradient(145deg, #32d583, #1fa36a);
  box-shadow: 0 8px 18px rgba(50, 213, 131, 0.24);
}

.leak-port-one,
.leak-port-three,
.leak-port-five {
  right: calc(100% + 78px);
  text-align: right;
}

.leak-port-two,
.leak-port-four,
.leak-port-six {
  left: calc(100% + 78px);
}

.leak-port-one,
.leak-port-two {
  top: 54px;
}

.leak-port-three,
.leak-port-four {
  top: 154px;
}

.leak-port-five,
.leak-port-six {
  top: 254px;
}

.leak-port-one::before,
.leak-port-three::before,
.leak-port-five::before {
  left: 100%;
}

.leak-port-two::before,
.leak-port-four::before,
.leak-port-six::before {
  right: 100%;
  transform: rotate(180deg);
}

.leak-port-one::after,
.leak-port-three::after,
.leak-port-five::after {
  left: calc(100% + 80px);
}

.leak-port-two::after,
.leak-port-four::after,
.leak-port-six::after {
  right: calc(100% + 80px);
}

.leak-port-two::after {
  animation-delay: -0.7s;
}

.leak-port-three::after {
  animation-delay: -1.4s;
}

.leak-port-four::after {
  animation-delay: -2.1s;
}

.leak-port-five::after {
  animation-delay: -1.1s;
}

.leak-port-six::after {
  animation-delay: -1.8s;
}

.leak-remaining {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 4;
  width: min(82%, 320px);
  text-align: center;
  color: var(--navy-950);
  transform: translateX(-50%);
  transition: color 420ms ease;
}

.leak-remaining small {
  margin-bottom: 4px;
  color: rgba(7, 24, 47, 0.62);
  font-size: 0.68rem;
  font-weight: 760;
}

.leak-remaining strong {
  font-size: 1rem;
}

.leak-system.is-after .leak-remaining {
  color: var(--white);
}

.leak-system.is-after .leak-remaining small {
  color: rgba(255, 255, 255, 0.62);
}

.leak-solution {
  position: relative;
  z-index: 5;
  width: min(100%, 610px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  padding: 18px 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 0%, rgba(196, 122, 63, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(7, 24, 47, 0.98), rgba(14, 48, 88, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 24px 68px rgba(7, 24, 47, 0.22);
  transition: background 520ms ease, border-color 520ms ease, box-shadow 520ms ease;
}

.leak-solution-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border-radius: 14px;
  font-weight: 950;
  box-shadow: var(--gold-glow);
  transition: background 420ms ease, box-shadow 420ms ease;
}

.leak-solution p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.leak-solution strong {
  margin-bottom: 3px;
  color: var(--white);
  font-size: 1rem;
}

.leak-system.is-after .leak-solution {
  background:
    radial-gradient(circle at 12% 0%, rgba(50, 213, 131, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 78px rgba(3, 12, 27, 0.32);
}

.leak-system.is-after .leak-solution-mark {
  background: linear-gradient(135deg, var(--green), #9df8c8);
  box-shadow: 0 0 34px rgba(50, 213, 131, 0.28);
}

.leak-mobile-flow {
  display: none;
}

.leak-mobile-points {
  display: none;
}

@keyframes leakIncomeFlow {
  to {
    transform: translateY(100%);
  }
}

@keyframes leakLiquidBreathe {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

@keyframes leakLiquidWave {
  0%,
  100% {
    transform: translateX(-3%) rotate(-1deg);
  }

  50% {
    transform: translateX(3%) rotate(1deg);
  }
}

@keyframes leakPulse {
  0%,
  100% {
    opacity: 0.72;
    scale: 0.88;
  }

  50% {
    opacity: 1;
    scale: 1.08;
  }
}

@keyframes leakCornerFlow {
  0%,
  100% {
    opacity: 0.72;
    transform: rotate(0.5deg) translateX(-3px) scaleX(0.96);
  }

  50% {
    opacity: 0.96;
    transform: rotate(0.5deg) translateX(3px) scaleX(1.03);
  }
}

@keyframes leakCornerWave {
  0%,
  100% {
    transform: translateX(-18px);
  }

  50% {
    transform: translateX(12px);
  }
}

.dashboard-shell {
  padding: 22px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: floatDashboard 7s ease-in-out infinite;
}

.dashboard-header,
.dashboard-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-header {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

.pulse-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(50, 213, 131, 0.55);
  animation: pulse 1.8s infinite;
}

.dashboard-metric {
  padding: 24px 0 14px;
}

.dashboard-metric strong {
  color: var(--orange-2);
  font-size: 2.1rem;
}

.dashboard-bars {
  height: 148px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 12px;
  padding: 18px 0 24px;
}

.dashboard-bars span {
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, var(--orange-2), rgba(159, 90, 42, 0.18));
  animation: barPulse 3s ease-in-out infinite;
}

.dashboard-bars span:nth-child(2) {
  animation-delay: 0.2s;
}

.dashboard-bars span:nth-child(3) {
  animation-delay: 0.4s;
}

.dashboard-bars span:nth-child(4) {
  animation-delay: 0.6s;
}

.dashboard-bars span:nth-child(5) {
  animation-delay: 0.8s;
}

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

.mini-card,
.glass-card,
.tool-card,
.video-card,
.comparison-card,
.calculator-panel,
.calculator-output,
.seo-tool-copy,
.xray-result,
.funnel {
  border-radius: var(--radius);
}

.mini-card {
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mini-card span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.mini-card strong {
  color: var(--white);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  font-size: 1.05rem;
}

.align-left {
  margin-left: 0;
  text-align: left;
}

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

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

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

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

.card-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.glass-card,
.tool-card,
.video-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 46px rgba(7, 24, 47, 0.09);
  backdrop-filter: blur(14px);
}

.glass-card:hover,
.tool-card:hover,
.video-card:hover,
.solid-card:hover,
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(7, 24, 47, 0.14);
}

.glass-card,
.tool-card,
.video-card,
.solid-card,
.process-step {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--navy-950);
  background: var(--orange);
  border-radius: var(--radius);
  font-weight: 850;
}

.timeline-section,
.comparison-section,
.calculator-section.alt,
.process-section {
  background: var(--white);
}

.timeline-section {
  overflow: visible;
  background:
    linear-gradient(180deg, var(--white) 0%, #f4f8fd 100%),
    var(--white);
}

.timeline-section .container,
.process-section .container {
  position: relative;
}

.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding-bottom: 18vh;
  z-index: 1;
}

.timeline-stack {
  display: grid;
  gap: 0;
}

.timeline-item {
  position: sticky;
  top: 112px;
  min-height: 340px;
  display: grid;
  align-content: space-between;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  margin-bottom: 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 24, 47, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 22px 54px rgba(7, 24, 47, 0.1);
  transform: translateY(calc((var(--stack-index) - 1) * 12px));
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  z-index: var(--stack-index);
}

.timeline-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(159, 90, 42, 0.08), transparent 34%),
    radial-gradient(circle at 86% 22%, rgba(159, 90, 42, 0.12), transparent 26%);
  pointer-events: none;
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--orange), rgba(159, 90, 42, 0.18));
}

.timeline-item:hover {
  transform: translateY(calc((var(--stack-index) - 1) * 12px - 4px));
  border-color: rgba(159, 90, 42, 0.28);
  box-shadow: 0 28px 68px rgba(7, 24, 47, 0.14);
}

.timeline-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 22px;
}

.timeline-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 4px 0 4px 18px;
  color: rgba(7, 24, 47, 0.78);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(184, 115, 51, 0.26);
}

.timeline-number,
.process-step span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border-radius: var(--radius);
  font-weight: 850;
}

.process-step span {
  margin-bottom: 16px;
}

.timeline-card-body {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.timeline-item h3,
.timeline-item p {
  position: relative;
  z-index: 1;
}

.timeline-item h3 {
  max-width: 720px;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  letter-spacing: 0;
  margin-bottom: 1rem;
}

.timeline-item p {
  max-width: 640px;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.timeline-item.highlight {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(159, 90, 42, 0.2), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-700));
  border-color: rgba(159, 90, 42, 0.26);
  box-shadow: 0 24px 58px rgba(7, 24, 47, 0.22);
}

.timeline-item.highlight::before {
  background:
    linear-gradient(90deg, rgba(159, 90, 42, 0.16), transparent 40%),
    radial-gradient(circle at 88% 20%, rgba(159, 90, 42, 0.24), transparent 28%);
}

.timeline-item.highlight .timeline-tag {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
}

.timeline-item.highlight p {
  color: rgba(255, 255, 255, 0.75);
}

.split,
.founder-grid,
.funnel-grid,
.calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.xray-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 24px;
  background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.status-pill {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
}

.status-pill span {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--navy-950);
  font-size: 0.8rem;
  font-weight: 850;
}

.status-pill.red span {
  background: var(--red);
}

.status-pill.yellow span {
  background: var(--yellow);
}

.status-pill.green span {
  background: var(--green);
}

.compass {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  isolation: isolate;
  perspective: 1100px;
  transform-style: preserve-3d;
  --compass-tilt-x: 0deg;
  --compass-tilt-y: 0deg;
  --compass-lift: 0px;
  --needle-angle: -18deg;
}

.compass::before {
  content: "";
  position: absolute;
  width: min(70vw, 500px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(7, 24, 47, 0.12);
  background:
    radial-gradient(circle, rgba(159, 90, 42, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 241, 255, 0.62));
  box-shadow: var(--shadow);
  z-index: -2;
  transform:
    translate3d(0, var(--compass-lift), -24px)
    rotateX(var(--compass-tilt-x))
    rotateY(var(--compass-tilt-y));
  transform-style: preserve-3d;
  will-change: transform;
  animation: compassDiscBreath 7s ease-in-out infinite;
}

.compass::after {
  content: "";
  position: absolute;
  width: 14px;
  height: min(44vw, 390px);
  min-height: 320px;
  border-radius: 999px 999px 5px 5px;
  background:
    linear-gradient(
      to bottom,
      var(--orange-2) 0 47%,
      rgba(255, 255, 255, 0.9) 47% 53%,
      var(--navy-700) 53% 100%
    );
  clip-path: polygon(50% 0, 100% 16%, 72% 49%, 72% 100%, 28% 100%, 28% 49%, 0 16%);
  filter: drop-shadow(0 10px 14px rgba(7, 24, 47, 0.2));
  transform:
    translate3d(0, var(--compass-lift), -4px)
    rotateX(var(--compass-tilt-x))
    rotateY(var(--compass-tilt-y))
    rotateZ(var(--needle-angle));
  transform-origin: 50% 50%;
  transition: filter 300ms ease;
  will-change: transform;
  z-index: -1;
}

.compass-center {
  width: 230px;
  min-height: 230px;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-700));
  border-radius: 50%;
  box-shadow: 0 20px 54px rgba(7, 24, 47, 0.28);
  font-weight: 850;
  position: relative;
  z-index: 2;
  transform:
    translate3d(0, var(--compass-lift), 34px)
    rotateX(var(--compass-tilt-x))
    rotateY(var(--compass-tilt-y));
  transform-style: preserve-3d;
  transition: box-shadow 350ms ease;
  will-change: transform;
}

.compass-center::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34% 66%, rgba(196, 122, 63, 0.08));
  pointer-events: none;
}

.compass-card {
  position: absolute;
  width: min(235px, 42vw);
  padding: 24px;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(7, 24, 47, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(7, 24, 47, 0.08);
  z-index: 3;
  translate: var(--card-x, 0px) var(--card-y, 0px);
  scale: 1;
  transition:
    scale 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 280ms ease,
    border-color 280ms ease,
    background 280ms ease;
  animation: compassCardFloat 5.8s ease-in-out infinite;
  will-change: translate;
  outline: none;
}

.compass-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.62), transparent 38% 72%, rgba(196, 122, 63, 0.1));
  opacity: 0.55;
  pointer-events: none;
}

.compass-card:nth-of-type(2) {
  animation-delay: -1.45s;
}

.compass-card:nth-of-type(3) {
  animation-delay: -2.9s;
}

.compass-card:nth-of-type(4) {
  animation-delay: -4.35s;
}

@media (hover: hover) and (pointer: fine) {
  .compass-card:hover {
    scale: 1.035;
    border-color: rgba(159, 90, 42, 0.34);
    box-shadow:
      0 26px 68px rgba(7, 24, 47, 0.17),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }
}

.compass-card:focus-visible,
.compass-card:active {
  scale: 1.025;
  border-color: rgba(159, 90, 42, 0.48);
  box-shadow:
    0 22px 58px rgba(7, 24, 47, 0.16),
    0 0 0 4px rgba(159, 90, 42, 0.12);
}

.compass-card h3 {
  margin-bottom: 0;
}

.mobile-label {
  display: none;
}

.compass-card.top {
  top: 0;
}

.compass-card.right {
  right: 0;
}

.compass-card.bottom {
  bottom: 0;
}

.compass-card.left {
  left: 0;
}

.solid-card,
.process-step {
  min-height: 100%;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(7, 24, 47, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(7, 24, 47, 0.06);
}

.section-photo,
.tool-page-hero-media {
  overflow: hidden;
  position: relative;
  max-width: 980px;
  margin: 0 auto 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(234, 242, 255, 0.52));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 24px 70px rgba(7, 24, 47, 0.13);
}

.section-photo img,
.tool-page-hero-media img {
  display: block;
  width: 100%;
  height: clamp(220px, 33vw, 380px);
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.section-photo::after,
.tool-page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 34%),
    radial-gradient(circle at 18% 18%, rgba(196, 122, 63, 0.16), transparent 28%);
  pointer-events: none;
}

.real-estate-section {
  overflow: hidden;
}

.real-estate-section .section-heading {
  margin-bottom: 26px;
}

.real-estate-section .card-grid.three {
  position: relative;
  isolation: isolate;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(110px, 16vw, 180px) clamp(14px, 2.6vw, 24px) clamp(14px, 2.6vw, 24px);
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
}

.real-estate-section .card-grid.three::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/trustplan-immobilien-mehrfamilienhaus.jpg") center -18px / min(100%, 1080px) auto no-repeat;
  opacity: 0.38;
  pointer-events: none;
  transform: scaleX(2.05);
  transform-origin: center top;
}

.real-estate-section .card-grid.three::after {
  content: none;
}

.real-estate-section .solid-card {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68));
}

.real-estate-visual {
  --estate-shift: 0;
  isolation: isolate;
  max-width: min(100%, 1080px);
  overflow: visible;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 16%, rgba(196, 122, 63, 0.22), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(18, 52, 95, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(228, 238, 252, 0.62));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 34px 90px rgba(7, 24, 47, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.44);
}

.real-estate-visual::before {
  content: "";
  position: absolute;
  inset: -34px;
  z-index: -1;
  border-radius: 44px;
  background:
    radial-gradient(circle at 28% 18%, rgba(196, 122, 63, 0.2), transparent 28%),
    radial-gradient(circle at 78% 76%, rgba(18, 52, 95, 0.16), transparent 34%);
  filter: blur(18px);
  opacity: 0.9;
  pointer-events: none;
}

.real-estate-visual::after {
  z-index: 2;
  border-radius: inherit;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.34), transparent 31%, rgba(255, 255, 255, 0.18) 62%, transparent),
    radial-gradient(circle at 75% 18%, rgba(196, 122, 63, 0.18), transparent 25%),
    linear-gradient(180deg, rgba(7, 24, 47, 0.02), rgba(7, 24, 47, 0.34));
}

.real-estate-visual img {
  position: relative;
  z-index: 1;
  height: clamp(280px, 39vw, 470px);
  border-radius: 30px;
  filter: saturate(0.96) contrast(1.05) brightness(0.92);
  transform: scale(1.012);
}

.estate-blueprint {
  position: absolute;
  right: 6%;
  bottom: 9%;
  z-index: 3;
  width: min(34%, 320px);
  aspect-ratio: 1.32;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 22px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(135deg, rgba(18, 52, 95, 0.42), rgba(196, 122, 63, 0.18));
  background-size: 22px 22px, 22px 22px, 100% 100%;
  box-shadow: 0 22px 54px rgba(7, 24, 47, 0.18);
  opacity: 0.76;
  transform: translate3d(0, calc(var(--estate-shift) * -10px), 0) rotate(-3deg);
  transition: transform 600ms ease, opacity 300ms ease;
  pointer-events: none;
}

.estate-blueprint::before,
.estate-blueprint::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
}

.estate-blueprint::before {
  inset: 22% 18% 28% 16%;
}

.estate-blueprint::after {
  right: 16%;
  bottom: 18%;
  width: 28%;
  height: 26%;
  border-left: 0;
}

.estate-floating,
.estate-kpi {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(238, 245, 255, 0.48));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 20px 52px rgba(7, 24, 47, 0.17);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.estate-floating {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 24px;
  color: var(--navy);
  font-size: 34px;
  font-weight: 900;
  transform: translate3d(0, calc(var(--estate-shift) * -14px), 0);
  animation: estateFloat 7.5s ease-in-out infinite;
}

.estate-floating::before {
  content: attr(data-icon);
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(196, 122, 63, 0.95), rgba(159, 90, 42, 0.9));
  color: #fff;
  box-shadow: 0 14px 32px rgba(159, 90, 42, 0.24);
}

.estate-floating-house {
  left: 6%;
  top: 13%;
}

.estate-floating-value {
  right: 10%;
  top: 12%;
  animation-delay: -1.7s;
}

.estate-floating-growth {
  right: 18%;
  bottom: 16%;
  animation-delay: -3.2s;
}

.estate-kpi {
  min-width: 188px;
  padding: 13px 15px;
  border-radius: 20px;
  color: var(--navy);
  transform: translate3d(0, calc(var(--estate-shift) * -8px), 0);
  animation: estateFloat 8.4s ease-in-out infinite;
}

.estate-kpi strong,
.estate-kpi small {
  display: block;
}

.estate-kpi strong {
  font-size: 0.96rem;
  letter-spacing: -0.01em;
}

.estate-kpi small {
  margin-top: 3px;
  color: rgba(7, 24, 47, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
}

.estate-kpi-one {
  left: 6%;
  bottom: 31%;
  animation-delay: -2.3s;
}

.estate-kpi-two {
  right: 4%;
  top: 28%;
  animation-delay: -4.1s;
}

.estate-kpi-three {
  left: 39%;
  bottom: 6%;
  animation-delay: -5.4s;
}

.real-estate-visual:hover .estate-floating,
.real-estate-visual:hover .estate-kpi {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 26px 66px rgba(7, 24, 47, 0.2);
}

@keyframes estateFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@media (max-width: 992px) {
  .real-estate-visual {
    max-width: 100%;
    overflow: hidden;
    border-radius: 28px;
  }

  .real-estate-visual img {
    height: clamp(280px, 48vw, 390px);
    border-radius: 26px;
  }

  .estate-floating {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    font-size: 28px;
  }

  .estate-floating::before {
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }

  .estate-kpi {
    min-width: 164px;
    padding: 11px 12px;
  }
}

@media (max-width: 768px) {
  .real-estate-section .section-heading {
    margin-bottom: 24px;
  }

  .real-estate-section .card-grid.three {
    padding: 90px 14px 14px;
    border-radius: 24px;
  }

  .real-estate-section .card-grid.three::before {
    background-position: center 24%;
    background-size: auto 82%;
    opacity: 0.24;
    transform: none;
  }

  .real-estate-section .solid-card {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86));
  }

  .real-estate-visual {
    margin-bottom: 22px;
  }

  .real-estate-visual::before {
    inset: -18px;
    filter: blur(14px);
  }

  .real-estate-visual img {
    height: 320px;
    object-position: 46% 50%;
  }

  .estate-blueprint,
  .estate-floating-value,
  .estate-floating-growth,
  .estate-kpi-three {
    display: none;
  }

  .estate-floating-house {
    left: 14px;
    top: 14px;
  }

  .estate-kpi-one {
    left: 14px;
    right: auto;
    bottom: 14px;
    max-width: calc(100% - 28px);
  }

  .estate-kpi-two {
    top: 14px;
    right: 14px;
    max-width: calc(100% - 96px);
  }

  .estate-kpi strong {
    font-size: 0.86rem;
  }

  .estate-kpi small {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .real-estate-visual img {
    height: 292px;
  }

  .estate-floating-house {
    width: 54px;
    height: 54px;
  }

  .estate-floating-house::before {
    width: 38px;
    height: 38px;
  }

  .estate-kpi-two {
    min-width: 0;
    max-width: 54%;
  }
}

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

.comparison-card {
  padding: 32px;
  border: 1px solid rgba(7, 24, 47, 0.08);
  box-shadow: 0 18px 44px rgba(7, 24, 47, 0.08);
}

.comparison-card.status-quo {
  background: #fff7f7;
}

.comparison-card.trustplan {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
}

.comparison-card.trustplan p,
.comparison-card.trustplan li,
.comparison-card.trustplan h3 {
  color: var(--white);
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.45em;
  border-radius: 50%;
  flex: 0 0 auto;
}

.check-list.negative li::before {
  background: var(--red);
}

.check-list.positive li::before {
  background: var(--green);
}

.tool-card {
  display: flex;
  flex-direction: column;
}

.tool-card .btn {
  margin-top: auto;
}

.comparison-visual,
.final-cta-media {
  min-height: 150px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: rgba(16, 32, 51, 0.58);
  background:
    radial-gradient(circle at 30% 20%, rgba(211, 154, 94, 0.28), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(234, 242, 255, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(7, 24, 47, 0.08);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.comparison-visual {
  position: relative;
  min-height: 190px;
  overflow: hidden;
}

.comparison-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--radius) - 2px);
}

.comparison-visual::before,
.comparison-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.comparison-visual::before {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.72), transparent 68%);
  transform: translate(-42px, -34px);
}

.comparison-visual::after {
  right: 18px;
  bottom: 16px;
  width: 82px;
  height: 82px;
  background: rgba(255, 255, 255, 0.22);
  filter: blur(2px);
}

.comparison-visual-stress {
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.9), transparent 30%),
    radial-gradient(circle at 74% 30%, rgba(255, 82, 105, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 238, 239, 0.66));
}

.comparison-visual-happy {
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 255, 255, 0.66), transparent 30%),
    radial-gradient(circle at 74% 30%, rgba(50, 213, 131, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  border-color: rgba(255, 255, 255, 0.22);
}

.comparison-avatar {
  position: relative;
  z-index: 1;
  width: min(52%, 150px);
  aspect-ratio: 1;
}

.avatar-head,
.avatar-body,
.avatar-line {
  position: absolute;
  display: block;
}

.avatar-head {
  left: 50%;
  top: 8%;
  width: 52%;
  height: 52%;
  transform: translateX(-50%);
  border-radius: 42% 42% 46% 46%;
  background:
    radial-gradient(circle at 35% 36%, rgba(255, 255, 255, 0.42), transparent 10%),
    linear-gradient(145deg, #f2c49a, #bb7547);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 16px 34px rgba(7, 24, 47, 0.16);
}

.avatar-head::before,
.avatar-head::after {
  content: "";
  position: absolute;
  top: 44%;
  width: 7px;
  height: 7px;
  background: var(--navy-950);
  border-radius: 999px;
}

.avatar-head::before {
  left: 29%;
}

.avatar-head::after {
  right: 29%;
}

.avatar-body {
  left: 50%;
  bottom: 0;
  width: 86%;
  height: 45%;
  transform: translateX(-50%);
  border-radius: 36px 36px 18px 18px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(145deg, var(--navy-900), var(--navy-700));
  box-shadow: 0 18px 40px rgba(7, 24, 47, 0.18);
}

.avatar-stress .avatar-head {
  transform: translateX(-50%) rotate(-4deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 16px 34px rgba(7, 24, 47, 0.16),
    -18px -8px 0 -11px rgba(255, 82, 105, 0.28),
    18px -7px 0 -11px rgba(255, 82, 105, 0.26);
}

.avatar-stress .avatar-head::before,
.avatar-stress .avatar-head::after {
  width: 13px;
  height: 3px;
}

.avatar-stress .avatar-head::before {
  transform: rotate(18deg);
}

.avatar-stress .avatar-head::after {
  transform: rotate(-18deg);
}

.avatar-happy .avatar-head {
  transform: translateX(-50%) rotate(2deg);
  background:
    radial-gradient(circle at 35% 36%, rgba(255, 255, 255, 0.42), transparent 10%),
    linear-gradient(145deg, #f3c89f, #c98754);
}

.avatar-happy .avatar-body {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(145deg, #123c6d, #07182f);
}

.avatar-line {
  width: 30px;
  height: 3px;
  border-radius: 999px;
}

.avatar-stress .avatar-line {
  background: rgba(255, 82, 105, 0.72);
}

.avatar-stress .avatar-line-one {
  top: 18%;
  left: -10%;
  transform: rotate(38deg);
}

.avatar-stress .avatar-line-two {
  top: 28%;
  right: -12%;
  transform: rotate(-38deg);
}

.avatar-happy .avatar-line {
  background: rgba(50, 213, 131, 0.72);
}

.avatar-happy .avatar-line-one {
  top: 20%;
  left: -8%;
  transform: rotate(-25deg);
}

.avatar-happy .avatar-line-two {
  top: 24%;
  right: -8%;
  transform: rotate(25deg);
}

.final-cta-media {
  width: min(100%, 360px);
  min-height: 220px;
  margin: 20px auto 22px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 50% 20%, rgba(211, 154, 94, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border-color: rgba(255, 255, 255, 0.16);
}

.final-cta-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

@media (min-width: 769px) {
  .final-cta-media {
    width: min(100%, 620px);
    min-height: 0;
    aspect-ratio: 1600 / 849;
  }

  .final-cta-media img {
    min-height: 0;
  }
}

.review-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  padding: 6px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.review-marquee-track {
  width: max-content;
  display: flex;
  gap: 16px;
  animation: reviewMarquee 42s linear infinite;
}

.review-marquee:hover .review-marquee-track {
  animation-play-state: paused;
}

.review-card {
  position: relative;
  width: clamp(270px, 28vw, 360px);
  min-height: 190px;
  padding: 22px 20px 20px;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.66));
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(7, 24, 47, 0.1);
  backdrop-filter: blur(18px);
}

.review-card::before {
  content: "G";
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #4285f4;
  background:
    linear-gradient(#fff, #fff) padding-box,
    conic-gradient(from -35deg, #4285f4 0 28%, #34a853 28% 48%, #fbbc05 48% 72%, #ea4335 72% 100%) border-box;
  border: 2px solid transparent;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(66, 133, 244, 0.16);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
}

.review-card::after {
  content: "Google Rezension";
  position: absolute;
  top: 24px;
  right: 56px;
  color: rgba(84, 98, 116, 0.72);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card strong {
  max-width: calc(100% - 148px);
}

.review-card span {
  margin: 6px 0 12px;
  color: #f5a900;
  letter-spacing: 0.06em;
}

.review-card p {
  margin: 0;
  font-size: 0.94rem;
}

.calculator-section {
  background:
    radial-gradient(circle at 6% 10%, rgba(159, 90, 42, 0.11), transparent 24%),
    var(--soft-white);
}

.tool-page-main {
  padding-top: 72px;
}

.tool-page-hero {
  padding: 88px 0 44px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 12%, rgba(196, 122, 63, 0.14), transparent 26rem),
    radial-gradient(circle at 84% 18%, rgba(91, 151, 255, 0.12), transparent 30rem),
    linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(240, 246, 253, 0.92));
}

.tool-page-hero .container {
  max-width: 920px;
}

.tool-page-hero h1 {
  max-width: 900px;
  margin: 0 auto 18px;
  color: var(--navy-950);
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

.tool-page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.tool-page-hero-media {
  margin-top: 30px;
  margin-bottom: 0;
  border-color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(234, 242, 255, 0.58));
}

.tool-page-main .calculator-section {
  padding-top: 48px;
}

.tool-page-main .faq-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(91, 151, 255, 0.08), transparent 28rem),
    var(--soft-white);
}

.tool-page-cta {
  text-align: center;
  background: linear-gradient(145deg, var(--navy-950), var(--navy-700));
}

.tool-page-cta h2 {
  color: var(--white);
}

.tool-page-cta p {
  max-width: 680px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.74);
}

.legal-page-main {
  min-height: 70vh;
  padding-top: 72px;
  background:
    radial-gradient(circle at 16% 10%, rgba(196, 122, 63, 0.1), transparent 26rem),
    linear-gradient(180deg, var(--soft-white), var(--white));
}

.legal-page {
  padding: 88px 0;
}

.legal-content {
  max-width: 900px;
  padding: clamp(24px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  box-shadow: var(--premium-shadow);
  backdrop-filter: blur(20px) saturate(140%);
}

.legal-content h1 {
  margin-bottom: 28px;
  color: var(--navy-950);
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal-content h2 {
  margin-top: 32px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.legal-content h3 {
  margin-top: 24px;
  font-size: 1.05rem;
}

.legal-content p,
.legal-content li,
.legal-content address {
  color: var(--muted);
}

.legal-content address {
  font-style: normal;
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content a:not(.btn) {
  color: var(--navy-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.status-page .legal-content {
  max-width: 760px;
  text-align: center;
}

.status-page .legal-content p {
  font-size: 1.08rem;
}

.status-contact {
  display: grid;
  gap: 8px;
  justify-items: center;
  margin: 28px 0;
}

@media (max-width: 768px) {
  .tool-page-main {
    padding-top: 64px;
  }

  .tool-page-hero {
    padding: 62px 0 30px;
  }

  .legal-page-main {
    padding-top: 64px;
  }

  .legal-page {
    padding: 56px 0;
  }

  .legal-content h1 {
    font-size: clamp(1.85rem, 8vw, 2.2rem);
  }
}

.calculator-grid {
  align-items: stretch;
}

.calculator-panel,
.calculator-output,
.seo-tool-copy,
.funnel {
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(7, 24, 47, 0.08);
  box-shadow: 0 18px 44px rgba(7, 24, 47, 0.08);
}

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

.calculator-panel label,
.field-grid label {
  display: grid;
  gap: 8px;
  color: var(--navy-950);
  font-weight: 750;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: #f3f7fc;
  border: 1px solid rgba(7, 24, 47, 0.12);
  border-radius: var(--radius);
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(159, 90, 42, 0.15);
}

input[type="range"] {
  min-height: 34px;
  padding: 0;
  accent-color: var(--orange);
  background: transparent;
}

.calculator-output {
  display: grid;
  align-content: start;
  gap: 20px;
}

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

.result-grid div {
  padding: 16px;
  background: #f3f7fc;
  border: 1px solid rgba(7, 24, 47, 0.08);
  border-radius: var(--radius);
}

.result-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 6px;
}

.result-grid strong {
  color: var(--navy-950);
  font-size: 1.15rem;
}

#investmentChart {
  width: 100%;
  min-height: 240px;
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
  border: 1px solid rgba(7, 24, 47, 0.08);
  border-radius: var(--radius);
}

.analysis-card {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--navy-950);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(159, 90, 42, 0.16), rgba(255, 255, 255, 0.2)),
    #f3f7fc;
  border: 1px solid rgba(159, 90, 42, 0.22);
  border-radius: var(--radius);
  font-size: 1.2rem;
  font-weight: 850;
}

.pkv-assessment {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 20px;
  padding: clamp(20px, 3vw, 28px);
  color: var(--navy-950);
  background:
    radial-gradient(circle at 12% 4%, rgba(196, 122, 63, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(240, 246, 253, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 24px 66px rgba(7, 24, 47, 0.12);
  backdrop-filter: blur(22px) saturate(145%);
  transition:
    border-color 320ms ease,
    box-shadow 320ms ease,
    background 320ms ease;
}

.pkv-assessment::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.48), transparent 32% 72%, rgba(255, 255, 255, 0.12));
  opacity: 0.45;
}

.pkv-assessment > * {
  position: relative;
  z-index: 1;
}

.pkv-assessment.is-low {
  border-color: rgba(255, 107, 107, 0.26);
}

.pkv-assessment.is-medium {
  border-color: rgba(196, 122, 63, 0.34);
}

.pkv-assessment.is-high {
  border-color: rgba(50, 213, 131, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 24px 68px rgba(50, 213, 131, 0.1);
}

.pkv-score-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}

.pkv-score-gauge {
  width: 128px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    conic-gradient(
      var(--orange) calc(var(--pkv-score) * 1%),
      rgba(7, 24, 47, 0.08) 0
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 18px 46px rgba(7, 24, 47, 0.14);
  transition: background 360ms ease;
}

.pkv-assessment.is-low .pkv-score-gauge {
  background: conic-gradient(var(--red) calc(var(--pkv-score) * 1%), rgba(7, 24, 47, 0.08) 0);
}

.pkv-assessment.is-zero .pkv-score-gauge {
  background: linear-gradient(145deg, #ffb1ad, var(--red));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 18px 42px rgba(220, 78, 88, 0.24);
}

.pkv-assessment.is-zero .pkv-score-gauge > div {
  background:
    radial-gradient(circle at 30% 12%, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(145deg, #fff5f4, #ffdedd);
}

.pkv-assessment.is-zero .pkv-score-gauge strong,
.pkv-assessment.is-zero .pkv-score-gauge span {
  color: var(--red);
}

.pkv-assessment.is-high .pkv-score-gauge {
  background: conic-gradient(var(--green) calc(var(--pkv-score) * 1%), rgba(7, 24, 47, 0.08) 0);
}

.pkv-score-gauge > div {
  width: 76%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 12%, rgba(255, 255, 255, 0.94), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 253, 0.84));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.pkv-score-gauge strong {
  color: var(--navy-950);
  font-size: 2rem;
  line-height: 1;
}

.pkv-score-gauge span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.pkv-score-summary span,
.pkv-next-step span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pkv-score-summary strong {
  color: var(--navy-950);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.pkv-score-summary small {
  display: block;
  min-height: 1.2em;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}

.pkv-progress {
  height: 10px;
  overflow: hidden;
  background: rgba(7, 24, 47, 0.08);
  border-radius: 999px;
}

.pkv-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  border-radius: inherit;
  box-shadow: 0 0 24px rgba(159, 90, 42, 0.28);
  transition: width 360ms cubic-bezier(0.2, 0.8, 0.2, 1), background 320ms ease;
}

.pkv-assessment.is-low .pkv-progress span {
  background: linear-gradient(90deg, #ff9b9b, var(--red));
}

.pkv-assessment.is-high .pkv-progress span {
  background: linear-gradient(90deg, #7be8ae, var(--green));
}

.pkv-assessment-copy h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
}

.pkv-assessment-copy p {
  margin: 0;
  color: var(--muted);
}

.pkv-saving-highlight {
  margin-top: 14px;
  padding: 13px 15px;
  color: var(--navy-950);
  background:
    radial-gradient(circle at 12% 20%, rgba(211, 154, 94, 0.18), transparent 32%),
    rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(211, 154, 94, 0.22);
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.45;
}

.pkv-next-step {
  padding: 15px 17px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pkv-next-step strong {
  color: var(--navy-950);
}

@media (max-width: 480px) {
  .pkv-score-row {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .pkv-score-gauge {
    width: 118px;
  }

  .pkv-assessment-copy,
  .pkv-next-step {
    text-align: center;
  }
}

.legal-note {
  color: #667487;
  font-size: 0.88rem;
  margin-bottom: 0;
}

.legal-note.center {
  text-align: center;
  margin-top: 22px;
}

.seo-tool-copy {
  margin-top: 22px;
}

details {
  border-top: 1px solid rgba(7, 24, 47, 0.08);
}

details summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  color: var(--navy-950);
  font-weight: 850;
}

details summary::-webkit-details-marker {
  display: none;
}

details p {
  padding-bottom: 18px;
  margin-bottom: 0;
}

.xray-tool {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 24px;
}

.xray-questions {
  display: grid;
  gap: 12px;
}

.xray-questions label,
.option-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 14px;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid rgba(7, 24, 47, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(7, 24, 47, 0.05);
  font-weight: 720;
}

.xray-questions input,
.option-grid input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--orange);
}

.xray-result {
  position: sticky;
  top: 100px;
  align-self: start;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(7, 24, 47, 0.08);
  box-shadow: 0 18px 44px rgba(7, 24, 47, 0.08);
}

.traffic-light {
  display: inline-block;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(7, 24, 47, 0.06);
}

.traffic-light.red {
  background: var(--red);
}

.traffic-light.yellow {
  background: var(--yellow);
}

.traffic-light.green {
  background: var(--green);
}

.xray-question {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 16px 18px;
  color: var(--navy-950);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(246, 250, 255, 0.66));
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 14px 36px rgba(7, 24, 47, 0.07);
  backdrop-filter: blur(20px) saturate(140%);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.xray-question:focus-within {
  border-color: rgba(159, 90, 42, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 18px 44px rgba(7, 24, 47, 0.1),
    0 0 0 4px rgba(159, 90, 42, 0.1);
}

.xray-question legend {
  display: contents;
  font-weight: 780;
}

.xray-choice-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(78px, 1fr));
  gap: 8px;
}

.xray-choice-group label {
  position: relative;
  min-height: 50px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-weight: inherit;
  cursor: pointer;
}

.xray-choice-group input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
}

.xray-choice-group span {
  width: 100%;
  min-height: 50px;
  display: grid;
  place-items: center;
  padding: 10px 18px;
  color: var(--navy-950);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(238, 244, 252, 0.64));
  border: 1px solid rgba(7, 24, 47, 0.08);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.xray-choice-group input[value="yes"]:checked + span {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border-color: rgba(159, 90, 42, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    0 10px 24px rgba(159, 90, 42, 0.22);
  transform: translateY(-1px) scale(1.015);
}

.xray-choice-group input[value="no"]:checked + span {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-950), var(--navy-700));
  border-color: rgba(7, 24, 47, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 24px rgba(7, 24, 47, 0.2);
  transform: translateY(-1px) scale(1.015);
}

.xray-choice-group input:focus-visible + span {
  outline: 3px solid rgba(159, 90, 42, 0.28);
  outline-offset: 3px;
}

.xray-result {
  transition:
    border-color 360ms ease,
    box-shadow 360ms ease,
    background 360ms ease;
}

.xray-result.is-red {
  border-color: rgba(255, 107, 107, 0.26);
}

.xray-result.is-yellow {
  border-color: rgba(196, 122, 63, 0.34);
}

.xray-result.is-green {
  border-color: rgba(50, 213, 131, 0.3);
}

.traffic-light {
  transition:
    background-color 360ms ease,
    box-shadow 360ms ease,
    transform 360ms ease;
}

.traffic-light.red {
  box-shadow:
    0 0 0 10px rgba(255, 107, 107, 0.1),
    0 14px 32px rgba(255, 107, 107, 0.2);
}

.traffic-light.yellow {
  box-shadow:
    0 0 0 10px rgba(196, 122, 63, 0.12),
    0 14px 32px rgba(196, 122, 63, 0.22);
}

.traffic-light.green {
  box-shadow:
    0 0 0 10px rgba(50, 213, 131, 0.1),
    0 14px 32px rgba(50, 213, 131, 0.2);
}

.xray-result.is-yellow .traffic-light,
.xray-result.is-green .traffic-light {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .xray-question {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .xray-choice-group {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xray-choice-group label,
  .xray-choice-group span {
    min-height: 54px;
  }
}

@media (max-width: 480px) {
  .xray-question {
    padding: 14px;
    border-radius: 16px;
  }

  .xray-question legend {
    font-size: 0.94rem;
    line-height: 1.4;
  }

  .xray-choice-group span {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
}

.video-card {
  display: grid;
  gap: 12px;
}

.testimonials-section .card-grid.three {
  grid-template-columns: 1fr;
  max-width: 460px;
  margin-inline: auto;
}

.testimonials-section .video-card {
  grid-template-columns: 1fr;
  gap: 10px;
  padding: clamp(14px, 2.5vw, 18px);
}

.testimonials-section .video-card h3 {
  margin-top: 4px;
  margin-bottom: 0;
  line-height: 1.18;
}

.testimonials-section .video-card p {
  margin: 0;
  line-height: 1.48;
}

.testimonials-section .video-card p strong {
  font-weight: 760;
}

.video-thumb {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 9 / 16;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(159, 90, 42, 0.4), rgba(7, 24, 47, 0.88)),
    var(--navy-900);
  border: 0;
  border-radius: var(--radius);
  font-weight: 850;
}

.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
  transform: scale(1.02);
  transition: transform 260ms ease, filter 260ms ease;
}

.video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(159, 90, 42, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(4, 11, 24, 0.16), rgba(4, 11, 24, 0.7));
  z-index: 1;
}

.video-thumb span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70%;
  min-height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.video-thumb:hover img {
  transform: scale(1.07);
  filter: saturate(1.04) contrast(1.06);
}

.testimonials-section .video-thumb {
  width: min(100%, 330px);
  margin-inline: auto;
}

.testimonial-swipe-hint {
  display: none;
}

@media (min-width: 769px) {
  .testimonials-section .card-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    max-width: 1120px;
  }

  .testimonials-section .video-card {
    grid-template-rows: auto minmax(2.4em, auto) minmax(2.9em, auto) 1fr;
    height: 100%;
  }

  .testimonials-section .video-card h3,
  .testimonials-section .video-card p {
    align-self: start;
  }
}

@media (max-width: 768px) {
  .testimonial-swipe-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 2px 0 14px;
    color: rgba(12, 31, 58, 0.62);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .testimonial-swipe-hint span {
    color: rgb(159, 90, 42);
    font-size: 1.15em;
    line-height: 1;
    animation: testimonial-swipe-nudge 1.8s ease-in-out infinite;
  }

  .testimonials-section .card-grid.three {
    display: flex;
    gap: 12px;
    width: auto;
    max-width: none;
    margin-inline: calc(var(--gutter) * -1);
    padding: 4px calc(var(--gutter) + 48px) 18px var(--gutter);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-left: var(--gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .testimonials-section .card-grid.three::-webkit-scrollbar {
    display: none;
  }

  .testimonials-section .video-card {
    flex: 0 0 min(76vw, 296px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .testimonials-section .video-thumb {
    width: 100%;
  }
}

@keyframes testimonial-swipe-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-swipe-hint span {
    animation: none;
  }
}

.founder-section {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.founder-section h2,
.founder-section .founder-copy h3 {
  color: var(--white);
}

.founder-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.founder-media {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  background:
    linear-gradient(135deg, rgba(159, 90, 42, 0.24), rgba(255, 255, 255, 0.08)),
    var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.founder-media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.founder-media img[src$=".jpg"] {
  position: relative;
  z-index: 1;
}

.image-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
  text-align: center;
  padding: 24px;
}

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

.trust-points span {
  padding: 10px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

@media (min-width: 769px) {
  .founder-copy .trust-points {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .founder-copy .trust-points span {
    white-space: nowrap;
    padding: 9px 11px;
    font-size: 0.92rem;
  }

  .founder-copy .cta-conversion-group {
    align-items: flex-start;
    margin-inline: 0;
  }

  .founder-copy .cta-conversion-group > .btn {
    align-self: flex-start;
  }

  .founder-copy .cta-trust-signals {
    justify-content: flex-start;
    margin-inline: 0;
  }
}

.founder-note {
  margin-top: 20px;
  padding-left: 16px;
  border-left: 2px solid rgba(159, 90, 42, 0.72);
  font-style: italic;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  z-index: 1;
}

.funnel-section {
  background:
    radial-gradient(circle at 85% 12%, rgba(159, 90, 42, 0.16), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.funnel-cta-section {
  text-align: center;
}

.funnel-cta-section .section-heading {
  max-width: 780px;
  margin: 0 auto;
}

.funnel-cta-section .btn {
  margin-top: 22px;
}

.funnel-section h2,
.funnel-section h3 {
  color: var(--white);
}

.funnel-section p:not(.eyebrow),
.funnel-section .legal-note {
  color: rgba(255, 255, 255, 0.74);
}

.funnel {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.funnel-progress {
  height: 8px;
  margin-bottom: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.funnel-progress span {
  display: block;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  border-radius: inherit;
  transition: width 220ms ease;
}

.funnel-step {
  display: none;
}

.funnel-step.active {
  display: block;
}

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

.option-grid label {
  background: rgba(255, 255, 255, 0.94);
}

/* Home funnel controls: custom shapes prevent browser-specific input artifacts. */
.funnel:not(.contact-funnel-card) .option-grid input[type="radio"],
.funnel:not(.contact-funnel-card) .option-grid input[type="checkbox"],
.home-funnel-privacy input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0;
  border: 2px solid rgba(7, 24, 47, 0.42);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.funnel:not(.contact-funnel-card) .option-grid input[type="radio"] {
  border-radius: 50%;
}

.funnel:not(.contact-funnel-card) .option-grid input[type="checkbox"],
.home-funnel-privacy input[type="checkbox"] {
  border-radius: 5px;
}

.funnel:not(.contact-funnel-card) .option-grid input[type="radio"]:checked {
  border-color: var(--orange-2);
  background: radial-gradient(circle, var(--orange-2) 0 42%, rgba(255, 255, 255, 0.98) 46% 100%);
  box-shadow: 0 0 0 3px rgba(196, 122, 63, 0.16);
}

.funnel:not(.contact-funnel-card) .option-grid input[type="checkbox"]:checked,
.home-funnel-privacy input[type="checkbox"]:checked {
  border-color: var(--orange-2);
  background: var(--orange-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m3 8 3 3 7-7' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.2'/%3E%3C/svg%3E") center / 13px 13px no-repeat;
  box-shadow: 0 0 0 3px rgba(196, 122, 63, 0.16);
}

.funnel:not(.contact-funnel-card) .option-grid label:has(input:checked) {
  border-color: rgba(196, 122, 63, 0.72);
  box-shadow: 0 14px 30px rgba(159, 90, 42, 0.14);
}

.funnel:not(.contact-funnel-card) .option-grid input:focus-visible,
.home-funnel-privacy input:focus-visible {
  outline: 3px solid rgba(196, 122, 63, 0.32);
  outline-offset: 3px;
}

.field-grid label {
  color: var(--white);
}

.home-funnel-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.45;
}

.home-funnel-privacy input {
  flex: 0 0 auto;
  margin: 2px 0 0;
}

.home-funnel-privacy a {
  color: var(--white);
  text-decoration-color: var(--orange-2);
  text-underline-offset: 3px;
}

.funnel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.funnel-actions .funnel-cta-trust {
  flex-basis: 100%;
  margin-bottom: 2px;
}

.funnel-actions:has([data-funnel-submit].hidden) .funnel-cta-trust {
  display: none;
}

.contact-main {
  background:
    radial-gradient(circle at 78% 22%, rgba(159, 90, 42, 0.2), transparent 26%),
    radial-gradient(circle at 14% 78%, rgba(55, 103, 171, 0.2), transparent 32%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.contact-funnel-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  padding-top: 150px;
}

.contact-funnel-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.contact-funnel-copy h1 {
  color: var(--white);
  max-width: 720px;
  margin-bottom: 1.4rem;
}

.contact-funnel-copy p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.7;
}

.contact-proof-block {
  width: min(100%, 650px);
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-top: clamp(20px, 3vw, 30px);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
}

.contact-funnel-people {
  width: 128px;
  height: 132px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(5, 17, 34, 0.5);
  pointer-events: none;
}

.contact-funnel-people img {
  display: block;
  width: 126px;
  max-width: 100%;
  height: auto;
}

.contact-proof-block .cta-trust-signals {
  width: 100%;
  margin-top: 0;
  margin-inline: 0;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.contact-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-trust-list span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 750;
}

.funnel-trust-signals {
  justify-content: flex-start;
  margin: 22px 0 0;
}

.funnel-section .section-heading .funnel-trust-signals {
  margin-left: 0 !important;
  margin-right: auto !important;
  justify-content: flex-start !important;
}

.contact-google-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 7px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.01em;
}

.contact-google-heading > span:last-child {
  color: transparent;
  background: linear-gradient(100deg, #e2b26c 0%, #fff2c8 43%, #bf7138 64%, #f2cb8b 100%);
  background-clip: text;
  background-size: 190% 100%;
  animation: contactGoogleHeadingShine 7s ease-in-out infinite;
  font-size: 0.9em;
}

.contact-google-marquee {
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 7px 0 10px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.contact-google-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 26px;
  animation: contactGoogleMarquee 68s linear infinite;
  will-change: transform;
}

.contact-google-marquee-track > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 600;
}

.contact-google-marquee-track > span:not(.contact-google-marquee-label)::before {
  content: "★★★★★";
  color: #e8b45b;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.contact-google-marquee-track > span:not(.contact-google-marquee-label) {
  color: rgba(255, 255, 255, 0.7);
}

.contact-google-marquee-track > span:not(.contact-google-marquee-label) strong {
  color: var(--white);
}

.contact-google-word {
  display: inline-flex;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.07em;
}

@keyframes contactGoogleHeadingShine {
  0%, 100% { background-position: 100% 50%; }
  50% { background-position: 0 50%; }
}

.contact-google-word i {
  font-style: normal;
}

.contact-google-word i:nth-child(1),
.contact-google-word i:nth-child(4) {
  color: #4285f4;
}

.contact-google-word i:nth-child(2),
.contact-google-word i:nth-child(6) {
  color: #ea4335;
}

.contact-google-word i:nth-child(3) {
  color: #fbbc05;
}

.contact-google-word i:nth-child(5) {
  color: #34a853;
}

.contact-google-marquee:hover .contact-google-marquee-track,
.contact-google-marquee:focus-visible .contact-google-marquee-track {
  animation-play-state: paused;
}

.contact-google-marquee:focus-visible {
  outline: 2px solid rgba(211, 154, 94, 0.9);
  outline-offset: 6px;
  border-radius: 8px;
}

@keyframes contactGoogleMarquee {
  to { transform: translateX(-50%); }
}

.contact-funnel-card {
  position: relative;
  padding: clamp(24px, 3vw, 42px);
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(12, 40, 78, 0.62);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.contact-funnel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.18), transparent 32%),
    radial-gradient(circle at 100% 90%, rgba(159, 90, 42, 0.22), transparent 30%);
}

.contact-funnel-card > * {
  position: relative;
  z-index: 1;
}

.contact-funnel-card h3 {
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  margin-bottom: 18px;
}

.funnel-stage-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.funnel-stage-nav li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.funnel-stage-nav li:not(:last-child)::after {
  display: none;
}

.funnel-stage-nav span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.funnel-stage-nav li.active {
  color: var(--white);
  border-color: rgba(196, 122, 63, 0.48);
  background: rgba(159, 90, 42, 0.22);
  box-shadow: 0 14px 34px rgba(159, 90, 42, 0.16);
}

.funnel-stage-nav li.done {
  color: rgba(255, 255, 255, 0.78);
}

.funnel-stage-nav li.done span {
  background: rgba(159, 90, 42, 0.76);
  color: var(--white);
}

.funnel-step-count {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-funnel-card .option-grid label,
.contact-funnel-card .field-grid label,
.privacy-check {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62), 0 12px 30px rgba(0, 0, 0, 0.12);
}

.contact-funnel-card .option-grid label:has(input:checked) {
  border-color: rgba(159, 90, 42, 0.72);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(159, 90, 42, 0.2);
}

.contact-funnel-card .option-grid label {
  min-height: 70px;
  align-items: center;
  padding: 18px 20px;
  font-size: 1.03rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-funnel-card .option-grid label:hover {
  transform: translateY(-2px);
}

.funnel-contact-intro {
  margin: -6px 0 18px;
  color: rgba(255, 255, 255, 0.74);
}

.funnel-summary-box {
  display: grid;
  gap: 14px;
  margin: 0 0 18px;
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.funnel-summary-box strong {
  font-size: 1rem;
}

.funnel-summary-box dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.funnel-summary-box div {
  min-width: 0;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.funnel-summary-box dt {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.funnel-summary-box dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  line-height: 1.35;
}

.contact-field-grid .full-field {
  grid-column: 1 / -1;
}

.contact-funnel-card textarea {
  width: 100%;
  margin-top: 8px;
  resize: vertical;
  border: 1px solid rgba(7, 24, 47, 0.12);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy-950);
  font: inherit;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--navy-950);
  font-weight: 650;
  line-height: 1.45;
}

.privacy-check a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hidden {
  display: none !important;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(7, 24, 47, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(7, 24, 47, 0.08);
  padding: 0 24px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-list summary h3 {
  margin-bottom: 0;
}

.faq-list summary::after {
  content: "+";
  color: var(--orange);
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.final-cta {
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(159, 90, 42, 0.2), transparent 34%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.final-cta h2 {
  color: var(--white);
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

.final-cta h2.title-final {
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  line-height: 1.16;
  margin-bottom: 2.2rem;
  overflow: visible;
  padding-bottom: 0.12em;
  text-wrap: balance;
}

.final-cta h2.title-final .title-word {
  line-height: 1.16;
}

.final-cta p {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-950);
  padding: 48px 0 30px;
}

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

.footer-grid p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.66);
  margin-top: 14px;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
}

.footer-grid nav a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.footer-contact {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.footer-grid nav a:hover,
.footer-grid nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--white);
}

.footer-note {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-note p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.footer-note .footer-credit {
  margin-top: 14px;
  text-align: right;
}

.footer-credit a {
  position: relative;
  display: inline-block;
  color: #d49a5c;
  font-weight: 850;
  text-decoration: none;
  background: linear-gradient(100deg, #9f5a2a 0%, #e8b06f 42%, #fff0bf 50%, #b87333 62%, #f0c27a 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: novauxGlow 3.2s ease-in-out infinite;
}

.footer-credit a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: linear-gradient(90deg, rgba(159, 90, 42, 0.45), rgba(255, 224, 168, 0.9), rgba(184, 115, 51, 0.5));
}

@keyframes novauxGlow {
  0%,
  100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 0 rgba(232, 176, 111, 0));
  }

  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 8px rgba(232, 176, 111, 0.45));
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 24px;
}

.modal[aria-hidden="false"] {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 18, 0.72);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  padding: 22px;
  color: var(--white);
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.modal-panel video {
  width: 100%;
  max-height: 78vh;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: var(--navy-950);
  border-radius: var(--radius);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-size: 1.45rem;
}

.modal-panel.success {
  max-width: 520px;
  text-align: center;
}

.modal-panel.success h2 {
  color: var(--white);
}

.modal-panel.success p {
  color: rgba(255, 255, 255, 0.76);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 580ms ease, transform 580ms ease;
}

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

@keyframes floatDashboard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 14px rgba(50, 213, 131, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(50, 213, 131, 0);
  }
}

@keyframes barPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scaleY(0.92);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes rotateGlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes reviewMarquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes compassDiscBreath {
  0%,
  100% {
    filter: saturate(0.95) brightness(1);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 36px 96px rgba(7, 24, 47, 0.14);
  }

  50% {
    filter: saturate(1.08) brightness(1.025);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.96),
      0 44px 124px rgba(7, 24, 47, 0.19);
  }
}

@keyframes compassCardFloat {
  0%,
  100% {
    translate: var(--card-x, 0px) calc(var(--card-y, 0px) - 3px);
  }

  50% {
    translate: var(--card-x, 0px) calc(var(--card-y, 0px) + 4px);
  }
}

@media (max-width: 1200px) {
  .container {
    width: min(100% - 32px, 1040px);
  }

  .card-grid.four,
  .card-grid.five,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    max-width: 820px;
  }

}

@media (max-width: 992px) {
  :root {
    --header-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(6, 18, 37, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 13px 10px;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .split,
  .founder-grid,
  .funnel-grid,
  .calculator-grid,
  .xray-tool {
    grid-template-columns: 1fr;
  }

  .contact-funnel-hero {
    padding-top: 118px;
    min-height: auto;
  }

  .contact-funnel-card {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

  .hero {
    min-height: auto;
    padding: 76px 0 160px;
  }

  .hero-visual {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .compass {
    min-height: 520px;
    display: grid;
    grid-template-columns: none;
    gap: 0;
  }

  .compass::before {
    display: block;
    width: min(76vw, 430px);
  }

  .compass-center,
  .compass-card {
    position: absolute;
  }

  .compass-center {
    width: 190px;
    min-height: 190px;
    padding: 20px;
    border-radius: 50%;
    font-size: 0.96rem;
  }

  .compass-card {
    width: min(210px, 38vw);
    min-height: auto;
    padding: 18px 16px;
  }

  .compass-card.top {
    top: 0;
  }

  .compass-card.right {
    right: 0;
  }

  .compass-card.bottom {
    bottom: 0;
  }

  .compass-card.left {
    left: 0;
  }

  .xray-result {
    position: static;
  }

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

.title-break-mobile {
  display: none;
}

@media (max-width: 768px) {
  .title-break-mobile {
    display: block;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 78px 0;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .hero {
    padding: 64px 0 132px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 9vw, 3rem);
    line-height: 1.08;
    margin-bottom: 1rem;
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.8rem);
  }

  .hero-subheadline {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 1rem;
  }

  .hero-video-placeholder {
    min-height: 230px;
    aspect-ratio: 16 / 10;
  }

  .hero-proof-stats {
    gap: 10px;
    margin: 1rem auto 1rem;
  }

  .hero-proof-stats article {
    min-height: auto;
    grid-template-columns: minmax(190px, max-content) 1fr;
    align-items: center;
    gap: 24px;
    padding: 15px 16px;
    text-align: left;
  }

  .hero-proof-stats .stat-prefix {
    font-size: 0.92rem;
  }

  .hero-proof-stats .stat-number {
    font-size: 2.35rem;
  }

  .hero-proof-stats article > span {
    font-size: 0.86rem;
  }

  .leak-section {
    margin-top: -72px;
    padding-top: 112px;
  }

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

  .btn {
    width: 100%;
  }

  .card-grid.four,
  .card-grid.three,
  .card-grid.two,
  .card-grid.five,
  .timeline,
  .comparison-grid,
  .process-grid,
  .option-grid,
  .field-grid,
  .result-grid,
  .hero-proof-stats,
  .xray-panel {
    grid-template-columns: 1fr;
  }

  .contact-funnel-copy,
  .contact-funnel-copy p:not(.eyebrow) {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-trust-list {
    justify-content: center;
  }

  .privacy-check {
    font-size: 0.92rem;
  }

  .funnel-summary-box dl {
    grid-template-columns: 1fr;
  }

  .funnel-stage-nav {
    gap: 8px;
    margin-bottom: 34px;
  }

  .funnel-stage-nav li {
    font-size: 0.82rem;
  }

  .funnel-stage-nav li:not(:last-child)::after {
    display: none;
  }

  .funnel-stage-nav span {
    width: 42px;
    height: 42px;
  }

  .timeline::before {
    display: none;
  }

  .timeline {
    max-width: 100%;
    padding-bottom: 0;
  }

  .timeline-item {
    position: sticky;
    top: 84px;
    min-height: 360px;
    margin-bottom: 18vh;
    padding: 22px;
    transform: translateY(calc((var(--stack-index) - 1) * 8px));
  }

  .timeline-item:last-child {
    margin-bottom: 8vh;
    transform: translateY(calc((var(--stack-index) - 1) * 8px));
  }

  .timeline-item:hover {
    transform: translateY(calc((var(--stack-index) - 1) * 8px));
  }

  .timeline-item:last-child:hover {
    transform: translateY(calc((var(--stack-index) - 1) * 8px));
  }

  .timeline-top {
    margin-bottom: 18px;
  }

  .timeline-item h3 {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .timeline-item p {
    font-size: 1rem;
  }

  .dashboard-cards {
    grid-template-columns: 1fr;
  }

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

  .footer-grid nav {
    justify-content: flex-start;
  }

  .faq-list {
    padding: 0 16px;
  }
}

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

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 54px 0 118px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9.2vw, 2.55rem);
  }

  .hero-video-placeholder {
    min-height: 205px;
  }

  .play-button {
    width: 58px;
    height: 58px;
  }

  .play-button::before {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 16px;
  }

  .hero-proof-stats article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-proof-stats .stat-number {
    font-size: 2.05rem;
  }

  .hero-proof-stats article > span {
    font-size: 0.82rem;
  }

  .timeline {
    padding-bottom: 0;
  }

  .timeline-item {
    top: 76px;
    min-height: 330px;
    margin-bottom: 16vh;
    padding: 20px;
    transform: translateY(calc((var(--stack-index) - 1) * 6px));
  }

  .timeline-item:last-child {
    margin-bottom: 7vh;
    transform: translateY(calc((var(--stack-index) - 1) * 6px));
  }

  .timeline-item:hover {
    transform: translateY(calc((var(--stack-index) - 1) * 6px));
  }

  .timeline-item:last-child:hover {
    transform: translateY(calc((var(--stack-index) - 1) * 6px));
  }

  .timeline-top {
    align-items: center;
    gap: 10px;
  }

  .timeline-tag {
    font-size: 0.78rem;
    text-align: left;
  }

  .trust-badges,
  .hero-proof-stats,
  .trust-points {
    display: grid;
  }

  .hero .trust-badges {
    width: 100%;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 8px;
  }

  .hero .trust-badges span {
    min-height: 64px;
    justify-content: center;
    padding: 10px 8px;
    text-align: center;
    font-size: clamp(0.66rem, 2.7vw, 0.78rem);
    line-height: 1.16;
    border-radius: 16px;
  }

  .hero .trust-badges strong {
    display: block;
    margin: 0;
    font-size: 1rem;
    line-height: 1;
  }

  .hero .google-review-widget {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 8px;
  }

  .hero .google-review-button {
    width: 100%;
    height: 100%;
    min-height: 72px;
    justify-content: center;
    padding: 10px 8px;
    text-align: center;
    border-radius: 16px;
  }

  .hero .google-review-button {
    font-size: clamp(0.76rem, 3vw, 0.9rem);
    line-height: 1.12;
  }

  .hero .cta-conversion-group {
    width: min(100%, 340px);
  }

  .hero .cta-trust-signals .google-review-button {
    width: auto;
    height: auto;
    min-height: 54px;
    justify-content: flex-start;
    padding: 7px 10px;
    text-align: left;
  }

  .dashboard-shell,
  .calculator-panel,
  .calculator-output,
  .seo-tool-copy,
  .funnel,
  .comparison-card {
    padding: 18px;
  }

  .compass {
    min-height: 390px;
  }

  .compass::before {
    width: 260px;
    opacity: 0.72;
  }

  .compass-center {
    width: 126px;
    min-height: 126px;
    padding: 14px;
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .compass-card {
    width: 124px;
    padding: 12px 9px;
  }

  .compass-card h3 {
    font-size: 0.88rem;
  }

  .desktop-label {
    display: none;
  }

  .mobile-label {
    display: inline;
  }

  .compass-card.top {
    top: 86px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .compass-card.right {
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
  }

  .compass-card.bottom {
    bottom: 86px;
    left: 50%;
    transform: translateX(-50%);
  }

  .compass-card.left {
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
  }
}

/* Visual polish only: premium fintech / liquid-glass surface treatment */
:root {
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-bg-strong: rgba(255, 255, 255, 0.86);
  --glass-line: rgba(255, 255, 255, 0.46);
  --glass-line-dark: rgba(7, 24, 47, 0.08);
  --premium-shadow: 0 24px 70px rgba(7, 24, 47, 0.11);
  --premium-shadow-hover: 0 32px 90px rgba(7, 24, 47, 0.17);
  --gold-glow: 0 18px 46px rgba(159, 90, 42, 0.24);
}

body {
  background:
    radial-gradient(circle at 12% 4%, rgba(196, 122, 63, 0.16), transparent 28rem),
    radial-gradient(circle at 86% 9%, rgba(91, 151, 255, 0.12), transparent 32rem),
    linear-gradient(180deg, #f8fbff 0%, #edf4fb 44%, #fbfdff 100%);
}

.site-header {
  background:
    linear-gradient(135deg, rgba(6, 18, 37, 0.84), rgba(9, 30, 58, 0.72)),
    rgba(6, 18, 37, 0.74);
  border-bottom-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 60px rgba(2, 9, 20, 0.18);
  backdrop-filter: blur(24px) saturate(150%);
}

.site-header.scrolled {
  background:
    linear-gradient(135deg, rgba(6, 18, 37, 0.94), rgba(9, 30, 58, 0.84)),
    rgba(6, 18, 37, 0.9);
  box-shadow: 0 22px 70px rgba(2, 9, 20, 0.26);
}

.logo-mark,
.card-icon,
.timeline-number,
.process-step span {
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(226, 166, 111, 0.98), rgba(159, 90, 42, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    var(--gold-glow);
}

.btn {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(7, 24, 47, 0.1);
}

.btn::after {
  content: "";
  position: absolute;
  inset: -55% -30%;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.5) 48%, transparent 66%);
  transform: translateX(-125%) rotate(8deg);
  transition: transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.btn:hover::after,
.btn:focus::after {
  transform: translateX(125%) rotate(8deg);
}

.btn-primary {
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(226, 166, 111, 0.98), rgba(159, 90, 42, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 18px 44px rgba(159, 90, 42, 0.28);
}

.btn-secondary,
.btn-card {
  border-color: rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px) saturate(140%);
}

.btn-card {
  color: var(--navy-950);
  border-color: rgba(7, 24, 47, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  background:
    radial-gradient(circle at 18% 16%, rgba(196, 122, 63, 0.24), transparent 29rem),
    radial-gradient(circle at 82% 8%, rgba(91, 151, 255, 0.2), transparent 32rem),
    radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.08), transparent 38rem),
    linear-gradient(135deg, #040b18 0%, var(--navy-950) 48%, #0f315b 100%);
}

.hero::after {
  height: 310px;
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0) 0%, rgba(247, 251, 255, 0.3) 38%, var(--soft-white) 88%);
}

.hero h1 {
  text-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.hero-subheadline {
  color: rgba(255, 255, 255, 0.82);
}

.hero-video-card {
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
    rgba(8, 24, 47, 0.62);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 34px 100px rgba(2, 8, 18, 0.34);
  backdrop-filter: blur(28px) saturate(150%);
}

.hero-video-placeholder {
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 18%, rgba(196, 122, 63, 0.24), transparent 24%),
    radial-gradient(circle at 78% 62%, rgba(91, 151, 255, 0.15), transparent 30%),
    linear-gradient(145deg, rgba(11, 35, 68, 0.92), rgba(4, 11, 24, 0.98));
}

.hero-video-placeholder::after {
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(4, 11, 24, 0.2), rgba(4, 11, 24, 0.62)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 68%);
}

.play-button {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    0 20px 48px rgba(159, 90, 42, 0.36),
    0 0 0 12px rgba(159, 90, 42, 0.08);
}

.hero-proof-stats article,
.trust-badges span,
.mini-card,
.dashboard-shell,
.glass-card,
.tool-card,
.video-card,
.comparison-card,
.calculator-panel,
.calculator-output,
.seo-tool-copy,
.xray-result,
.funnel,
.faq-list,
.modal-panel,
.solid-card,
.process-step {
  border-radius: 20px;
}

.hero-proof-stats article,
.trust-badges span {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(8, 24, 47, 0.52);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 50px rgba(2, 8, 18, 0.22);
  backdrop-filter: blur(22px) saturate(145%);
}

.leak-section,
.timeline-section,
.comparison-section,
.calculator-section,
.calculator-section.alt,
.process-section {
  background:
    radial-gradient(circle at 18% 8%, rgba(196, 122, 63, 0.1), transparent 24rem),
    radial-gradient(circle at 88% 28%, rgba(91, 151, 255, 0.1), transparent 28rem),
    linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(240, 246, 253, 0.9) 58%, rgba(250, 252, 255, 0.98));
}

.glass-card,
.tool-card,
.video-card,
.comparison-card,
.calculator-panel,
.calculator-output,
.seo-tool-copy,
.xray-result,
.faq-list,
.solid-card,
.process-step {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.58));
  border-color: rgba(255, 255, 255, 0.68);
  box-shadow: var(--premium-shadow);
  backdrop-filter: blur(22px) saturate(145%);
}

.glass-card,
.tool-card,
.video-card,
.comparison-card,
.solid-card,
.process-step,
.hero-proof-stats article,
.calculator-panel,
.calculator-output,
.seo-tool-copy,
.xray-result {
  position: relative;
  overflow: hidden;
}

.glass-card::after,
.tool-card::after,
.video-card::after,
.comparison-card::after,
.solid-card::after,
.process-step::after,
.hero-proof-stats article::after,
.calculator-panel::after,
.calculator-output::after,
.seo-tool-copy::after,
.xray-result::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.45), transparent 30%, transparent 70%, rgba(255, 255, 255, 0.14));
  opacity: 0.34;
}

.glass-card:hover,
.tool-card:hover,
.video-card:hover,
.solid-card:hover,
.process-step:hover,
.comparison-card:hover {
  border-color: rgba(196, 122, 63, 0.38);
  box-shadow: var(--premium-shadow-hover);
}

.timeline-item {
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.66));
  border-color: rgba(255, 255, 255, 0.68);
  box-shadow: 0 26px 78px rgba(7, 24, 47, 0.12);
  backdrop-filter: blur(22px) saturate(145%);
}

.timeline-item::before {
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.86), transparent 24%),
    radial-gradient(circle at 86% 22%, rgba(196, 122, 63, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(159, 90, 42, 0.08), transparent 38%);
}

.timeline-item.highlight {
  background:
    radial-gradient(circle at 82% 12%, rgba(196, 122, 63, 0.2), transparent 30%),
    linear-gradient(135deg, #040b18, var(--navy-700));
  box-shadow:
    0 30px 88px rgba(7, 24, 47, 0.24),
    0 0 0 1px rgba(196, 122, 63, 0.14);
}

.xray-panel {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 18% 12%, rgba(196, 122, 63, 0.18), transparent 32%),
    radial-gradient(circle at 82% 86%, rgba(91, 151, 255, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(7, 24, 47, 0.98), rgba(14, 48, 88, 0.92));
  box-shadow: 0 28px 86px rgba(7, 24, 47, 0.24);
}

.status-pill {
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(18px);
}

.compass::before {
  border-color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.52) 46%, rgba(196, 122, 63, 0.12) 72%, transparent 73%),
    conic-gradient(from 220deg, rgba(196, 122, 63, 0.18), rgba(91, 151, 255, 0.1), rgba(255, 255, 255, 0.68), rgba(196, 122, 63, 0.18));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 40px 110px rgba(7, 24, 47, 0.16);
}

.compass-center {
  background:
    radial-gradient(circle at 32% 16%, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(135deg, var(--navy-950), var(--navy-700));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 30px 84px rgba(7, 24, 47, 0.25),
    0 0 0 12px rgba(255, 255, 255, 0.36);
}

.compass-card {
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68));
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 18px 48px rgba(7, 24, 47, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

input,
select {
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(245, 249, 255, 0.74));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

input:focus,
select:focus {
  border-color: rgba(159, 90, 42, 0.58);
  box-shadow:
    0 0 0 4px rgba(159, 90, 42, 0.16),
    0 12px 34px rgba(7, 24, 47, 0.08);
}

#investmentChart {
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 18%, rgba(196, 122, 63, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(235, 244, 255, 0.78));
}

.result-grid div,
.analysis-card,
.xray-questions label,
.option-grid label {
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(246, 250, 255, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 12px 32px rgba(7, 24, 47, 0.06);
}

.video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.22), transparent 58%);
  transform: translateX(-120%);
  transition: transform 700ms ease;
}

.video-card:hover .video-thumb {
  transform: scale(1.025);
  box-shadow: 0 24px 70px rgba(7, 24, 47, 0.2);
}

.video-card:hover .video-thumb::after {
  transform: translateX(120%);
}

.founder-section,
.funnel-section,
.final-cta,
.site-footer {
  background:
    radial-gradient(circle at 18% 12%, rgba(196, 122, 63, 0.16), transparent 28rem),
    radial-gradient(circle at 84% 18%, rgba(91, 151, 255, 0.16), transparent 30rem),
    linear-gradient(135deg, #040b18 0%, var(--navy-950) 48%, #102f55 100%);
}

.founder-media {
  border-radius: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 34px 100px rgba(2, 8, 18, 0.28);
}

.trust-points span {
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.funnel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.055));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 30px 90px rgba(2, 8, 18, 0.28);
  backdrop-filter: blur(24px) saturate(145%);
}

.funnel-progress span {
  box-shadow: 0 0 24px rgba(159, 90, 42, 0.28);
}

.faq-list {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.66));
}

.modal-backdrop {
  background: rgba(2, 8, 18, 0.56);
  backdrop-filter: blur(18px) saturate(130%);
}

.modal-panel {
  border-radius: 24px;
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.34);
}

.reveal {
  transform: translateY(26px) scale(0.99);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
  .hero-video-card,
  .hero-proof-stats article,
  .glass-card,
  .tool-card,
  .video-card,
  .comparison-card,
  .calculator-panel,
  .calculator-output,
  .seo-tool-copy,
  .xray-result,
  .funnel,
  .faq-list,
  .timeline-item,
  .solid-card,
  .process-step {
    border-radius: 18px;
  }

  .hero-proof-stats article,
  .glass-card,
  .tool-card,
  .video-card {
    box-shadow: 0 18px 54px rgba(7, 24, 47, 0.12);
  }
}

/* Strategy upgrade components */
.audience-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(196, 122, 63, 0.11), transparent 26rem),
    radial-gradient(circle at 86% 18%, rgba(91, 151, 255, 0.11), transparent 30rem),
    linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(240, 246, 253, 0.92) 58%, rgba(250, 252, 255, 0.98));
}

.audience-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 24px;
  box-shadow: var(--premium-shadow);
  backdrop-filter: blur(22px) saturate(145%);
}

.audience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.48), transparent 30%, transparent 70%, rgba(255, 255, 255, 0.14));
  opacity: 0.34;
}

.audience-card {
  padding: 26px;
}

.audience-card {
  min-height: 100%;
}

.audience-card h3 {
  margin-bottom: 0.82rem;
  font-size: clamp(1.08rem, 1.4vw, 1.34rem);
  font-weight: 780;
  letter-spacing: -0.01em;
}

.audience-card p {
  max-width: 62ch;
  margin-bottom: 1.1rem;
  color: rgba(7, 24, 47, 0.78);
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
  font-weight: 560;
  line-height: 1.64;
}

.topic-list {
  display: grid;
  gap: 8px;
  list-style: none;
}

.topic-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(84, 98, 116, 0.92);
  font-size: 0.96rem;
  font-weight: 570;
  line-height: 1.38;
}

.topic-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 0.58em;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(159, 90, 42, 0.3);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .center-action .btn {
    width: 100%;
  }

  .compass::after {
    width: 10px;
    height: 210px;
    min-height: 0;
  }

  .compass-card {
    animation-duration: 7.2s;
  }
}

@media (max-width: 1023px) {
  .compass-section {
    overflow-x: clip;
  }

  .compass {
    --compass-size: clamp(330px, 48vw, 400px);
    width: 100%;
    max-width: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    place-items: stretch;
    gap: 16px;
    padding: calc(var(--compass-size) + 34px) 0 4px;
    perspective: none;
    overflow-x: clip;
  }

  .compass::before {
    top: 0;
    left: 50%;
    width: var(--compass-size);
    transform:
      translate3d(-50%, var(--compass-lift), -24px)
      rotateX(var(--compass-tilt-x))
      rotateY(var(--compass-tilt-y));
  }

  .compass::after {
    top: calc(var(--compass-size) / 2);
    left: 50%;
    width: 12px;
    height: calc(var(--compass-size) * 0.72);
    min-height: 0;
    transform:
      translate3d(-50%, calc(-50% + var(--compass-lift)), -4px)
      rotateX(var(--compass-tilt-x))
      rotateY(var(--compass-tilt-y))
      rotateZ(var(--needle-angle));
  }

  .compass-center {
    position: absolute;
    top: calc(var(--compass-size) / 2);
    left: 50%;
    width: clamp(160px, 24vw, 190px);
    min-height: clamp(160px, 24vw, 190px);
    padding: 20px;
    font-size: clamp(0.84rem, 1.8vw, 0.96rem);
    transform:
      translate3d(-50%, calc(-50% + var(--compass-lift)), 24px)
      rotateX(var(--compass-tilt-x))
      rotateY(var(--compass-tilt-y));
  }

  .compass-card,
  .compass-card.top,
  .compass-card.right,
  .compass-card.bottom,
  .compass-card.left {
    position: relative;
    inset: auto;
    width: clamp(0px, 100%, 100%);
    max-width: 100%;
    min-height: 78px;
    display: grid;
    place-items: center;
    padding: 18px 14px;
    transform: none;
    translate: 0 0;
    animation-duration: 7.8s;
  }

  .compass-card h3 {
    max-width: 100%;
    font-size: clamp(0.92rem, 2vw, 1.05rem);
    overflow-wrap: anywhere;
  }

  .compass .desktop-label {
    display: inline;
  }

  .compass .mobile-label {
    display: none;
  }
}

@media (max-width: 767px) {
  .compass {
    --compass-size: clamp(250px, 76vw, 300px);
    gap: 12px;
    padding-top: calc(var(--compass-size) + 24px);
  }

  .compass-center {
    width: clamp(126px, 38vw, 148px);
    min-height: clamp(126px, 38vw, 148px);
    padding: 14px;
    font-size: clamp(0.74rem, 3vw, 0.86rem);
    line-height: 1.2;
  }

  .compass::after {
    width: 9px;
    height: calc(var(--compass-size) * 0.7);
  }

  .compass-card,
  .compass-card.top,
  .compass-card.right,
  .compass-card.bottom,
  .compass-card.left {
    min-height: 68px;
    padding: 14px 10px;
  }

  .compass-card h3 {
    font-size: clamp(0.82rem, 3.5vw, 0.96rem);
  }
}

@media (max-width: 479px) {
  .compass {
    --compass-size: clamp(238px, 74vw, 284px);
    gap: 10px;
  }

  .compass-card,
  .compass-card.top,
  .compass-card.right,
  .compass-card.bottom,
  .compass-card.left {
    min-width: 0;
    min-height: 64px;
    padding: 12px 7px;
  }

  .compass-card h3 {
    font-size: clamp(0.78rem, 3.35vw, 0.9rem);
  }
}

@media (max-width: 1023px) {
  .leak-toggle-panel {
    margin-top: -4px;
  }

  .leak-toggle {
    min-height: 52px;
  }

  .leak-system {
    width: 100%;
    min-height: 0;
    margin-bottom: 42px;
    padding: 0;
  }

  .leak-system::before {
    inset: 44px 0 88px;
    border-radius: 38px;
  }

  .leak-vessel {
    display: block;
    width: clamp(320px, 62vw, 430px);
    max-width: 100%;
    height: clamp(310px, 48vw, 360px);
  }

  .leak-port {
    display: none;
  }

  .leak-mobile-flow {
    width: min(100%, 560px);
    display: grid;
    justify-items: center;
    gap: 9px;
    margin-top: 18px;
    text-align: center;
  }

  .leak-mobile-flow > span,
  .leak-mobile-flow > div {
    width: min(100%, 430px);
    padding: 14px 16px;
    color: var(--navy-950);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 255, 0.62));
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(7, 24, 47, 0.09);
    backdrop-filter: blur(16px);
  }

  .leak-system.is-after .leak-mobile-flow > span,
  .leak-system.is-after .leak-mobile-flow > div {
    color: var(--white);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06));
    border-color: rgba(255, 255, 255, 0.16);
  }

  .leak-mobile-flow i {
    width: 2px;
    height: 20px;
    border-radius: 999px;
    background: linear-gradient(to bottom, rgba(184, 117, 55, 0.12), rgba(184, 117, 55, 0.78));
  }

  .leak-system.is-after .leak-mobile-flow i {
    background: linear-gradient(to bottom, rgba(50, 213, 131, 0.12), rgba(50, 213, 131, 0.78));
  }

  .leak-mobile-flow small {
    color: rgba(93, 107, 124, 0.8);
  }

  .leak-system.is-after .leak-mobile-flow small {
    color: rgba(255, 255, 255, 0.68);
  }

  .leak-mobile-points {
    width: min(100%, 660px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
  }

  .leak-mobile-points div {
    position: relative;
    min-height: 72px;
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    gap: 10px;
    padding: 13px;
    color: var(--navy-950);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.64));
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 16px;
    box-shadow: 0 16px 42px rgba(7, 24, 47, 0.09);
    backdrop-filter: blur(16px);
    font-size: clamp(0.82rem, 2.1vw, 0.94rem);
    font-weight: 820;
  }

  .leak-mobile-points b {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(145deg, #ff5a67, #c43e4f);
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(255, 90, 103, 0.1), 0 0 20px rgba(255, 90, 103, 0.24);
    animation: leakPulse 2.8s ease-in-out infinite;
  }

  .leak-system.is-after .leak-mobile-points div {
    color: var(--white);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06));
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 46px rgba(3, 12, 27, 0.2);
  }

  .leak-system.is-after .leak-mobile-points b {
    background: linear-gradient(145deg, #32d583, #1fa36a);
    box-shadow: 0 0 0 7px rgba(50, 213, 131, 0.1), 0 0 20px rgba(50, 213, 131, 0.24);
  }

  .leak-solution {
    width: min(100%, 560px);
    margin-top: 24px;
  }
}

@media (max-width: 479px) {
  .leak-toggle-panel {
    gap: 8px;
    margin-bottom: 24px;
  }

  .leak-toggle {
    min-width: min(100%, 300px);
    min-height: 50px;
    grid-template-columns: 1fr 72px 1fr;
    gap: 8px;
    padding: 7px 9px;
    font-size: 0.84rem;
  }

  .leak-toggle-track {
    height: 36px;
    padding: 4px;
  }

  .leak-toggle-track i {
    width: 28px;
    height: 28px;
  }

  .leak-toggle[aria-pressed="true"] .leak-toggle-track i {
    transform: translateX(36px);
  }

  .leak-system {
    margin-top: 0;
    margin-bottom: 34px;
  }

  .leak-income span {
    min-width: 0;
    width: 100%;
    padding: 11px 18px;
    flex-wrap: wrap;
  }

  .leak-income i {
    height: 46px;
  }

  .leak-vessel {
    width: min(100%, 300px);
    height: 336px;
    border-radius: 34px 34px 54px 54px;
  }

  .leak-vessel::before {
    inset: 10px;
    border-radius: 27px 27px 46px 46px;
  }

  .leak-liquid {
    inset: auto 9px 9px;
    border-radius: 20px 20px 46px 46px;
  }

  .leak-core {
    top: 42px;
    width: min(76%, 210px);
    padding: 16px 12px;
  }

  .leak-mobile-flow > span,
  .leak-mobile-flow > div {
    padding: 13px 12px;
    border-radius: 15px;
  }

  .leak-mobile-points {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .leak-mobile-points div {
    min-height: 64px;
    padding: 12px;
  }

  .leak-remaining {
    left: 50%;
    bottom: 28px;
    width: min(86%, 300px);
  }

  .leak-solution {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 18px;
    text-align: center;
  }
}

.decision-section .card-grid.five {
  position: relative;
  width: min(100%, 1040px);
  margin: 0 auto;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: clamp(16px, 2vw, 24px);
  counter-reset: decision-card;
}

.decision-section .card-grid.five::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: clamp(24px, 3vw, 38px);
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(159, 90, 42, 0), rgba(159, 90, 42, 0.6), rgba(58, 168, 121, 0.5), rgba(159, 90, 42, 0));
  box-shadow: 0 0 34px rgba(159, 90, 42, 0.2);
}

.decision-section .solid-card {
  counter-increment: decision-card;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  min-height: 0;
  gap: clamp(16px, 2vw, 28px);
  padding: clamp(20px, 2vw, 28px) clamp(20px, 2.4vw, 34px) clamp(20px, 2vw, 28px) clamp(82px, 7vw, 112px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 18%, rgba(159, 90, 42, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(246, 250, 255, 0.66));
  box-shadow: 0 20px 58px rgba(7, 24, 47, 0.08);
  overflow: hidden;
  transform: translateX(-16px) scale(0.985);
  transition:
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 720ms ease,
    border-color 720ms ease,
    background 720ms ease;
}

.decision-section .solid-card:nth-child(even) {
  transform: translateX(16px) scale(0.985);
}

.decision-section .solid-card::before {
  content: counter(decision-card, decimal-leading-zero);
  position: absolute;
  left: clamp(20px, 2.8vw, 34px);
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--navy-950);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #e4a56e, #b86a34);
  box-shadow: 0 14px 28px rgba(159, 90, 42, 0.25);
  transform: translateY(-50%);
}

.decision-section .solid-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.9) 48%, transparent 64%),
    radial-gradient(circle at 92% 50%, rgba(58, 168, 121, 0.14), transparent 32%);
  transform: translateX(-32%);
  transition: opacity 720ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.decision-section .solid-card.is-active,
.decision-section .solid-card:hover,
.decision-section .solid-card:focus-visible {
  border-color: rgba(159, 90, 42, 0.48);
  box-shadow: 0 28px 78px rgba(7, 24, 47, 0.13), 0 0 0 1px rgba(159, 90, 42, 0.14);
  transform: translateX(0) scale(1);
}

.decision-section .solid-card.is-active::after,
.decision-section .solid-card:hover::after,
.decision-section .solid-card:focus-visible::after {
  opacity: 0.58;
  transform: translateX(24%);
}

.decision-section .solid-card:nth-child(-n + 3) {
  grid-column: auto;
}

.decision-section .solid-card:nth-child(n + 4) {
  grid-column: auto;
  min-height: 0;
}

.decision-section .solid-card h3 {
  position: relative;
  max-width: 100%;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.decision-section .solid-card p {
  position: relative;
  max-width: 58ch;
  margin-bottom: 0;
  font-size: clamp(0.95rem, 1vw, 1.03rem);
  line-height: 1.5;
}

.decision-section .solid-card:nth-child(n + 4) p {
  max-width: 62ch;
}

@media (max-width: 992px) {
  .decision-section .card-grid.five {
    width: min(100%, 760px);
    grid-template-columns: 1fr;
  }

  .decision-section .solid-card,
  .decision-section .solid-card:nth-child(-n + 3),
  .decision-section .solid-card:nth-child(n + 4) {
    grid-column: auto;
    min-height: 0;
  }

  .decision-section .solid-card:nth-child(5) {
    grid-column: auto;
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .decision-section .card-grid.five {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .decision-section .card-grid.five::before {
    left: 22px;
  }

  .decision-section .solid-card,
  .decision-section .solid-card:nth-child(5) {
    grid-template-columns: 1fr;
    gap: 10px;
    grid-column: auto;
    min-height: auto;
    padding: 18px 18px 18px 68px;
    border-radius: 20px;
    transform: translateY(14px) scale(0.985);
  }

  .decision-section .solid-card:nth-child(even) {
    transform: translateY(14px) scale(0.985);
  }

  .decision-section .solid-card::before {
    left: 14px;
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .decision-section .solid-card.is-active,
  .decision-section .solid-card:hover,
  .decision-section .solid-card:focus-visible {
    transform: translateY(0) scale(1);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Contact funnel: page-specific responsive layout and condensed progress UI. */
.contact-page {
  overflow-x: clip;
}

.contact-page .contact-funnel-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
}

.contact-page .contact-funnel-copy {
  min-width: 0;
}

.contact-page .contact-funnel-card {
  width: min(100%, 680px);
  justify-self: end;
}

.contact-page .contact-funnel-card .option-grid label {
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy-950);
}

.contact-page .contact-funnel-card .option-grid label:has(input:checked) {
  color: var(--navy-950);
  border-color: rgba(196, 122, 63, 0.86);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(252, 240, 230, 0.96));
  box-shadow: 0 14px 32px rgba(159, 90, 42, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-page .contact-funnel-card .option-grid label:focus-within {
  outline: 3px solid rgba(196, 122, 63, 0.34);
  outline-offset: 2px;
}

/* Contact funnel selection controls: use one controlled shape across all steps. */
.contact-page .contact-funnel-card .option-grid input[type="radio"],
.contact-page .contact-funnel-card .option-grid input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  flex: 0 0 20px;
  align-self: center;
  margin: 0 12px 0 0;
  border: 2px solid rgba(7, 24, 47, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 1px 1px rgba(7, 24, 47, 0.08);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-page .contact-funnel-card .option-grid input[type="radio"]:checked,
.contact-page .contact-funnel-card .option-grid input[type="checkbox"]:checked {
  border-color: var(--orange-2);
  background: var(--orange-2);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.96), 0 0 0 3px rgba(196, 122, 63, 0.16);
  transform: scale(1.04);
}

.contact-page .contact-funnel-card .option-grid input[type="radio"]:focus-visible,
.contact-page .contact-funnel-card .option-grid input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(196, 122, 63, 0.34);
  outline-offset: 3px;
}

/* Contact details: a calm, unified field system for the final funnel step only. */
.contact-page .contact-funnel-card [data-step="4"] .contact-field-grid {
  gap: 14px;
}

.contact-page .contact-funnel-card [data-step="4"] .contact-field-grid label {
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.contact-page .contact-funnel-card [data-step="4"] .contact-field-grid input,
.contact-page .contact-funnel-card [data-step="4"] .contact-field-grid textarea {
  width: 100%;
  min-height: 54px;
  margin: 0;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 24px rgba(0, 0, 0, 0.1);
  color: var(--navy-950);
  font: inherit;
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-page .contact-funnel-card [data-step="4"] .contact-field-grid textarea {
  min-height: 124px;
  resize: vertical;
}

.contact-page .contact-funnel-card [data-step="4"] .contact-field-grid input::placeholder,
.contact-page .contact-funnel-card [data-step="4"] .contact-field-grid textarea::placeholder {
  color: rgba(7, 24, 47, 0.48);
}

.contact-page .contact-funnel-card [data-step="4"] .contact-field-grid input:focus,
.contact-page .contact-funnel-card [data-step="4"] .contact-field-grid textarea:focus {
  border-color: rgba(196, 122, 63, 0.86);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(196, 122, 63, 0.16), 0 14px 32px rgba(0, 0, 0, 0.13);
}

.contact-page .contact-funnel-card [data-step="4"] .privacy-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  margin-top: 18px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.87rem;
  font-weight: 600;
  line-height: 1.5;
}

.contact-page .contact-funnel-card [data-step="4"] .privacy-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 1px 0 0;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.contact-page .contact-funnel-card [data-step="4"] .privacy-check input[type="checkbox"]:checked {
  border-color: var(--orange-2);
  background: var(--orange-2);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.94);
}

.contact-page .contact-funnel-card [data-step="4"] .privacy-check input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(196, 122, 63, 0.36);
  outline-offset: 3px;
}

.contact-page .contact-funnel-card [data-step="4"] .privacy-check a {
  color: #efbd91;
  font-weight: 750;
  text-decoration-thickness: 1px;
}

.contact-page .contact-funnel-card [data-step="4"] .privacy-copy {
  display: block;
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
}

/* Final funnel step: keep the back and conversion actions on one stable row. */
.contact-page .funnel-actions:has([data-funnel-submit]:not(.hidden)) {
  flex-wrap: nowrap;
  align-items: stretch;
}

.contact-page .funnel-actions:has([data-funnel-submit]:not(.hidden)) [data-funnel-prev] {
  flex: 0 0 auto;
}

.contact-page .funnel-actions:has([data-funnel-submit]:not(.hidden)) [data-funnel-submit] {
  flex: 1 1 auto;
}

/* Funnel visual system: shared sizing, surface and interaction language for every step. */
.contact-page .contact-funnel-card .option-grid {
  gap: 12px;
}

.contact-page .contact-funnel-card .option-grid label {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 12px 28px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.35;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-page .contact-funnel-card .option-grid label:hover {
  border-color: rgba(196, 122, 63, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 16px 34px rgba(7, 24, 47, 0.14);
  transform: translateY(-2px);
}

.contact-page .contact-funnel-card .option-grid label:has(input:checked) {
  border-color: rgba(196, 122, 63, 0.86);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(252, 240, 230, 0.96));
  box-shadow: 0 16px 36px rgba(159, 90, 42, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

.contact-page .funnel-actions .btn {
  min-height: 52px;
  padding: 13px 20px;
  border-radius: 14px;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-page .funnel-actions .btn:hover,
.contact-page .funnel-actions .btn:focus-visible {
  transform: translateY(-2px);
}

.contact-page .funnel-actions .btn-secondary {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 12px 28px rgba(0, 0, 0, 0.12);
}

.contact-page .funnel-actions .btn-primary {
  box-shadow: 0 14px 32px rgba(159, 90, 42, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

@media (max-width: 992px) {
  .contact-page .contact-funnel-copy {
    display: flex;
    flex-direction: column;
  }

  .contact-page .contact-funnel-hero {
    padding-top: calc(var(--header-height) + 46px);
    padding-bottom: 72px;
  }

  .contact-page .contact-funnel-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-page .contact-funnel-copy {
    width: min(100%, 680px);
    margin: 0 auto;
    text-align: center;
  }

  .contact-page .contact-trust-list {
    justify-content: center;
  }

  .contact-page .contact-funnel-card {
    justify-self: center;
    margin: 0 auto;
  }
}

@media (min-width: 993px) {
  .contact-page .contact-funnel-copy {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    min-height: 560px;
  }

}

@media (max-width: 768px) {
  .contact-page .contact-funnel-hero {
    display: block;
    min-height: 0;
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 54px;
  }

  .contact-page .contact-funnel-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .contact-page .contact-funnel-copy,
  .contact-page .contact-funnel-copy p:not(.eyebrow) {
    text-align: left;
  }

  .contact-page .contact-funnel-copy h1 {
    max-width: 14ch;
    font-size: clamp(2.35rem, 11vw, 3.3rem);
    line-height: 1.04;
    margin-bottom: 16px;
  }

  .contact-page .contact-funnel-copy p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.6;
  }

  .contact-page .contact-proof-block {
    width: 100%;
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 10px;
    margin-top: 18px;
    padding: 10px;
    border-radius: 18px;
  }

  .contact-page .contact-funnel-people {
    width: 94px;
    height: 98px;
    margin: 0;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
  }

  .contact-page .contact-funnel-people img {
    width: 96px;
    max-width: 100%;
    transform: none;
  }

  .contact-page .contact-proof-block .cta-trust-signals {
    --trust-mark-height: 46px;
    gap: 6px;
    width: 100% !important;
    min-width: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .contact-page .contact-proof-block .google-review-button {
    min-width: 148px;
    min-height: 46px;
    padding: 6px 9px;
    border-radius: 13px;
  }

  .contact-page .contact-proof-block .google-rating-mark {
    width: 22px;
    height: 22px;
    font-size: 1.1rem;
  }

  .contact-page .contact-proof-block .google-rating-copy strong {
    font-size: 0.82rem;
  }

  .contact-page .contact-proof-block .google-rating-copy span {
    font-size: 0.76rem;
  }

  .contact-page .contact-trust-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 9px;
    margin-top: 22px;
  }

  .contact-page .contact-trust-list span {
    min-height: 56px;
    justify-content: center;
    padding: 9px 10px;
    border-radius: 15px;
    font-size: 0.78rem;
    line-height: 1.25;
    text-align: center;
  }

  .contact-page .contact-funnel-card {
    width: 100%;
    max-width: 100%;
    padding: 20px 16px;
    border-radius: 22px;
  }

  .contact-page .funnel-stage-nav {
    gap: 6px;
    margin-bottom: 16px;
  }

  .contact-page .funnel-stage-nav li {
    min-width: 0;
    min-height: 38px;
    gap: 4px;
    padding: 5px 6px;
    border-radius: 12px;
    font-size: 0.62rem;
    line-height: 1.12;
    text-align: center;
  }

  .contact-page .funnel-stage-nav span {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    font-size: 0.6rem;
  }

  .contact-page .funnel-progress {
    height: 5px;
    margin-bottom: 20px;
  }

  .contact-page .contact-funnel-card h3 {
    font-size: clamp(1.28rem, 6.2vw, 1.58rem);
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .contact-page .contact-funnel-card .option-grid,
  .contact-page .contact-funnel-card .field-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-page .contact-funnel-card .option-grid label {
    min-height: 60px;
    padding: 13px 14px;
    font-size: 0.96rem;
    line-height: 1.3;
  }

  .contact-page .funnel-actions {
    display: grid;
    grid-template-columns: minmax(0, 0.48fr) minmax(0, 1fr);
    gap: 10px;
    margin-top: 20px;
  }

  .contact-page .funnel-actions .btn {
    width: 100%;
    min-height: 48px;
    padding: 12px;
    font-size: 0.9rem;
  }

  .contact-page .funnel-actions [data-funnel-submit] {
    grid-column: 1 / -1;
  }

  .contact-page .funnel-actions:has([data-funnel-submit]:not(.hidden)) {
    grid-template-columns: minmax(94px, 0.34fr) minmax(0, 0.66fr);
  }

  .contact-page .funnel-actions:has([data-funnel-submit]:not(.hidden)) [data-funnel-submit] {
    grid-column: 2;
  }

  .contact-page .funnel-summary-box {
    padding: 14px;
    border-radius: 16px;
  }

  .contact-page .privacy-check {
    padding: 13px;
    font-size: 0.84rem;
  }

  .contact-page .legal-note {
    font-size: 0.78rem;
    line-height: 1.45;
  }
}

@media (max-width: 380px) {
  .contact-page .funnel-stage-nav li {
    font-size: 0.56rem;
    padding: 5px 3px;
  }

  .contact-page .funnel-stage-nav span {
    display: none;
  }
}

/* Decision areas: a connected visual financial map using the existing five texts. */
.decision-section .card-grid.five {
  width: min(100%, 1180px);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
  padding-top: 10px;
}

.decision-section .card-grid.five::before {
  display: none;
}

.decision-section .solid-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 282px;
  padding: 34px 26px 28px;
  border-radius: 24px;
  text-align: center;
  transform: translateY(16px) scale(0.985);
}

.decision-section .solid-card:nth-child(-n + 3) {
  grid-column: span 2;
}

.decision-section .solid-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.decision-section .solid-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.decision-section .solid-card:nth-child(even) {
  transform: translateY(16px) scale(0.985);
}

.decision-section .solid-card::before {
  display: none;
}

.decision-section .solid-card.is-active,
.decision-section .solid-card:hover,
.decision-section .solid-card:focus-visible {
  transform: translateY(0) scale(1);
}

.decision-card-visual {
  width: 88px;
  height: 88px;
  margin-bottom: 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(159, 90, 42, 0.14);
  transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 480ms ease, filter 480ms ease;
}

.decision-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.decision-section .solid-card:hover .decision-card-visual,
.decision-section .solid-card.is-active .decision-card-visual {
  box-shadow: 0 22px 42px rgba(159, 90, 42, 0.26);
  filter: saturate(1.08);
  transform: translateY(-5px) scale(1.04);
}

.decision-section .solid-card h3 {
  margin-bottom: 11px;
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
  line-height: 1.2;
}

.decision-section .solid-card p,
.decision-section .solid-card:nth-child(n + 4) p {
  max-width: 34ch;
  font-size: clamp(0.92rem, 1.02vw, 1rem);
  line-height: 1.5;
}

@media (max-width: 992px) {
  .decision-section .card-grid.five {
    width: min(100%, 760px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .decision-section .solid-card,
  .decision-section .solid-card:nth-child(-n + 3),
  .decision-section .solid-card:nth-child(4),
  .decision-section .solid-card:nth-child(5) {
    grid-column: auto;
  }

  .decision-section .solid-card:nth-child(5) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .decision-section .card-grid.five {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .decision-section .solid-card,
  .decision-section .solid-card:nth-child(5) {
    grid-column: auto;
    min-height: 0;
    padding: 22px 20px;
    transform: translateY(12px) scale(0.99);
  }

  .decision-section .solid-card:nth-child(even) {
    transform: translateY(12px) scale(0.99);
  }

  .decision-section .solid-card::before {
    top: 14px;
    left: 14px;
  }

  .decision-card-visual {
    width: 68px;
    height: 68px;
    margin-bottom: 14px;
  }

  .decision-section .solid-card p,
  .decision-section .solid-card:nth-child(n + 4) p {
    max-width: 36ch;
  }
}

/* Collaboration process: static journey layout prepared for a later animation pass. */
.process-section .section-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.process-section .section-heading p {
  max-width: 620px;
  margin: 0 auto;
}

.process-journey {
  position: relative;
  margin-top: clamp(38px, 5vw, 66px);
}

.process-line {
  position: absolute;
  z-index: 0;
  top: 43px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159, 90, 42, 0.52) 12%, rgba(196, 122, 63, 0.72) 50%, rgba(159, 90, 42, 0.52) 88%, transparent);
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.process-section .process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 410px;
  padding: 28px 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(196, 122, 63, 0.11), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(246, 250, 255, 0.66));
  box-shadow: 0 20px 52px rgba(7, 24, 47, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  text-align: center;
  transition: none;
}

.process-section .process-step::after {
  display: none;
}

.process-section .process-step:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 52px rgba(7, 24, 47, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.process-step-marker {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 12px;
  color: var(--navy-950);
  background: linear-gradient(135deg, #e2a66f, #b86a34);
  box-shadow: 0 12px 24px rgba(159, 90, 42, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.44);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.process-visual {
  display: grid;
  place-items: center;
  width: 124px;
  height: 124px;
  margin: 2px auto 16px;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 30px rgba(159, 90, 42, 0.11);
}

.process-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.process-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 13px;
  padding: 5px 10px;
  border: 1px solid rgba(159, 90, 42, 0.2);
  border-radius: 999px;
  color: #9f5a2a;
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.process-section .process-step h3 {
  margin-bottom: 10px;
  color: var(--navy-950);
  font-size: clamp(1.1rem, 1.45vw, 1.34rem);
  line-height: 1.2;
}

.process-section .process-step p {
  max-width: 28ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.52;
}

@media (max-width: 1100px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .process-line {
    top: 43px;
    right: 25%;
    left: 25%;
  }

  .process-section .process-step {
    min-height: 390px;
  }
}

@media (max-width: 640px) {
  .process-section .section-heading p {
    max-width: 34ch;
    text-wrap: balance;
  }

  .process-journey {
    margin-top: 34px;
    padding-left: 34px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-line {
    top: 42px;
    bottom: 42px;
    left: 15px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(159, 90, 42, 0.1), rgba(196, 122, 63, 0.78) 14%, rgba(159, 90, 42, 0.68) 86%, rgba(159, 90, 42, 0.1));
  }

  .process-section .process-step {
    min-height: 0;
    padding: 24px 18px 22px;
    border-radius: 20px;
  }

  .process-step-marker {
    top: 22px;
    left: -53px;
    width: 38px;
    height: 38px;
  }

  .process-visual {
    width: 104px;
    height: 104px;
    margin-bottom: 14px;
  }

  .process-section .process-step p {
    max-width: 32ch;
  }
}

/* Process journey motion: section-scoped scroll states and one-time micro details. */
.process-journey {
  --process-progress: 0;
}

.process-line {
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 86px;
  overflow: visible;
  pointer-events: none;
  background: none !important;
}

.process-line path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.process-route {
  display: none;
}

.process-route-desktop {
  display: block;
}

.process-line-base {
  stroke: rgba(159, 90, 42, 0.2);
  stroke-width: 1;
}

.process-line-progress {
  stroke: #bd7040;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--process-progress));
  transition: stroke-dashoffset 160ms linear;
  filter: drop-shadow(0 0 4px rgba(196, 122, 63, 0.3));
}

.process-station {
  fill: rgba(241, 211, 184, 0.96);
  stroke: rgba(159, 90, 42, 0.44);
  stroke-width: 0.85;
  opacity: 0.68;
  transition: fill 340ms ease, stroke 340ms ease, opacity 340ms ease, filter 340ms ease;
}

.process-station.is-complete {
  fill: #d7955c;
  stroke: rgba(255, 255, 255, 0.9);
  opacity: 0.92;
}

.process-station.is-active {
  fill: #b96a39;
  stroke: rgba(255, 255, 255, 0.96);
  opacity: 1;
  filter: drop-shadow(0 0 5px rgba(196, 122, 63, 0.54));
}

.process-motion .section-heading h2,
.process-motion .section-heading p {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(24px);
  transition: opacity 720ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1), filter 680ms ease;
}

.process-motion .section-heading p {
  transition-delay: 120ms;
}

.process-motion .section-heading.process-heading-visible h2,
.process-motion .section-heading.process-heading-visible p {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.process-motion .process-step {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(24px) scale(0.985);
  transition: opacity 680ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1), filter 620ms ease, border-color 360ms ease, box-shadow 420ms ease;
}

.process-motion .process-step.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.process-motion .process-step.is-pending {
  opacity: 0.76;
}

.process-motion .process-step.is-complete {
  opacity: 0.96;
}

.process-motion .process-step.is-active {
  z-index: 2;
  opacity: 1;
  border-color: rgba(196, 122, 63, 0.6);
  box-shadow: 0 28px 62px rgba(7, 24, 47, 0.14), 0 0 0 1px rgba(196, 122, 63, 0.12), 0 0 38px rgba(196, 122, 63, 0.14);
  transform: translateY(-5px) scale(1);
}

.process-motion .process-step-marker {
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 420ms ease, background 420ms ease, color 420ms ease;
}

.process-motion .process-step.is-active .process-step-marker {
  color: var(--navy-950);
  background: linear-gradient(135deg, #efbd91, #b86a34);
  box-shadow: 0 0 0 5px rgba(196, 122, 63, 0.16), 0 16px 28px rgba(159, 90, 42, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.52);
  transform: scale(1.1);
}

.process-motion .process-visual {
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 420ms ease, filter 420ms ease;
}

.process-motion .process-step.is-active .process-visual {
  box-shadow: 0 20px 38px rgba(159, 90, 42, 0.2);
  filter: saturate(1.04);
  transform: scale(1.025);
}

.process-visual-overlay {
  position: absolute;
  z-index: 2;
  display: block;
  pointer-events: none;
}

.process-overlay-check {
  right: 18px;
  bottom: 22px;
  width: 24px;
  height: 13px;
  border-bottom: 2px solid #b86a34;
  border-left: 2px solid #b86a34;
  opacity: 0;
  transform: rotate(-45deg) scaleX(0);
  transform-origin: left center;
}

.process-step.micro-played .process-overlay-check {
  animation: processCheckDraw 620ms cubic-bezier(0.16, 1, 0.3, 1) 140ms both;
}

.process-overlay-chat::before,
.process-overlay-chat::after {
  content: "";
  position: absolute;
  border: 1.5px solid rgba(184, 106, 52, 0.82);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 4px 10px rgba(159, 90, 42, 0.1);
  opacity: 0;
}

.process-overlay-chat::before {
  top: 25px;
  left: 17px;
  width: 22px;
  height: 15px;
}

.process-overlay-chat::after {
  right: 15px;
  bottom: 27px;
  width: 19px;
  height: 13px;
}

.process-step.micro-played .process-overlay-chat::before {
  animation: processBubbleIn 500ms ease 120ms both;
}

.process-step.micro-played .process-overlay-chat::after {
  animation: processBubbleIn 500ms ease 300ms both;
}

.process-overlay-compass {
  inset: 12px;
  border: 1.5px dashed rgba(184, 106, 52, 0.72);
  border-radius: 50%;
  opacity: 0;
  transform: rotate(-18deg);
}

.process-overlay-compass::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 17px;
  width: 30px;
  border-top: 2px solid #b86a34;
  box-shadow: 11px -7px 0 -1px #b86a34;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
}

.process-step.micro-played .process-overlay-compass {
  animation: processCompassSettle 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.process-step.micro-played .process-overlay-compass::after {
  animation: processLineDraw 500ms ease 360ms both;
}

.process-overlay-growth {
  right: 16px;
  bottom: 18px;
  width: 34px;
  height: 24px;
  border-top: 2px solid #b86a34;
  border-right: 2px solid #b86a34;
  opacity: 0;
  transform: rotate(-28deg) scaleX(0);
  transform-origin: left center;
}

.process-overlay-growth::after {
  content: "";
  position: absolute;
  top: -7px;
  right: -7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(226, 166, 111, 0.92);
  box-shadow: 0 0 0 5px rgba(196, 122, 63, 0.12), 0 0 14px rgba(196, 122, 63, 0.48);
}

.process-step.micro-played .process-overlay-growth {
  animation: processGrowthPath 680ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes processCheckDraw {
  to { opacity: 0.9; transform: rotate(-45deg) scaleX(1); }
}

@keyframes processBubbleIn {
  0% { opacity: 0; transform: translateY(4px) scale(0.9); }
  100% { opacity: 0.82; transform: translateY(0) scale(1); }
}

@keyframes processCompassSettle {
  0% { opacity: 0; transform: rotate(-20deg) scale(0.96); }
  100% { opacity: 0.86; transform: rotate(0) scale(1); }
}

@keyframes processLineDraw {
  to { opacity: 0.82; transform: scaleX(1); }
}

@keyframes processGrowthPath {
  to { opacity: 0.9; transform: rotate(-28deg) scaleX(1); }
}

@media (hover: hover) and (pointer: fine) {
  .process-motion .process-step.is-visible:hover {
    border-color: rgba(196, 122, 63, 0.52);
    box-shadow: 0 24px 54px rgba(7, 24, 47, 0.13), 0 0 0 1px rgba(196, 122, 63, 0.1);
    transform: translateY(-4px) scale(1);
  }

  .process-motion .process-step.is-visible:hover .process-visual {
    transform: scale(1.015);
  }

  .process-motion .process-step.is-active:hover {
    transform: translateY(-6px) scale(1);
  }
}

@media (max-width: 1100px) {
  .process-line {
    top: 0;
    height: 100%;
  }

  .process-route-desktop {
    display: none;
  }

  .process-route-tablet {
    display: block;
  }
}

@media (max-width: 640px) {
  .process-route-tablet {
    display: none;
  }

  .process-route-mobile {
    display: block;
  }

  .process-motion .process-step {
    transform: translateY(16px) scale(0.99);
  }

  .process-motion .process-step.is-active {
    box-shadow: 0 20px 44px rgba(7, 24, 47, 0.13), 0 0 28px rgba(196, 122, 63, 0.1);
    transform: translateY(-3px) scale(1);
  }

  .process-motion .process-step.is-visible:hover {
    transform: translateY(0) scale(1);
  }

  .process-motion .process-step.is-active:hover {
    transform: translateY(-3px) scale(1);
  }

  .process-visual-overlay {
    transform-origin: center;
  }
}

.process-reduced .process-line-progress {
  stroke-dashoffset: 0;
  transition: none;
}

.process-reduced .process-step {
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
}

.process-reduced .section-heading h2,
.process-reduced .section-heading p {
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
}

.leak-copy-mobile {
  display: none;
}

/* Leak analysis: compact desktop composition on small screens. */
@media (max-width: 640px) {
  .leak-toggle-panel {
    position: relative;
    z-index: 8;
    gap: 4px;
    margin-bottom: 12px;
  }

  .leak-toggle-panel small {
    font-size: 0.68rem;
    line-height: 1.1;
  }

  .leak-toggle {
    min-height: 50px;
  }

  .leak-system {
    width: 100%;
    min-height: clamp(302px, calc(67vw + 70px), 358px);
    margin: 0 auto 30px;
    padding: 0;
  }

  .leak-system::before {
    inset: 42px 0 10px;
    border-radius: 28px;
    background: transparent;
    box-shadow: none;
    filter: none;
  }

  .leak-income {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    gap: 4px;
    transform: translateX(-50%);
  }

  .leak-income span {
    width: min(78%, 200px);
    min-width: 0;
    padding: 8px 9px;
    gap: 5px;
    border-radius: 12px;
    font-size: clamp(0.7rem, 3.35vw, 0.8rem);
    line-height: 1.1;
  }

  .leak-income i {
    width: 8px;
    height: 30px;
  }

  .leak-vessel {
    width: 47%;
    max-width: none;
    height: clamp(232px, 67vw, 288px);
    margin-top: 66px;
    border-color: transparent;
    border-radius: 24px 24px 38px 38px;
  }

  .leak-vessel::before {
    inset: 6px;
    border-color: transparent;
    border-radius: 18px 18px 31px 31px;
  }

  .leak-vessel::after {
    background:
      radial-gradient(circle at 0% 34%, rgba(159, 90, 42, 0.09), transparent 13%),
      radial-gradient(circle at 100% 34%, rgba(159, 90, 42, 0.08), transparent 13%),
      radial-gradient(circle at 0% 62%, rgba(159, 90, 42, 0.07), transparent 13%),
      radial-gradient(circle at 100% 62%, rgba(159, 90, 42, 0.07), transparent 13%);
  }

  .leak-liquid {
    inset: auto 6px 6px;
    border-radius: 15px 15px 31px 31px;
  }

  .leak-liquid::before {
    top: -7px;
    height: 15px;
  }

  .leak-core {
    top: 13%;
    width: 86%;
    padding: 8px 5px;
    border-radius: 12px;
  }

  .leak-core small {
    margin-bottom: 3px;
    font-size: clamp(0.42rem, 1.75vw, 0.52rem);
    letter-spacing: 0.06em;
  }

  .leak-core strong {
    font-size: clamp(0.64rem, 2.55vw, 0.78rem);
    line-height: 1.15;
  }

  .leak-remaining {
    bottom: 7%;
    width: 92%;
  }

  .leak-remaining small {
    margin-bottom: 2px;
    font-size: clamp(0.43rem, 1.75vw, 0.52rem);
    line-height: 1.15;
  }

  .leak-remaining strong {
    font-size: clamp(0.65rem, 2.55vw, 0.8rem);
    line-height: 1.1;
  }

  .leak-spills::before {
    top: 63%;
    right: -4px;
    width: 16px;
    height: 25px;
    border-radius: 0 10px 10px 0;
  }

  .leak-port {
    display: block;
    width: clamp(68px, 21.5vw, 94px);
    font-size: clamp(0.48rem, 1.95vw, 0.61rem);
    line-height: 1.16;
  }

  .leak-port-one,
  .leak-port-three,
  .leak-port-five {
    right: calc(100% + 7px);
  }

  .leak-port-two,
  .leak-port-four,
  .leak-port-six {
    left: calc(100% + 7px);
  }

  .leak-port-one,
  .leak-port-two {
    top: 16%;
  }

  .leak-port-three,
  .leak-port-four {
    top: 45%;
  }

  .leak-port-five,
  .leak-port-six {
    top: 73%;
  }

  .leak-port::before {
    width: 7px;
    height: 1px;
  }

  .leak-port::after {
    top: calc(50% - 2px);
    width: 5px;
    height: 5px;
    box-shadow: 0 0 0 3px rgba(255, 90, 103, 0.1), 0 0 9px rgba(255, 90, 103, 0.26);
  }

  .leak-port-one::after,
  .leak-port-three::after,
  .leak-port-five::after {
    left: calc(100% + 6px);
  }

  .leak-port-two::after,
  .leak-port-four::after,
  .leak-port-six::after {
    right: calc(100% + 6px);
  }

  .leak-system.is-after .leak-port::after {
    box-shadow: 0 0 0 3px rgba(50, 213, 131, 0.1), 0 0 9px rgba(50, 213, 131, 0.26);
  }

  .leak-port-card {
    min-height: 0;
    grid-template-columns: 15px minmax(0, 1fr);
    gap: 4px;
    padding: 5px 4px;
    background: transparent;
    border-color: transparent;
    border-radius: 9px;
    box-shadow: none;
    backdrop-filter: none;
    text-wrap: balance;
  }

  .leak-system.is-after .leak-port-card {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }

  .leak-sign {
    width: 15px;
    height: 15px;
    font-size: 0.74rem;
    box-shadow: 0 3px 8px rgba(255, 90, 103, 0.2);
  }

  .leak-amount {
    margin-top: 1px;
    font-size: 0.96em;
  }

  .leak-mobile-flow,
  .leak-mobile-points {
    display: none;
  }

  .leak-copy-mobile {
    display: block;
  }

  .leak-copy-desktop {
    display: none;
  }

  .leak-port {
    font-size: clamp(0.57rem, 2.25vw, 0.68rem);
    line-height: 1.15;
  }

  .leak-port-card {
    grid-template-columns: 15px minmax(0, 1fr);
    align-items: center;
    gap: 4px;
    padding: 4px 2px;
  }

  .leak-port-card em {
    display: block;
    min-width: 0;
    font-weight: 850;
    line-height: 1.15;
    text-align: center;
  }

  /* Keep exactly one copy visible in each side label on compact screens. */
  .leak-port-card > em.after-copy,
  .leak-port-card > .leak-sign .after-copy {
    display: none !important;
  }

  .leak-system.is-after .leak-port-card > em.before-copy,
  .leak-system.is-after .leak-port-card > .leak-sign .before-copy {
    display: none !important;
  }

  .leak-system.is-after .leak-port-card > em.after-copy,
  .leak-system.is-after .leak-port-card > .leak-sign .after-copy {
    display: block !important;
  }

  /* Keep both icon columns facing the central tank. */
  .leak-port-one .leak-port-card,
  .leak-port-three .leak-port-card,
  .leak-port-five .leak-port-card {
    grid-template-columns: minmax(0, 1fr) 15px;
  }

  .leak-port-one .leak-sign,
  .leak-port-three .leak-sign,
  .leak-port-five .leak-sign {
    grid-column: 2;
    grid-row: 1;
  }

  .leak-port-one .leak-port-card em,
  .leak-port-three .leak-port-card em,
  .leak-port-five .leak-port-card em {
    grid-column: 1;
    grid-row: 1;
  }

  .leak-port-one .leak-amount,
  .leak-port-three .leak-amount,
  .leak-port-five .leak-amount {
    width: 100%;
    margin: 2px 0 0;
    text-align: center;
  }

  .leak-port-two .leak-amount,
  .leak-port-four .leak-amount,
  .leak-port-six .leak-amount {
    width: 100%;
    margin: 2px 0 0;
    text-align: center;
  }

  .leak-sign {
    width: 14px;
    height: 14px;
    font-size: 0.68rem;
  }

  .leak-amount {
    width: 100%;
    display: block;
    margin: 2px 0 0;
    color: var(--red);
    font-size: clamp(0.63rem, 2.8vw, 0.75rem);
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
  }

  .leak-section .center-action {
    margin-top: 16px;
  }

  .leak-section .center-action .btn {
    width: min(76%, 270px);
    min-height: 44px;
    padding: 0 12px;
    justify-content: center;
    color: var(--white);
    font-size: clamp(0.88rem, 3.5vw, 1rem);
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
  }

  /* Mobile state guard: a port may only show one label variant at a time. */
  .leak-port-card > .before-copy,
  .leak-port-card > .after-copy,
  .leak-port-card > .leak-sign > .before-copy,
  .leak-port-card > .leak-sign > .after-copy {
    display: none !important;
  }

  .leak-system:not(.is-after) .leak-port-card > .before-copy {
    display: block !important;
  }

  .leak-system:not(.is-after) .leak-port-card > .leak-sign > .before-copy {
    display: inline !important;
  }

  .leak-system.is-after .leak-port-card > .after-copy {
    display: block !important;
  }

  .leak-system.is-after .leak-port-card > .leak-sign > .after-copy {
    display: inline !important;
  }

  /* Keep the compact three-column composition balanced on narrow screens. */
  .leak-vessel {
    width: 44%;
  }

  .leak-port {
    width: clamp(72px, 23vw, 100px);
    font-size: clamp(0.52rem, 2.05vw, 0.63rem);
    line-height: 1.08;
  }

  .leak-port-one,
  .leak-port-three,
  .leak-port-five {
    right: calc(100% + 5px);
  }

  .leak-port-two,
  .leak-port-four,
  .leak-port-six {
    left: calc(100% + 5px);
  }

  .leak-port-card {
    gap: 3px;
    padding: 3px 1px;
  }

  .leak-port-card em {
    overflow-wrap: anywhere;
    line-height: 1.08;
  }

  .leak-amount {
    margin-top: 1px;
    font-size: clamp(0.56rem, 2.4vw, 0.67rem);
  }
}

/* Corrected process route: one quiet SVG band, visible only between or behind cards. */
.process-journey {
  padding-left: 0;
}

.process-line {
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.process-line-base {
  stroke: rgba(173, 98, 47, 0.2);
  stroke-width: 2;
  stroke-linecap: round;
}

.process-line-progress {
  stroke: #bc7040;
  stroke-width: 2.6;
  stroke-linecap: round;
  filter: drop-shadow(0 0 3px rgba(188, 112, 64, 0.24));
}

.process-motion .process-step.is-active,
.process-motion .process-step.is-active:hover {
  transform: none;
}

/* PKV calculator: composed from the supplied health, finance and care assets. */
.tool-page-hero-media.pkv-hero-composition {
  isolation: isolate;
  height: clamp(290px, 38vw, 430px);
  min-height: 0;
  margin-top: 32px;
  background:
    radial-gradient(circle at 18% 20%, rgba(196, 122, 63, 0.21), transparent 27%),
    radial-gradient(circle at 86% 78%, rgba(24, 75, 137, 0.25), transparent 31%),
    linear-gradient(138deg, #fafdff 0%, #e7eef8 52%, #d7e5f6 100%);
}

.tool-page-hero-media.pkv-hero-composition::before {
  content: "";
  position: absolute;
  inset: 9% 8%;
  z-index: 0;
  border: 1px solid rgba(196, 122, 63, 0.22);
  border-radius: 28px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.75);
  pointer-events: none;
}

.tool-page-hero-media.pkv-hero-composition::after {
  z-index: 5;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.34), transparent 34%),
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.4), transparent 26%);
}

.tool-page-hero-media.pkv-hero-composition .pkv-hero-layer {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(7, 24, 47, 0.16);
  pointer-events: none;
}

.tool-page-hero-media.pkv-hero-composition .pkv-hero-layer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.pkv-hero-health-card {
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 57%;
  aspect-ratio: 1.62;
  transform: translate(-50%, -49%) rotate(-1deg);
  background: #f8fbff;
  animation: pkv-card-float 9s ease-in-out infinite;
}

.pkv-hero-health-card img {
  object-position: center 53%;
}

.pkv-hero-stethoscope {
  top: 5%;
  left: 4%;
  z-index: 2;
  width: 32%;
  height: 86%;
  transform: rotate(-8deg);
  opacity: 0.96;
  animation: pkv-stethoscope-drift 11s ease-in-out infinite;
}

.pkv-hero-stethoscope img {
  object-position: center 53%;
}

.pkv-hero-coins {
  bottom: -10%;
  left: 12%;
  z-index: 4;
  width: 28%;
  height: 49%;
  transform: rotate(-5deg);
  animation: pkv-coins-lift 7.5s ease-in-out infinite;
}

.pkv-hero-coins img {
  object-position: center 56%;
}

.pkv-hero-banknotes {
  top: -6%;
  right: -5%;
  z-index: 1;
  width: 47%;
  height: 85%;
  transform: rotate(-10deg);
  opacity: 0.76;
  animation: pkv-banknotes-parallax 16s ease-in-out infinite;
}

.pkv-hero-banknotes img {
  object-position: center 54%;
  mix-blend-mode: multiply;
}

@keyframes pkv-card-float {
  0%, 100% { transform: translate(-50%, -49%) rotate(-1deg); }
  50% { transform: translate(-50%, -53%) rotate(0.6deg); }
}

@keyframes pkv-stethoscope-drift {
  0%, 100% { transform: translateX(0) rotate(-8deg); }
  50% { transform: translateX(10px) translateY(-5px) rotate(-5.5deg); }
}

@keyframes pkv-coins-lift {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-10px) rotate(-3deg); }
}

@keyframes pkv-banknotes-parallax {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-10deg); }
  50% { transform: translate3d(-12px, 8px, 0) rotate(-7deg); }
}

@media (max-width: 768px) {
  .tool-page-hero-media.pkv-hero-composition {
    height: clamp(258px, 76vw, 360px);
    margin-top: 25px;
  }

  .pkv-hero-health-card {
    width: 76%;
  }

  .pkv-hero-stethoscope {
    top: 8%;
    left: -2%;
    width: 35%;
    height: 75%;
  }

  .pkv-hero-coins {
    bottom: -13%;
    left: 9%;
    width: 33%;
    height: 45%;
  }

  .pkv-hero-banknotes {
    top: -5%;
    right: -12%;
    width: 56%;
    height: 80%;
  }
}

@media (max-width: 480px) {
  .tool-page-hero-media.pkv-hero-composition {
    height: min(72vw, 300px);
  }

  .tool-page-hero-media.pkv-hero-composition::before {
    inset: 8% 6%;
    border-radius: 22px;
  }

  .tool-page-hero-media.pkv-hero-composition .pkv-hero-layer {
    border-radius: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pkv-hero-health-card,
  .pkv-hero-stethoscope,
  .pkv-hero-coins,
  .pkv-hero-banknotes {
    animation: none;
  }
}

@media (max-width: 640px) {
  .process-journey {
    padding-left: 0;
  }

  .process-grid {
    gap: 28px;
  }

  .process-step-marker {
    left: 18px;
  }

  .process-motion .process-step.is-active,
  .process-motion .process-step.is-active:hover {
    transform: none;
  }
}

/* Keep the homepage funnel compact on small screens. */
@media (max-width: 768px) {
  .funnel-section .funnel-grid {
    align-items: start;
    gap: 12px;
  }

  .funnel-section .funnel-trust-signals {
    width: 100%;
    justify-content: flex-start;
    margin: 10px 0 0;
  }

  .funnel-section .funnel {
    align-self: start;
    min-height: 0;
  }

  .funnel-section .funnel-step.active {
    min-height: 0;
  }

  .funnel-section .funnel-actions {
    margin-top: 14px;
  }
}

/* Keep all official trust marks compact and visually consistent. */
.cta-trust-signals--official {
  --official-seal-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.cta-trust-signals--official > a {
  display: block;
  flex: 0 0 auto;
  height: var(--official-seal-height) !important;
  max-height: var(--official-seal-height) !important;
  min-width: 0;
  overflow: hidden;
  line-height: 0;
}

.cta-trust-signals--official .google-review-button {
  width: 144px !important;
  min-width: 144px !important;
  height: var(--official-seal-height) !important;
  min-height: var(--official-seal-height) !important;
  padding: 7px 12px !important;
  color: var(--navy) !important;
}

.cta-trust-signals--official .cta-provenexpert-official-badge {
  width: var(--official-seal-height) !important;
  min-width: var(--official-seal-height) !important;
  border-radius: 10px;
}

.cta-trust-signals--official .cta-provenexpert-review-seal {
  width: calc(var(--official-seal-height) * 1.2) !important;
  min-width: calc(var(--official-seal-height) * 1.2) !important;
  border-radius: 10px;
}

.cta-trust-signals--official .cta-provenexpert-official-badge img,
.cta-trust-signals--official .cta-provenexpert-review-seal img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center;
}

@media (max-width: 640px) {
  .cta-trust-signals--official {
    --official-seal-height: 42px;
    gap: 6px;
    justify-content: flex-start;
  }

  .cta-trust-signals--official .google-review-button {
    width: 118px !important;
    min-width: 118px !important;
    padding: 5px 9px !important;
  }

  .cta-trust-signals--official .google-rating-mark {
    font-size: 26px !important;
  }

  .cta-trust-signals--official .google-rating-copy strong {
    font-size: 14px !important;
  }

  .cta-trust-signals--official .google-rating-copy span {
    font-size: 12px !important;
  }
}

@media (max-width: 360px) {
  .cta-trust-signals--official {
    --official-seal-height: 38px;
    gap: 5px;
  }

  .cta-trust-signals--official .google-review-button {
    width: 108px !important;
    min-width: 108px !important;
  }
}

/* Hard cap external review marks so remote ProvenExpert assets stay compact. */
.cta-trust-signals--official {
  --official-seal-height: 44px;
  display: flex !important;
  width: fit-content !important;
  max-width: 100% !important;
  min-height: var(--official-seal-height) !important;
  margin-inline: auto;
  gap: 6px !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  overflow: hidden !important;
  isolation: isolate;
}

.cta-trust-signals--official > a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  width: var(--official-seal-height) !important;
  min-width: var(--official-seal-height) !important;
  max-width: var(--official-seal-height) !important;
  height: var(--official-seal-height) !important;
  min-height: var(--official-seal-height) !important;
  max-height: var(--official-seal-height) !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.cta-trust-signals--official .google-review-button {
  width: 132px !important;
  min-width: 132px !important;
  max-width: 132px !important;
  height: var(--official-seal-height) !important;
  min-height: var(--official-seal-height) !important;
  max-height: var(--official-seal-height) !important;
}

.cta-trust-signals--official .cta-provenexpert-review-seal {
  width: 52px !important;
  min-width: 52px !important;
  max-width: 52px !important;
}

.cta-trust-signals--official .cta-provenexpert-official-badge img,
.cta-trust-signals--official .cta-provenexpert-review-seal img {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}

@media (max-width: 640px) {
  .cta-trust-signals--official {
    --official-seal-height: 36px;
    min-height: var(--official-seal-height) !important;
    gap: 5px !important;
    justify-content: flex-start !important;
  }

  .cta-trust-signals--official .google-review-button {
    width: 112px !important;
    min-width: 112px !important;
    max-width: 112px !important;
    padding: 4px 8px !important;
  }

  .cta-trust-signals--official .cta-provenexpert-review-seal {
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
  }

  .cta-trust-signals--official .google-rating-mark { font-size: 22px !important; }
  .cta-trust-signals--official .google-rating-copy strong { font-size: 12px !important; }
  .cta-trust-signals--official .google-rating-copy span { font-size: 10px !important; }
}

@media (max-width: 360px) {
  .cta-trust-signals--official { --official-seal-height: 32px; gap: 4px !important; }

  .cta-trust-signals--official .google-review-button {
    width: 104px !important;
    min-width: 104px !important;
    max-width: 104px !important;
  }

  .cta-trust-signals--official .cta-provenexpert-review-seal {
    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
  }
}

/* Final responsive size lock: keep all CTA trust marks compact. */
.cta-trust-signals--official {
  --official-seal-height: 38px;
  gap: 5px !important;
}

/* Absolute size lock for externally served trust badges. */
.cta-trust-signals--official,
.cta-trust-signals--official > a {
  box-sizing: border-box !important;
}

.cta-trust-signals--official > .google-review-button {
  flex: 0 0 106px !important;
  inline-size: 106px !important;
  block-size: 34px !important;
  min-inline-size: 0 !important;
  min-block-size: 0 !important;
  max-inline-size: 106px !important;
  max-block-size: 34px !important;
}

.cta-trust-signals--official > .cta-provenexpert-official-badge {
  flex: 0 0 34px !important;
  inline-size: 34px !important;
  block-size: 34px !important;
  min-inline-size: 0 !important;
  min-block-size: 0 !important;
  max-inline-size: 34px !important;
  max-block-size: 34px !important;
  aspect-ratio: 1 !important;
  overflow: hidden !important;
}

.cta-trust-signals--official > .cta-provenexpert-review-seal {
  flex: 0 0 42px !important;
  inline-size: 42px !important;
  block-size: 34px !important;
  min-inline-size: 0 !important;
  min-block-size: 0 !important;
  max-inline-size: 42px !important;
  max-block-size: 34px !important;
  overflow: hidden !important;
}

.cta-trust-signals--official > a > img {
  display: block !important;
  inline-size: 100% !important;
  block-size: 100% !important;
  min-inline-size: 0 !important;
  min-block-size: 0 !important;
  max-inline-size: 100% !important;
  max-block-size: 100% !important;
  object-fit: contain !important;
  transform: none !important;
}

@media (max-width: 640px) {
  .cta-trust-signals--official {
    gap: 4px !important;
  }

  .cta-trust-signals--official > .google-review-button {
    flex-basis: 90px !important;
    inline-size: 90px !important;
    block-size: 28px !important;
    max-inline-size: 90px !important;
    max-block-size: 28px !important;
  }

  .cta-trust-signals--official > .cta-provenexpert-official-badge {
    flex-basis: 28px !important;
    inline-size: 28px !important;
    block-size: 28px !important;
    max-inline-size: 28px !important;
    max-block-size: 28px !important;
  }

  .cta-trust-signals--official > .cta-provenexpert-review-seal {
    flex-basis: 36px !important;
    inline-size: 36px !important;
    block-size: 28px !important;
    max-inline-size: 36px !important;
    max-block-size: 28px !important;
  }
}

.cta-trust-signals--official .google-review-button {
  width: 118px !important;
  min-width: 118px !important;
  max-width: 118px !important;
}

.cta-trust-signals--official .cta-provenexpert-official-badge {
  width: 38px !important;
  min-width: 38px !important;
  max-width: 38px !important;
  height: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;
}

.cta-trust-signals--official .cta-provenexpert-review-seal {
  width: 46px !important;
  min-width: 46px !important;
  max-width: 46px !important;
  height: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;
}

@media (max-width: 640px) {
  .cta-trust-signals--official { --official-seal-height: 30px; gap: 4px !important; }

  .cta-trust-signals--official .google-review-button {
    width: 96px !important;
    min-width: 96px !important;
    max-width: 96px !important;
  }

  .cta-trust-signals--official .cta-provenexpert-official-badge {
    width: 30px !important;
    min-width: 30px !important;
    max-width: 30px !important;
    height: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;
  }

  .cta-trust-signals--official .cta-provenexpert-review-seal {
    width: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    height: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;
  }
}

/* Keep external Google and ProvenExpert marks compact on every CTA. */
.cta-trust-signals--official > .google-review-button {
  flex: 0 0 106px !important;
  width: 106px !important;
  min-width: 0 !important;
  max-width: 106px !important;
  height: 34px !important;
  min-height: 0 !important;
  max-height: 34px !important;
}

.cta-trust-signals--official > .cta-provenexpert-official-badge {
  flex: 0 0 34px !important;
  width: 34px !important;
  min-width: 0 !important;
  max-width: 34px !important;
  height: 34px !important;
  min-height: 0 !important;
  max-height: 34px !important;
  overflow: hidden !important;
}

.cta-trust-signals--official > .cta-provenexpert-review-seal {
  flex: 0 0 42px !important;
  width: 42px !important;
  min-width: 0 !important;
  max-width: 42px !important;
  height: 34px !important;
  min-height: 0 !important;
  max-height: 34px !important;
  overflow: hidden !important;
}

.cta-trust-signals--official > a > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

@media (max-width: 640px) {
  .cta-trust-signals--official > .google-review-button {
    flex-basis: 90px !important;
    width: 90px !important;
    max-width: 90px !important;
    height: 28px !important;
    max-height: 28px !important;
  }

  .cta-trust-signals--official > .cta-provenexpert-official-badge {
    flex-basis: 28px !important;
    width: 28px !important;
    max-width: 28px !important;
    height: 28px !important;
    max-height: 28px !important;
  }

  .cta-trust-signals--official > .cta-provenexpert-review-seal {
    flex-basis: 36px !important;
    width: 36px !important;
    max-width: 36px !important;
    height: 28px !important;
    max-height: 28px !important;
  }
}

/* Final lock: third-party badge images must never set the CTA layout size. */
.cta-trust-signals > * {
  min-height: 0 !important;
  overflow: hidden !important;
}

.cta-trust-signals > a,
.cta-trust-signals img,
.cta-trust-signals svg,
.cta-trust-signals iframe {
  display: block !important;
  max-width: 100% !important;
  max-height: 60px !important;
  object-fit: contain !important;
}

.cta-trust-signals > .google-review-button {
  display: inline-flex !important;
  width: 148px !important;
  min-width: 148px !important;
  max-width: 148px !important;
  height: 52px !important;
  min-height: 0 !important;
  max-height: 52px !important;
  padding: 6px 10px !important;
  line-height: 1 !important;
}

.cta-trust-signals > .cta-provenexpert-official-badge,
.cta-trust-signals > .cta-provenexpert-award {
  width: 60px !important;
  min-width: 60px !important;
  max-width: 60px !important;
  height: 60px !important;
  min-height: 0 !important;
  max-height: 60px !important;
}

.cta-trust-signals > .cta-provenexpert-review-seal {
  width: 86px !important;
  min-width: 86px !important;
  max-width: 86px !important;
  height: 60px !important;
  min-height: 0 !important;
  max-height: 60px !important;
  border-radius: 4px !important;
}

.cta-trust-signals > a > img {
  width: 100% !important;
  height: auto !important;
  max-height: 100% !important;
}

.cta-trust-signals .google-rating-mark {
  width: 28px !important;
  height: 28px !important;
  font-size: 1.8rem !important;
}

.cta-trust-signals .google-rating-copy strong {
  font-size: 0.82rem !important;
}

.cta-trust-signals .google-rating-copy span {
  font-size: 0.72rem !important;
}

.cta-trust-signals .google-rating-copy i {
  font-size: 0.66rem !important;
}

/* Funnel/contact trust marks: keep third-party badge artwork fully visible. */
.cta-trust-signals--official.funnel-trust-signals {
  height: auto !important;
  min-height: 60px !important;
  max-height: none !important;
  overflow: visible !important;
}

.funnel-trust-signals > * {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
}

.funnel-trust-signals > a > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}

/* Equal trust-mark height everywhere while preserving each mark's natural width. */
.cta-trust-signals {
  --trust-mark-height: 60px;
}

.cta-trust-signals > .google-review-button,
.funnel-trust-signals > .google-review-button {
  height: var(--trust-mark-height) !important;
  max-height: var(--trust-mark-height) !important;
}

.cta-trust-signals > .cta-provenexpert-official-badge,
.cta-trust-signals > .cta-provenexpert-award,
.cta-trust-signals > .cta-provenexpert-review-seal,
.funnel-trust-signals > .cta-provenexpert-official-badge,
.funnel-trust-signals > .cta-provenexpert-award,
.funnel-trust-signals > .cta-provenexpert-review-seal {
  height: var(--trust-mark-height) !important;
  max-height: var(--trust-mark-height) !important;
}

.cta-trust-signals > a > img,
.funnel-trust-signals > a > img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* Match the CTA button to the natural seal-row length, not the other way around. */
.cta-conversion-group {
  flex: 0 1 auto !important;
  width: fit-content !important;
  max-width: 100% !important;
}

.cta-conversion-group > .cta-trust-signals {
  width: fit-content !important;
  max-width: 100% !important;
  justify-content: center !important;
}

.cta-conversion-group > .btn {
  width: 100% !important;
  max-width: 100% !important;
  align-self: stretch !important;
}

@media (min-width: 1024px) {
  .process-section .section-heading h2,
  .process-section .section-heading p,
  .final-cta p {
    max-width: none;
    white-space: nowrap;
  }
}

.contact-proof-block {
  grid-template-columns: 96px minmax(0, 1fr) !important;
  gap: 8px !important;
  padding: 10px !important;
}

.contact-proof-block .contact-funnel-people {
  width: 96px !important;
  height: 104px !important;
}

.contact-proof-block .contact-funnel-people img {
  width: 100px !important;
}

.contact-proof-block .cta-trust-signals {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  gap: 2px !important;
  flex-wrap: nowrap !important;
}

/* Contact proof: portrait first, awards directly beneath it. */
.contact-proof-block {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 8px !important;
  width: min(100%, 430px) !important;
  position: relative;
  padding: 0 !important;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.contact-proof-block .contact-funnel-people {
  width: 252px !important;
  height: auto !important;
  aspect-ratio: 1225 / 1284;
  display: block;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.contact-proof-block .contact-funnel-people img {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
}

.contact-proof-block .cta-trust-signals {
  width: fit-content !important;
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  justify-content: center !important;
}

@media (max-width: 768px) {
  .contact-proof-block {
    gap: 6px !important;
    padding: 0 !important;
  }

  .contact-proof-block .contact-funnel-people {
    width: 187px !important;
    height: auto !important;
  }

  .contact-proof-block .contact-funnel-people img {
    width: 100% !important;
  }

  .contact-proof-block .cta-trust-signals {
    --trust-mark-height: 46px;
    display: flex !important;
    gap: 2px !important;
    align-items: center;
    bottom: -8px;
    justify-content: center !important;
    flex-wrap: nowrap !important;
  }

  .contact-proof-block .google-review-button {
    width: 120px !important;
    min-width: 120px !important;
    height: 46px !important;
    min-height: 46px !important;
    padding: 6px 8px !important;
    justify-content: center;
  }

  .contact-proof-block .google-rating-mark {
    font-size: 24px !important;
  }

  .contact-proof-block .google-rating-copy strong {
    font-size: 14px !important;
  }

  .contact-proof-block .google-rating-copy span {
    font-size: 11px !important;
  }

  .contact-proof-block .cta-provenexpert-official-badge,
  .contact-proof-block .cta-provenexpert-review-seal {
    width: auto !important;
    min-width: 0 !important;
    height: 46px !important;
    max-height: 46px !important;
  }

  .contact-proof-block .cta-provenexpert-official-badge {
    inline-size: 42px !important;
    min-inline-size: 42px !important;
    max-inline-size: 42px !important;
  }

  .contact-proof-block .cta-provenexpert-review-seal {
    inline-size: 56px !important;
    min-inline-size: 56px !important;
    max-inline-size: 56px !important;
  }
}

/* Overflow guard for narrow form and calculator panels. */
.funnel-grid > *,
.calculator-grid > *,
.funnel,
.funnel-step,
.option-grid,
.field-grid,
.option-grid label,
.field-grid label,
.calculator-panel,
.calculator-output,
.result-grid,
.result-grid > *,
.pkv-assessment,
.pkv-score-row,
.pkv-score-summary,
.pkv-assessment-copy,
.pkv-next-step {
  min-width: 0;
}

.option-grid label,
.field-grid label,
.result-grid span,
.result-grid strong,
.pkv-score-summary strong,
.pkv-score-summary small,
.pkv-assessment-copy h3,
.pkv-assessment-copy p,
.pkv-saving-highlight,
.pkv-next-step strong {
  overflow-wrap: anywhere;
}

#investmentChart {
  max-width: 100%;
}

.calculator-output .btn {
  max-width: 100%;
  white-space: normal;
}

@media (max-width: 980px) {
  .funnel-section .option-grid,
  .funnel-section .field-grid,
  .calculator-section .result-grid {
    grid-template-columns: 1fr;
  }

  .calculator-output {
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  .tool-page-cta .cta-trust-signals,
  .calculator-output .cta-trust-signals {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    overflow: visible !important;
  }

  .tool-page-cta .btn,
  .calculator-output .btn {
    width: 100%;
  }
}
