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

:root {
  --ink: #050706;
  --muted: #68706b;
  --line: rgba(5, 7, 6, 0.12);
  --paper: #fbfcfb;
  --surface: rgba(255, 255, 255, 0.48);
  --white: #ffffff;
  --green: #0b5f02;
  --green-bright: #18a00a;
  --black-glass: rgba(5, 7, 6, 0.62);
  --shadow: 0 28px 90px rgba(5, 7, 6, 0.16);
  --glass-border: rgba(255, 255, 255, 0.68);
  --glass-fill: rgba(255, 255, 255, 0.46);
  --page-max: 1440px;
  --page-x: clamp(18px, 4vw, 56px);
  --section-y: clamp(58px, 8vw, 104px);
  --button-h: clamp(46px, 4vw, 54px);
}

/* Google reviews */
.section.reviews-section {
  width: 100%;
  max-width: none;
  padding-right: max(var(--page-x), calc((100vw - var(--page-max)) / 2));
  padding-left: max(var(--page-x), calc((100vw - var(--page-max)) / 2));
}

.reviews-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5.2vw, 76px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: clamp(28px, 3vw, 44px);
  background:
    radial-gradient(circle at 88% 8%, rgba(24, 160, 10, 0.2), transparent 28%),
    radial-gradient(circle at 8% 92%, rgba(11, 95, 2, 0.18), transparent 30%),
    linear-gradient(145deg, #0b0e0c, #030504 72%);
  color: var(--white);
  box-shadow: 0 34px 110px rgba(5, 7, 6, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  isolation: isolate;
}

.reviews-shell::before {
  position: absolute;
  top: -110px;
  right: -90px;
  z-index: -1;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(24, 160, 10, 0.12);
  content: "";
  filter: blur(26px);
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
}

.reviews-heading .eyebrow {
  color: #20d06b;
}

.reviews-heading h2 {
  max-width: 780px;
  margin: 14px 0 0;
  color: var(--white);
  font-size: clamp(2.5rem, 4.4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.reviews-heading > p {
  max-width: 520px;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.55;
}

.reviews-summary {
  display: grid;
  grid-template-columns: auto auto minmax(220px, 1fr) auto;
  gap: clamp(14px, 2vw, 26px);
  align-items: center;
  margin-top: clamp(34px, 5vw, 64px);
  padding: 14px 16px 14px clamp(20px, 2.4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.reviews-score {
  color: var(--white);
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.reviews-stars,
.review-stars {
  color: #ffc85a;
  font-weight: 900;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.reviews-stars {
  font-size: clamp(0.92rem, 1.3vw, 1.1rem);
}

.reviews-summary p {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: clamp(0.78rem, 0.95vw, 0.9rem);
  line-height: 1.4;
}

.reviews-summary p strong {
  color: rgba(255, 255, 255, 0.88);
}

.reviews-link {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.reviews-link:hover {
  border-color: rgba(32, 208, 107, 0.55);
  background: #20d06b;
  color: #031a03;
  transform: translateY(-2px);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(20px, 2.4vw, 32px);
}

.review-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 270px;
  padding: clamp(24px, 2.5vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 8%, rgba(24, 160, 10, 0.09), transparent 34%),
    rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.review-card:hover {
  border-color: rgba(32, 208, 107, 0.42);
  background:
    radial-gradient(circle at 86% 8%, rgba(24, 160, 10, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.075);
  transform: translateY(-5px);
}

.review-stars {
  font-size: 0.9rem;
}

.review-card blockquote {
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.96rem, 1.15vw, 1.08rem);
  font-style: italic;
  line-height: 1.58;
}

.review-card footer {
  display: grid;
  gap: 5px;
}

.review-card footer strong {
  color: var(--white);
  font-size: 0.98rem;
}

.review-card footer span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

@media (max-width: 980px) {
  .reviews-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .reviews-summary {
    grid-template-columns: auto auto 1fr;
    border-radius: 28px;
  }

  .reviews-link {
    grid-column: 1 / -1;
    width: 100%;
  }

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

  .review-card {
    min-height: 240px;
  }
}

@media (max-width: 640px) {
  .section.reviews-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .reviews-shell {
    padding: 30px 20px 22px;
    border-radius: 28px;
  }

  .reviews-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.15rem);
  }

  .reviews-summary {
    grid-template-columns: auto 1fr;
    gap: 12px 16px;
    padding: 20px;
  }

  .reviews-summary p {
    grid-column: 1 / -1;
  }

  .reviews-link {
    min-height: 52px;
  }

  .review-card {
    min-height: 0;
    padding: 24px 22px;
    border-radius: 20px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(11, 95, 2, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(5, 7, 6, 0.05), transparent 36%),
    var(--paper);
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(var(--page-max), calc(100% - 32px));
  min-height: clamp(58px, 6vw, 70px);
  padding: 8px clamp(14px, 2vw, 24px);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(34px) saturate(180%);
  -webkit-backdrop-filter: blur(34px) saturate(180%);
  transform: translateX(-50%);
}

.brand,
.nav-links,
.hero-actions,
.section-heading,
.hero-strip,
.phone-topbar,
.mini-list,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 760;
}

.brand-logo {
  width: clamp(52px, 6vw, 74px);
  height: clamp(34px, 4vw, 48px);
  object-fit: contain;
  border-radius: 8px;
}

.nav-links {
  justify-content: flex-end;
  gap: clamp(4px, 0.7vw, 10px);
}

.nav-links a {
  padding: clamp(8px, 1vw, 11px) clamp(10px, 1.3vw, 16px);
  border-radius: 999px;
  color: rgba(5, 7, 6, 0.68);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover {
  background: rgba(11, 95, 2, 0.08);
  color: var(--ink);
}

.nav-links a.active {
  background: rgba(11, 95, 2, 0.1);
  color: var(--green);
}

.header-cta {
  display: grid;
  place-items: center;
  min-height: 44px;
  margin-left: clamp(8px, 1vw, 14px);
  padding: 0 clamp(16px, 1.8vw, 24px);
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: clamp(0.72rem, 0.9vw, 0.84rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(11, 95, 2, 0.22);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover {
  background: #149b09;
  box-shadow: 0 14px 30px rgba(11, 95, 2, 0.3);
  transform: translateY(-2px);
}

.trial-choice-page {
  min-height: 100svh;
  padding: clamp(116px, 12vw, 154px) var(--page-x) clamp(64px, 8vw, 104px);
}

.trial-choice-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 72px);
  border: 1px solid rgba(5, 7, 6, 0.08);
  border-radius: clamp(28px, 4vw, 46px);
  background:
    radial-gradient(circle at 86% 8%, rgba(24, 160, 10, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.38));
  box-shadow: var(--shadow);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
}

.trial-choice-heading {
  max-width: 800px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.trial-choice-heading h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 6.5vw, 6.8rem);
}

.trial-choice-heading > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(5, 7, 6, 0.68);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}

.trial-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}

.trial-choice-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 380px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(5, 7, 6, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 20px 54px rgba(5, 7, 6, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.trial-choice-card:hover {
  border-color: rgba(11, 95, 2, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 28px 64px rgba(11, 95, 2, 0.14);
  transform: translateY(-5px);
}

.trial-choice-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: rgba(11, 95, 2, 0.1);
  color: var(--green);
}

.trial-choice-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trial-choice-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 2.8vw, 2.5rem);
  line-height: 1.05;
}

.trial-choice-card p {
  color: rgba(5, 7, 6, 0.62);
  line-height: 1.6;
}

.trial-choice-card .button {
  align-self: end;
  justify-self: start;
  margin-top: 24px;
}

.trial-booking-modal {
  width: min(920px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 30px;
  background: transparent;
  color: var(--ink);
}

.trial-booking-modal::backdrop {
  background: rgba(3, 5, 4, 0.68);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.trial-booking-modal[open] {
  animation: trialModalFadeIn 360ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.trial-booking-modal[open]::backdrop {
  animation: trialBackdropFadeIn 300ms ease-out both;
}

.trial-booking-panel {
  max-height: calc(100svh - 28px);
  overflow: auto;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  background: rgba(250, 252, 250, 0.96);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.32);
}

.trial-booking-head {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.trial-booking-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.trial-booking-note {
  max-width: 660px;
  margin: 10px 0 0;
  color: rgba(5, 7, 6, 0.5);
  font-size: clamp(0.78rem, 1.15vw, 0.9rem);
  line-height: 1.5;
}

.trial-booking-close {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(5, 7, 6, 0.12);
  border-radius: 50%;
  background: rgba(5, 7, 6, 0.06);
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.trial-booking-close:hover {
  background: var(--green);
  color: var(--white);
}

.trial-booking-widget {
  min-height: 480px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
}

.trial-booking-widget vg-guest-booking {
  display: block;
  width: 100%;
}

@keyframes trialModalFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes trialBackdropFadeIn {
  from {
    background: rgba(3, 5, 4, 0);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
  }

  to {
    background: rgba(3, 5, 4, 0.68);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trial-booking-modal[open],
  .trial-booking-modal[open]::backdrop {
    animation: none;
  }
}

@media (max-width: 700px) {
  .trial-choice-grid {
    grid-template-columns: 1fr;
  }

  .trial-choice-card {
    min-height: 320px;
  }
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  color: var(--ink);
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.menu-toggle span {
  grid-area: 1 / 1;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), opacity 160ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.site-header.menu-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}

.site-header.menu-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.68fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: end;
  min-height: 78svh;
  overflow: hidden;
  padding: clamp(104px, 11vw, 142px) max(var(--page-x), calc((100vw - var(--page-max)) / 2)) clamp(24px, 4vw, 42px);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 92px max(14px, calc((100vw - calc(var(--page-max) + 64px)) / 2)) 18px;
  z-index: -1;
  border: 1px solid rgba(5, 7, 6, 0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at 78% 24%, rgba(11, 95, 2, 0.16), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.24));
  box-shadow: var(--shadow);
  content: "";
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(980px, 100%);
  align-self: center;
  padding-bottom: clamp(70px, 8vw, 118px);
}

.hero-people {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  width: min(540px, 100%);
  margin: 0 0 clamp(-118px, -7vw, -72px);
  isolation: isolate;
  pointer-events: none;
}

.hero-people::before {
  position: absolute;
  right: 2%;
  bottom: 6%;
  z-index: -1;
  width: 82%;
  height: 72%;
  border-radius: 42% 58% 46% 54%;
  background:
    radial-gradient(circle at 50% 35%, rgba(11, 95, 2, 0.2), transparent 58%),
    rgba(255, 255, 255, 0.28);
  box-shadow: 0 34px 100px rgba(11, 95, 2, 0.16);
  content: "";
  filter: blur(4px);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
}

.hero-people img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 54px rgba(5, 7, 6, 0.2));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 940px;
  margin-bottom: 18px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3.1rem, 7.3vw, 8.25rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
}

h2,
h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(5, 7, 6, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.34rem);
  line-height: 1.45;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions .button {
  min-width: clamp(190px, 15vw, 250px);
  min-height: clamp(58px, 4.8vw, 72px);
  padding-inline: clamp(26px, 3vw, 42px);
  border-radius: 999px;
  font-size: clamp(0.82rem, 1vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions .button-primary {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.32), transparent 34%),
    linear-gradient(145deg, rgba(18, 122, 10, 0.98), rgba(3, 84, 1, 0.98));
  box-shadow: 0 20px 48px rgba(11, 95, 2, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.hero-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.86);
  background:
    radial-gradient(circle at 78% 18%, rgba(11, 95, 2, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.36));
  box-shadow: 0 18px 42px rgba(5, 7, 6, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.hero-quick-info {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.1vw, 14px);
  align-items: stretch;
  max-width: 820px;
  margin-top: clamp(24px, 3vw, 40px);
  color: var(--ink);
}

.hero-quick-info div {
  display: grid;
  align-content: center;
  gap: 4px;
  min-height: 62px;
  padding: 10px 12px;
  border: 1px solid rgba(11, 95, 2, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
}

.hero-quick-info div:nth-child(2) {
  order: 3;
}

.hero-quick-info div:nth-child(3) {
  order: 4;
}

.hero-quick-info div:nth-child(4) {
  order: 2;
}

.hero-quick-info span {
  color: var(--muted);
  font-size: clamp(0.56rem, 0.62vw, 0.64rem);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-quick-info strong {
  display: block;
  font-size: clamp(0.76rem, 0.9vw, 0.9rem);
  font-weight: 900;
  line-height: 1.25;
}

.hero-status {
  min-width: 0;
  border-color: rgba(11, 95, 2, 0.15);
}

.hero-status .status-line {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  text-transform: none;
}

.hero-status .status-line i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 5px rgba(24, 160, 10, 0.12);
}

.hero-status small {
  display: block;
  margin-top: 3px;
  padding-left: 15px;
  color: var(--muted);
  font-size: clamp(0.62rem, 0.7vw, 0.7rem);
  font-weight: 720;
  line-height: 1.35;
}

.hero-status.is-closed {
  border-color: rgba(255, 76, 76, 0.2);
}

.hero-status.is-closed .status-line i {
  background: #ff4d42;
  box-shadow: 0 0 0 5px rgba(255, 77, 66, 0.12);
}

.hero-interface {
  justify-self: end;
  width: min(560px, 100%);
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid var(--glass-border);
  border-radius: 38px;
  background: var(--glass-fill);
  box-shadow: 0 26px 90px rgba(5, 7, 6, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(44px) saturate(190%);
  -webkit-backdrop-filter: blur(44px) saturate(190%);
}

.media-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 24px 70px rgba(5, 7, 6, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(34px) saturate(180%);
  -webkit-backdrop-filter: blur(34px) saturate(180%);
}

.media-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
}

.media-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-media {
  min-height: 420px;
}

.tall-media {
  min-height: 520px;
}

.visual-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.glass-panel {
  display: grid;
  align-content: end;
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: 0 24px 70px rgba(5, 7, 6, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(42px) saturate(190%);
  -webkit-backdrop-filter: blur(42px) saturate(190%);
}

.glass-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1;
}

.glass-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.peek-slider {
  width: min(100%, calc(100vw - clamp(28px, 4vw, 72px)));
  max-width: 1920px;
  padding: clamp(18px, 3vw, 42px) 0;
}

.peek-stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 7.35;
  min-height: clamp(420px, 43vw, 760px);
  max-height: 820px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: clamp(22px, 2vw, 34px);
  background: var(--ink);
  box-shadow: 0 26px 88px rgba(5, 7, 6, 0.14);
  cursor: pointer;
  isolation: isolate;
}

.peek-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 650ms ease, transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.peek-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.peek-stage::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 7, 6, 0.22), rgba(5, 7, 6, 0.34)),
    radial-gradient(circle at 50% 70%, rgba(5, 7, 6, 0.36), transparent 42%);
  content: "";
  opacity: 1;
  transition: opacity 360ms ease;
  pointer-events: none;
}

.peek-stage.is-clean::after {
  opacity: 0;
}

.peek-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 18px;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  text-align: center;
  transition: opacity 320ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1), filter 320ms ease;
}

.peek-stage.is-clean .peek-overlay {
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  filter: blur(6px);
  pointer-events: none;
}

.peek-overlay .eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.peek-overlay strong {
  display: block;
  max-width: min(680px, 84vw);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3.4rem, 7.2vw, 7.6rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.peek-overlay small {
  justify-self: center;
  padding: 16px 34px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  font-weight: 900;
  text-transform: uppercase;
}

.peek-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: clamp(42px, 3.8vw, 56px);
  height: clamp(42px, 3.8vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: 0 16px 34px rgba(5, 7, 6, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.peek-arrow span {
  display: block;
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  content: "";
}

.peek-prev span {
  transform: translateX(3px) rotate(-135deg);
}

.peek-next span {
  transform: translateX(-3px) rotate(45deg);
}

.peek-arrow:hover {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 42px rgba(5, 7, 6, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.54);
  transform: translateY(-50%) scale(1.04);
}

.peek-prev {
  left: clamp(18px, 3vw, 42px);
}

.peek-next {
  right: clamp(18px, 3vw, 42px);
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--button-h);
  padding: 0 clamp(22px, 2.4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button::before {
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 52%);
  content: "";
  pointer-events: none;
}

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

.button-primary {
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(11, 95, 2, 0.98), rgba(4, 42, 2, 0.92));
  color: var(--white);
  box-shadow: 0 16px 40px rgba(11, 95, 2, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.button-primary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 56px rgba(11, 95, 2, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 82% 20%, rgba(11, 95, 2, 0.08), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42));
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(5, 7, 6, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.button-secondary:hover {
  border-color: rgba(11, 95, 2, 0.22);
  background:
    radial-gradient(circle at 82% 20%, rgba(11, 95, 2, 0.14), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.5));
}

.button-light {
  margin-top: 28px;
  background: var(--white);
  color: var(--green);
}

.page-hero {
  position: relative;
  display: grid;
  align-content: end;
  width: min(var(--page-max), calc(100% - 32px));
  min-height: 58svh;
  margin: 0 auto;
  padding: clamp(132px, 12vw, 162px) 0 clamp(54px, 6vw, 78px);
}

.page-hero::before {
  position: absolute;
  inset: 92px 0 0;
  z-index: -1;
  border: 1px solid rgba(5, 7, 6, 0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at 82% 22%, rgba(11, 95, 2, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.24));
  box-shadow: var(--shadow);
  content: "";
  backdrop-filter: blur(42px) saturate(190%);
  -webkit-backdrop-filter: blur(42px) saturate(190%);
}

.page-hero h1 {
  width: min(850px, 100%);
}

.page-hero p:not(.eyebrow) {
  width: min(620px, 100%);
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.55;
}

.course-page-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(32px, 5vw, 76px);
  align-content: center;
  align-items: center;
  min-height: min(760px, 78svh);
  padding: clamp(142px, 12vw, 176px) clamp(30px, 4vw, 64px) clamp(50px, 6vw, 78px);
}

.course-page-hero::before {
  background:
    radial-gradient(circle at 79% 20%, rgba(24, 160, 10, 0.16), transparent 30%),
    radial-gradient(circle at 18% 88%, rgba(11, 95, 2, 0.08), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(247, 250, 247, 0.46));
}

.course-hero-copy {
  position: relative;
  z-index: 2;
}

.course-page-hero .eyebrow {
  margin-bottom: 18px;
}

.course-page-hero h1 {
  width: auto;
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.7rem, 6vw, 6.7rem);
  line-height: 0.9;
}

.course-page-hero .course-hero-copy > p:not(.eyebrow) {
  width: auto;
  max-width: 650px;
  margin-bottom: 30px;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

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

.course-hero-actions > span {
  display: inline-flex;
  align-items: center;
  min-height: var(--button-h);
  padding: 0 20px;
  border: 1px solid rgba(5, 7, 6, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  color: rgba(5, 7, 6, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.course-hero-visual {
  position: relative;
  min-height: clamp(360px, 37vw, 510px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: clamp(26px, 3vw, 40px);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 30px 78px rgba(5, 7, 6, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.course-hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(3, 10, 5, 0.72));
  content: "";
  pointer-events: none;
}

.course-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.course-hero-visual:hover img {
  transform: scale(1.035);
}

.course-hero-visual figcaption {
  position: absolute;
  right: clamp(20px, 3vw, 34px);
  bottom: clamp(20px, 3vw, 34px);
  left: clamp(20px, 3vw, 34px);
  z-index: 2;
  display: grid;
  gap: 5px;
  color: var(--white);
}

.course-hero-visual figcaption span {
  color: #5be850;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.course-hero-visual figcaption strong {
  max-width: 390px;
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  line-height: 1.05;
}

@media (max-width: 820px) {
  .course-page-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 128px 26px 34px;
  }

  .course-page-hero h1 {
    max-width: 620px;
    font-size: clamp(3.25rem, 11vw, 5.3rem);
  }

  .course-hero-visual {
    min-height: clamp(300px, 58vw, 440px);
  }
}

@media (max-width: 520px) {
  .course-page-hero {
    width: calc(100% - 24px);
    gap: 22px;
    padding: 112px 18px 20px;
  }

  .course-page-hero::before {
    inset: 82px 0 0;
    border-radius: 30px;
  }

  .course-page-hero .eyebrow {
    margin-bottom: 12px;
  }

  .course-page-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.85rem, 14vw, 4rem);
    line-height: 0.92;
  }

  .course-page-hero .course-hero-copy > p:not(.eyebrow) {
    margin-bottom: 22px;
    font-size: 0.96rem;
  }

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

  .course-hero-actions > span {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.68rem;
  }

  .course-hero-visual {
    min-height: 280px;
    border-radius: 24px;
  }
}

.partner-page-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 5vw, 78px);
  align-content: center;
  align-items: center;
  min-height: min(760px, 78svh);
  padding: clamp(142px, 12vw, 176px) clamp(30px, 4vw, 64px) clamp(50px, 6vw, 78px);
}

.partner-page-hero::before {
  background:
    radial-gradient(circle at 76% 18%, rgba(24, 160, 10, 0.18), transparent 30%),
    radial-gradient(circle at 16% 88%, rgba(11, 95, 2, 0.08), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(247, 250, 247, 0.46));
}

.partner-hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}

.partner-page-hero h1 {
  width: auto;
  max-width: 650px;
  margin: 0 auto 24px;
  font-size: clamp(3.25rem, 5vw, 5.7rem);
  line-height: 0.94;
}

.partner-page-hero h1 > span {
  display: block;
  white-space: nowrap;
}

.partner-page-hero .partner-hero-copy > p:not(.eyebrow) {
  width: auto;
  max-width: 650px;
  margin: 0 auto 30px;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

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

.partner-hero-actions > span {
  display: inline-flex;
  align-items: center;
  min-height: var(--button-h);
  padding: 0 20px;
  border: 1px solid rgba(5, 7, 6, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  color: rgba(5, 7, 6, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.partner-hero-visual {
  position: relative;
  min-height: clamp(360px, 37vw, 510px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: clamp(26px, 3vw, 40px);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 30px 78px rgba(5, 7, 6, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.partner-hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(3, 10, 5, 0.78));
  content: "";
  pointer-events: none;
}

.partner-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 62% center;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-hero-visual:hover img {
  transform: scale(1.035);
}

.partner-hero-visual figcaption {
  position: absolute;
  right: clamp(20px, 3vw, 34px);
  bottom: clamp(20px, 3vw, 34px);
  left: clamp(20px, 3vw, 34px);
  z-index: 2;
  display: grid;
  gap: 5px;
  color: var(--white);
}

.partner-hero-visual figcaption span,
.partner-card-label {
  color: #5be850;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner-hero-visual figcaption strong {
  max-width: 390px;
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  line-height: 1.05;
}

.partner-benefits-grid .service-card {
  min-height: 350px;
  border-radius: 26px;
  box-shadow: 0 18px 48px rgba(5, 7, 6, 0.08);
}

.partner-showcase {
  padding-top: clamp(64px, 8vw, 104px);
}

.partner-showcase-heading {
  align-items: end;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.partner-logo-card {
  display: grid;
  place-items: center;
  min-height: clamp(250px, 27vw, 360px);
  overflow: hidden;
  padding: clamp(28px, 4vw, 58px);
  border: 1px solid rgba(5, 7, 6, 0.09);
  border-radius: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(circle at 88% 10%, rgba(24, 160, 10, 0.08), transparent 32%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 62px rgba(5, 7, 6, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.partner-logo-card:hover {
  border-color: rgba(11, 95, 2, 0.3);
  box-shadow: 0 30px 72px rgba(11, 95, 2, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transform: translateY(-4px);
}

.partner-logo-card img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
}

.partner-logo-card-blue {
  background: #086aa8;
}

.partner-logo-card-blue img {
  width: min(100%, 540px);
}

@media (max-width: 700px) {
  .partner-logo-grid {
    grid-template-columns: 1fr;
  }
}

.partner-benefits-grid .partner-card-label {
  margin: auto 0 12px;
  color: var(--green);
}

.partner-benefits-grid .service-card-dark .partner-card-label {
  color: #5be850;
}

.partner-benefits-grid .service-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.partner-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-process-grid li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  min-height: 190px;
  padding: clamp(22px, 2.5vw, 32px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 42px rgba(5, 7, 6, 0.06);
}

.partner-process-grid li > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(11, 95, 2, 0.1);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
}

.partner-process-grid h3 {
  margin: 8px 0 10px;
  font-size: 1.1rem;
}

.partner-process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.partner-contact {
  scroll-margin-top: 110px;
}

.partner-contact > div {
  align-self: center;
  max-width: 560px;
  margin: 0;
  text-align: left;
}

.partner-contact > div h2 {
  margin-right: 0;
  margin-left: 0;
  font-size: clamp(1.9rem, 2.7vw, 3rem);
  line-height: 0.98;
}

.partner-contact > div h2 > span {
  display: block;
  white-space: nowrap;
}

.partner-contact > div > p:not(.eyebrow) {
  max-width: 520px;
  margin-right: 0;
  margin-left: 0;
}

.legal-page {
  min-height: 100svh;
  padding: clamp(120px, 12vw, 158px) var(--page-x) clamp(64px, 8vw, 104px);
}

.legal-shell {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 68px);
  border: 1px solid rgba(5, 7, 6, 0.08);
  border-radius: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(circle at 90% 8%, rgba(24, 160, 10, 0.13), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(247, 250, 247, 0.48));
  box-shadow: var(--shadow);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
}

.legal-heading {
  max-width: 720px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.legal-heading h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.92;
}

.legal-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.55;
}

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

.legal-card {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(5, 7, 6, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 16px 42px rgba(5, 7, 6, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.legal-card h2 {
  margin-bottom: 16px;
  color: var(--green);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-card address,
.legal-card p {
  margin: 0;
  color: rgba(5, 7, 6, 0.72);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-style: normal;
  line-height: 1.7;
}

.legal-card strong {
  color: var(--ink);
}

.legal-card a {
  color: var(--green);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(11, 95, 2, 0.25);
  text-underline-offset: 3px;
}

.legal-card-wide {
  grid-column: 1 / -1;
}

.privacy-content {
  grid-template-columns: 1fr;
}

.privacy-card ul {
  margin: 14px 0 0;
  padding-left: 1.2em;
  color: rgba(5, 7, 6, 0.72);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.7;
}

.privacy-card li + li {
  margin-top: 7px;
}

.privacy-card p + p {
  margin-top: 14px;
}

@media (max-width: 680px) {
  .legal-page {
    padding: 104px 12px 54px;
  }

  .legal-shell {
    padding: 26px 18px;
    border-radius: 28px;
  }

  .legal-heading h1 {
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

  .legal-content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .partner-page-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 128px 26px 34px;
  }

  .partner-page-hero h1 {
    max-width: 650px;
    font-size: clamp(3rem, 10vw, 4.8rem);
  }

  .partner-hero-visual {
    min-height: clamp(320px, 62vw, 460px);
  }

  .partner-process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .partner-page-hero {
    width: calc(100% - 24px);
    gap: 22px;
    padding: 112px 18px 20px;
  }

  .partner-page-hero::before {
    inset: 82px 0 0;
    border-radius: 30px;
  }

  .partner-page-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 10vw, 3.25rem);
    line-height: 0.92;
  }

  .partner-page-hero .partner-hero-copy > p:not(.eyebrow) {
    margin-bottom: 22px;
    font-size: 0.96rem;
  }

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

  .partner-hero-actions > span {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.68rem;
  }

  .partner-hero-visual {
    min-height: 310px;
    border-radius: 24px;
  }

  .partner-benefits-grid .service-card {
    min-height: 300px;
  }

  .partner-logo-grid {
    grid-template-columns: 1fr;
  }

  .partner-logo-card {
    min-height: 210px;
    padding: 24px;
  }

  .partner-process-grid li {
    min-height: auto;
  }

  .partner-contact > div h2 {
    font-size: clamp(1.6rem, 7.2vw, 2.05rem);
  }
}

.hero-strip {
  position: relative;
  z-index: 4;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.3vw, 20px);
  width: 100%;
  margin-top: clamp(4px, 1.4vw, 20px);
  padding: clamp(18px, 2vw, 30px);
  border: 1px solid var(--glass-border);
  border-radius: clamp(24px, 2.5vw, 34px);
  background:
    radial-gradient(circle at 14% 18%, rgba(11, 95, 2, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.18));
  color: var(--ink);
  box-shadow: 0 26px 80px rgba(5, 7, 6, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(42px) saturate(190%);
  -webkit-backdrop-filter: blur(42px) saturate(190%);
}

.hero-strip div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  align-items: center;
  min-height: clamp(96px, 7.4vw, 124px);
  padding: clamp(18px, 1.8vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: clamp(18px, 1.7vw, 24px);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.hero-strip div:hover {
  border-color: rgba(11, 95, 2, 0.3);
  background:
    radial-gradient(circle at 82% 20%, rgba(11, 95, 2, 0.16), transparent 30%),
    rgba(240, 249, 238, 0.82);
  box-shadow: 0 20px 54px rgba(11, 95, 2, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  color: var(--green);
  transform: translateY(-4px);
}

.hero-strip strong,
.hero-strip span {
  display: block;
}

.hero-strip strong {
  margin-bottom: 2px;
  font-size: clamp(0.98rem, 1.15vw, 1.18rem);
}

.hero-strip span {
  color: var(--muted);
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  line-height: 1.25;
}

.hero-strip .dock-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: clamp(36px, 3.4vw, 44px);
  height: clamp(36px, 3.4vw, 44px);
  border-radius: 50%;
  background: rgba(11, 95, 2, 0.1);
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 900;
  overflow: hidden;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-strip .dock-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.82;
  transform: scale(1);
  transition: filter 180ms ease, opacity 180ms ease;
}

.hero-strip .dock-icon.dock-icon-kraft img {
  filter: brightness(0);
  opacity: 1;
  transform: scale(1.25);
}

.hero-strip .dock-icon.dock-icon-cardio img {
  transform: scale(0.72);
}

.hero-strip .dock-icon.dock-icon-inbody img {
  transform: scale(1.1);
}

.hero-strip .dock-icon.dock-icon-kurse img {
  transform: scale(1.12);
}

.hero-strip .dock-icon.dock-icon-wellness img {
  transform: scale(0.94);
}

.hero-strip div:hover .dock-icon {
  background: var(--green);
  color: var(--white);
  transform: scale(1.04);
}

.hero-strip div:hover .dock-icon img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.section {
  width: min(var(--page-max), calc(100% - 32px));
  margin: 0 auto;
  padding: var(--section-y) 0;
}

.visual-band.section {
  padding-bottom: clamp(18px, 2.6vw, 36px);
}

.peek-slider.section {
  padding-top: clamp(8px, 1.4vw, 18px);
  padding-bottom: clamp(10px, 1.8vw, 24px);
}

.peek-slider.section + .membership-section {
  padding-top: clamp(24px, 3.6vw, 46px);
}

.intro {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 56px;
  border-bottom: 1px solid var(--line);
}

.section-label {
  color: var(--muted);
  font-weight: 720;
}

.intro h2,
.section-heading h2,
.benefits h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro p,
.section-heading p,
.benefits p,
.benefits li,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.intro-copy p {
  max-width: 720px;
  margin: 24px 0 0;
}

.section-heading {
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-heading > p {
  max-width: 380px;
  margin: 0;
}

.service-grid,
.pricing-grid,
.course-grid,
.schedule-grid,
.feature-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.membership-section {
  position: relative;
  width: 100%;
  max-width: none;
}

.membership-section .section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 18px;
  width: 100vw;
  max-width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-bottom: clamp(30px, 3.2vw, 48px);
  margin-left: calc(50% - 50vw);
  text-align: center;
  transform: none;
}

.membership-section .section-heading > div {
  display: grid;
  justify-items: center;
  width: 100%;
}

.membership-section .section-heading h2 {
  width: min(1120px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

#membership-title { scroll-margin-top: 96px; }

.back-offer-page { background: #f1f5f1; }

.back-offer-hero {
  display: grid;
  justify-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: clamp(72px, 10vw, 128px) clamp(22px, 6vw, 76px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: clamp(30px, 4vw, 54px);
  background:
    radial-gradient(circle at 82% 15%, rgba(25, 183, 49, .18), transparent 30%),
    radial-gradient(circle at 12% 92%, rgba(0, 138, 23, .1), transparent 34%),
    rgba(255,255,255,.86);
  box-shadow: 0 30px 90px rgba(8, 11, 9, .1);
  text-align: center;
}

.back-offer-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: .9;
  letter-spacing: -.065em;
}

.back-offer-hero h1 em { color: #008a17; font-family: Georgia, serif; font-weight: 700; }

.back-offer-hero > p:not(.eyebrow) { max-width: 720px; margin: 28px 0 0; color: var(--muted); font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.6; }

.back-offer-timer { display: grid; gap: 6px; margin: 28px 0 24px; color: #777e78; font-size: .76rem; font-weight: 650; }

.back-offer-timer strong { color: #252a26; font-size: 1.1rem; font-variant-numeric: tabular-nums; letter-spacing: .08em; }

.back-offer-memberships { padding-top: clamp(58px, 8vw, 100px); }

.back-offer-memberships .section-heading { margin-bottom: clamp(28px, 4vw, 46px); }

.back-offer-memberships .plan-card { position: relative; }

.back-offer-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e8f8e9;
  color: #007516;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.back-offer-memberships .main-plan .back-offer-badge { top: 74px; }

.back-offer-terms { max-width: 820px; margin: 28px auto 0; color: #7b817c; font-size: .72rem; line-height: 1.6; text-align: center; }

@media (max-width: 680px) {
  .back-offer-hero { min-height: calc(100dvh - 104px); align-content: center; padding: 54px 20px; }
  .back-offer-hero h1 { font-size: clamp(2.8rem, 15vw, 4.3rem); line-height: .93; }
  .back-offer-hero > p:not(.eyebrow) { margin-top: 22px; }
  .back-offer-memberships { padding-top: 48px; }
  .back-offer-badge { top: 18px; right: 18px; }
  .back-offer-memberships .main-plan .back-offer-badge { top: 68px; }
}

.membership-section .membership-note {
  justify-self: center;
}

.membership-back-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
  width: min(var(--page-max), calc(100% - 32px));
  margin: 0 auto clamp(22px, 2.5vw, 34px);
  padding: clamp(24px, 3vw, 38px) clamp(24px, 4vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: clamp(26px, 3vw, 38px);
  background:
    radial-gradient(circle at 84% 18%, rgba(32, 190, 56, .2), transparent 30%),
    linear-gradient(135deg, #07110a, #123d17);
  box-shadow: 0 22px 60px rgba(5, 35, 11, .16);
  color: #fff;
}

.homepage-back-offer {
  width: min(var(--page-max), calc(100% - 32px));
  margin-top: clamp(24px, 4vw, 54px);
  margin-bottom: clamp(34px, 5vw, 72px);
}

.membership-section .back-offer-badge { top: 22px; }

.membership-section .main-plan .back-offer-badge { top: 74px; }

.membership-back-offer > div { max-width: 760px; }

.membership-back-offer .eyebrow { margin: 0 0 8px; color: #39dd55; }

.membership-back-offer h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.membership-back-offer h3 em {
  color: #39dd55;
  font-family: Georgia, serif;
  font-weight: 700;
}

.membership-back-offer > div > p:last-child {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .74);
  line-height: 1.55;
}

.membership-back-offer > a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 25px;
  border-radius: 999px;
  background: #18b72e;
  box-shadow: 0 14px 34px rgba(16, 191, 43, .22);
  color: #041007;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-decoration: none;
}

.membership-back-offer > a:hover { transform: translateY(-2px); }

@media (max-width: 760px) {
  .membership-back-offer {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .membership-back-offer > a { width: 100%; }

  .homepage-back-offer { margin-top: 18px; margin-bottom: 34px; }
}

.membership-note {
  display: grid;
  gap: 4px;
  justify-self: end;
  width: min(360px, 100%);
  padding: 18px 22px;
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 18%, rgba(11, 95, 2, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
}

.membership-note span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.membership-note strong {
  color: var(--ink);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  font-weight: 900;
  line-height: 1.25;
}

.membership-section::before {
  position: absolute;
  inset: clamp(230px, 20vw, 300px) 0 40px;
  z-index: -1;
  border-radius: 42px;
  background:
    radial-gradient(circle at 18% 18%, rgba(11, 95, 2, 0.16), transparent 28%),
    radial-gradient(circle at 82% 48%, rgba(255, 255, 255, 0.78), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  content: "";
  backdrop-filter: blur(46px) saturate(190%);
  -webkit-backdrop-filter: blur(46px) saturate(190%);
}

.membership-console {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  width: min(var(--page-max), calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
  padding: clamp(16px, 1.8vw, 24px);
  border: 1px solid var(--glass-border);
  border-radius: clamp(28px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 28px 90px rgba(5, 7, 6, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(44px) saturate(195%);
  -webkit-backdrop-filter: blur(44px) saturate(195%);
}

.membership-console::after {
  position: absolute;
  inset: 12px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2));
  content: "";
  pointer-events: none;
}

.service-card,
.price-card,
.course-grid article,
.schedule-grid article,
.feature-grid div {
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.plan-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: clamp(620px, 48vw, 760px);
  overflow: hidden;
  padding: clamp(26px, 2.7vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: clamp(22px, 2.2vw, 32px);
  background:
    radial-gradient(circle at 82% 10%, rgba(11, 95, 2, 0.12), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.36));
  box-shadow: 0 22px 68px rgba(5, 7, 6, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(34px) saturate(190%);
  -webkit-backdrop-filter: blur(34px) saturate(190%);
  transition:
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.plan-card::before {
  position: absolute;
  inset: -40% -30% auto auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(11, 95, 2, 0.12);
  content: "";
  filter: blur(14px);
  opacity: 0.9;
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease;
}

.plan-card:hover {
  border-color: rgba(11, 95, 2, 0.32);
  background:
    radial-gradient(circle at 82% 10%, rgba(11, 95, 2, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(238, 248, 236, 0.88), rgba(255, 255, 255, 0.46));
  box-shadow: 0 30px 90px rgba(11, 95, 2, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: var(--green);
  transform: translateY(-8px);
}

.plan-card:hover::before {
  background: rgba(11, 95, 2, 0.26);
  opacity: 1;
  transform: scale(1.18);
}

.main-plan {
  min-height: clamp(650px, 50vw, 790px);
  padding-top: clamp(52px, 4vw, 66px);
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(11, 95, 2, 0.96), rgba(4, 34, 2, 0.94));
  color: var(--white);
  transform: translateY(-18px);
}

.price-card-featured.main-plan {
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(11, 95, 2, 0.96), rgba(4, 34, 2, 0.94));
}

.price-card-featured.main-plan:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 76% 14%, rgba(255, 255, 255, 0.34), transparent 30%),
    radial-gradient(circle at 18% 80%, rgba(24, 160, 10, 0.34), transparent 36%),
    linear-gradient(145deg, rgba(8, 120, 3, 0.98), rgba(3, 38, 2, 0.96));
  box-shadow: 0 34px 100px rgba(11, 95, 2, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.36);
  transform: translateY(-28px);
}

.membership-console .plan-card:last-child:hover {
  border-color: rgba(24, 160, 10, 0.42);
  background:
    radial-gradient(circle at 76% 10%, rgba(24, 160, 10, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(242, 252, 240, 0.92), rgba(255, 255, 255, 0.5));
  box-shadow: 0 30px 90px rgba(24, 160, 10, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.plan-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.plan-topline p {
  margin: 0;
  color: var(--green);
  font-size: clamp(1.45rem, 2.15vw, 2.15rem);
  font-weight: 900;
  line-height: 1;
}

.plan-topline span {
  padding: 8px 12px;
  border: 1px solid rgba(5, 7, 6, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.plan-card h3 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  font-size: clamp(3.2rem, 4.7vw, 5.3rem);
  line-height: 0.86;
  white-space: nowrap;
}

.plan-card h3 span {
  display: inline-block;
  margin: 0 0 0.18em;
  color: currentColor;
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  font-weight: 800;
  line-height: 1;
  vertical-align: baseline;
  white-space: nowrap;
}

.plan-card small {
  color: var(--muted);
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  font-weight: 600;
}

.main-plan .plan-topline p,
.main-plan h3,
.main-plan small {
  color: var(--white);
}

.main-plan .plan-topline span {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
}

.plan-duration {
  margin: 18px 0 clamp(46px, 5vw, 72px);
  color: var(--muted);
  font-size: clamp(0.78rem, 0.95vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.plan-compare {
  margin: clamp(18px, 2vw, 26px) 0 clamp(30px, 3vw, 42px);
  color: rgba(5, 7, 6, 0.46);
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  font-weight: 820;
}

.plan-compare s {
  text-decoration-thickness: 2px;
}

.plan-features {
  display: grid;
  gap: 16px;
  margin: 0 0 clamp(30px, 3vw, 44px);
  padding: 0;
  list-style: none;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(5, 7, 6, 0.66);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  font-weight: 650;
  line-height: 1.25;
}

.plan-features li::before {
  content: "✓";
  color: var(--green-bright);
  font-size: 1.15em;
  font-weight: 900;
}

.plan-cta {
  display: grid;
  place-items: center;
  min-height: 58px;
  margin-top: auto;
  padding: 0 22px;
  border: 1px solid rgba(5, 7, 6, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.42));
  color: var(--ink);
  font-size: clamp(0.86rem, 0.95vw, 0.98rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 18px 46px rgba(5, 7, 6, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.plan-cta:hover {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(11, 95, 2, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.best-price-badge {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 3;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--green-bright);
  color: #031a03;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
  box-shadow: 0 18px 42px rgba(24, 160, 10, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.main-plan .plan-duration,
.main-plan .plan-compare,
.main-plan .plan-features li,
.main-plan h3 span {
  color: rgba(255, 255, 255, 0.72);
}

.main-plan .plan-features li::before {
  color: #20d06b;
}

.main-plan .plan-cta {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--green-bright);
  color: #031a03;
  box-shadow: 0 22px 58px rgba(24, 160, 10, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.main-plan .plan-cta:hover {
  background: rgba(255, 255, 255, 0.94);
  color: var(--green);
}

.plan-disclaimer {
  max-width: 1100px;
  margin: clamp(18px, 2vw, 26px) auto 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 1vw, 0.98rem);
  line-height: 1.55;
}

.course-grid article {
  position: relative;
  display: flex;
  min-height: 172px;
  overflow: hidden;
  padding: 22px;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 10%, rgba(24, 160, 10, 0.13), transparent 34%),
    rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 42px rgba(5, 7, 6, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.course-grid article:hover {
  border-color: rgba(11, 95, 2, 0.32);
  box-shadow: 0 24px 52px rgba(11, 95, 2, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: translateY(-4px);
}

.course-number {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(11, 95, 2, 0.32);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.course-grid h3 {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.1;
}

.course-grid article > p {
  margin: 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.schedule-grid article {
  min-height: 330px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(5, 7, 6, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.schedule-grid h3 {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 1.15rem;
}

.schedule-grid h3 > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(11, 95, 2, 0.1);
  color: var(--green);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.schedule-list {
  display: grid;
  gap: 10px;
}

.schedule-list p {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 2px 10px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(5, 7, 6, 0.07);
  border-radius: 14px;
  background: rgba(246, 249, 246, 0.78);
}

.schedule-list time {
  grid-row: span 2;
  align-self: center;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
}

.schedule-list strong {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.2;
}

.schedule-list p > span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 650;
}

.schedule-empty .schedule-list p {
  grid-template-columns: 1fr;
  padding: 20px;
  border-style: dashed;
  text-align: center;
}

.feature-grid div {
  display: grid;
  place-items: center;
  min-height: 82px;
  color: var(--green);
  font-weight: 760;
  text-align: center;
}

.feature-heading {
  margin: clamp(28px, 3.6vw, 46px) 0 clamp(12px, 1.6vw, 18px);
  text-align: center;
}

.feature-heading .eyebrow {
  margin-bottom: 8px;
}

.feature-heading h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.membership-features {
  position: relative;
  overflow: hidden;
  gap: clamp(10px, 1vw, 14px);
  margin-top: 0;
  padding: clamp(12px, 1.4vw, 18px);
  border: 1px solid var(--glass-border);
  border-radius: clamp(24px, 2.5vw, 34px);
  background:
    radial-gradient(circle at 18% 12%, rgba(11, 95, 2, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34));
  box-shadow: 0 20px 64px rgba(5, 7, 6, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(38px) saturate(190%);
  -webkit-backdrop-filter: blur(38px) saturate(190%);
}

.membership-features::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 84% 80%, rgba(11, 95, 2, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.24);
  content: "";
  backdrop-filter: blur(12px) saturate(170%);
  -webkit-backdrop-filter: blur(12px) saturate(170%);
}

.membership-features div {
  position: relative;
  z-index: 1;
  grid-template-columns: auto 1fr;
  place-items: center start;
  gap: 12px;
  min-height: clamp(62px, 6vw, 76px);
  padding: 12px 14px;
  border-color: rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  text-align: left;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.membership-features div:hover {
  border-color: rgba(11, 95, 2, 0.28);
  background:
    radial-gradient(circle at 88% 20%, rgba(11, 95, 2, 0.14), transparent 30%),
    rgba(240, 249, 238, 0.82);
  box-shadow: 0 18px 46px rgba(11, 95, 2, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  color: var(--green);
  transform: translateY(-4px);
}

.membership-features span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(11, 95, 2, 0.1);
  color: var(--green);
  font-size: 1rem;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.membership-features div:hover span {
  background: var(--green);
  color: var(--white);
  transform: scale(1.04);
}

.student-offer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 3.4vw, 48px);
  align-items: stretch;
  overflow: hidden;
  width: min(1280px, calc(100% - 48px));
  margin-top: clamp(-18px, -1vw, -8px);
  margin-right: auto;
  margin-left: auto;
  padding: clamp(40px, 5vw, 78px) clamp(30px, 6vw, 92px);
  border: 1px solid var(--glass-border);
  border-radius: clamp(28px, 3.4vw, 44px);
  background:
    radial-gradient(circle at 78% 18%, rgba(11, 95, 2, 0.16), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.28));
  box-shadow: 0 26px 86px rgba(5, 7, 6, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(44px) saturate(190%);
  -webkit-backdrop-filter: blur(44px) saturate(190%);
}

.student-offer::after {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(-30px, -2vw, -16px);
  z-index: 0;
  width: clamp(150px, 20vw, 290px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 35%, rgba(255, 255, 255, 0.72), transparent 34%),
    radial-gradient(circle, rgba(11, 95, 2, 0.18), transparent 68%);
  content: "";
  filter: blur(2px);
}

.student-copy,
.student-card {
  position: relative;
  z-index: 1;
}

.student-copy {
  justify-self: center;
  display: grid;
  align-content: center;
  justify-items: start;
  max-width: 680px;
}

.student-copy h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.6vw, 5rem);
  line-height: 0.95;
}

.student-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.6;
}

.student-card {
  justify-self: center;
  width: min(420px, 100%);
  display: grid;
  align-content: space-between;
  min-height: clamp(300px, 28vw, 420px);
  padding: clamp(22px, 2.6vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: clamp(24px, 2.8vw, 34px);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.28), transparent 32%),
    linear-gradient(145deg, rgba(11, 95, 2, 0.98), rgba(3, 42, 2, 0.94));
  color: var(--white);
  box-shadow: 0 22px 62px rgba(11, 95, 2, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.student-badge {
  justify-self: start;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 800;
}

.student-card p {
  margin: 28px 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-transform: uppercase;
}

.student-card h3 {
  max-width: 420px;
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 0.98;
}

.student-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.student-card li {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.service-card {
  display: grid;
  align-content: space-between;
}

.service-card-dark,
.price-card-featured {
  background: var(--ink);
  color: var(--white);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(11, 95, 2, 0.1);
  color: var(--green);
  font-weight: 800;
}

.service-card-dark .service-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.service-card-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.wellness-showcase {
  padding-top: clamp(46px, 6vw, 82px);
}

.wellness-showcase .section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(28px, 3vw, 42px);
  text-align: center;
}

.wellness-showcase .section-heading h2 {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.wellness-showcase .section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.wellness-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.wellness-card {
  overflow: hidden;
  min-height: clamp(620px, 45vw, 760px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: clamp(22px, 2.4vw, 32px);
  background:
    radial-gradient(circle at 82% 0%, rgba(11, 95, 2, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(15, 20, 22, 0.98), rgba(9, 13, 14, 0.98));
  color: var(--white);
  box-shadow: 0 28px 76px rgba(5, 7, 6, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.wellness-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(260px, 23vw, 370px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 70% 26%, rgba(255, 255, 255, 0.5), transparent 16%),
    radial-gradient(circle at 28% 82%, rgba(11, 95, 2, 0.34), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(235, 240, 236, 0.78));
}

.wellness-visual::before,
.wellness-visual::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.wellness-visual::before {
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.wellness-visual::after {
  width: clamp(90px, 9vw, 150px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.8), rgba(11, 95, 2, 0.52));
  filter: blur(0.5px);
}

.wellness-visual-light {
  background:
    radial-gradient(circle at 62% 48%, rgba(255, 220, 120, 0.72), transparent 18%),
    radial-gradient(circle at 36% 72%, rgba(210, 18, 18, 0.58), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 242, 230, 0.78));
}

.wellness-visual-image {
  background: #080b0b;
}

.wellness-visual-image::before,
.wellness-visual-image::after {
  display: none;
}

.wellness-visual-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.wellness-visual-water {
  background:
    radial-gradient(circle at 70% 28%, rgba(76, 225, 255, 0.52), transparent 26%),
    radial-gradient(circle at 30% 78%, rgba(255, 255, 255, 0.62), transparent 26%),
    linear-gradient(135deg, rgba(4, 21, 25, 0.98), rgba(8, 15, 18, 0.96));
}

.wellness-visual-analysis {
  background:
    radial-gradient(circle at 70% 38%, rgba(255, 255, 255, 0.72), transparent 18%),
    radial-gradient(circle at 34% 72%, rgba(11, 95, 2, 0.42), transparent 34%),
    linear-gradient(135deg, rgba(235, 244, 239, 0.96), rgba(215, 226, 219, 0.78));
}

.wellness-visual span {
  position: relative;
  z-index: 1;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(5, 7, 6, 0.18);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wellness-body {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 2.5vw, 34px);
}

.wellness-body .eyebrow {
  color: rgba(255, 255, 255, 0.54);
}

.wellness-body h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.65rem, 2.3vw, 2.35rem);
  line-height: 1;
  text-transform: uppercase;
}

.wellness-body p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.65;
}

.wellness-body ul {
  display: grid;
  gap: 13px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.wellness-body li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.35;
}

.wellness-body li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #18d56b;
  content: "";
  transform: translateY(-50%);
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: center;
  width: 100%;
  margin-top: clamp(56px, 5.5vw, 92px);
  padding-top: clamp(82px, 9vw, 132px);
  padding-bottom: clamp(58px, 7vw, 96px);
  padding-right: max(var(--page-x), calc((100vw - var(--page-max)) / 2));
  padding-left: max(var(--page-x), calc((100vw - var(--page-max)) / 2));
  background: var(--green);
  color: var(--white);
}

.phone-panel {
  position: relative;
  overflow: hidden;
  max-width: 410px;
  min-height: 520px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(34px) saturate(180%);
  -webkit-backdrop-filter: blur(34px) saturate(180%);
}

.phone-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 484px;
  border-radius: 30px;
  object-fit: cover;
}

.floating-stat {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: grid;
  gap: 2px;
  min-width: 138px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(5, 7, 6, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
}

.floating-stat strong {
  color: var(--green);
  font-size: 2.3rem;
  line-height: 1;
}

.floating-stat span {
  color: var(--muted);
  font-weight: 720;
}

.phone-topbar {
  justify-content: space-between;
  margin-bottom: 62px;
}

.phone-topbar span:first-child {
  width: 68px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.phone-topbar span:last-child {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.metric-ring {
  display: grid;
  place-items: center;
  width: min(260px, 80%);
  aspect-ratio: 1;
  margin: 0 auto 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(11, 95, 2, 0.92) 0 57%, transparent 58%),
    conic-gradient(#ffffff 0 82%, rgba(255, 255, 255, 0.22) 82% 100%);
}

.metric-ring span {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 820;
}

.phone-panel p {
  text-align: center;
  color: rgba(255, 255, 255, 0.76);
}

.mini-list {
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-list span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
}

.benefits .eyebrow,
.benefits p,
.benefits li {
  color: rgba(255, 255, 255, 0.72);
}

.benefits h2 {
  max-width: 980px;
  line-height: 1.08;
  letter-spacing: 0.006em;
  word-spacing: 0.08em;
  text-wrap: balance;
}

.benefits ul {
  display: grid;
  gap: 14px;
  max-width: 620px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.segmented {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  min-width: 220px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #eef2ef;
}

.segment {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 720;
}

.segment.active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(5, 7, 6, 0.08);
}

.price-card:not(.plan-card) {
  min-height: 210px;
}

.price-card:not(.plan-card) p {
  color: var(--green);
  font-weight: 780;
}

.price-card-featured:not(.plan-card) p {
  color: rgba(255, 255, 255, 0.76);
}

.price-card:not(.plan-card) h3 {
  margin: 42px 0 10px;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 0.95;
}

.faq-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding-top: clamp(28px, 4vw, 52px);
}

.faq-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100vw;
  max-width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-bottom: clamp(28px, 4vw, 48px);
  margin-left: calc(50% - 50vw);
  text-align: center;
  transform: none;
}

.faq-heading h2 {
  width: min(1420px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(3rem, 5.4vw, 5.4rem);
  line-height: 0.92;
  text-transform: uppercase;
  text-align: center;
  text-wrap: balance;
}

.faq-heading > div {
  display: grid;
  justify-items: center;
  width: 100%;
}

.faq-heading .eyebrow {
  justify-self: center;
  width: 100%;
  text-align: center;
}

.faq-heading > p {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 12%, rgba(11, 95, 2, 0.11), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.34));
  box-shadow: 0 22px 70px rgba(5, 7, 6, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(42px) saturate(190%);
  -webkit-backdrop-filter: blur(42px) saturate(190%);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.faq-item:hover {
  border-color: rgba(11, 95, 2, 0.22);
  background:
    radial-gradient(circle at 92% 12%, rgba(11, 95, 2, 0.15), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42));
  box-shadow: 0 26px 78px rgba(5, 7, 6, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transform: translateY(-1px);
}

.faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(14px, 2vw, 26px);
  align-items: center;
  min-height: clamp(78px, 6vw, 98px);
  padding: clamp(16px, 1.8vw, 22px) clamp(20px, 2.6vw, 34px);
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary span {
  display: grid;
  place-items: center;
  width: clamp(44px, 4.5vw, 58px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.3), transparent 34%),
    var(--green);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.9rem, 1.2vw, 1.08rem);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(11, 95, 2, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.faq-item summary strong {
  font-size: clamp(1.05rem, 1.8vw, 1.38rem);
  font-weight: 900;
  line-height: 1.15;
}

.faq-item summary::after {
  width: 11px;
  height: 11px;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item[open] summary::after {
  transform: rotate(-135deg) translate(-2px, -2px);
}

.faq-answer {
  overflow: hidden;
  transition: height 320ms cubic-bezier(0.16, 1, 0.3, 1), opacity 240ms ease;
  will-change: height, opacity;
}

.faq-answer p {
  margin: 0 clamp(24px, 3vw, 40px) clamp(24px, 2.6vw, 34px) clamp(82px, 7.5vw, 118px);
  color: rgba(5, 7, 6, 0.72);
  font-size: clamp(0.98rem, 1.25vw, 1.18rem);
  line-height: 1.6;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 42px;
  padding: 44px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.contact-info {
  display: grid;
  align-content: start;
  gap: clamp(12px, 1.35vw, 17px);
}

.contact h2 {
  max-width: 620px;
  font-size: clamp(2rem, 3.7vw, 3.55rem);
}

.contact p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.7);
}

.contact .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.contact-details {
  display: grid;
  margin-top: 0;
  padding: clamp(16px, 1.75vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: clamp(16px, 1.8vw, 24px);
  background:
    radial-gradient(circle at 18% 100%, rgba(11, 95, 2, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-detail {
  display: grid;
  grid-template-columns: minmax(96px, 0.34fr) minmax(0, 1fr);
  gap: clamp(10px, 1.15vw, 16px);
  align-items: baseline;
  padding: clamp(9px, 1vw, 13px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-detail:first-child {
  padding-top: 0;
}

.contact-detail:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-detail span {
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(0.64rem, 0.72vw, 0.72rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail strong {
  color: var(--white);
  font-size: clamp(0.98rem, 1.25vw, 1.2rem);
  font-weight: 760;
  line-height: 1.18;
}

.contact-detail p {
  grid-column: 2;
  max-width: none;
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(0.86rem, 0.98vw, 0.96rem);
  line-height: 1.25;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-actions .button {
  min-width: min(150px, 100%);
  min-height: 44px;
  padding-right: 22px;
  padding-left: 22px;
  font-size: 0.82rem;
}

.contact-route {
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.contact-route:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  outline: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.45;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-form textarea {
  min-height: 130px;
  padding: 15px;
  resize: vertical;
}

.contact-form .message-field {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: block;
  width: 100%;
  min-height: 130px;
  padding: 15px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 8px !important;
  outline: 0 !important;
  background: rgba(255, 255, 255, 0.08) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  background-image: none !important;
  color: var(--white) !important;
  color-scheme: dark;
  font-family: inherit !important;
  font-size: 1rem !important;
  line-height: 1.45 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  resize: vertical;
}

.contact-form .message-field:focus {
  border-color: rgba(255, 255, 255, 0.34) !important;
  background: rgba(255, 255, 255, 0.11) !important;
}

.contact-form .message-field::placeholder {
  color: rgba(255, 255, 255, 0.42) !important;
  opacity: 1;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.11);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-form select {
  color-scheme: dark;
}

.contact-form .form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form .form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  line-height: 1.5;
}

.contact-form .form-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 1px;
  padding: 0;
  appearance: auto;
  -webkit-appearance: checkbox;
  accent-color: #18a00a;
}

.contact-form .form-consent a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  line-height: 1.45;
}

.form-status.is-success {
  border-color: rgba(91, 232, 80, 0.42);
  background: rgba(24, 160, 10, 0.16);
  color: #c9ffc4;
}

.form-status.is-error {
  border-color: rgba(255, 132, 132, 0.42);
  background: rgba(176, 30, 30, 0.16);
  color: #ffd4d4;
}

.footer {
  display: block;
  width: min(var(--page-max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: clamp(28px, 3vw, 42px) clamp(28px, 3vw, 42px) 0 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(11, 95, 2, 0.24), transparent 30%),
    linear-gradient(145deg, rgba(5, 7, 6, 0.98), rgba(10, 15, 13, 0.96));
  color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 -24px 80px rgba(5, 7, 6, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
  padding-bottom: clamp(34px, 4vw, 54px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: grid;
  gap: 22px;
  max-width: 330px;
}

.footer-logo {
  width: clamp(96px, 8vw, 132px);
  height: auto;
  background: transparent;
  object-fit: contain;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.55;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.footer-column {
  display: grid;
  gap: 15px;
}

.footer-column h2 {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  font-weight: 650;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-top: clamp(22px, 2.5vw, 34px);
  color: rgba(255, 255, 255, 0.48);
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  line-height: 1.5;
}

.footer a:hover {
  color: var(--white);
}

.footer-column a:hover {
  transform: translateX(4px);
}

.footer-socials a:hover {
  border-color: rgba(24, 160, 10, 0.42);
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 1180px) {
  :root {
    --page-x: clamp(18px, 3vw, 34px);
  }

  h1 {
    font-size: clamp(3rem, 7vw, 6rem);
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  }

  .hero-content {
    padding-bottom: clamp(54px, 7vw, 92px);
  }

  .hero-people {
    width: min(360px, 100%);
    margin-bottom: -64px;
  }

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

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

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

  .hero-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
  }

  .membership-console {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
  }

  .plan-card,
  .main-plan {
    min-height: auto;
  }

  .main-plan {
    order: -1;
    padding-top: 58px;
    transform: none;
  }

  .best-price-badge {
    top: 18px;
    transform: translateX(-50%);
  }

  .price-card-featured.main-plan:hover,
  .plan-card:hover {
    transform: translateY(-6px);
  }

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

  .student-offer {
    grid-template-columns: 1fr;
    width: min(980px, calc(100% - 40px));
    padding: clamp(34px, 5vw, 54px);
  }

  .student-card {
    justify-self: stretch;
    width: 100%;
    min-height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .plan-card,
  .plan-card::before,
  .membership-features div,
  .membership-features span {
    transition: none;
  }

  .plan-card:hover,
  .price-card-featured.main-plan:hover,
  .membership-features div:hover {
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    width: min(720px, calc(100% - 28px));
  }

  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding: 8px 9px;
    font-size: 0.72rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 108px;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-quick-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
    padding: 18px;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.44);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
  }

  .hero-people {
    justify-self: center;
    width: min(400px, 78vw);
    margin-top: -18px;
    margin-bottom: -76px;
  }

  .hero-interface {
    justify-self: stretch;
    width: 100%;
  }

  .hero-strip,
  .intro,
  .section-heading,
  .student-offer,
  .split-section,
  .contact,
  .footer {
    display: grid;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 520px;
  }

  .footer-bottom {
    display: grid;
  }

  .hero-strip,
  .intro,
  .section-heading,
  .student-offer,
  .split-section,
  .contact,
  .visual-band {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
    padding: 16px;
    gap: 12px;
  }

  .hero-strip div {
    border-left: 1px solid rgba(255, 255, 255, 0.58);
    min-height: 96px;
    padding: 16px;
  }

  .membership-note {
    justify-self: stretch;
    width: 100%;
  }

  .section {
    padding: clamp(56px, 8vw, 74px) 0;
  }

  .intro,
  .section-heading,
  .student-offer,
  .split-section,
  .contact {
    gap: 24px;
  }

  .split-section {
    margin-top: clamp(44px, 6vw, 68px);
    padding-top: clamp(74px, 10vw, 104px);
    padding-right: max(var(--page-x), calc((100vw - var(--page-max)) / 2));
    padding-bottom: clamp(54px, 8vw, 78px);
    padding-left: max(var(--page-x), calc((100vw - var(--page-max)) / 2));
  }

  .benefits h2 {
    line-height: 1.06;
    word-spacing: 0.04em;
  }

  .service-grid,
  .pricing-grid,
  .feature-grid:not(.membership-features) {
    grid-template-columns: 1fr;
  }

  .wellness-showcase .section-heading {
    align-items: center;
    text-align: center;
  }

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

  .wellness-card {
    min-height: auto;
  }

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

  .phone-panel {
    min-height: 430px;
    margin: 0 auto;
  }

  .wide-media,
  .tall-media {
    min-height: 320px;
  }

  .glass-panel {
    min-height: 280px;
  }

  .phone-image {
    min-height: 390px;
  }

  .faq-item summary {
    grid-template-columns: 76px 1fr auto;
  }

  .faq-answer p {
    margin-left: 104px;
  }

  .contact {
    padding: 28px 20px;
  }

  .contact-detail {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-detail p {
    grid-column: auto;
    margin-top: 0;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer {
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    justify-items: stretch;
    gap: 8px;
    top: 10px;
    width: min(100% - 24px, var(--page-max));
    min-height: 62px;
    padding: 8px 10px 8px 12px;
    border-radius: 26px;
  }

  .brand {
    order: 1;
    justify-self: start;
  }

  .brand-logo {
    width: 56px;
    height: 38px;
  }

  .menu-toggle {
    order: 3;
    display: grid;
    justify-self: end;
  }

  .header-cta {
    order: 2;
    display: grid;
    min-height: 38px;
    margin-left: 0;
    padding: 0 clamp(11px, 3.5vw, 17px);
    justify-self: center;
    font-size: clamp(0.58rem, 2.4vw, 0.7rem);
    letter-spacing: 0.025em;
  }

  .nav-links {
    position: fixed;
    top: 10px;
    left: 12px;
    z-index: 9;
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 8px;
    width: min(75vw, 360px);
    height: calc(100svh - 20px);
    overflow: hidden;
    padding: 78px 14px 18px;
    border: 1px solid transparent;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0);
    box-shadow: none;
    opacity: 0;
    transform: translateX(calc(-100% - 24px)) scale(0.98);
    transform-origin: left center;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
      background 220ms ease,
      border-color 220ms ease,
      box-shadow 220ms ease;
    backdrop-filter: blur(34px) saturate(180%);
    -webkit-backdrop-filter: blur(34px) saturate(180%);
  }

  .site-header.menu-open .nav-links {
    border-color: rgba(255, 255, 255, 0.92);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 243, 0.93)),
      rgba(255, 255, 255, 0.94);
    box-shadow: 28px 0 78px rgba(5, 7, 6, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.92rem;
    text-align: left;
  }

  .hero {
    padding-top: 126px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero-content {
    gap: 13px;
  }

  .split-section {
    margin-top: 42px;
    padding-top: 72px;
    padding-right: 22px;
    padding-bottom: 58px;
    padding-left: 22px;
  }

  .benefits h2 {
    letter-spacing: 0;
    word-spacing: 0.02em;
  }

  .hero-people {
    width: min(330px, 84vw);
    margin-top: -10px;
    margin-bottom: -58px;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.6rem);
  }

  .hero-content .eyebrow {
    font-size: clamp(0.72rem, 3.1vw, 0.84rem);
    line-height: 1.15;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 10.8vw, 3.55rem);
    line-height: 0.9;
  }

  .hero-copy {
    max-width: 100%;
    font-size: clamp(0.9rem, 3.55vw, 1rem);
    line-height: 1.4;
  }

  .hero-quick-info {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 22px;
    padding: 16px;
  }

  .hero-interface {
    border-radius: 28px;
  }

  .course-grid,
  .schedule-grid,
  .membership-features {
    grid-template-columns: 1fr;
  }

  .membership-console {
    border-radius: 28px;
    padding: 12px;
  }

  .plan-card {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .main-plan {
    padding-top: 56px;
  }

  .plan-duration {
    margin-bottom: 38px;
    font-size: 0.76rem;
  }

  .plan-card h3 {
    flex-wrap: nowrap;
    gap: 8px;
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

  .plan-card h3 span {
    margin-bottom: 0.15em;
    font-size: 0.92rem;
  }

  .plan-features {
    gap: 13px;
  }

  .plan-cta {
    min-height: 54px;
  }

  .plan-disclaimer {
    text-align: center;
  }

  .footer {
    width: min(var(--page-max), calc(100% - 24px));
    padding: 30px 22px;
    border-radius: 28px 28px 0 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    justify-items: start;
  }

  .footer-logo {
    width: 104px;
  }

  .footer-bottom {
    gap: 10px;
  }

  .student-offer {
    width: min(720px, calc(100% - 28px));
    padding: 28px 22px;
    border-radius: 24px;
  }

  .student-copy {
    max-width: none;
    justify-items: center;
    text-align: center;
  }

  .student-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .student-card {
    min-height: 270px;
    padding: 22px;
    border-radius: 22px;
  }

  .visual-band {
    gap: 0;
    width: min(var(--page-max), calc(100% - 28px));
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .visual-band .media-card {
    border: 0;
    border-radius: 26px 26px 0 0;
    background: transparent;
    box-shadow: none;
  }

  .visual-band .glass-panel {
    min-height: auto;
    margin-top: 0;
    padding: 30px 24px 34px;
    border: 0;
    border-radius: 0 0 26px 26px;
    background: rgba(255, 255, 255, 0.54);
    box-shadow: 0 24px 70px rgba(5, 7, 6, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  }

  .peek-slider {
    width: min(100%, calc(100vw - 28px));
    padding: 20px 0;
  }

  .peek-stage {
    aspect-ratio: 4 / 5;
    min-height: 0;
    max-height: none;
    border-radius: 26px;
  }

  .peek-overlay strong {
    max-width: 78vw;
    font-size: clamp(2.8rem, 13vw, 4.7rem);
  }

  .peek-overlay small {
    padding: 14px 22px;
  }

  .peek-arrow {
    width: 38px;
    height: 38px;
  }

  .peek-arrow span {
    width: 10px;
    height: 10px;
    border-width: 2.5px;
  }

  .faq-heading h2 {
    width: min(390px, 100%);
    font-size: clamp(2.1rem, 9.5vw, 3.25rem);
    line-height: 0.94;
  }

  .faq-heading > p {
    width: min(330px, calc(100vw - 64px));
    max-width: 330px;
    font-size: clamp(0.92rem, 3.8vw, 1rem);
    line-height: 1.45;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-item summary {
    grid-template-columns: 58px 1fr auto;
    gap: 14px;
    min-height: 78px;
    padding-right: 18px;
  }

  .faq-item summary strong {
    font-size: clamp(0.98rem, 5.2vw, 1.18rem);
  }

  .faq-item summary span {
    font-size: 0.98rem;
  }

  .faq-answer p {
    margin: 0 18px 22px 74px;
    font-size: 0.96rem;
  }

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

  .segmented {
    width: 100%;
  }

  .hero-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 22px;
    margin-top: 16px;
    padding: 10px;
    gap: 9px;
  }

  .hero-strip div {
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: start;
    min-height: 104px;
    padding: 12px;
    gap: 6px;
    border-radius: 16px;
  }

  .hero-strip div:last-child {
    grid-column: 1 / -1;
    min-height: 90px;
  }

  .hero-strip .dock-icon {
    grid-row: auto;
    width: 36px;
    height: 36px;
    font-size: 0.76rem;
  }

  .hero-strip strong {
    margin-bottom: 0;
    font-size: clamp(0.86rem, 4vw, 1rem);
    line-height: 1.08;
  }

  .hero-strip span:not(.dock-icon) {
    font-size: clamp(0.72rem, 3.2vw, 0.84rem);
    line-height: 1.22;
  }

}

@keyframes smoothSlideIn {
  from {
    opacity: 0;
    translate: 0 28px;
    scale: 0.985;
    filter: blur(8px);
  }

  to {
    opacity: 1;
    translate: 0 0;
    scale: 1;
    filter: blur(0);
  }
}

@keyframes smoothHeaderIn {
  from {
    opacity: 0;
    translate: 0 -18px;
    filter: blur(8px);
  }

  to {
    opacity: 1;
    translate: 0 0;
    filter: blur(0);
  }
}

.site-header,
.hero-content > *,
.hero-people,
.hero-strip,
.hero-strip > div,
.page-hero > * {
  animation: smoothSlideIn 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
  will-change: opacity, translate, scale, filter;
}

.site-header {
  animation-name: smoothHeaderIn;
  animation-duration: 680ms;
}

.hero-content .eyebrow,
.page-hero .eyebrow {
  animation-delay: 80ms;
}

.hero-content h1,
.page-hero h1 {
  animation-delay: 150ms;
}

.hero-copy,
.page-hero p:not(.eyebrow) {
  animation-delay: 220ms;
}

.hero-actions {
  animation-delay: 300ms;
}

.hero-people {
  animation-delay: 260ms;
}

.hero-strip {
  animation-delay: 380ms;
}

.hero-strip > div:nth-child(1),
.service-grid > *:nth-child(1),
.pricing-grid > *:nth-child(1),
.feature-grid > *:nth-child(1),
.course-grid > *:nth-child(1),
.schedule-grid > *:nth-child(1),
.contact-form label:nth-child(1) {
  animation-delay: 440ms;
}

.hero-strip > div:nth-child(2),
.service-grid > *:nth-child(2),
.pricing-grid > *:nth-child(2),
.feature-grid > *:nth-child(2),
.course-grid > *:nth-child(2),
.schedule-grid > *:nth-child(2),
.contact-form label:nth-child(2) {
  animation-delay: 500ms;
}

.hero-strip > div:nth-child(3),
.service-grid > *:nth-child(3),
.pricing-grid > *:nth-child(3),
.feature-grid > *:nth-child(3),
.course-grid > *:nth-child(3),
.schedule-grid > *:nth-child(3),
.contact-form label:nth-child(3) {
  animation-delay: 560ms;
}

.hero-strip > div:nth-child(4),
.feature-grid > *:nth-child(4),
.course-grid > *:nth-child(4),
.schedule-grid > *:nth-child(4),
.contact-form label:nth-child(4) {
  animation-delay: 620ms;
}

.hero-strip > div:nth-child(5),
.feature-grid > *:nth-child(5),
.course-grid > *:nth-child(5),
.schedule-grid > *:nth-child(5),
.contact-form .button {
  animation-delay: 680ms;
}

.feature-grid > *:nth-child(n + 6),
.course-grid > *:nth-child(n + 6),
.schedule-grid > *:nth-child(n + 6) {
  animation-delay: 740ms;
}

.scroll-reveal {
  opacity: 0;
  translate: 0 34px;
  scale: 0.985;
  filter: blur(8px);
  will-change: opacity, translate, scale, filter;
}

.scroll-reveal.is-visible {
  animation: smoothSlideIn 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .hero-content > *,
  .hero-people,
  .hero-strip,
  .hero-strip > div,
  .page-hero > *,
  .scroll-reveal {
    animation: none;
    opacity: 1;
    translate: 0 0;
    scale: 1;
    filter: none;
  }
}

.student-offer.offer-section {
  grid-template-columns: 1fr;
  gap: clamp(26px, 3vw, 42px);
  align-items: start;
  width: min(1280px, calc(100% - 48px));
  margin-top: clamp(-18px, -1vw, -8px);
  padding: clamp(42px, 5.2vw, 76px);
  background:
    radial-gradient(circle at 82% 12%, rgba(11, 95, 2, 0.16), transparent 30%),
    radial-gradient(circle at 10% 86%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.3));
}

.student-offer.offer-section::after {
  display: none;
}

.offer-heading {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.offer-heading .eyebrow,
.offer-card .eyebrow {
  margin: 0;
}

.offer-heading h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.6rem, 5.2vw, 5.8rem);
  line-height: 0.92;
}

.offer-heading > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.55;
}

.offer-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.offer-card {
  display: grid;
  align-content: start;
  gap: clamp(16px, 1.7vw, 22px);
  min-height: clamp(380px, 31vw, 480px);
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: clamp(22px, 2.4vw, 32px);
  background:
    radial-gradient(circle at 84% 16%, rgba(11, 95, 2, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 70px rgba(5, 7, 6, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(34px) saturate(180%);
  -webkit-backdrop-filter: blur(34px) saturate(180%);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.offer-card:hover {
  border-color: rgba(11, 95, 2, 0.28);
  box-shadow: 0 30px 86px rgba(11, 95, 2, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-5px);
}

.offer-card-featured {
  border-color: rgba(255, 255, 255, 0.5);
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(145deg, var(--green), #063f02);
  color: var(--white);
}

.offer-card h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.6rem, 4.2vw, 5rem);
  line-height: 0.9;
}

.offer-card .eyebrow {
  color: var(--green);
  font-size: clamp(0.82rem, 0.9vw, 0.96rem);
}

.offer-card > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.12vw, 1.1rem);
  line-height: 1.6;
}

.offer-card-featured > p:not(.eyebrow),
.offer-card-featured li,
.offer-card-featured .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.offer-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-card li {
  display: flex;
  gap: 10px;
  color: rgba(5, 7, 6, 0.66);
  font-weight: 700;
  line-height: 1.35;
}

.offer-card li::before {
  color: var(--green-bright);
  font-weight: 900;
  content: "✓";
}

.offer-card-featured li {
  color: rgba(255, 255, 255, 0.92);
}

.offer-card-featured li::before {
  color: rgba(255, 255, 255, 0.96);
}

.offer-card .button {
  justify-self: start;
  margin-top: auto;
}

.offer-card-featured .button-primary {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 50%),
    var(--green-bright);
  color: var(--white);
}

@media (max-width: 900px) {
  .student-offer.offer-section {
    width: min(100% - 28px, var(--page-max));
    padding: clamp(30px, 7vw, 48px) clamp(18px, 5vw, 30px);
  }

  .offer-heading h2 {
    font-size: clamp(2.25rem, 10vw, 4rem);
  }

  .offer-cards {
    grid-template-columns: 1fr;
  }

  .offer-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .student-offer.offer-section {
    border-radius: 28px;
  }

  .offer-card {
    padding: 24px 20px;
  }

  .offer-card h3 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .offer-card .button {
    width: 100%;
  }
}

.hero-actions-mobile {
  display: none;
}

@media (max-width: 640px) {
  .hero-content > .hero-actions {
    display: none;
  }

  .hero-actions-mobile {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-top: 12px;
    gap: 12px;
  }

  .hero-actions-mobile .button {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding-inline: 16px;
  }

  .hero-content {
    width: 100%;
    padding-inline: clamp(18px, 5vw, 24px);
  }

  .hero-content .eyebrow {
    font-size: clamp(0.78rem, 3.1vw, 0.92rem);
  }

  .hero h1 {
    font-size: clamp(3.05rem, 13vw, 4.3rem);
    line-height: 0.88;
  }

  .hero-copy {
    max-width: 100%;
    font-size: clamp(1rem, 3.75vw, 1.15rem);
    line-height: 1.43;
  }

  .contact-info {
    justify-items: center;
    text-align: center;
  }

  .contact-info > .eyebrow,
  .contact-info > h2 {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .contact h2 {
    max-width: 10ch;
    font-size: clamp(2.25rem, 10vw, 3.1rem);
    line-height: 0.93;
  }

  .contact-details,
  .contact-actions {
    justify-self: stretch;
    text-align: left;
  }

  .faq-section {
    padding-top: 18px;
  }

  .faq-heading {
    gap: 10px;
    margin-bottom: 22px;
  }

  .faq-heading h2 {
    width: min(520px, calc(100vw - 44px));
    max-width: 520px;
    font-size: clamp(1.95rem, 7.2vw, 2.7rem);
    line-height: 0.94;
    text-wrap: balance;
  }

  .faq-heading > p {
    width: min(340px, calc(100vw - 66px));
    max-width: 340px;
    font-size: clamp(0.82rem, 3.1vw, 0.92rem);
    line-height: 1.38;
    text-wrap: balance;
  }

  .wellness-showcase {
    padding-top: 32px;
  }

  .wellness-showcase .section-heading {
    gap: 10px;
    margin-bottom: 24px;
  }

  .wellness-showcase .section-heading h2 {
    width: min(430px, calc(100vw - 44px));
    max-width: 430px;
    font-size: clamp(1.7rem, 6.7vw, 2.25rem);
    line-height: 0.95;
    text-wrap: balance;
  }

  .wellness-showcase .section-heading p:not(.eyebrow) {
    width: min(320px, calc(100vw - 66px));
    max-width: 320px;
    font-size: clamp(0.84rem, 3.25vw, 0.94rem);
    line-height: 1.42;
    text-wrap: balance;
  }
}

.course-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.85fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  width: min(1280px, calc(100% - 48px));
  margin: clamp(44px, 5vw, 82px) auto 0;
  padding: clamp(30px, 4.4vw, 60px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: clamp(28px, 3vw, 44px);
  background:
    radial-gradient(circle at 86% 12%, rgba(11, 95, 2, 0.24), transparent 34%),
    radial-gradient(circle at 10% 88%, rgba(11, 95, 2, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(7, 12, 10, 0.96), rgba(2, 5, 4, 0.98));
  box-shadow: 0 30px 80px rgba(5, 12, 8, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.course-showcase .eyebrow {
  color: rgba(42, 226, 107, 0.88);
}

.course-showcase h2 {
  max-width: 680px;
  color: var(--white);
  font-size: clamp(3rem, 6.2vw, 6.2rem);
  line-height: 1.02;
  text-wrap: balance;
}

.course-showcase-lead {
  max-width: 640px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.5vw, 1.34rem);
  line-height: 1.55;
}

.course-showcase-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: clamp(26px, 3vw, 38px) 0;
}

.course-showcase-card {
  min-height: 168px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.course-showcase-card:hover {
  border-color: rgba(42, 226, 107, 0.42);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.course-showcase-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid rgba(42, 226, 107, 0.3);
  border-radius: 14px;
  background: rgba(42, 226, 107, 0.13);
  color: rgba(42, 226, 107, 0.95);
  font-family: "Montserrat Black", Montserrat, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
}

.course-showcase-card h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: "Montserrat Black", Montserrat, sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 900;
  text-transform: uppercase;
}

.course-showcase-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

.course-showcase .button {
  width: max-content;
}

.course-showcase-visual {
  min-height: 420px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
}

.course-image-placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.48), transparent 10%),
    radial-gradient(circle at 58% 47%, rgba(42, 226, 107, 0.34), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(11, 95, 2, 0.16));
}

.course-image-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 58%;
}

.course-image-placeholder span {
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-family: "Montserrat Black", Montserrat, sans-serif;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .course-showcase {
    grid-template-columns: 1fr;
    width: min(920px, calc(100% - 40px));
  }

  .course-showcase-visual {
    min-height: 320px;
  }

  .course-image-placeholder {
    min-height: 290px;
  }
}

@media (max-width: 720px) {
  .course-showcase {
    width: calc(100% - 28px);
    margin-top: 44px;
    padding: 22px;
    border-radius: 30px;
    gap: 22px;
  }

  .course-showcase h2 {
    font-size: clamp(2.35rem, 12vw, 3.45rem);
    line-height: 1.02;
  }

  .course-showcase-lead {
    font-size: 1rem;
    line-height: 1.45;
  }

  .course-showcase-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 22px 0;
  }

  .course-showcase-card {
    min-height: auto;
    padding: 18px;
    border-radius: 20px;
  }

  .course-showcase-visual {
    order: -1;
    min-height: 250px;
    padding: 12px;
    border-radius: 24px;
  }

  .course-image-placeholder {
    min-height: 220px;
    border-radius: 18px;
  }

  .course-showcase .button {
    width: 100%;
    justify-content: center;
  }
}

/* Einheitliches proportionales Skalieren auf kleinen Displays */
@media (max-width: 640px) {
  html {
    font-size: clamp(14px, 4vw, 16px);
  }

  body {
    overflow-x: hidden;
  }

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

  main h1,
  main h2,
  main h3 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .hero-content h1 {
    font-size: clamp(2.4rem, 12vw, 3.15rem);
    line-height: 0.94;
  }

  .course-page-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3rem);
    line-height: 0.96;
  }

  .partner-page-hero h1 {
    font-size: clamp(1.9rem, 9.6vw, 2.55rem);
  }

  .analysis-page-hero {
    align-content: center;
    min-height: auto;
    padding: 116px 18px 38px;
  }

  .analysis-page-hero::before {
    inset: 82px 0 0;
    border-radius: 30px;
  }

  .analysis-page-hero h1 {
    font-size: clamp(1.75rem, 8.5vw, 2.3rem);
    line-height: 1;
  }

  .analysis-page-hero p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .trial-choice-heading h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 0.98;
  }

  .legal-heading h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 11.5vw, 3rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
    white-space: nowrap;
  }

  .section-heading h2,
  .benefits h2,
  .contact h2,
  .reviews-heading h2,
  .course-showcase h2 {
    font-size: clamp(1.9rem, 9vw, 2.4rem);
    line-height: 1.02;
  }

  .section-heading,
  .reviews-heading {
    gap: 16px;
  }

  .section-heading > p,
  .reviews-heading > p {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .service-card,
  .price-card,
  .course-grid article,
  .schedule-grid article,
  .feature-grid div,
  .trial-choice-card,
  .legal-card {
    padding: clamp(18px, 6vw, 24px);
  }

  .media-card img,
  .phone-image,
  .course-hero-visual img,
  .partner-hero-visual img,
  .partner-logo-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .course-hero-visual img,
  .partner-hero-visual img {
    min-height: inherit;
    object-fit: cover;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    min-width: 0;
    font-size: 1rem;
  }

  .button,
  .header-cta {
    max-width: 100%;
  }

  .trial-booking-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .trial-booking-head h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }
}

@media (max-width: 360px) {
  .site-header {
    gap: 5px;
    width: calc(100% - 16px);
    padding-right: 7px;
    padding-left: 9px;
  }

  .brand-logo {
    width: 50px;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 9px;
    font-size: 0.57rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .partner-contact > div h2 {
    font-size: 1.55rem;
  }
}

/* Zeitversetzter Website-Hinweis */
.site-popup-open {
  overflow: hidden;
}

.site-popup {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 36px);
  visibility: hidden;
  opacity: 0;
  transition: opacity 400ms ease, visibility 400ms ease;
}

.site-popup.is-visible {
  visibility: visible;
  opacity: 1;
}

.site-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 6, 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-popup__dialog {
  position: relative;
  width: min(820px, 100%);
  max-height: min(720px, calc(100dvh - 32px));
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  background: #f8fbf7;
  border: 1px solid rgba(0, 96, 13, 0.18);
  border-radius: 32px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  transform: translateY(22px) scale(0.97);
  transition: transform 400ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.site-popup.is-visible .site-popup__dialog {
  transform: translateY(0) scale(1);
}

.site-popup__image {
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: rgba(255, 255, 255, 0.75);
  background:
    linear-gradient(145deg, rgba(10, 132, 31, 0.28), rgba(0, 45, 8, 0.2)),
    linear-gradient(145deg, #24572c, #09290f);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-popup__content {
  align-self: center;
  padding: clamp(34px, 6vw, 64px);
}

.site-popup__eyebrow {
  margin: 0 0 12px;
  color: #087116;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-popup__content h2 {
  margin: 0 0 18px;
  color: #050805;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.site-popup__content > p:last-child {
  margin: 0;
  color: #626862;
  font-size: 1rem;
  line-height: 1.55;
}

.site-popup__close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #071108;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  cursor: pointer;
}

.site-popup__close span {
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-1px);
}

.site-popup__close:hover,
.site-popup__close:focus-visible {
  color: #fff;
  background: #087116;
  outline: none;
}

@media (max-width: 680px) {
  .site-popup__dialog {
    grid-template-columns: 1fr;
    border-radius: 26px;
  }

  .site-popup__image {
    min-height: clamp(180px, 48vw, 230px);
  }

  .site-popup__content {
    padding: 28px 24px 32px;
  }

  .site-popup__content h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-popup,
  .site-popup__dialog {
    transition-duration: 1ms;
  }
}

/* Ausgewogene Kartenbreiten und Typografie auf Tablets */
@media (min-width: 641px) and (max-width: 1180px) {
  .membership-console {
    width: min(720px, calc(100% - 48px));
    gap: 24px;
    padding: 18px;
  }

  .membership-console .plan-card {
    width: 100%;
    min-height: 610px;
    padding: 38px 40px;
  }

  .membership-console .main-plan {
    min-height: 640px;
    padding-top: 64px;
  }

  .membership-console .plan-card h3 {
    justify-content: flex-start;
    gap: 14px;
    font-size: clamp(3.8rem, 8vw, 5.2rem);
  }

  .membership-console .plan-card h3 span {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  }

  .membership-console .plan-duration {
    margin-bottom: 52px;
  }

  .membership-console .plan-features {
    max-width: 520px;
  }

  .membership-console .plan-cta {
    width: 100%;
  }

  .plan-disclaimer {
    width: min(680px, calc(100% - 64px));
    text-align: center;
  }
}
