html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

:root {
  --header-bg: #1e1e1e;
  --header-icon: #f5f5f5;
  --border-soft: rgba(255, 255, 255, 0.08);
  --gold: #c7b087;
  --copy-gold: #c7ac77;
  --white: #ffffff;
  --hero-green: #7ca243;
  --hero-green-dark: #6a8c36;
  --hero-shadow: rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Heebo", sans-serif;
  background: #faf3eb;
  color: #111111;
  width: 100%;
  overflow-x: hidden;
}

html.accessibility-font-large {
  font-size: 112%;
}

html.accessibility-font-xlarge {
  font-size: 124%;
}

body.accessibility-line-spacing,
body.accessibility-line-spacing p,
body.accessibility-line-spacing li,
body.accessibility-line-spacing label,
body.accessibility-line-spacing input,
body.accessibility-line-spacing select,
body.accessibility-line-spacing textarea,
body.accessibility-line-spacing button {
  line-height: 1.95 !important;
}

body.accessibility-highlight-links a {
  color: #b7ea7f !important;
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 0.2em !important;
}

body.accessibility-readable-font,
body.accessibility-readable-font button,
body.accessibility-readable-font input,
body.accessibility-readable-font select,
body.accessibility-readable-font textarea {
  font-family: "Arimo", sans-serif !important;
}

body.accessibility-high-contrast .site-header,
body.accessibility-high-contrast .page-shell > section {
  filter: contrast(1.12) saturate(1.05);
}

body.accessibility-grayscale .site-header,
body.accessibility-grayscale .page-shell > section {
  filter: grayscale(1) contrast(1.08);
}

body.accessibility-text-align main :is(h1, h2, h3, h4, p, li, label, summary, span, a, button) {
  text-align: center !important;
}

body.accessibility-stop-animations *,
body.accessibility-stop-animations *::before,
body.accessibility-stop-animations *::after {
  animation: none !important;
  transition-duration: 0ms !important;
  transition-delay: 0ms !important;
  scroll-behavior: auto !important;
}

body.accessibility-hide-images main img {
  visibility: hidden !important;
}

body.accessibility-focus-outline :is(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid #8fd45d !important;
  outline-offset: 4px !important;
  border-radius: 8px;
}

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

.site-header {
  background: var(--header-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
}

.header-inner {
  max-width: 900px;
  margin: 0 auto;
  min-height: 78px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  gap: 18px;
}

.menu-toggle {
  width: 50px;
  height: 50px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  justify-self: start;
}

.menu-toggle span {
  width: 38px;
  height: 4px;
  border-radius: 999px;
  background: var(--header-icon);
}

.phone-link {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--header-icon);
  justify-self: end;
  transition: transform 180ms ease, opacity 180ms ease;
}

.phone-link:hover {
  transform: translateY(-2px);
  opacity: 0.82;
}

.phone-link svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.brand {
  justify-self: center;
}

.brand img {
  display: block;
  max-width: min(396px, 46vw);
  width: 100%;
  height: auto;
}

.page-shell {
  min-height: calc(100vh - 78px);
  width: 100%;
  overflow-x: clip;
}

.companies-strip {
  position: absolute;
  top: 232px;
  left: 0;
  right: 0;
  z-index: 3;
  width: 100%;
  background: transparent;
  overflow: hidden;
  pointer-events: none;
}

.companies-marquee {
  position: relative;
  width: 100%;
  height: 64px;
  overflow: hidden;
}

.companies-track {
  display: contents;
}

.companies-flow {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-around;
  gap: 44px;
  padding: 10px 22px;
  animation: companies-marquee-primary 24s linear infinite;
  will-change: transform;
}

.companies-flow + .companies-flow {
  left: 100%;
  animation-name: companies-marquee-secondary;
}

.company-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.3);
}

.hero-section {
  width: 100%;
  padding: 0;
  margin-top: -1px;
  overflow-x: clip;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  background: #0f0f0f;
  overflow: clip;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 112px;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(30, 30, 30, 1) 0%,
    rgba(30, 30, 30, 0.9) 28%,
    rgba(30, 30, 30, 0.42) 68%,
    rgba(30, 30, 30, 0) 100%
  );
  pointer-events: none;
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.hero-image {
  display: block;
  width: 100%;
  height: calc(100vh - 78px);
  min-height: 760px;
  object-fit: cover;
  object-position: center 24%;
  filter: brightness(0.73);
}

.hero-text-strip {
  position: absolute;
  top: 264px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: min(1080px, calc(100% - 44px));
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.16rem, 1.6vw, 1.6rem);
  line-height: 1.82;
  letter-spacing: 0.025em;
  margin-bottom: 34px;
  text-align: center;
  color: var(--white);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.32);
}

.hero-text-strip strong {
  font-weight: 700;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  padding: 4px 12px 5px;
  border-radius: 12px;
  background: #ccb07a;
  color: #ffffff;
  font-weight: 700;
  transform: translateY(-8px) rotate(-6deg);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.hero-main-copy {
  position: absolute;
  top: 452px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: min(1040px, calc(100% - 44px));
  color: var(--white);
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.94rem, 3.05vw, 3.15rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.01em;
  text-align: center;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.9),
    0 0 16px rgba(0, 0, 0, 0.42),
    1px 1px 0 rgba(0, 0, 0, 0.28),
    -1px 1px 0 rgba(0, 0, 0, 0.28);
}

.hero-main-copy-accent {
  color: var(--copy-gold);
}

.hero-benefits-line {
  position: absolute;
  top: 662px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: min(980px, calc(100% - 44px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--white);
  font-family: "Arimo", sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: fade-in-soft 1.2s ease forwards;
  animation-delay: 0.35s;
}

.hero-benefits-line i {
  font-style: normal;
  color: var(--copy-gold);
}

.hero-benefits-line-full {
  padding: 0 8px;
  background: linear-gradient(
    to top,
    #669e3d 0,
    #669e3d 48%,
    transparent 48%,
    transparent 100%
  );
}

.reviews-carousel {
  position: relative;
  z-index: 3;
  width: min(1240px, calc(100% - 12px));
  margin: -78px auto 0;
  overflow-x: clip;
}

.reviews-carousel-stage {
  position: relative;
  height: clamp(420px, 66vw, 760px);
}

.reviews-carousel-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: clamp(396px, 47.15vw, 547px);
  transition:
    transform 0.75s ease,
    opacity 0.75s ease,
    filter 0.75s ease;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 28px rgba(255, 255, 255, 0.18),
    0 18px 32px rgba(0, 0, 0, 0.34);
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
}

.reviews-carousel-card.is-center {
  transform: translateX(-50%) scale(1);
  z-index: 3;
  opacity: 1;
  filter: none;
}

.reviews-carousel-card.is-left {
  transform: translateX(calc(-50% - clamp(180px, 24vw, 320px))) scale(0.9);
  z-index: 2;
  opacity: 0.92;
  filter: saturate(0.95);
}

.reviews-carousel-card.is-right {
  transform: translateX(calc(-50% + clamp(180px, 24vw, 320px))) scale(0.9);
  z-index: 1;
  opacity: 0.92;
  filter: saturate(0.95);
}

.reviews-carousel-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: transparent;
}

.content-placeholder {
  width: 100%;
  min-height: 760px;
  background: #faf3eb;
  padding: 34px 0 70px;
  overflow-x: clip;
}

.hero-extension {
  width: 100%;
  height: 0;
  background: transparent;
  margin-bottom: 0;
}

.service-copy {
  max-width: 1120px;
  margin: 120px auto 0;
  padding: 0 18px;
  text-align: center;
}

