:root {
  --nav-h: 68px;
  --night: #0B0F14;
  --ink: #141922;
  --steel: #1E2B3A;
  --teal: #0F6F7C;
  --teal-light: #1CA39B;
  --teal-muted: #E7F4F4;
  --ivory: #F4F9F8;
  --cream: #EEF5F3;
  --white: #FFFFFF;
  --sand: #A8BBB6;
  --ash: #6E7A8A;
  --bone: #D6E3DE;
  --pulse: #83BA2F;
  --alert: #E05252;
  --gold: #478F38;

  --shadow-card: 0 1px 8px 0 rgba(11, 15, 20, 0.05), 0 2px 16px 0 rgba(11, 15, 20, 0.04);
  --shadow-elevated: 0 6px 32px 0 rgba(11, 15, 20, 0.10), 0 2px 8px 0 rgba(11, 15, 20, 0.06);
  --shadow-deep: 0 20px 64px 0 rgba(11, 15, 20, 0.18);
  --shadow-teal-glow: 0 0 0 2px rgba(28, 163, 155, 0.25), 0 4px 20px 0 rgba(28, 163, 155, 0.2);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at 20% -20%, #e8f5f4 0%, var(--ivory) 45%, #eff5eb 100%);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -100%;
  z-index: 999;
  border-radius: 0.75rem;
  background: var(--teal);
  color: var(--white);
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 1rem;
}

#navbar {
  transition: transform 0.4s var(--ease-out-expo), background 0.35s ease;
}

#navbar.nav-solid .mx-auto > div {
  background: rgba(20, 25, 34, 0.97);
  box-shadow: 0 10px 40px rgba(11, 15, 20, 0.25);
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transition: width 0.35s var(--ease-out-expo);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

#mobile-menu-toggle {
  position: relative;
}

.menu-line {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.2s ease;
}

.menu-line.top {
  transform: translateY(-6px);
}

.menu-line.bot {
  transform: translateY(6px);
}

#mobile-menu-toggle.is-open .menu-line.top {
  transform: rotate(45deg);
}

#mobile-menu-toggle.is-open .menu-line.mid {
  opacity: 0;
}

#mobile-menu-toggle.is-open .menu-line.bot {
  transform: rotate(-45deg);
}

.mobile-menu {
  pointer-events: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  min-height: 100dvh;
  z-index: 60;
  background: linear-gradient(165deg, rgba(30, 43, 58, 0.97), rgba(11, 15, 20, 0.98));
  -webkit-clip-path: circle(0px at calc(100% - 2.25rem) 2.5rem);
  clip-path: circle(0px at calc(100% - 2.25rem) 2.5rem);
  opacity: 0;
  overflow-y: auto;
}

.mobile-menu-inner {
  margin: 0 auto;
  max-width: 36rem;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 1.25rem) 1.25rem 2.5rem;
}

.mobile-menu-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 75;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(20, 25, 34, 0.5);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.close-line {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.close-line.one {
  transform: rotate(45deg);
}

.close-line.two {
  transform: rotate(-45deg);
}

.hero-section {
  position: relative;
  min-height: 100svh;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform-origin: 70% 50%;
  filter: saturate(0.92) contrast(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(28, 163, 155, 0.15), transparent 46%),
    linear-gradient(90deg, rgba(11, 15, 20, 0.95) 0%, rgba(11, 15, 20, 0.87) 40%, rgba(11, 15, 20, 0.48) 66%, rgba(11, 15, 20, 0.15) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.75rem;
  min-height: 100svh;
  align-items: center;
  padding: calc(var(--nav-h) + 2.25rem) 0 9.5rem;
}

.hero-copy {
  max-width: 42rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(28, 163, 155, 0.36);
  background: rgba(28, 163, 155, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.48rem 1rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.65);
    opacity: 0.4;
  }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pulse);
  animation: pulse 1.9s ease-in-out infinite;
}

