/* ================= HERO ================= */
.hero {
  position: relative;
  height: 100svh;
  min-height: 60rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ================= FULL-BLEED VIDEO ================= */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

/* Legibility + edge blending: left wash for the headline,
   top fade under the navbar, bottom fade into the next section */
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(252, 255, 253, 0.35) 30%, transparent 55%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent 12%),
    linear-gradient(to top, var(--porcelain), transparent 10%);
  pointer-events: none;
}

/* ================= HEADLINE (LEFT) ================= */
.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  padding-left: 4rem;
  max-width: 86rem;
}

.hero-tagline {
  font-size: 1.5rem;
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 7.8rem;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  /* luminous halo lifts the headline off the bright footage */
  text-shadow:
    0 0 3rem rgba(255, 255, 255, 0.95),
    0 0 8rem rgba(255, 255, 255, 0.7);
}

.hero-sub {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.85;
  text-shadow: 0 0 2.4rem rgba(255, 255, 255, 0.9);
  max-width: 46rem;
}

/* brighter glass on the hero */
.hero .tag-chip {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(21, 128, 61, 0.22);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 0.4rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-trust__stars {
  display: inline-flex;
  gap: 0.25rem;
  color: #eba83a;
}

.hero-trust__stars svg {
  width: 1.5rem;
  height: 1.5rem;
}

.hero-trust__text {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.8;
  text-shadow: 0 0 2rem rgba(255, 255, 255, 0.9);
}

.hero-trust__text strong {
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

/* Signature: light catching clean fabric */
.hero-h1__shine {
  font-family: inherit;
  font-weight: inherit;
  background: linear-gradient(
    100deg,
    var(--azure) 18%,
    var(--aqua) 36%,
    #8fd9a6 50%,
    var(--aqua) 64%,
    var(--azure) 82%
  );
  background-size: 220% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine-sweep 6s var(--ease) infinite;
}

@keyframes shine-sweep {
  0% {
    background-position: 110% 0;
  }
  45%,
  100% {
    background-position: -60% 0;
  }
}

/* ================= FLOATING CHIPS ================= */
.hero-chip {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.9rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1.6rem 4rem rgba(12, 40, 25, 0.12);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
}

.hero-chip__dot {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(12, 40, 25, 0.12);
}

.hero-chip__dot.is--white {
  background: #fff;
}

.hero-chip__dot.is--sky {
  background: var(--sky);
}

.hero-chip__dot.is--mint {
  background: var(--aqua);
}

/* ================= BUBBLES ================= */
.hero-bubbles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.bubble {
  position: absolute;
  left: var(--bx);
  top: var(--by);
  width: var(--bs);
  height: var(--bs);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.95), rgba(196, 232, 208, 0.25) 55%, rgba(255, 255, 255, 0) 72%);
  box-shadow:
    inset 0 0 0.4rem rgba(255, 255, 255, 0.9),
    inset -0.3rem -0.3rem 0.8rem rgba(110, 180, 140, 0.25),
    0 0.4rem 1.2rem rgba(12, 40, 25, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

/* ================= CARE COPY (RIGHT) ================= */
.hero-bottom {
  position: absolute;
  right: 4rem;
  bottom: 5rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.4rem;
  max-width: 38rem;
  text-align: right;
  padding: 2.4rem 2.8rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2rem 5rem rgba(12, 40, 25, 0.1);
}

.hero-bottom__chips {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
}

.hero-bottom__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.hero-bottom__copy {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ================= SCROLL HINT ================= */
.hero-scrollhint {
  position: absolute;
  left: 4.6rem;
  bottom: 5rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-scrollhint span {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero-scrollhint i {
  width: 1px;
  height: 5rem;
  background: linear-gradient(to bottom, var(--azure), transparent);
  animation: hint-drop 2.2s var(--ease) infinite;
  transform-origin: top;
}

@keyframes hint-drop {
  0% {
    transform: scaleY(0);
  }
  45% {
    transform: scaleY(1);
    transform-origin: top;
  }
  46% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ================= MARQUEE RIBBON ================= */
.marquee {
  position: relative;
  z-index: 6;
  overflow: hidden;
  padding: 1.7rem 0;
  background: linear-gradient(100deg, var(--azure), var(--aqua));
  transform: rotate(-1.2deg) scale(1.03);
  box-shadow: 0 1.6rem 4rem rgba(21, 128, 61, 0.3);
  margin-top: -3rem;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-right: 4rem;
}

.marquee-item {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.marquee-spark {
  width: 1.5rem;
  height: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}

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

/* ================= AURORA BLOBS ================= */
.section-blob {
  position: absolute;
  width: 46rem;
  height: 46rem;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: blob-drift 16s ease-in-out infinite alternate;
}

.section-blob.is--one {
  top: 6%;
  left: -12rem;
  background: rgba(21, 128, 61, 0.16);
}

.section-blob.is--two {
  bottom: 4%;
  right: -14rem;
  background: rgba(94, 199, 128, 0.18);
  animation-delay: -8s;
}

.section-blob.is--three {
  top: 20%;
  right: -10rem;
  background: rgba(21, 128, 61, 0.13);
  animation-delay: -4s;
}

@keyframes blob-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(6rem, -4rem) scale(1.18);
  }
}

/* ================= SHARED SECTION SCAFFOLD ================= */
.section-container {
  max-width: 152rem;
  margin: 0 auto;
  padding: 12rem 4rem;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  text-align: center;
  margin-bottom: 7rem;
}

.section-head__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 5.6rem;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-head__sub {
  font-size: 1.7rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52rem;
}

/* ================= WHY INSTA WHITE ================= */
.why {
  position: relative;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 38% at 50% 12%, rgba(232, 245, 236, 0.9), transparent 75%),
    radial-gradient(36% 30% at 85% 70%, rgba(94, 199, 128, 0.1), transparent 75%),
    radial-gradient(36% 30% at 12% 55%, rgba(21, 128, 61, 0.08), transparent 75%);
  pointer-events: none;
}

.why .section-container {
  position: relative;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 8rem;
  border-top: 1px solid rgba(12, 40, 25, 0.08);
  border-bottom: 1px solid rgba(12, 40, 25, 0.08);
}

.why-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 3.6rem 2rem;
}

.why-stat + .why-stat {
  border-left: 1px solid rgba(12, 40, 25, 0.08);
}

.why-stat__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 5.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--azure), var(--aqua));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}