.service-copy-animated {
  position: relative;
  display: inline-block;
  min-height: 3.25rem;
  padding: 0 12px 4px;
}

.service-copy-text {
  display: inline-block;
  color: #111111;
  font-family: "Arimo", sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  text-shadow: none;
}

.service-copy-strike {
  position: absolute;
  right: 0;
  left: 0;
  top: 42%;
  height: 4px;
  background: #d2382f;
  transform: translateY(-50%) scaleX(0);
  transform-origin: right center;
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.2s ease;
}

.service-copy-strike.is-active {
  transform: translateY(-50%) scaleX(1);
  opacity: 1;
}

.service-copy-static {
  margin: 4px 0 0;
  color: #111111;
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.43rem, 1.98vw, 1.92rem);
  font-weight: 400;
  line-height: 1.5;
  text-shadow: none;
}

.service-copy-underline {
  width: min(260px, 62vw);
  height: 16px;
  margin: -2px auto 0;
  position: relative;
  transform: translateY(10px) rotate(-1.9deg) scaleX(0.18);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.75s ease, opacity 0.45s ease;
}

.service-copy-underline::before,
.service-copy-underline::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, #6aa43e 0%, #7ab33f 52%, #6aa43e 100%);
  box-shadow: 0 2px 8px rgba(103, 158, 61, 0.2);
}

.service-copy-underline::before {
  top: 2px;
  width: 100%;
  height: 3px;
}

.service-copy-underline::after {
  top: 8px;
  width: 86%;
  height: 3px;
}

.service-copy-underline.is-visible {
  transform: translateY(0) rotate(-1.9deg) scaleX(1);
  opacity: 1;
}

.service-copy-cta-wrap {
  position: relative;
  width: fit-content;
  margin: 58px auto 0;
}

.service-copy-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 18px 34px;
  border-radius: 999px;
  background: #6ea63a;
  color: #ffffff;
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.2rem, 1.75vw, 1.7rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(110, 166, 58, 0.22);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  animation: cta-pulse 2.3s ease-in-out infinite;
}

.service-copy-cta::after {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -32%;
  width: 22%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.28) 48%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-24deg);
  animation: cta-shine 2.8s ease-in-out infinite;
}

.service-copy-cta:hover {
  background: #669e3d;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 34px rgba(110, 166, 58, 0.32);
}

.service-copy-cta:active {
  transform: translateY(0) scale(0.99);
}

.service-copy-cta span {
  position: relative;
  z-index: 1;
  display: block;
}

.lead-form-anchor {
  min-height: 46vh;
  scroll-margin-top: 120px;
  padding: 52px 18px 76px;
  background: #faf3eb;
}

.story-section {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.story-title {
  max-width: 760px;
  margin: 0 auto;
  color: #23201d;
  font-family: "Arimo", sans-serif;
  font-size: clamp(2.2rem, 3.55vw, 3.7rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.story-lead {
  margin: 34px 0 0;
  color: #23201d;
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
}

.story-lead-highlight {
  display: inline-block;
  position: relative;
  padding: 0 4px 3px;
}

.story-lead-highlight::before,
.story-lead-highlight::after {
  content: "";
  position: absolute;
  right: 0;
  border-radius: 999px;
  background: #669e3d;
  transform-origin: right center;
  animation: story-highlight-loop 5s ease-in-out infinite;
}

.story-lead-highlight::before {
  bottom: 4px;
  width: 100%;
  height: 2px;
}

.story-lead-highlight::after {
  right: 8%;
  bottom: 0;
  width: 84%;
  height: 2px;
  animation-delay: 0.18s;
}

.story-text {
  max-width: 720px;
  margin: 16px auto 0;
  color: rgba(35, 32, 29, 0.88);
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.08rem, 1.6vw, 1.36rem);
  font-weight: 400;
  line-height: 1.82;
}

.story-cards {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

.story-card {
  padding: 28px 24px;
  border-radius: 22px;
  background: #1f1f1f;
  color: #c7ac77;
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.stress-banner-section {
  padding: 8px 0 0;
  background: #faf3eb;
}

.stress-banner-image {
  display: block;
  width: min(980px, 100%);
  margin: 0 auto;
  height: auto;
}

.dark-transition-section {
  position: relative;
  background: #1e1e1e;
  overflow: hidden;
  margin-top: 40px;
}

.dark-transition-notch {
  width: 100%;
  height: clamp(92px, 13vw, 150px);
  background: #faf3eb;
  clip-path: polygon(0 0, 100% 0, 100% 38%, 50% 100%, 0 38%);
  display: block;
  position: relative;
  top: -2px;
}

.dark-transition-notch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #faf3eb;
}

.dark-transition-content {
  min-height: 52vh;
  background: #1e1e1e;
  padding: 40px 18px 88px;
}

.dark-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 24px 40px;
  border-radius: 34px;
  background: #242424;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dark-section-intro {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.dark-section-title {
  max-width: 860px;
  margin: 0 auto;
  color: #c7ac77;
  font-family: "Arimo", sans-serif;
  font-size: clamp(2rem, 3.3vw, 3.45rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.dark-section-subtitle {
  margin: 20px 0 0;
  color: #ffffff;
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.18rem, 1.8vw, 1.7rem);
  font-weight: 700;
  line-height: 1.5;
}

.dark-problem-list {
  display: grid;
  gap: 26px;
  max-width: 860px;
  margin: 34px auto 0;
}

.dark-problem-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.dark-problem-item p {
  margin: 0;
  color: #f5f2ee;
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  font-weight: 400;
  line-height: 1.85;
}

.dark-problem-item strong {
  color: #c7ac77;
  font-weight: 700;
}

.dark-problem-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e3312d;
  font-family: "Arimo", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  transform: translateY(2px);
  animation: dark-x-loop 2.8s ease-in-out infinite;
}

.dark-section-closing {
  max-width: 760px;
  margin: 38px auto 0;
  color: #c7ac77;
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.28rem, 2vw, 1.95rem);
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.dark-closing-highlight {
  display: inline-block;
  position: relative;
  padding: 0 4px 3px;
}

.dark-closing-highlight::before,
.dark-closing-highlight::after {
  content: "";
  position: absolute;
  right: 0;
  border-radius: 999px;
  background: #d93a34;
  transform-origin: right center;
  animation: story-highlight-loop 5s ease-in-out infinite;
}

.dark-closing-highlight::before {
  bottom: 4px;
  width: 100%;
  height: 2px;
}

.dark-closing-highlight::after {
  right: 8%;
  bottom: 0;
  width: 84%;
  height: 2px;
  animation-delay: 0.18s;
}

.dark-section-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.dark-section-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 62px;
  padding: 16px 34px;
  border-radius: 999px;
  background: #6ea63a;
  color: #ffffff;
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.08rem, 1.55vw, 1.34rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(110, 166, 58, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  animation: cta-pulse 2.3s ease-in-out infinite;
}

.dark-section-cta::after {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -32%;
  width: 22%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.28) 48%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-24deg);
  animation: cta-shine 2.8s ease-in-out infinite;
}

.dark-section-cta:hover {
  background: #669e3d;
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(110, 166, 58, 0.28);
}

.dark-section-cta span {
  position: relative;
  z-index: 1;
}

.light-transition-section {
  position: relative;
  background: #faf3eb;
  overflow: hidden;
  margin-top: -2px;
}

.light-transition-notch {
  width: 100%;
  height: clamp(72px, 10vw, 118px);
  background: #1e1e1e;
  clip-path: polygon(0 0, 100% 0, 100% 32%, 50% 100%, 0 32%);
  display: block;
  position: relative;
  top: -2px;
}

.light-transition-notch::before {
  content: none;
}