.hero-headline {
  margin: 1.35rem 0 0;
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero-line-wrap {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}

.hero-line {
  display: block;
}

.hero-line em {
  font-style: italic;
  font-weight: 700;
}

.hero-underline {
  display: block;
  width: clamp(110px, 18vw, 190px);
  height: 3px;
  border-radius: 999px;
  margin-top: 0.45rem;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform-origin: left center;
}

.hero-sub {
  margin-top: 1.45rem;
  max-width: 38rem;
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.76;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.76);
}

.hero-sub-highlight {
  color: var(--gold);
  font-weight: 600;
}

.hero-tags {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-tag-icon {
  color: var(--teal-light);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}

.hero-ctas {
  margin-top: 1.65rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.78rem;
}

.hero-btn-primary,
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  padding: 0.82rem 1.45rem;
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s ease, background 0.25s ease;
}

.hero-btn-primary {
  background: var(--teal);
  color: #fff;
}

.hero-btn-primary:hover {
  background: var(--teal-light);
  box-shadow: var(--shadow-teal-glow);
  transform: translateY(-1px);
}

.hero-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.hero-teaser-card {
  width: min(360px, 100%);
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 2rem;
  padding: 1.55rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow: 0 22px 48px rgba(11, 15, 20, 0.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.teaser-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.teaser-chip {
  border-radius: 999px;
  background: rgba(28, 163, 155, 0.28);
  border: 1px solid rgba(28, 163, 155, 0.42);
  color: #fff;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  padding: 0.34rem 0.68rem;
}

.teaser-time {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
  font-weight: 500;
}

.teaser-stat {
  margin-top: 1.05rem;
}

.teaser-value {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.45rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.teaser-copy {
  margin: 0.48rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.6;
}

.teaser-pills {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.teaser-pill {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
  padding: 0.35rem 0.6rem;
}

.teaser-action {
  margin-top: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 0.85rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  padding: 0.74rem 1rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
}

.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 2.45rem;
  transform: translateX(-50%);
  z-index: 12;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: rgba(255, 255, 255, 0.46);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-scroll-arrow {
  animation: hero-arrow-bounce 1.7s ease-in-out infinite;
}

@keyframes hero-arrow-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 8;
}

.hero-wave img {
  width: 100%;
  height: clamp(56px, 7vw, 96px);
  object-fit: cover;
}

.marquee-section {
  position: relative;
  z-index: 15;
  overflow: hidden;
  border-top: 1px solid rgba(20, 25, 34, 0.06);
  border-bottom: 1px solid rgba(20, 25, 34, 0.08);
  padding: 0.9rem 0;
  background: #e8f3f0;
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-block {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.marquee-item {
  color: var(--steel);
  font-size: 0.73rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0 0.45rem;
}

.marquee-sep {
  color: var(--teal);
  font-size: 0.93rem;
  opacity: 0.9;
  padding: 0 0.35rem;
}

.section-problem {
  position: relative;
  background: linear-gradient(165deg, #1e2b3a 0%, #172430 65%, #14202c 100%);
  color: #fff;
  padding: 7rem 0 7.6rem;
}

.problem-header {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
}

.problem-overline {
  margin: 0;
  color: var(--teal-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.69rem;
  font-weight: 700;
}

.overline-bar {
  display: block;
  width: 110px;
  height: 2px;
  border-radius: 999px;
  margin: 0.85rem auto 1rem;
  background: linear-gradient(90deg, rgba(28, 163, 155, 0), rgba(28, 163, 155, 1), rgba(28, 163, 155, 0));
}

.problem-title {
  margin: 0;
  font-size: clamp(2.25rem, 5.2vw, 3.5rem);
  line-height: 1.1;
  font-style: italic;
  font-weight: 700;
}

.problem-grid {
  margin-top: 2.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  gap: 2.2rem;
  align-items: start;
}

.problem-divider {
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.problem-column {
  border-radius: 1.7rem;
  padding: 1.6rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.problem-column-label {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 600;
}

.problem-column-label.is-solution {
  color: var(--teal-light);
}

.problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.84rem;
}

.problem-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 0.62rem;
  line-height: 1.58;
  font-size: 0.98rem;
}

.pain-item {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 400;
}

.solution-item {
  color: rgba(255, 255, 255, 0.89);
  font-weight: 500;
}

.problem-icon {
  margin-top: 0.12rem;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
}

.pain-icon {
  color: #e05252;
  background: rgba(224, 82, 82, 0.16);
}

.solution-icon {
  color: var(--teal-light);
  background: rgba(28, 163, 155, 0.25);
}

.problem-cta-wrap {
  margin-top: 2.2rem;
  text-align: center;
}

.problem-cta-note {
  margin: 0.8rem 0 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.46);
  font-weight: 500;
}

.benefits-section {
  position: relative;
  padding: 7.2rem 0 7.8rem;
  background: var(--ivory);
}

.benefits-header {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.benefits-overline {
  margin: 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-weight: 700;
  color: var(--teal);
}

.benefits-title {
  margin: 0.65rem 0 0;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1.08;
  color: var(--ink);
}

.benefits-sub {
  margin: 0.65rem 0 0;
  font-size: 1.02rem;
  color: var(--ash);
  letter-spacing: 0.04em;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  background: var(--cream);
  border: 1px solid rgba(20, 25, 34, 0.06);
  box-shadow: var(--shadow-card);
  transition: transform 0.34s var(--ease-out-expo), box-shadow 0.34s ease, border-color 0.24s ease;
  transform-style: preserve-3d;
}

.benefit-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-elevated);
  border-color: rgba(28, 163, 155, 0.22);
}

.benefit-card--wide {
  grid-column: span 2;
}

.benefit-card--gold {
  border-color: rgba(71, 143, 56, 0.3);
  background: linear-gradient(165deg, rgba(231, 244, 244, 0.9), rgba(239, 245, 235, 0.96));
}

.benefit-media {
  height: 176px;
  overflow: hidden;
}

.benefit-card--wide .benefit-media {
  height: 198px;
}

.benefit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo), filter 0.45s ease;
}

.benefit-card:hover .benefit-media img {
  transform: scale(1.065);
  filter: saturate(1.08);
}

.benefit-body {
  padding: 1.22rem 1.2rem 1.32rem;
}

.benefit-icon-wrap {
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 0.72rem;
  color: var(--teal);
  background: rgba(28, 163, 155, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon-wrap svg {
  width: 1.2rem;
  height: 1.2rem;
}

.benefit-icon-wrap.is-gold {
  color: var(--gold);
  background: rgba(71, 143, 56, 0.14);
}

.benefit-title {
  margin: 0.76rem 0 0;
  font-size: 1.46rem;
  line-height: 1.2;
  color: var(--ink);
  font-weight: 700;
}

.benefit-title.is-gold {
  color: #2f6e33;
}

.benefit-desc {
  margin: 0.55rem 0 0;
  color: var(--ash);
  font-size: 0.92rem;
  line-height: 1.64;
}

.benefit-badge {
  position: absolute;
  top: 0.78rem;
  right: 0.78rem;
  z-index: 8;
  border-radius: 999px;
  padding: 0.33rem 0.68rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--teal);
}

.benefit-badge.is-gold {
  color: #1f4f29;
  background: #d4ecb6;
}

.identity-section {
  padding: 7rem 0 7.8rem;
  background: #fff;
}

.identity-media-wrap {
  position: relative;
}

.identity-image-wrap {
  margin: 0;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(20, 25, 34, 0.08);
}

.identity-image {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.identity-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  border-radius: 1rem;
  border: 1px solid var(--bone);
  background: #fff;
  box-shadow: var(--shadow-elevated);
  padding: 0.68rem 0.92rem;
}

.identity-badge-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
}

.identity-badge-title {
  margin: 0;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
}

.identity-badge-sub {
  margin: 0.15rem 0 0;
  color: var(--ash);
  font-size: 0.74rem;
}

.identity-overline {
  margin: 0;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.71rem;
  font-weight: 700;
}

.identity-title {
  margin: 0.7rem 0 0;
  color: var(--ink);
  font-size: clamp(2.08rem, 4.6vw, 3.45rem);
  line-height: 1.1;
}

.identity-title em {
  font-style: italic;
}

.identity-text {
  margin: 1rem 0 0;
  color: var(--ash);
  font-size: 1.02rem;
  line-height: 1.74;
}

.identity-pillars {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.72rem;
}

.identity-pillar {
  border-radius: 1rem;
  border: 1px solid var(--bone);
  background: var(--ivory);
  padding: 0.88rem 0.94rem;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.72rem;
  align-items: start;
}

.identity-pillar-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.72rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  background: rgba(28, 163, 155, 0.12);
}

.identity-pillar-icon svg {
  width: 1.16rem;
  height: 1.16rem;
}

.identity-pillar-title {
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.identity-pillar-text {
  margin: 0.25rem 0 0;
  color: var(--ash);
  font-size: 0.85rem;
  line-height: 1.58;
}

.identity-quote {
  margin: 1.22rem 0 0;
  border-left: 4px solid var(--teal);
  padding: 0.25rem 0 0.25rem 0.82rem;
  color: var(--ink);
  font-size: 1.13rem;
  line-height: 1.5;
  font-style: italic;
}

.bonus-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0b0f14, #121a24 65%, #0f1720);
  padding: 7rem 0 7.7rem;
  color: #fff;
}

.bonus-watermark {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(7.5rem, 24vw, 18rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(71, 143, 56, 0.055);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.bonus-overline {
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
}

.bonus-display {
  margin-top: 0.82rem;
}

.bonus-amount {
  margin: 0;
  font-size: clamp(3.5rem, 8.5vw, 6.3rem);
  line-height: 1;
  font-weight: 900;
}

.bonus-label {
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.98rem;
  font-weight: 500;
}

.bonus-conditions {
  margin-top: 1.7rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bonus-condition {
  border-radius: 1rem;
  padding: 1rem 0.95rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.bonus-condition-icon {
  width: 1.9rem;
  height: 1.9rem;
  margin: 0 auto;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bonus-condition-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.bonus-condition-title {
  margin: 0.68rem 0 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.bonus-condition-text {
  margin: 0.34rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  line-height: 1.55;
}

.bonus-cta-wrap {
  margin-top: 1.58rem;
}

.bonus-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.82rem;
  padding: 0.8rem 1.35rem;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(140deg, #83BA2F, #478F38);
  transition: transform 0.24s var(--ease-out-expo), box-shadow 0.24s ease;
}

.bonus-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(71, 143, 56, 0.35), 0 9px 24px rgba(71, 143, 56, 0.28);
}

.bonus-note {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.timeline-section {
  background: var(--ivory);
  padding: 7rem 0 7.7rem;
}

.timeline-header {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 2.5rem;
}

.timeline-overline {
  margin: 0;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-size: 0.7rem;
  font-weight: 700;
}

.timeline-title {
  margin: 0.72rem 0 0;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--ink);
  line-height: 1.12;
}

.process-timeline {
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 2.2rem;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--bone), var(--bone) 8px, transparent 8px, transparent 13px);
  border-radius: 999px;
  overflow: hidden;
}

.timeline-line-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  background: linear-gradient(90deg, rgba(28, 163, 155, 0.7), var(--teal), rgba(28, 163, 155, 0.8));
  transform-origin: left center;
  transform: scaleX(0);
}

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

.timeline-step {
  position: relative;
  padding-top: 0.35rem;
}

.step-node-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.step-num {
  position: absolute;
  left: -0.3rem;
  top: -0.85rem;
  color: var(--ash);
  text-transform: uppercase;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.step-node {
  width: 72px;
  height: 72px;
  border: 2px solid var(--bone);
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.timeline-step.is-active .step-node,
.timeline-step.is-final .step-node {
  border-color: var(--teal);
  background: rgba(28, 163, 155, 0.11);
  box-shadow: 0 0 0 5px rgba(28, 163, 155, 0.08);
}

.timeline-step.is-final .step-node {
  background: var(--teal);
}

.timeline-step.is-final .step-icon {
  color: #fff;
}

.step-icon {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--teal);
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.step-content {
  margin-top: 1.05rem;
}

.step-title {
  margin: 0;
  font-size: 1.42rem;
  color: var(--ink);
  line-height: 1.16;
  font-style: italic;
}

.step-desc {
  margin: 0.55rem 0 0;
  font-size: 0.91rem;
  color: var(--ash);
  line-height: 1.64;
}

.regions-section {
  background: linear-gradient(165deg, #1e2b3a 0%, #162533 62%, #132332 100%);
  color: #fff;
  padding: 6.8rem 0;
  overflow-x: clip;
}

.regions-copy,
.regions-map-wrap {
  min-width: 0;
}

.regions-overline {
  margin: 0;
  color: var(--teal-light);
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-size: 0.7rem;
  font-weight: 700;
}

.regions-title {
  margin: 0.72rem 0 0;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  line-height: 1.12;
}

.regions-text {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1rem;
  line-height: 1.74;
}

.regions-pill-marquee {
  margin-top: 1.3rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.8rem 0;
}

.regions-pill-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.regions-pill-block {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.regions-pill {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.44rem 0.8rem;
}

.regions-map-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.regions-map-figure {
  margin: 0;
  position: relative;
  aspect-ratio: 10 / 7;
  width: 100%;
  max-width: 100%;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-deep);
}

.regions-map-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
}

.map-label {
  position: absolute;
  inset: auto auto 1rem 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.city-dot {
  position: absolute;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: var(--teal-light);
  box-shadow: 0 0 0 0 rgba(28, 163, 155, 0.45);
  animation: city-pulse 2.1s ease-out infinite;
}

.city-dot::after {
  content: "";
  position: absolute;
  inset: -0.35rem;
  border-radius: inherit;
  border: 1px solid rgba(28, 163, 155, 0.6);
}

.city-dot--berlin { top: 24%; left: 66%; animation-delay: 0.1s; }
.city-dot--hamburg { top: 15%; left: 57%; animation-delay: 0.4s; }
.city-dot--muenchen { top: 66%; left: 66%; animation-delay: 0.8s; }
.city-dot--koeln { top: 36%; left: 44%; animation-delay: 1.2s; }
.city-dot--frankfurt { top: 43%; left: 50%; animation-delay: 1.5s; }
.city-dot--stuttgart { top: 56%; left: 55%; animation-delay: 1.8s; }

@keyframes city-pulse {
  0% { box-shadow: 0 0 0 0 rgba(28, 163, 155, 0.55); }
  80% { box-shadow: 0 0 0 16px rgba(28, 163, 155, 0); }
  100% { box-shadow: 0 0 0 0 rgba(28, 163, 155, 0); }
}

.faq-section {
  position: relative;
  padding: 7rem 0 7.5rem;
  background: var(--ivory);
}

.faq-copy {
  position: relative;
}

.faq-overline {
  margin: 0;
  color: var(--teal);
  font-size: 0.7rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  font-weight: 700;
}

.faq-title {
  margin: 0.7rem 0 0;
  font-size: clamp(2.2rem, 4.8vw, 3.1rem);
  line-height: 1.1;
  color: var(--ink);
}

.faq-title-dot {
  color: var(--teal);
}

.faq-sub {
  margin: 0.8rem 0 0;
  color: var(--ash);
  font-size: 0.99rem;
}

.faq-link {
  margin-top: 1.08rem;
  display: inline-block;
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(28, 163, 155, 0.35);
}

.faq-mark {
  position: absolute;
  right: 0.4rem;
  top: -0.8rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(8rem, 20vw, 14rem);
  line-height: 0.85;
  color: rgba(28, 163, 155, 0.06);
  pointer-events: none;
}

.faq-item {
  border-bottom: 1px solid var(--bone);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  padding: 1.3rem 0.2rem;
  text-align: left;
  cursor: pointer;
}

.faq-q {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 600;
}

.faq-icon {
  color: var(--teal);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transform-origin: center;
}

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

.faq-a {
  margin: 0;
  padding: 0 0.2rem 1.3rem;
  color: var(--ash);
  font-size: 0.95rem;
  line-height: 1.7;
}

.application-section {
  background: linear-gradient(170deg, #0b0f14 0%, #111924 62%, #0f1a25 100%);
  color: #fff;
  padding: 7.2rem 0 7.6rem;
}

.success-banner {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 200;
  background: var(--pulse);
  color: var(--night);
  font-size: 0.93rem;
  font-weight: 700;
  text-align: center;
  padding: 0.9rem 1.2rem;
}

.application-overline {
  margin: 0;
  color: var(--teal-light);
  font-size: 0.72rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  font-weight: 700;
}

.application-title {
  margin: 0.72rem 0 0;
  font-size: clamp(2.2rem, 4.8vw, 3.35rem);
  line-height: 1.08;
}

.application-title em {
  color: var(--teal-light);
  font-style: italic;
}

.application-text {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.74;
}

.application-info-cards {
  margin-top: 1.22rem;
  display: grid;
  gap: 0.72rem;
}

.application-info-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.06);
}

.application-info-title {
  margin: 0;
  color: var(--teal-light);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.application-info-text {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.87rem;
  line-height: 1.6;
}

.application-trust-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.56rem;
}

.application-trust-list li {
  display: flex;
  align-items: center;
  gap: 0.52rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.89rem;
}

.application-trust-list li span {
  color: var(--teal-light);
  font-weight: 700;
}

.application-form-card {
  border-radius: 2rem;
  background: #fff;
  border: 1px solid rgba(20, 25, 34, 0.08);
  box-shadow: var(--shadow-deep);
  padding: 1.8rem;
  color: var(--ink);
}

.application-form-head {
  margin-bottom: 1rem;
}

.application-form-title {
  margin: 0;
  font-size: 1.7rem;
}

.application-form-sub {
  margin: 0.4rem 0 0;
  color: var(--ash);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.form-errors {
  border: 1px solid rgba(224, 82, 82, 0.35);
  background: rgba(224, 82, 82, 0.08);
  border-radius: 0.82rem;
  padding: 0.75rem 0.85rem;
  margin-bottom: 1rem;
}

.form-errors p {
  margin: 0;
  color: #a72828;
  font-size: 0.83rem;
  font-weight: 700;
}

.form-errors ul {
  margin: 0.42rem 0 0;
  padding-left: 1rem;
}

.form-errors li {
  color: #962424;
  font-size: 0.79rem;
  line-height: 1.5;
}

.application-form {
  display: grid;
  gap: 0.95rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-grid-2 {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-label {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.form-field {
  width: 100%;
  border: 1.5px solid var(--bone);
  border-radius: 0.75rem;
  padding: 0.68rem 0.8rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.9rem;
  background: #f4f9f8;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  appearance: none;
}

.form-field:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(28, 163, 155, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

.form-fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

.radio-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.radio-card {
  border: 1.5px solid var(--bone);
  border-radius: 0.78rem;
  padding: 0.62rem 0.65rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.radio-card:hover {
  border-color: var(--teal);
}

.radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-card span {
  font-size: 0.81rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.radio-card.selected {
  border-color: var(--teal);
  background: var(--teal-muted);
}

.quals-expander {
  border: 1px solid var(--bone);
  border-radius: 0.82rem;
  padding: 0.65rem 0.75rem;
  background: #f6fbfa;
}

.quals-expander summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.quals-expander summary::-webkit-details-marker {
  display: none;
}

.quals-grid {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.46rem;
}

.qual-pill {
  border: 1px solid var(--bone);
  border-radius: 999px;
  padding: 0.42rem 0.64rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  background: #fff;
}

.qual-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.qual-pill span {
  font-size: 0.74rem;
  color: var(--ink);
  line-height: 1.3;
}

.qual-pill.selected {
  border-color: var(--teal);
  background: var(--teal-muted);
}

.consent-row {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 0.52rem;
  align-items: start;
  color: var(--ash);
  font-size: 0.78rem;
  line-height: 1.5;
}

.consent-row input {
  margin-top: 0.2rem;
}

.consent-link {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(28, 163, 155, 0.4);
}

.submit-btn {
  border: 0;
  border-radius: 0.82rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
  min-height: 46px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn-loader {
  width: 0.92rem;
  height: 0.92rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 999px;
  display: none;
  animation: spin 0.8s linear infinite;
}

.submit-btn.is-loading .submit-btn-loader {
  display: inline-block;
}

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

.footer-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle at 1px 1px, #ffffff 1px, transparent 1px);
  background-size: 22px 22px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-brand-copy {
  margin: 0;
  max-width: 23rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
  line-height: 1.7;
}

.footer-col {
  opacity: 0;
  transform: translateY(24px);
}

:focus-visible {
  outline: 2px solid rgba(28, 163, 155, 0.9);
  outline-offset: 2px;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.65rem;
    padding-bottom: 8.2rem;
  }

  .hero-copy {
    max-width: 44rem;
  }

  .hero-teaser-card {
    display: none;
  }

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

  .benefit-card--wide {
    grid-column: auto;
  }

  .bonus-conditions {
    grid-template-columns: 1fr;
    max-width: 29rem;
    margin-left: auto;
    margin-right: auto;
  }

  .timeline-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.3rem;
  }

  .timeline-line {
    display: none;
  }
}

@media (max-width: 900px) {
  .section-problem {
    padding: 5.5rem 0 6.2rem;
  }

  .problem-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.15rem;
  }

  .problem-divider {
    display: none;
  }

  .identity-section {
    padding: 5.7rem 0 6.2rem;
  }

  .identity-image {
    min-height: 360px;
  }

  .identity-badge {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
  }

  .regions-section {
    padding: 5.8rem 0;
  }

  .regions-pill-marquee {
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .faq-section {
    padding: 5.8rem 0 6.1rem;
  }

  .application-section {
    padding: 5.9rem 0 6.2rem;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .radio-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero-grid {
    min-height: 100svh;
    padding-top: calc(var(--nav-h) + 2.15rem);
    padding-bottom: 7.9rem;
  }

  .hero-headline {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .hero-sub {
    font-size: 0.99rem;
    line-height: 1.7;
  }

  .hero-scroll-hint {
    bottom: 2.25rem;
    font-size: 0.62rem;
  }

  .hero-tag {
    width: 100%;
    justify-content: center;
  }

  .hero-ctas a {
    width: 100%;
  }

  .marquee-item {
    font-size: 0.66rem;
  }

  .problem-column {
    padding: 1.2rem 1rem;
  }

  .problem-item {
    font-size: 0.92rem;
  }

  .benefits-section {
    padding: 5.5rem 0 5.9rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .benefit-media,
  .benefit-card--wide .benefit-media {
    height: 188px;
  }

  .benefit-title {
    font-size: 1.3rem;
  }

  .identity-title {
    font-size: clamp(1.95rem, 8.5vw, 2.4rem);
  }

  .identity-text {
    font-size: 0.95rem;
  }

  .identity-quote {
    font-size: 1rem;
  }

  .bonus-section {
    padding: 5.6rem 0 6rem;
  }

  .bonus-amount {
    font-size: clamp(2.8rem, 16vw, 3.7rem);
  }

  .bonus-note {
    letter-spacing: 0.08em;
  }

  .timeline-section {
    padding: 5.2rem 0 5.8rem;
  }

  .timeline-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
    position: relative;
    padding-left: 1.05rem;
  }

  .timeline-steps::before {
    content: "";
    position: absolute;
    left: 0.22rem;
    top: 0.8rem;
    bottom: 0.8rem;
    width: 2px;
    background: repeating-linear-gradient(180deg, var(--bone), var(--bone) 8px, transparent 8px, transparent 13px);
    border-radius: 999px;
  }

  .timeline-step {
    padding-left: 1.2rem;
  }

  .step-node {
    width: 62px;
    height: 62px;
  }

  .step-title {
    font-size: 1.28rem;
  }

  .step-desc {
    font-size: 0.87rem;
  }

  .regions-map-image {
    min-height: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .regions-map-figure {
    aspect-ratio: auto;
    max-height: none;
  }

  .faq-title {
    max-width: 20rem;
  }

  .faq-mark {
    right: -0.2rem;
    top: -0.2rem;
  }

  .application-form-card {
    padding: 1.35rem;
  }

  .quals-grid {
    grid-template-columns: 1fr;
  }

  .footer-col {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