.why-stat__label {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

.why-card {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 3.2rem 2.8rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 1.6rem 4rem rgba(12, 40, 25, 0.06);
  /* transform is owned by the JS tilt — CSS only transitions the shadow */
  transition: box-shadow 0.5s ease;
}

.why-card:hover {
  box-shadow: 0 2.4rem 5.6rem rgba(21, 128, 61, 0.14);
}

.why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 1.4rem;
  background: linear-gradient(140deg, var(--glow), #def2e2);
  color: var(--azure);
}

.why-card__icon svg {
  width: 2.4rem;
  height: 2.4rem;
}

.why-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.1rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.why-card__copy {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ================= SERVICES WHEEL ================= */
.services {
  position: relative;
}

.section-blob.is--four {
  top: 30%;
  left: -14rem;
  background: rgba(94, 199, 128, 0.14);
  animation-delay: -11s;
}

.services-wheel {
  --size: 58rem;
  position: relative;
  width: var(--size);
  margin: 3rem auto 0;
  padding-top: 3.4rem;
}

.wheel-pointer {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 2rem;
  color: var(--azure);
  animation: pointer-pulse 2.4s var(--ease) infinite;
}

@keyframes pointer-pulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.25) rotate(45deg);
  }
}

.wheel {
  position: relative;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 2px dashed rgba(21, 128, 61, 0.35);
  background: radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.7), rgba(232, 245, 236, 0.25) 60%, transparent 75%);
  cursor: grab;
  touch-action: none;
}

.wheel:active {
  cursor: grabbing;
}