.light-transition-content {
  min-height: 30vh;
  background: #faf3eb;
}

.bottom-reviews-section {
  background: #faf3eb;
  padding: 8px 18px 88px;
}

.bottom-reviews-shell {
  max-width: 1120px;
  margin: 0 auto;
}

.bottom-reviews-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: -2px;
}

.bottom-reviews-title {
  margin: 0;
  color: #23201d;
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.65rem, 2.4vw, 2.55rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transform: translateY(-74px);
}

.bottom-reviews-lines {
  position: relative;
  width: min(340px, 78vw);
  height: 12px;
  margin-top: -2px;
  transform: translateY(-74px);
}

.bottom-reviews-lines::before,
.bottom-reviews-lines::after {
  content: "";
  position: absolute;
  right: 0;
  border-radius: 999px;
  background: #c7ac77;
  transform-origin: right center;
  animation: story-highlight-loop 5s ease-in-out infinite;
}

.bottom-reviews-lines::before {
  top: 1px;
  width: 100%;
  height: 2px;
}

.bottom-reviews-lines::after {
  top: 7px;
  right: 6%;
  width: 88%;
  height: 2px;
  animation-delay: 0.18s;
}

.bottom-reviews-carousel {
  width: min(980px, 100%);
  margin: 0 auto;
  overflow: visible;
}

.bottom-reviews-stage {
  position: relative;
  height: clamp(430px, 58vw, 680px);
  transform: translateZ(0);
  will-change: transform;
}

.bottom-review-card {
  position: relative;
  position: absolute;
  top: 0;
  left: 50%;
  width: clamp(253px, 29.9vw, 350px);
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 16px 32px rgba(21, 18, 14, 0.1),
    0 0 0 1px rgba(35, 32, 29, 0.06);
  transition:
    transform 0.7s ease,
    opacity 0.7s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-origin: center center;
  will-change: transform, opacity;
}

.bottom-review-card::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.92), transparent 42%),
    radial-gradient(circle at 70% 72%, rgba(255, 255, 255, 0.72), transparent 34%);
  opacity: 0.42;
  transform: translate3d(0, 0, 0) scale(1);
  z-index: 0;
  pointer-events: none;
}

.bottom-review-card.is-center {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  z-index: 3;
}

.bottom-review-card.is-left {
  transform: translateX(calc(-50% - clamp(130px, 18vw, 210px))) scale(0.88);
  opacity: 0.88;
  z-index: 2;
}

.bottom-review-card.is-right {
  transform: translateX(calc(-50% + clamp(130px, 18vw, 210px))) scale(0.88);
  opacity: 0.88;
  z-index: 1;
}

.bottom-review-card.is-hidden {
  transform: translateX(-50%) scale(0.76);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.bottom-review-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.truth-section {
  max-width: 860px;
  margin: 156px auto 0;
  text-align: center;
}

.truth-title {
  margin: 0;
  color: #23201d;
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.95rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
}

.truth-title-line {
  width: min(520px, 92vw);
  height: 6px;
  margin: 4px auto 0;
  border-radius: 999px;
  background: #d93a34;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.65s ease, opacity 0.25s ease;
}

.truth-title-line.is-visible {
  transform: scaleX(1);
  opacity: 1;
}

.truth-text {
  margin: 36px auto 0;
  color: rgba(35, 32, 29, 0.9);
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  font-weight: 400;
  line-height: 1.9;
}

.truth-highlight {
  display: inline-block;
  position: relative;
  color: #23201d;
  font-weight: 700;
  font-size: 1.08em;
  padding: 0 4px 3px;
}

.truth-highlight::before,
.truth-highlight::after {
  content: "";
  position: absolute;
  right: 0;
  border-radius: 999px;
  background: #d93a34;
  transform-origin: right center;
  animation: story-highlight-loop 5s ease-in-out infinite;
}

.truth-highlight::before {
  bottom: 4px;
  width: 100%;
  height: 2px;
}

.truth-highlight::after {
  right: 8%;
  bottom: 0;
  width: 84%;
  height: 2px;
  animation-delay: 0.18s;
}

.truth-highlight-strong {
  font-size: 1.14em;
  font-weight: 800;
}

.truth-emphasis {
  color: #23201d;
  font-size: 1.08em;
  font-weight: 800;
}

.truth-arrow-image {
  display: block;
  width: min(432px, 94.3vw);
  margin: 58px auto 0;
  height: auto;
  animation: truth-arrow-float 2.4s ease-in-out infinite;
}

.reviews-dark-transition {
  position: relative;
  background: #1e1e1e;
  overflow: hidden;
  margin-top: -56px;
}

.reviews-dark-transition-notch {
  width: 100%;
  height: clamp(92px, 13vw, 150px);
  background: #faf3eb;
  clip-path: polygon(0 0, 100% 0, 100% 38%, 50% 100%, 0 38%);
  display: block;
  position: relative;
  top: -2px;
}

.reviews-dark-transition-notch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #faf3eb;
}

.reviews-dark-transition-fill {
  min-height: 30vh;
  background: #1e1e1e;
  padding: 19px 18px 48px;
}

.reviews-dark-transition-end {
  width: 100%;
  height: clamp(92px, 13vw, 150px);
  background: #faf3eb;
  clip-path: polygon(0 38%, 50% 100%, 100% 38%, 100% 100%, 0 100%);
  position: relative;
  top: 2px;
}

.questionnaire-section {
  background: #faf3eb;
  padding: 30px 18px 110px;
  margin-top: -2px;
  scroll-margin-top: 96px;
}

.process-section {
  background: #faf3eb;
  padding: 0 18px 54px;
  margin-top: -14px;
}

.process-section-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.process-section-title {
  margin: 0;
  color: #23201d;
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.08rem, 1.66vw, 1.62rem);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.025em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.process-section-banner {
  display: block;
  width: min(600px, 96vw);
  margin: 8px 0 0;
  margin-inline: auto;
  height: auto;
  transform: translateX(12px);
}

.process-step-card {
  max-width: 860px;
  margin: 28px auto 0;
  padding: 30px 24px 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.52) 100%),
    #f4ebdf;
  box-shadow:
    0 18px 34px rgba(73, 55, 28, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  text-align: center;
}

.process-step-card-dark {
  background: #1f1f1f;
  box-shadow:
    0 20px 36px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.process-step-title {
  position: relative;
  margin: 0;
  color: #23201d;
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.44rem, 2.1vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  padding-bottom: 12px;
}

.process-step-title-dark {
  color: #f5f2ee;
}

.process-step-title::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  width: min(320px, 82%);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(199, 172, 119, 0.18) 0%, #c7ac77 20%, #c7ac77 80%, rgba(199, 172, 119, 0.18) 100%);
  transform: translateX(50%);
  animation: process-title-line 3s ease-in-out infinite;
}

.process-step-title-accent {
  color: #23201d;
  font-weight: 900;
  font-size: 1.14em;
}

.process-step-title-accent-dark {
  color: #c7ac77;
}

.process-step-copy {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
}

.process-step-copy-dark p {
  color: #f5f2ee;
  text-align: center;
  width: 100%;
}

.process-step-copy-light {
  color: #f5f2ee;
}

.process-step-card-dark .process-step-copy {
  text-align: center;
}

.process-step-card-dark .process-step-highlight {
  display: inline;
  color: #c7ac77;
}

.process-step-copy p,
.process-step-goal-text {
  margin: 0;
  color: rgba(35, 32, 29, 0.9);
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.85;
}

.process-step-points {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 22px auto 0;
  padding: 0;
  list-style: none;
  text-align: right;
}

.process-step-points-dark li {
  background: rgba(255, 255, 255, 0.04);
  color: #f5f2ee;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.process-step-points li {
  position: relative;
  padding: 15px 56px 15px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  color: #23201d;
  font-family: "Arimo", sans-serif;
  font-size: clamp(1rem, 1.36vw, 1.16rem);
  font-weight: 500;
  line-height: 1.75;
  box-shadow: 0 10px 20px rgba(73, 55, 28, 0.06);
}

.process-step-points li::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #84b748 0%, #6ea63a 100%);
  box-shadow: 0 6px 14px rgba(110, 166, 58, 0.24);
  transform: translateY(-50%);
  animation: process-check-pulse 2.2s ease-in-out infinite;
}

.process-step-points li::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 9px;
  height: 5px;
  border-left: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: translateY(-60%) rotate(-45deg);
}

.process-step-highlight {
  color: #c7ac77;
  font-weight: 800;
}

.process-step-goal {
  max-width: 760px;
  margin: 24px auto 0;
  padding: 20px 20px 18px;
  border-radius: 20px;
  background: #1f1f1f;
  color: #f5f2ee;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.process-step-goal-dark {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
}

.process-step-goal strong {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
  color: #c7ac77;
  font-weight: 800;
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
}

.process-step-goal strong::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -3px;
  width: 94px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(199, 172, 119, 0.18) 0%, #c7ac77 20%, #c7ac77 80%, rgba(199, 172, 119, 0.18) 100%);
  transform: translateX(50%);
  animation: process-title-line 3s ease-in-out infinite;
}

.process-step-goal-text {
  color: #f5f2ee;
  font-size: clamp(1rem, 1.38vw, 1.16rem);
  line-height: 1.75;
}

.process-section-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.process-section-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 62px;
  padding: 16px 34px;
  border-radius: 999px;
  background: #6ea63a;
  color: #ffffff;
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.08rem, 1.55vw, 1.34rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(110, 166, 58, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  animation: cta-pulse 2.3s ease-in-out infinite;
}

.process-section-cta::after {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -32%;
  width: 22%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.28) 48%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-24deg);
  animation: cta-shine 2.8s ease-in-out infinite;
}

.process-section-cta:hover {
  background: #669e3d;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 20px 34px rgba(110, 166, 58, 0.28);
}

.process-section-cta span {
  position: relative;
  z-index: 1;
}


.questionnaire-shell {
  max-width: 1040px;
  margin: 0 auto;
}

.questionnaire-intro {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.questionnaire-title {
  margin: 0;
  color: #23201d;
  font-family: "Arimo", sans-serif;
  font-size: clamp(2.2rem, 3.4vw, 3.65rem);
  font-weight: 800;
  line-height: 1.1;
}

.questionnaire-subtitle {
  margin: 20px auto 0;
  max-width: 860px;
  color: rgba(35, 32, 29, 0.9);
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.08rem, 1.55vw, 1.34rem);
  font-weight: 400;
  line-height: 1.8;
}

.questionnaire-subtitle-strong {
  color: #23201d;
  font-weight: 700;
}

.questionnaire-note {
  margin: 16px auto 0;
  max-width: 860px;
  color: #8e7a58;
  font-family: "Arimo", sans-serif;
  font-size: clamp(0.98rem, 1.32vw, 1.14rem);
  font-weight: 700;
  line-height: 1.7;
}

.questionnaire-card {
  max-width: 860px;
  margin: 22px auto 0;
  padding: 26px 30px 30px;
  border-radius: 34px;
  background: #242321;
  box-shadow:
    0 26px 48px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.questionnaire-card-intro {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.questionnaire-card-title {
  position: relative;
  display: inline-block;
  margin: 0;
  color: #c7ac77;
  font-family: "Arimo", sans-serif;
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 800;
  line-height: 1.1;
}

.questionnaire-card-title::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(199, 172, 119, 0.3) 0%, #c7ac77 22%, #c7ac77 78%, rgba(199, 172, 119, 0.3) 100%);
  opacity: 0.95;
  transform-origin: center;
  animation: title-underline-glow 3s ease-in-out infinite;
}

.questionnaire-card-copy {
  margin: 24px auto 0;
  color: rgba(245, 242, 238, 0.9);
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.05rem, 1.48vw, 1.24rem);
  font-weight: 400;
  line-height: 1.8;
}

.questionnaire-card-copy-strong {
  color: #ffffff;
  font-weight: 700;
}

.questionnaire-card-note {
  margin: 14px auto 0;
  color: #c7ac77;
  font-family: "Arimo", sans-serif;
  font-size: clamp(0.94rem, 1.2vw, 1.05rem);
  font-weight: 700;
  line-height: 1.7;
}

.questionnaire-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
}

.questionnaire-progress::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 7%;
  right: 7%;
  height: 2px;
  background: rgba(245, 242, 238, 0.34);
  transform: translateY(-50%);
}

.questionnaire-step-indicator {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid #b79c71;
  background: #2b2a28;
  color: #f5f2ee;
  font-family: "Arimo", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.questionnaire-step-indicator.is-active {
  border-color: #79a93e;
  color: #ffffff;
  box-shadow: 0 0 0 8px rgba(121, 169, 62, 0.08);
  transform: scale(1.04);
}

.questionnaire-step-indicator.is-complete {
  border-color: rgba(121, 169, 62, 0.68);
  background: rgba(121, 169, 62, 0.14);
}

.questionnaire-step {
  display: none;
}

.questionnaire-step.is-active {
  display: block;
}

.questionnaire-step-title {
  margin: 0 0 30px;
  color: #ffffff;
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.75rem, 2.7vw, 3.05rem);
  font-weight: 700;
  line-height: 1.22;
  text-align: center;
}

.questionnaire-options {
  display: grid;
  gap: 16px;
}

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

.questionnaire-option {
  width: 100%;
  min-height: 68px;
  padding: 14px 22px;
  border: 1.5px solid rgba(199, 176, 135, 0.44);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  color: #f5f2ee;
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.06rem, 1.55vw, 1.28rem);
  font-weight: 500;
  line-height: 1.4;
  text-align: right;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.questionnaire-option:hover {
  transform: translateY(-1px);
  border-color: #79a93e;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.questionnaire-option.is-selected {
  border-color: #79a93e;
  background: rgba(121, 169, 62, 0.13);
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(121, 169, 62, 0.18);
}

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

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