.wheel-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10.4rem;
  height: 10.4rem;
  margin: -5.2rem 0 0 -5.2rem;
  transform: rotate(var(--a)) translateY(calc(var(--size) / -2));
  pointer-events: none;
}

.wheel-node__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(21, 128, 61, 0.2);
  box-shadow: 0 1.2rem 3rem rgba(21, 128, 61, 0.14);
  color: var(--azure);
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.wheel-node__icon {
  display: inline-flex;
  width: 2.8rem;
  height: 2.8rem;
}

.wheel-node__icon svg {
  width: 100%;
  height: 100%;
}

.wheel-node__label {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.4s ease;
}

.wheel-node.is--active .wheel-node__inner {
  background: linear-gradient(140deg, var(--azure), var(--aqua));
  border-color: transparent;
  box-shadow: 0 1.6rem 4rem rgba(21, 128, 61, 0.45);
  color: #fff;
}

.wheel-node.is--active .wheel-node__label {
  color: rgba(255, 255, 255, 0.95);
}

.wheel-center {
  position: absolute;
  top: 3.4rem;
  left: 0;
  width: var(--size);
  height: var(--size);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  text-align: center;
  padding: 0 9rem;
  pointer-events: none;
}

.wheel-center__index {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--azure);
  font-variant-numeric: tabular-nums;
}

.wheel-center__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.wheel-center__copy {
  font-size: 1.5rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 32rem;
}

.wheel-controls {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem;
  pointer-events: auto;
}

.wheel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(21, 128, 61, 0.25);
  color: var(--ink);
  box-shadow: 0 1rem 2.6rem rgba(21, 128, 61, 0.14);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.wheel-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.wheel-btn:hover {
  background: linear-gradient(140deg, var(--azure), var(--aqua));
  border-color: transparent;
  color: #fff;
}

/* ================= HOW IT WORKS ================= */
.how {
  position: relative;
  background: linear-gradient(to bottom, transparent, rgba(232, 245, 236, 0.55) 30%, rgba(217, 246, 251, 0.3) 60%, transparent);
}

.how-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  counter-reset: step;
}

/* dashed route connecting the steps, hidden behind the cards */
.how-steps::before {
  content: "";
  position: absolute;
  top: 6.4rem;
  left: 10%;
  right: 10%;
  border-top: 2px dashed rgba(21, 128, 61, 0.45);
}

.how-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 3.2rem 3rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 1.6rem 4rem rgba(12, 40, 25, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.how-step__num {
  position: absolute;
  top: 2rem;
  right: 2.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 4.6rem;
  line-height: 1;
  color: rgba(21, 128, 61, 0.28);
  font-variant-numeric: tabular-nums;
}

.how-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--azure), var(--aqua));
  color: #fff;
  box-shadow: 0 1rem 2.6rem rgba(21, 128, 61, 0.4);
}

.how-step__icon svg {
  width: 2.8rem;
  height: 2.8rem;
}

.how-step__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.4rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.how-step__copy {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.how-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  margin-top: 7rem;
}

.how-cta__note {
  font-size: 1.4rem;
  color: var(--ink-soft);
}

/* ================= IMAGE PLACEHOLDERS ================= */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
  border-radius: 2.4rem;
  border: 2px dashed rgba(21, 128, 61, 0.45);
  background: linear-gradient(140deg, rgba(232, 245, 236, 0.7), rgba(217, 246, 251, 0.55));
  color: var(--ink-soft);
  text-align: center;
  padding: 2rem;
}

.img-placeholder svg {
  width: 3.2rem;
  height: 3.2rem;
  color: var(--azure);
}

.img-placeholder span {
  font-size: 1.35rem;
  font-weight: 500;
}

.img-placeholder.is--45 {
  aspect-ratio: 4 / 5;
}

.img-placeholder.is--11 {
  aspect-ratio: 1 / 1;
}

/* ================= SPLIT SECTIONS (commitment / your way) ================= */
.split {
  position: relative;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 8rem;
  align-items: center;
}

.split.is--reverse .split-grid {
  grid-template-columns: 1.1fr 1fr;
}

.split__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.split__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 5rem;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.split__copy {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 48rem;
}