.questionnaire-field span {
  color: #f5f2ee;
  font-family: "Arimo", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.questionnaire-required-mark {
  color: #d74c4c;
  font-style: normal;
  font-weight: 700;
}

.questionnaire-field input,
.questionnaire-field select {
  width: 100%;
  min-height: 62px;
  padding: 0 18px;
  border: 1.5px solid rgba(199, 176, 135, 0.32);
  border-radius: 18px;
  background: #2f2d2b;
  color: #ffffff;
  font-family: "Arimo", sans-serif;
  font-size: 1.05rem;
  text-align: right;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.questionnaire-field input::placeholder {
  color: rgba(245, 242, 238, 0.48);
  text-align: right;
}

.questionnaire-field input:focus,
.questionnaire-field select:focus {
  border-color: #79a93e;
  box-shadow: 0 0 0 4px rgba(121, 169, 62, 0.12);
}

.questionnaire-conditional-field {
  margin-top: 18px;
}

.questionnaire-conditional-field.is-hidden {
  display: none;
}

.questionnaire-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
}

.questionnaire-actions-single {
  justify-content: center;
}

.questionnaire-next,
.questionnaire-back,
.questionnaire-submit {
  min-height: 62px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.04rem, 1.45vw, 1.22rem);
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.questionnaire-next,
.questionnaire-submit {
  flex: 1 1 auto;
  border: 1.5px solid #79a93e;
  background: linear-gradient(180deg, #7fb644 0%, #6ea63a 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(110, 166, 58, 0.22);
  animation: questionnaire-cta-pulse 2.2s ease-in-out infinite;
}

.questionnaire-next:hover,
.questionnaire-submit:hover {
  background: linear-gradient(180deg, #87be4c 0%, #74ac40 100%);
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 18px 32px rgba(110, 166, 58, 0.3);
}

.questionnaire-back {
  flex: 0 0 auto;
  min-width: 122px;
  border: 1.5px solid rgba(245, 242, 238, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #f5f2ee;
}

.questionnaire-back:hover {
  background: rgba(255, 255, 255, 0.09);
}

.questionnaire-reminder {
  margin-top: 28px;
  text-align: center;
}

.questionnaire-reminder-title {
  margin: 0;
  color: #c7ac77;
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.02rem, 1.35vw, 1.34rem);
  font-weight: 700;
  line-height: 1.2;
}

.questionnaire-reminder-text {
  margin: 10px auto 0;
  max-width: 760px;
  color: #ffffff;
  font-family: "Arimo", sans-serif;
  font-size: clamp(0.78rem, 0.98vw, 1rem);
  font-weight: 400;
  line-height: 1.34;
}

.questionnaire-reminder-text strong,
.questionnaire-reminder-text em {
  color: #c7ac77;
  font-style: normal;
  font-weight: 700;
}

.lead-success-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lead-success-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.lead-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(3px);
}

.lead-success-dialog {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  padding: 34px 24px 24px;
  border-radius: 28px;
  background: #242321;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.lead-success-close {
  position: absolute;
  top: 12px;
  left: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #f5f2ee;
  font-size: 1.45rem;
  cursor: pointer;
}

.lead-success-title {
  margin: 0;
  color: #c7ac77;
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}

.lead-success-text {
  margin: 16px 0 0;
  color: #ffffff;
  font-family: "Arimo", sans-serif;
  font-size: 1.08rem;
  line-height: 1.7;
}

.lead-success-button {
  min-width: 170px;
  min-height: 52px;
  margin-top: 24px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: #6ea63a;
  color: #ffffff;
  font-family: "Arimo", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.legal-footer-section {
  padding: 28px 18px 120px;
  background: #1e1e1e;
}

.legal-footer-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 18px 26px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top center, rgba(199, 172, 119, 0.08), transparent 48%),
    #20201f;
  box-shadow:
    0 24px 44px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.legal-footer-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.legal-footer-brand img {
  display: block;
  width: min(340px, 100%);
  height: auto;
}

.legal-footer-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
  align-items: stretch;
}

.legal-contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 146px;
  padding: 24px 24px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  text-align: center;
}

.legal-contact-copy {
  min-width: 0;
  flex: 1 1 auto;
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.legal-contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 172, 119, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.legal-contact-label {
  display: block;
  color: #c7ac77;
  font-family: "Arimo", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.legal-contact-value {
  display: block;
  margin-top: 10px;
  color: #f5f2ee;
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.26rem, 1.7vw, 1.9rem);
  font-weight: 700;
  line-height: 1.35;
  word-break: break-word;
  direction: ltr;
  text-align: center;
}

.legal-contact-icon {
  width: 118px;
  height: 118px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid rgba(245, 242, 238, 0.65);
  color: #f5f2ee;
  flex: 0 0 118px;
  order: 0;
}

.legal-contact-icon svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
}

@keyframes legal-contact-desktop-nudge {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  18% {
    transform: translate3d(-1px, 0, 0) scale(1.03);
  }

  36% {
    transform: translate3d(1px, 0, 0) scale(1.05);
  }

  54% {
    transform: translate3d(-1px, 0, 0) scale(1.03);
  }

  72% {
    transform: translate3d(0, 0, 0) scale(1.01);
  }
}

.legal-footer-grid {
  display: grid;
  gap: 14px;
}