.split__list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.split__list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
}

.split__list svg {
  width: 2.2rem;
  height: 2.2rem;
  padding: 0.4rem;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--azure), var(--aqua));
  color: #fff;
  flex-shrink: 0;
}

/* preference chips */
.pref-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 48rem;
}

.pref-chip {
  padding: 1.1rem 1.9rem;
  border-radius: 99rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(21, 128, 61, 0.25);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pref-chip:hover {
  border-color: rgba(21, 128, 61, 0.5);
}

.pref-chip.is--on {
  background: linear-gradient(120deg, var(--azure), var(--aqua));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0.8rem 2.2rem rgba(21, 128, 61, 0.3);
}

.pref-note {
  font-size: 1.3rem;
  color: var(--ink-soft);
  opacity: 0.8;
}

/* ================= TESTIMONIALS ================= */
.quotes {
  position: relative;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.quote-card {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  padding: 3.2rem 3rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 1.6rem 4rem rgba(12, 40, 25, 0.06);
  transition: box-shadow 0.5s ease;
}

.quote-card:hover {
  box-shadow: 0 2.4rem 5.6rem rgba(21, 128, 61, 0.14);
}

.quote-card__stars {
  display: inline-flex;
  gap: 0.3rem;
  color: #eba83a;
}

.quote-card__stars svg {
  width: 1.6rem;
  height: 1.6rem;
}

.quote-card__text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--ink);
}

.quote-card__who {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: auto;
}

.quote-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--azure), var(--aqua));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.8rem;
}

.quote-card__who span:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.quote-card__who strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}

.quote-card__who em {
  font-style: normal;
  font-size: 1.3rem;
  color: var(--azure);
  font-weight: 500;
}

/* ================= FAQ ================= */
.faq-list {
  max-width: 86rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.faq-item {
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 1rem 3rem rgba(12, 40, 25, 0.05);
  overflow: hidden;
  transition: box-shadow 0.4s ease;
}

.faq-item.is--open {
  box-shadow: 0 1.6rem 4rem rgba(21, 128, 61, 0.12);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  padding: 2.2rem 2.8rem;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.9rem;
  color: var(--ink);
}

.faq-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: var(--glow);
  transition: background 0.3s ease;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.4rem;
  height: 2px;
  border-radius: 2px;
  background: var(--azure);
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease), background 0.3s ease;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is--open .faq-item__icon {
  background: linear-gradient(140deg, var(--azure), var(--aqua));
}

.faq-item.is--open .faq-item__icon::before,
.faq-item.is--open .faq-item__icon::after {
  background: #fff;
}

.faq-item.is--open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-item__a {
  height: 0;
  overflow: hidden;
}

.faq-item__a p {
  padding: 0 2.8rem 2.4rem;
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 70rem;
}

/* ================= FINAL CTA ================= */
.finale-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  padding: 8rem 4rem;
  border-radius: 3.2rem;
  background: linear-gradient(130deg, var(--azure), var(--aqua));
  box-shadow: 0 3rem 8rem rgba(21, 128, 61, 0.35);
}

.finale-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* deep-green tint keeps the white copy crisp over the footage */
.finale-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(130deg, rgba(13, 74, 35, 0.72), rgba(21, 128, 61, 0.45));
  pointer-events: none;
}

.finale-panel > *:not(.finale-video):not(.finale-shade):not(.finale-bubble) {
  position: relative;
  z-index: 2;
}

.finale-bubble {
  z-index: 2;
  position: absolute;
  left: var(--fx);
  top: var(--fy);
  width: var(--fs);
  height: var(--fs);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.15) 60%, transparent 75%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.finale-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 5.4rem;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
}

.finale-copy {
  font-size: 1.7rem;
  color: rgba(255, 255, 255, 0.9);
}

.finale-actions {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

.cta-button.is--inverse {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1.2rem 3rem rgba(8, 42, 23, 0.25);
}

.cta-button.is--inverse .cta-button__icon {
  background: var(--glow);
  color: var(--azure);
}

.finale-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 0.3rem;
  transition: border-color 0.3s ease;
}