.legal-item {
  border: 1px solid rgba(199, 172, 119, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

@media (min-width: 961px) {
  .legal-contact-item {
    min-height: 170px;
    justify-content: center;
    gap: 0;
    padding: 26px;
  }

  .legal-contact-copy {
    display: none;
  }

  .legal-contact-icon {
    width: 132px;
    height: 132px;
    flex-basis: 132px;
    margin: 0 auto;
    box-shadow:
      0 0 0 0 rgba(199, 172, 119, 0.2),
      0 0 26px rgba(255, 255, 255, 0.08);
    animation: legal-contact-desktop-nudge 2.2s ease-in-out infinite;
  }

  .legal-contact-item:hover .legal-contact-icon {
    box-shadow:
      0 0 0 10px rgba(199, 172, 119, 0.1),
      0 0 30px rgba(255, 255, 255, 0.12);
  }
}

.legal-item[open] {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.legal-item-summary {
  position: relative;
  padding: 20px 56px 20px 20px;
  list-style: none;
  color: #f5f2ee;
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.06rem, 1.4vw, 1.18rem);
  font-weight: 800;
  cursor: pointer;
}

.legal-item-summary::-webkit-details-marker {
  display: none;
}

.legal-item-summary::before,
.legal-item-summary::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #6ea63a;
  transform: translateY(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.legal-item-summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.legal-item[open] .legal-item-summary::after {
  opacity: 0;
}

.legal-item-body {
  padding: 0 20px 22px;
}

.legal-item-body p {
  margin: 0 0 14px;
  color: rgba(245, 242, 238, 0.92);
  font-family: "Arimo", sans-serif;
  font-size: 0.98rem;
  line-height: 1.85;
}

.legal-item-body p:last-child {
  margin-bottom: 0;
}

.legal-item-body a {
  color: #c7ac77;
  text-decoration: none;
}

.legal-item-body a:hover {
  text-decoration: underline;
}

.legal-footer-note {
  margin: 20px auto 0;
  max-width: 820px;
  color: rgba(245, 242, 238, 0.72);
  font-family: "Arimo", sans-serif;
  font-size: 0.88rem;
  line-height: 1.8;
  text-align: center;
}

.legal-footer-warning {
  margin: 18px auto 0;
  max-width: 900px;
  color: rgba(245, 242, 238, 0.64);
  font-family: "Arimo", sans-serif;
  font-size: 0.74rem;
  line-height: 1.9;
  text-align: center;
}

.legal-footer-bottomline {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.legal-footer-bottomline p {
  margin: 0;
  color: rgba(245, 242, 238, 0.7);
  font-family: "Arimo", sans-serif;
  font-size: 0.78rem;
  line-height: 1.85;
}

.legal-footer-bottomline p + p {
  margin-top: 4px;
}

.floating-accessibility,
.floating-whatsapp {
  position: fixed;
  bottom: 18px;
  z-index: 130;
}

.floating-accessibility {
  left: 14px;
}

.floating-accessibility.is-open .floating-accessibility-toggle {
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.28),
    0 0 0 3px rgba(79, 125, 255, 0.22);
}

.floating-accessibility-toggle,
.floating-whatsapp {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.floating-accessibility-toggle {
  border: 0;
  background: linear-gradient(180deg, #3a63ff 0%, #2449d8 100%);
  color: #ffffff;
  cursor: pointer;
}

.floating-accessibility-toggle svg,
.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.floating-accessibility-panel {
  position: absolute;
  left: 0;
  bottom: 76px;
  width: min(360px, calc(100vw - 28px));
  padding: 0;
  border: 1px solid rgba(77, 110, 255, 0.14);
  border-radius: 28px;
  background: linear-gradient(180deg, #e7eaff 0%, #dfe4ff 100%);
  box-shadow: 0 24px 44px rgba(19, 31, 90, 0.28);
  display: grid;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transform-origin: bottom left;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-accessibility-panel-head {
  padding: 18px 18px 16px;
  border-radius: 28px 28px 22px 22px;
  background: linear-gradient(180deg, #3c49d8 0%, #2e3fd0 100%);
  color: #ffffff;
  position: relative;
}

.floating-accessibility-panel-head::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 88px;
  height: 12px;
  border-radius: 999px 999px 0 0;
  background: #dfe4ff;
  transform: translateX(-50%);
}

.floating-accessibility-panel-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.floating-accessibility-toolbar-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.4);
}

.floating-accessibility-panel-toolbar button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.floating-accessibility-panel-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.floating-accessibility-panel-head h3 {
  margin: 0;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  text-align: right;
}

.floating-accessibility-panel-title-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #2e3fd0;
  box-shadow: 0 8px 20px rgba(13, 28, 93, 0.18);
}

.floating-accessibility-panel-title-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.floating-accessibility-panel-body {
  display: grid;
  gap: 16px;
  padding: 18px 16px 16px;
}

.floating-accessibility-group {
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 8px 20px rgba(57, 72, 146, 0.08);
}

.floating-accessibility-group h4 {
  margin: 0 0 12px;
  color: #54546a;
  font-size: 1rem;
  font-weight: 800;
  text-align: right;
}

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

.floating-accessibility-grid-text .floating-accessibility-card-size {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.floating-accessibility-size {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.floating-accessibility-size button {
  min-height: 40px;
  border: 1px solid rgba(62, 78, 224, 0.16);
  border-radius: 12px;
  background: #f2f3f7;
  color: #2a2b35;
  font-family: "Arimo", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.floating-accessibility-size button.is-active {
  background: #ffffff;
  border-color: #4056ef;
  color: #2f44e1;
  box-shadow:
    0 0 0 3px rgba(64, 86, 239, 0.18),
    0 10px 20px rgba(49, 69, 196, 0.14);
}

.floating-accessibility-card {
  min-height: 98px;
  padding: 16px 18px;
  border: 1px solid rgba(62, 78, 224, 0.12);
  border-radius: 22px;
  background: #f2f3f7;
  color: #272935;
  font-family: "Arimo", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.floating-accessibility-card::after {
  content: attr(data-card-icon);
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #32354b;
  font-size: 1.16rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(47, 68, 194, 0.08);
}

.floating-accessibility-card:hover,
.floating-accessibility-size button:hover,
.floating-accessibility-reset:hover {
  transform: translateY(-1px);
}

.floating-accessibility-card.is-active {
  background: #ffffff;
  border-color: #4056ef;
  color: #3046e5;
  box-shadow:
    0 0 0 3px rgba(64, 86, 239, 0.16),
    0 12px 22px rgba(49, 69, 196, 0.12);
}

.floating-accessibility-card-size {
  min-height: 206px;
  padding: 16px 18px 20px;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  gap: 14px;
}

.floating-accessibility-card-size.is-active {
  background: #ffffff;
}

.floating-accessibility-card-text {
  padding-right: 52px;
}

.floating-accessibility-card-caption {
  display: block;
  color: #2b2d39;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
}

.floating-accessibility-card-icon-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #3a4ceb;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(47, 68, 194, 0.08);
}

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

.floating-accessibility-panel-foot {
  padding: 0 16px 16px;
}

.floating-accessibility-reset {
  width: 100%;
  min-height: 54px;
  border: 1px solid #4056ef;
  border-radius: 18px;
  background: #ffffff;
  color: #3046e5;
  font-family: "Arimo", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(49, 69, 196, 0.1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.floating-accessibility-panel:not([hidden]) {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.accessibility-reading-guide {
  position: fixed;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 180;
  height: 42px;
  pointer-events: none;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 160ms ease;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(168, 221, 102, 0.16) 28%,
      rgba(168, 221, 102, 0.24) 52%,
      rgba(255, 255, 255, 0) 100%
    );
}

.accessibility-reading-guide::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 3px;
  background: rgba(143, 212, 93, 0.86);
  transform: translateY(-50%);
}

.accessibility-reading-guide.is-active {
  opacity: 1;
}

.floating-whatsapp {
  right: 14px;
  width: 66px;
  height: 66px;
  background: linear-gradient(180deg, #31d366 0%, #20b558 100%);
  color: #ffffff;
  text-decoration: none;
  animation: whatsapp-pulse 1.9s ease-in-out infinite;
}

.floating-whatsapp:hover,
.floating-accessibility-toggle:hover {
  transform: translateY(-2px);
}

.black-section-heading-image {
  display: block;
  width: min(860px, 100%);
  margin: 0 auto;
  height: auto;
}

.offer-cards {
  display: grid;
  gap: 22px;
  max-width: 980px;
  margin: 52px auto 0;
}

.offer-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 26px 24px;
  border-radius: 28px;
  background: #262626;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.offer-card p {
  margin: 0;
  color: #f5f2ee;
  font-family: "Arimo", sans-serif;
  font-size: clamp(1.12rem, 1.68vw, 1.42rem);
  font-weight: 500;
  line-height: 1.75;
}

.offer-card strong {
  position: relative;
  display: inline-block;
  margin-bottom: 1px;
  color: #c7ac77;
  font-size: 1.12em;
  font-weight: 800;
}

.offer-card strong::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: #669e3d;
  transform-origin: right center;
  transform: scaleX(0);
  opacity: 0.25;
  transition: transform 0.6s ease, opacity 0.25s ease;
}

.offer-card strong.is-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.offer-card-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7ab33f;
  font-family: "Arimo", sans-serif;
  font-size: 2.1rem;
  line-height: 1;
  animation: offer-check-loop 3s ease-in-out infinite;
}

.growth-banner-image {
  display: block;
  width: min(646px, 78.2%);
  margin: 82px auto 0;
  height: auto;
  animation: growth-banner-pulse 2.8s ease-in-out infinite;
}

@media (max-width: 720px) {
  .questionnaire-section {
    padding: 24px 12px 84px;
  }

  .process-section {
    padding: 0 14px 44px;
    margin-top: -10px;
  }

  .questionnaire-intro {
    margin-bottom: 24px;
  }

  .questionnaire-card {
    padding: 20px 16px 22px;
    border-radius: 26px;
    margin-top: 18px;
  }

  .questionnaire-card-intro {
    margin-bottom: 24px;
  }

  .questionnaire-progress {
    gap: 8px;
    margin-bottom: 24px;
  }

  .questionnaire-progress::before {
    left: 9%;
    right: 9%;
  }

  .questionnaire-step-indicator {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .questionnaire-step-title {
    margin-bottom: 20px;
    font-size: clamp(1.46rem, 7vw, 2.15rem);
  }

  .questionnaire-options-inline {
    grid-template-columns: 1fr;
  }

  .questionnaire-option {
    min-height: 60px;
    font-size: 1rem;
  }

  .questionnaire-field input,
  .questionnaire-field select {
    min-height: 56px;
    font-size: 1rem;
  }

  .questionnaire-actions {
    flex-direction: column-reverse;
  }

  .questionnaire-back,
  .questionnaire-next,
  .questionnaire-submit {
    width: 100%;
  }

  .questionnaire-reminder {
    margin-top: 24px;
  }

  .questionnaire-reminder-text {
    font-size: clamp(0.76rem, 3.2vw, 0.92rem);
  }

  .legal-footer-section {
    padding: 22px 12px 92px;
  }

  .legal-footer-shell {
    padding: 26px 14px 22px;
    border-radius: 28px;
  }

  .legal-footer-brand {
    margin-bottom: 18px;
  }

  .legal-footer-brand img {
    width: min(250px, 88%);
  }

  .legal-footer-contact {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 18px;
  }

  .legal-contact-item {
    min-height: 118px;
    padding: 16px 14px;
    border-radius: 20px;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .legal-contact-copy {
    width: 100%;
    order: 2;
    text-align: center;
  }

  .legal-contact-label {
    text-align: center;
  }

  .legal-contact-value {
    font-size: 1rem;
    margin-top: 6px;
    line-height: 1.3;
    text-align: center;
    direction: ltr;
  }

  .legal-contact-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    order: 1;
  }

  .legal-contact-icon svg {
    width: 23px;
    height: 23px;
  }

  .legal-item {
    border-radius: 20px;
  }

  .legal-item-summary {
    padding: 18px 48px 18px 18px;
    font-size: 1rem;
  }

  .legal-item-summary::before,
  .legal-item-summary::after {
    left: 18px;
    width: 12px;
  }

  .legal-item-body {
    padding: 0 18px 20px;
  }

  .legal-item-body p {
    font-size: 0.93rem;
    line-height: 1.8;
  }

  .legal-footer-note {
    font-size: 0.82rem;
  }

  .legal-footer-warning {
    font-size: 0.69rem;
    line-height: 1.8;
  }

  .legal-footer-bottomline p {
    font-size: 0.72rem;
  }

  .questionnaire-back {
    min-width: 0;
  }

  .floating-accessibility,
  .floating-whatsapp {
    bottom: 14px;
  }

  .floating-accessibility {
    left: 10px;
  }

  .floating-whatsapp {
    right: 10px;
  }

  .floating-accessibility-toggle,
  .floating-whatsapp {
    width: 50px;
    height: 50px;
  }

  .floating-accessibility-toggle svg,
  .floating-whatsapp svg {
    width: 30px;
    height: 30px;
  }

  .floating-accessibility-toggle {
    width: 50px;
    height: 50px;
  }

  .floating-whatsapp {
    width: 58px;
    height: 58px;
  }

  .floating-accessibility-panel {
    width: min(332px, calc(100vw - 24px));
    bottom: 66px;
    border-radius: 24px;
  }

  .floating-accessibility-grid {
    grid-template-columns: 1fr;
  }

  .floating-accessibility-grid-text .floating-accessibility-card-size {
    grid-column: auto;
    grid-row: auto;
    min-height: 170px;
  }

  .floating-accessibility-size button {
    min-height: 50px;
    font-size: 0.94rem;
  }

  .floating-accessibility-card {
    min-height: 84px;
    font-size: 0.92rem;
  }

  .floating-accessibility-panel-head h3 {
    font-size: 1.72rem;
  }

}

@keyframes companies-marquee-primary {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes cta-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 26px rgba(110, 166, 58, 0.22);
  }

  50% {
    transform: scale(1.028);
    box-shadow: 0 16px 34px rgba(110, 166, 58, 0.3);
  }
}

@keyframes cta-shine {
  0%,
  16% {
    left: -32%;
    opacity: 0;
  }

  24% {
    opacity: 1;
  }

  44% {
    left: 116%;
    opacity: 0;
  }

  100% {
    left: 116%;
    opacity: 0;
  }
}

@keyframes story-highlight-loop {
  0%,
  12% {
    transform: scaleX(0);
    opacity: 0;
  }

  20%,
  72% {
    transform: scaleX(1);
    opacity: 1;
  }

  84%,
  100% {
    transform: scaleX(0);
    opacity: 0;
  }
}

@keyframes dark-x-loop {
  0%,
  14% {
    opacity: 0;
    transform: translateY(2px) scale(0.72);
  }

  24%,
  72% {
    opacity: 1;
    transform: translateY(2px) scale(1);
  }

  84%,
  100% {
    opacity: 0;
    transform: translateY(2px) scale(0.72);
  }
}

@keyframes fade-in-soft {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes review-glow-drift {
  0%,
  100% {
    opacity: 0.42;
    transform: translate3d(-8px, -4px, 0) scale(1);
  }

  50% {
    opacity: 0.72;
    transform: translate3d(10px, 6px, 0) scale(1.04);
  }
}

@keyframes truth-arrow-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

@keyframes growth-banner-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.025);
  }
}

@keyframes questionnaire-cta-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 14px 28px rgba(110, 166, 58, 0.22);
  }

  50% {
    transform: scale(1.022);
    box-shadow: 0 20px 36px rgba(110, 166, 58, 0.34);
  }
}

@keyframes title-underline-glow {
  0%,
  100% {
    transform: scaleX(0.94);
    opacity: 0.72;
    filter: drop-shadow(0 0 0 rgba(199, 172, 119, 0));
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(199, 172, 119, 0.34));
  }
}

@keyframes process-title-line {
  0%,
  100% {
    opacity: 0.68;
    transform: translateX(50%) scaleX(0.94);
    box-shadow: 0 0 0 rgba(199, 172, 119, 0);
  }

  50% {
    opacity: 1;
    transform: translateX(50%) scaleX(1);
    box-shadow: 0 0 14px rgba(199, 172, 119, 0.22);
  }
}

@keyframes process-check-pulse {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 6px 14px rgba(110, 166, 58, 0.24);
  }

  50% {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 10px 18px rgba(110, 166, 58, 0.34);
  }
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 16px 28px rgba(32, 181, 88, 0.26);
  }

  50% {
    transform: scale(1.06);
    box-shadow: 0 22px 36px rgba(32, 181, 88, 0.38);
  }
}

@keyframes offer-check-loop {
  0%,
  14% {
    opacity: 0;
    transform: scale(0.7);
  }

  24%,
  74% {
    opacity: 1;
    transform: scale(1);
  }

  84%,
  100% {
    opacity: 0;
    transform: scale(0.7);
  }
}

@keyframes companies-marquee-secondary {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 960px) {
  .header-inner {
    min-height: 66px;
    padding: 0 18px;
    grid-template-columns: 60px 1fr 60px;
  }

  .brand img {
    max-width: min(330px, 46vw);
  }

  .companies-flow {
    gap: 28px;
    padding: 8px 18px;
  }

  .companies-strip {
    top: 192px;
  }

  .companies-marquee {
    height: 52px;
  }

  .company-logo {
    font-size: 1.45rem;
  }

  .hero-section {
    padding: 0;
  }

  .hero-image {
    height: calc(100vh - 66px);
    min-height: 660px;
  }

  .hero-text-strip {
    top: 226px;
    width: min(920px, calc(100% - 36px));
    font-size: 1.1rem;
    line-height: 1.76;
    margin-bottom: 28px;
  }

  .hero-main-copy {
    top: 398px;
    width: min(920px, calc(100% - 36px));
    font-size: 2.24rem;
    line-height: 1.24;
  }

  .hero-benefits-line {
    top: 612px;
    width: min(900px, calc(100% - 36px));
    gap: 12px;
    font-size: 1.02rem;
  }

  .reviews-carousel {
    width: min(980px, calc(100% - 16px));
    margin-top: -108px;
  }

  .reviews-carousel-stage {
    height: clamp(360px, 58vw, 620px);
  }

  .content-placeholder {
    min-height: 640px;
    padding: 28px 0 56px;
  }

  .hero-extension {
    height: 0;
    margin-bottom: 0;
  }

  .service-copy-text {
    font-size: clamp(1.75rem, 3.1vw, 2.6rem);
  }

}

@media (min-width: 961px) {
  .hero-benefits-line {
    top: 724px;
  }

  .reviews-carousel {
    margin-top: 36px;
  }
}