.finale-link:hover {
  border-color: #fff;
}

.finale-badges {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.6rem;
}

.badge-placeholder {
  padding: 1.2rem 2rem;
  border-radius: 1.2rem;
  border: 2px dashed rgba(255, 255, 255, 0.55);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.3rem;
  font-weight: 500;
}

/* ================= PORTRAIT ================= */
@media screen and (max-width: 991px) and (orientation: portrait) {
  .hero {
    height: auto;
    min-height: 100svh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding-top: 11rem;
    padding-bottom: 4rem;
  }

  .hero-video::after {
    background:
      linear-gradient(to bottom, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.12) 26%, transparent 45%),
      linear-gradient(to top, var(--porcelain) 0%, rgba(255, 255, 255, 0.5) 26%, transparent 52%);
  }

  .hero-inner {
    padding: 0 2.4rem;
    max-width: 100%;
  }

  .hero-h1 {
    font-size: 5.2rem;
  }

  .hero-sub {
    font-size: 1.6rem;
  }

  .hero-cta-row .cta-button {
    padding: 1.4rem 2.2rem;
  }

  .hero-chip {
    font-size: 1.4rem;
    padding: 1rem 1.6rem;
  }

  /* floating chips collide with the flowing text column on portrait */
  .hero-chip {
    display: none;
  }

  .hero-bottom {
    position: relative;
    right: auto;
    bottom: auto;
    align-items: flex-start;
    text-align: left;
    max-width: none;
    margin: 3rem 2.4rem 0;
    padding: 2rem 2.4rem;
  }

  .hero-bottom__chips {
    justify-content: flex-start;
  }

  .hero-scrollhint {
    display: none;
  }

  .section-container {
    padding: 8rem 2.4rem;
  }

  .section-head {
    margin-bottom: 5rem;
  }

  .section-head__title {
    font-size: 4.2rem;
  }

  .why-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 6rem;
  }

  .why-stat {
    padding: 2.8rem 1.6rem;
  }

  .why-stat:nth-child(3) {
    border-left: none;
  }

  .why-stat:nth-child(n + 3) {
    border-top: 1px solid rgba(12, 40, 25, 0.08);
  }

  .why-stat__value {
    font-size: 4.2rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-wheel {
    --size: 34rem;
    width: 100%;
  }

  .wheel {
    margin: 0 auto;
  }

  .wheel-node {
    width: 7.2rem;
    height: 7.2rem;
    margin: -3.6rem 0 0 -3.6rem;
  }

  .wheel-node__icon {
    width: 2.2rem;
    height: 2.2rem;
  }

  .wheel-node__label {
    display: none;
  }

  /* on small screens the copy moves below the wheel */
  .wheel-center {
    position: static;
    width: auto;
    height: auto;
    padding: 0 2rem;
    margin-top: 3rem;
  }

  .wheel-center__title {
    font-size: 2.6rem;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .how-steps::before {
    display: none;
  }

  .how-cta {
    margin-top: 5rem;
  }

  .split-grid,
  .split.is--reverse .split-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  /* text first on mobile, image after */
  .split.is--reverse .split__media {
    order: 2;
  }

  .split__title {
    font-size: 3.8rem;
  }

  .quotes-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-item__q {
    padding: 1.8rem 2rem;
    font-size: 1.7rem;
  }

  .faq-item__a p {
    padding: 0 2rem 2rem;
  }

  .finale-panel {
    padding: 5rem 2.4rem;
  }

  .finale-title {
    font-size: 3.8rem;
  }
}

@media screen and (min-width: 482px) and (max-width: 991px) and (orientation: portrait) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= REDUCED MOTION ================= */
@media (prefers-reduced-motion: reduce) {
  .hero-h1__shine {
    animation: none;
    background-position: 50% 0;
  }

  .hero-scrollhint i {
    animation: none;
    transform: scaleY(1);
  }

  .marquee-track,
  .section-blob {
    animation: none;
  }
}

/* ================================================================
   SECTION REDESIGN — unique identity per section
   ================================================================ */

/* ---------- shared headers (varied alignments) ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--azure);
}

.eyebrow::before {
  content: "";
  width: 2.6rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--azure), var(--aqua));
}

.sec-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 5.2rem;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.sec-sub {
  font-size: 1.6rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52rem;
}

.sec-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 5.4rem;
}

.sec-row__main {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: flex-start;
}

.sec-side {
  font-size: 1.55rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 34rem;
  padding-bottom: 0.6rem;
}

.sec-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  text-align: center;
  margin-bottom: 6rem;
}

/* ---------- WHY: bento grid ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(20rem, auto);
  gap: 2rem;
}

.bento-tile {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  padding: 2.8rem;
  border-radius: 2.4rem;
  background: #ffffff;
  border: 1px solid rgba(21, 128, 61, 0.14);
  box-shadow: 0 1.6rem 4rem rgba(12, 40, 25, 0.05);
}

.bento-tile::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-18deg);
  transition: left 0.7s var(--ease);
  pointer-events: none;
}

.bento-tile:hover::after {
  left: 130%;
}

.bento-tile.is--hero {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(140deg, var(--azure), var(--aqua));
  border: none;
  box-shadow: 0 2.4rem 6rem rgba(21, 128, 61, 0.35);
}

.bento-tile.is--glow {
  background: linear-gradient(140deg, var(--glow), #e2f4e6);
}

.bento-tile.is--aqua {
  background: linear-gradient(140deg, #dbf2e0, #ecf9ef);
}

.bento-tile.is--ink {
  background: linear-gradient(120deg, var(--ink), #164a2c);
  border: none;
}

.bento-tile.is--wide {
  grid-column: 1 / 5;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 2.4rem;
  padding: 3rem 3.4rem;
}

.bento-wide__text {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-right: auto;
}

.bento-stars {
  display: inline-flex;
  gap: 0.4rem;
  color: #ffd76e;
}

.bento-stars svg {
  width: 2rem;
  height: 2rem;
}

.bento-big {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 8.4rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.bento-big.is--ink {
  font-size: 4.6rem;
  background: linear-gradient(120deg, var(--azure), var(--aqua));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bento-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 1.3rem;
  background: linear-gradient(140deg, var(--glow), #def2e2);
  color: var(--azure);
  margin-bottom: auto;
}

.bento-icon.is--onink {
  background: rgba(255, 255, 255, 0.12);
  color: var(--aqua);
  margin-bottom: 0;
  flex-shrink: 0;
}

.bento-icon svg {
  width: 2.3rem;
  height: 2.3rem;
}

.bento-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2rem;
  color: var(--ink);
}

.bento-copy {
  font-size: 1.45rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.bento-tile.is--hero .bento-copy,
.bento-tile.is--ink .bento-copy {
  color: rgba(255, 255, 255, 0.85);
}

.bento-tile.is--ink .bento-title {
  color: #fff;
}

.bento-tile.is--hero .bento-copy {
  max-width: 30rem;
  font-size: 1.6rem;
}

/* ---------- HOW: staircase + drawn path ---------- */
.stair {
  position: relative;
  padding-bottom: 4rem;
}

.stair-path {
  position: absolute;
  inset: -4rem 0 0;
  width: 100%;
  height: calc(100% + 4rem);
  pointer-events: none;
}

.stair-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.stair-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 3.2rem 3rem;
  border-radius: 2.2rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 2rem 5rem rgba(12, 40, 25, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.stair-step.is--2 {
  margin-top: 10rem;
}

.stair-step.is--3 {
  margin-top: 20rem;
}

.stair-step__num {
  position: absolute;
  top: 1.8rem;
  right: 2.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 4.4rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stair-step.is--1 .stair-step__num { color: rgba(21, 128, 61, 0.25); }
.stair-step.is--2 .stair-step__num { color: rgba(94, 199, 128, 0.35); }
.stair-step.is--3 .stair-step__num { color: rgba(168, 220, 186, 0.6); }

.stair-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 1rem 2.6rem rgba(21, 128, 61, 0.3);
}

.stair-step.is--1 .stair-step__icon { background: linear-gradient(140deg, #15803d, #37a35f); }
.stair-step.is--2 .stair-step__icon { background: linear-gradient(140deg, #2f9d57, #5ec780); }
.stair-step.is--3 .stair-step__icon { background: linear-gradient(140deg, #5ec780, #8fd9a6); }

.stair-step__icon svg {
  width: 2.6rem;
  height: 2.6rem;
}

.stair-step__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.3rem;
  color: var(--ink);
}

.stair-step__copy {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- COMMITMENT: collage ---------- */
.collage {
  position: relative;
  padding: 2rem 3rem 3rem 1rem;
}

.collage-back {
  position: absolute;
  inset: 8% -2% -3% 10%;
  border-radius: 2.6rem;
  background: linear-gradient(140deg, var(--azure), var(--aqua));
  transform: rotate(4deg);
  opacity: 0.85;
}

.collage-frame {
  position: relative;
  background: #fff;
  padding: 1.4rem;
  border-radius: 2.6rem;
  box-shadow: 0 2.6rem 7rem rgba(12, 40, 25, 0.16);
  transform: rotate(-2.5deg);
}

.collage-frame .img-placeholder,
.collage-frame .media-video {
  border-radius: 1.6rem;
}

.collage-badge {
  position: absolute;
  top: -1rem;
  right: 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 10.6rem;
  height: 10.6rem;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--azure), var(--aqua));
  color: #fff;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.15;
  box-shadow: 0 1.6rem 4rem rgba(21, 128, 61, 0.4);
}

.collage-badge svg {
  width: 2rem;
  height: 2rem;
}

/* ---------- YOUR WAY: gradient band ---------- */
.yourway-band {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  padding: 8rem 4rem;
  border-radius: 3.2rem;
  background: linear-gradient(135deg, #ebf7ee, #e0f6e4 55%, #f1faf3);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 8rem rgba(255, 255, 255, 0.7), 0 2rem 6rem rgba(21, 128, 61, 0.12);
}

.yourway-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.yourway-blob.is--a {
  width: 34rem;
  height: 34rem;
  top: -10rem;
  left: -8rem;
  background: rgba(21, 128, 61, 0.22);
}

.yourway-blob.is--b {
  width: 30rem;
  height: 30rem;
  bottom: -12rem;
  right: -6rem;
  background: rgba(94, 199, 128, 0.28);
}

.yourway-band > :not(.yourway-blob) {
  position: relative;
}

.pref-chips.is--big {
  justify-content: center;
  max-width: 72rem;
  gap: 1.2rem;
}

.pref-chips.is--big .pref-chip {
  padding: 1.5rem 2.6rem;
  font-size: 1.55rem;
  background: rgba(255, 255, 255, 0.85);
}

.pref-chips.is--big .pref-chip.is--on {
  background: linear-gradient(120deg, var(--azure), var(--aqua));
}

/* ---------- QUOTES: marquee ---------- */
.quotes .sec-row {
  margin-bottom: 3.4rem;
}

.qmarquee {
  overflow: hidden;
  padding: 1rem 0 3rem;
}

.qmarquee-track {
  display: flex;
  width: max-content;
}

.qmarquee-group {
  display: flex;
  gap: 2.4rem;
  padding-right: 2.4rem;
}

.qmarquee .quote-card {
  width: 42rem;
  flex-shrink: 0;
}

.quote-card.is--tint {
  background: linear-gradient(140deg, var(--glow), #e2f8fc);
}

.quote-card.is--gradient {
  background: linear-gradient(140deg, var(--azure), var(--aqua));
  border-color: transparent;
}

.quote-card.is--gradient .quote-card__text {
  color: #fff;
}

.quote-card.is--gradient .quote-card__who strong {
  color: #fff;
}

.quote-card.is--gradient .quote-card__who em {
  color: rgba(255, 255, 255, 0.8);
}

.quote-card.is--gradient .quote-card__avatar {
  background: rgba(255, 255, 255, 0.2);
}

.quote-card.is--gradient .quote-card__stars {
  color: #ffd76e;
}

/* ---------- FAQ: duo ---------- */
.faq-duo {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 6rem;
  align-items: start;
}

.faq-side {
  position: sticky;
  top: 12rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.8rem;
}

.faq-cta-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 3rem;
  border-radius: 2.4rem;
  background: linear-gradient(140deg, var(--azure), var(--aqua));
  box-shadow: 0 2rem 5rem rgba(21, 128, 61, 0.3);
  margin-top: 1rem;
}

.faq-cta-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.4rem;
  color: #fff;
}

.faq-cta-card p {
  font-size: 1.45rem;
  color: rgba(255, 255, 255, 0.85);
}

.faq-cta-card .cta-button {
  margin-top: 0.8rem;
}

.faq-item__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--azure);
  margin-right: 1.6rem;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.faq-item__label {
  margin-right: auto;
}

/* ---------- portrait ---------- */
@media screen and (max-width: 991px) and (orientation: portrait) {
  .sec-title {
    font-size: 3.6rem;
  }

  .sec-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
    margin-bottom: 4rem;
  }

  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bento-tile.is--hero,
  .bento-tile.is--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .bento-tile.is--wide {
    flex-direction: column;
    align-items: flex-start;
  }

  .bento-big {
    font-size: 6.4rem;
  }

  .stair-path {
    display: none;
  }

  .stair-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stair-step.is--2,
  .stair-step.is--3 {
    margin-top: 0;
  }

  .collage {
    padding: 1rem 2rem 2rem 0.6rem;
  }

  .collage-badge {
    width: 8.6rem;
    height: 8.6rem;
    font-size: 1.3rem;
  }

  .yourway-band {
    padding: 5rem 2.2rem;
  }

  .qmarquee .quote-card {
    width: 31rem;
  }

  .faq-duo {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .faq-side {
    position: static;
  }
}

/* ================= JOURNEY: SCROLL-SCRUBBED VAN SEQUENCE ================= */
.journey {
  position: relative;
}

.journey-sticky {
  position: relative;
  height: 100svh;
  min-height: 60rem;
  overflow: hidden;
}

.journey-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* blend into the white sections above and below + left legibility wash */
.journey-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, var(--porcelain), transparent 12%),
    linear-gradient(to top, var(--porcelain), transparent 12%),
    linear-gradient(90deg, rgba(251, 253, 251, 0.8), rgba(251, 253, 251, 0.35) 32%, transparent 55%);
}

.journey-head {
  position: absolute;
  left: 4.6rem;
  top: 13rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
  max-width: 60rem;
}

.journey-note {
  font-size: 1.5rem;
  color: var(--ink-soft);
}

.journey-stages {
  position: absolute;
  left: 4.6rem;
  bottom: 5.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.journey-stage {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2rem;
  border-radius: 99rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 128, 61, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink-soft);
  opacity: 0.6;
  transition: opacity 0.4s ease, background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

.journey-stage strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--azure);
  font-variant-numeric: tabular-nums;
}

.journey-stage.is--active {
  opacity: 1;
  background: linear-gradient(120deg, var(--azure), var(--aqua));
  color: #fff;
  box-shadow: 0 1rem 2.8rem rgba(21, 128, 61, 0.35);
}

.journey-stage.is--active strong {
  color: #fff;
}

.journey-cta {
  position: absolute;
  right: 4.6rem;
  bottom: 5.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.journey-cta__note {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink-soft);
}

@media screen and (max-width: 991px) and (orientation: portrait) {
  .journey-head {
    left: 2.4rem;
    right: 2.4rem;
    top: 11rem;
  }

  .journey-stages {
    left: 2.4rem;
    right: 2.4rem;
    bottom: 13.5rem;
  }

  .journey-stage {
    padding: 1rem 1.6rem;
    font-size: 1.3rem;
  }

  .journey-cta {
    right: auto;
    left: 2.4rem;
    bottom: 4rem;
    align-items: flex-start;
  }
}