@media (max-width: 560px) {
  .site-header {
    background: #1e1e1e;
  }

  .header-inner {
    max-width: none;
    min-height: 90px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: ltr;
    gap: 12px;
  }

  .menu-toggle {
    order: 2;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 10px;
    box-shadow: 0 0 0 2px rgba(46, 118, 255, 0.9);
  }

  .menu-toggle span {
    width: 24px;
    height: 3px;
  }

  .phone-link {
    order: 3;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #7ab33f;
    color: #ffffff;
  }

  .phone-link svg {
    width: 26px;
    height: 26px;
  }

  .brand {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: flex-start;
  }

  .brand img {
    width: auto;
    max-width: 250px;
    max-height: 74px;
  }

  .companies-flow {
    gap: 22px;
    padding: 6px 14px;
  }

  .companies-strip {
    top: 172px;
  }

  .companies-marquee {
    height: 42px;
  }

  .company-logo {
    font-size: 1.02rem;
  }

  .hero-section {
    padding: 0;
  }

  .hero-image {
    height: calc(100vh - 56px);
    min-height: 580px;
  }

  .hero-text-strip {
    top: 196px;
    width: calc(100% - 24px);
    font-size: 1rem;
    line-height: 1.68;
    letter-spacing: 0.02em;
    margin-bottom: 22px;
  }

  .hero-main-copy {
    top: 342px;
    width: calc(100% - 24px);
    font-size: 1.52rem;
    line-height: 1.22;
  }

  .hero-benefits-line {
    top: 526px;
    width: calc(100% - 24px);
    gap: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-badge {
    margin: 0 6px;
    padding: 3px 10px 4px;
    border-radius: 10px;
  }

  .hero-image-wrap::before {
    height: 86px;
  }

  .content-placeholder {
    min-height: 520px;
    padding: 22px 0 42px;
  }

  .hero-extension {
    height: 0;
    margin-bottom: 0;
  }

  .service-copy {
    margin-top: 96px;
    padding: 0 14px;
  }

  .service-copy-animated {
    min-height: 2.75rem;
    padding: 0 6px 3px;
  }

  .service-copy-text {
    font-size: 1.55rem;
    line-height: 1.18;
  }

  .service-copy-strike {
    height: 3px;
  }

  .service-copy-static {
    font-size: 1.32rem;
    margin-top: 2px;
  }

  .service-copy-underline {
    width: min(220px, 68vw);
    height: 14px;
    margin-top: -2px;
  }

  .service-copy-cta {
    width: calc(100% - 12px);
    padding: 16px 18px;
    font-size: 1.08rem;
  }

  .service-copy-cta-wrap {
    width: calc(100% - 12px);
    margin-top: 58px;
  }

  .lead-form-anchor {
    min-height: 40vh;
    scroll-margin-top: 104px;
    padding: 42px 14px 54px;
  }

  .story-title {
    max-width: 100%;
    font-size: 1.96rem;
    line-height: 1.18;
  }

  .story-lead {
    margin-top: 28px;
    font-size: 1.28rem;
  }

  .story-text {
    font-size: 1rem;
    line-height: 1.72;
  }

  .story-cards {
    gap: 16px;
    margin-top: 34px;
  }

  .story-card {
    padding: 24px 18px;
    border-radius: 18px;
    font-size: 1.08rem;
    line-height: 1.5;
  }

  .stress-banner-section {
    padding-top: 0;
  }

  .stress-banner-image {
    width: 100%;
  }

  .dark-transition-notch {
    height: 92px;
    clip-path: polygon(0 0, 100% 0, 100% 34%, 50% 100%, 0 34%);
  }

  .dark-transition-section {
    margin-top: 28px;
  }

  .dark-transition-content {
    min-height: 46vh;
    padding: 30px 14px 64px;
  }

  .dark-panel {
    padding: 28px 18px 34px;
    border-radius: 28px;
  }

  .dark-section-title {
    font-size: 1.86rem;
    line-height: 1.22;
  }

  .dark-section-subtitle {
    margin-top: 16px;
    font-size: 1.08rem;
  }

  .dark-problem-list {
    gap: 22px;
    margin-top: 28px;
  }

  .dark-problem-item {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
  }

  .dark-problem-item p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .dark-problem-x {
    font-size: 2.5rem;
  }

  .dark-section-closing {
    margin-top: 30px;
    font-size: 1.16rem;
    line-height: 1.65;
  }

  .dark-section-cta-wrap {
    margin-top: 28px;
  }

  .dark-section-cta {
    width: 100%;
    min-height: 58px;
    padding: 14px 18px;
    font-size: 1.02rem;
  }

  .light-transition-notch {
    height: 72px;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 50% 100%, 0 30%);
  }

  .light-transition-content {
    min-height: 22vh;
  }

  .bottom-reviews-section {
    padding: 6px 14px 64px;
  }

  .bottom-reviews-title {
    font-size: 1.48rem;
    transform: translateY(-68px);
  }

  .bottom-reviews-heading {
    margin-bottom: -2px;
  }

  .bottom-reviews-lines {
    width: min(260px, 74vw);
    margin-top: -2px;
    transform: translateY(-68px);
  }

  .bottom-reviews-carousel {
    width: 100%;
    overflow: visible;
  }

  .bottom-reviews-stage {
    height: 430px;
  }

  .bottom-review-card {
    width: 220px;
    border-radius: 18px;
  }

  .bottom-review-card.is-left {
    transform: translateX(calc(-50% - 104px)) scale(0.84);
  }

  .bottom-review-card.is-right {
    transform: translateX(calc(-50% + 104px)) scale(0.84);
  }

  .truth-section {
    margin-top: 124px;
  }

  .truth-title {
    font-size: 1.72rem;
    line-height: 1.22;
  }

  .truth-title-line {
    width: min(320px, 88vw);
    height: 5px;
    margin-top: 4px;
  }

  .truth-text {
    margin-top: 30px;
    font-size: 1rem;
    line-height: 1.78;
  }

  .truth-arrow-image {
    width: min(314px, 82.5vw);
    margin-top: 48px;
  }

  .reviews-dark-transition {
    margin-top: -40px;
  }

  .reviews-dark-transition-notch {
    height: 92px;
    clip-path: polygon(0 0, 100% 0, 100% 34%, 50% 100%, 0 34%);
  }

  .reviews-dark-transition-fill {
    min-height: 22vh;
    padding: 19px 14px 38px;
  }

  .reviews-dark-transition-end {
    height: 92px;
    clip-path: polygon(0 34%, 50% 100%, 100% 34%, 100% 100%, 0 100%);
  }

  .black-section-heading-image {
    width: 100%;
  }

  .offer-cards {
    gap: 16px;
    margin-top: 38px;
  }

  .offer-card {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 10px;
    padding: 22px 16px;
    border-radius: 22px;
  }

  .offer-card p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .offer-card strong {
    margin-bottom: 0;
    font-size: 1.08em;
  }

  .offer-card strong::after {
    bottom: -2px;
    height: 2px;
  }

  .offer-card-check {
    font-size: 1.7rem;
  }

  .growth-banner-image {
    width: 78.2%;
    margin-top: 64px;
  }


  .reviews-carousel {
    width: calc(100% - 12px);
    margin-top: -86px;
  }

  .reviews-carousel-stage {
    height: 360px;
  }

  .reviews-carousel-card {
    width: 346px;
    border-radius: 14px;
  }

  .reviews-carousel-card.is-left {
    transform: translateX(calc(-50% - 122px)) scale(0.9);
  }

  .reviews-carousel-card.is-right {
    transform: translateX(calc(-50% + 122px)) scale(0.9);
  }

  .reviews-carousel-image {
    width: 100%;
    border-radius: 14px;
  }
}
