:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --surface-soft: #f4f4f6;
  --ink: #101014;
  --ink-soft: #3d3d47;
  --muted: #d0d1db;
  --line: #e6e6e6;
  --line-strong: #c2c2c2;
  --accent: #c96a10;
  --accent-dark: #a65300;
  --cta: #ff8d00;
  --cta-hover: #e16500;
  --cta-rgb: 255 141 0;
  --glass-dark-bg: rgb(16 16 20 / 78%);
  --focus: rgb(201 106 16 / 55%);
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-pill: 50px;
  --shadow-soft: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-optical-sizing: auto;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
}

a {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 12px;
  border-radius: var(--radius-s);
  border: 1px solid var(--ink);
  background: #fff;
}

.skip-link:focus {
  left: 12px;
}

.container {
  width: min(1300px, 92%);
  margin-inline: auto;
}

.section {
  padding: 68px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(3.6rem, 5.4vw, 7.2rem);
  font-weight: 300;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4.8rem);
  line-height: 1.2;
  max-width: 60vw;
}

h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
}

h4 {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

h5 {
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
}

h6 {
  font-size: clamp(0.84rem, 1vw, 0.96rem);
}

p {
  margin: 0;
  color: var(--ink-soft);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding-top: 0;
  background: transparent;
  transition: transform 220ms ease, opacity 220ms ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.header-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between; 
  gap: 24px;
  padding: 20px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, padding 180ms ease, border-radius 180ms ease;
  border-radius: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 400;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: height 180ms ease;
}

.site-header.is-scrolled .logo-img {
  height: 36px;
}

.brand-minimal {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 0;
}

.site-header.is-scrolled .brand-minimal {
  color: var(--ink);
}

.site-nav {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 22px;
  background: rgb(16 16 20 / 90%);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 20;
}

.site-header.is-menu-open .site-nav {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  padding: 9px 12px;
  border-radius: var(--radius-pill);
  transition: background-color 160ms ease, color 160ms ease;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 36%);
  border-radius: 999px;
  background: rgb(255 255 255 / 0%);
  color: #fff;
  cursor: pointer;
}

.menu-toggle-lines {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentcolor;
  transition: background-color 160ms ease;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentcolor;
  transition: transform 160ms ease, top 160ms ease, opacity 160ms ease;
}

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

.site-header.is-menu-open .menu-toggle-lines {
  background: transparent;
}

.site-header.is-menu-open .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgb(255 255 255 / 14%);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgb(255 255 255 / 34%);
  border-radius: var(--radius-pill);
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
  justify-content: center;
  text-decoration: none;
}

.nav-phone i {
  font-size: 0.85rem;
}

.header-phone {
  display: none;
}

.site-header.is-scrolled {
  background: transparent;
}

.site-header.is-scrolled .header-content {
  background: var(--glass-dark-bg);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled .site-nav a {
  color: #fff;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible {
  background: rgb(255 255 255 / 14%);
}

.site-header.is-scrolled .menu-toggle {
  border-color: rgb(255 255 255 / 36%);
  background: rgb(255 255 255 / 0%);
  color: #fff;
}

.site-header.is-scrolled.is-menu-open .site-nav {
  border-color: rgb(255 255 255 / 22%);
  background: rgb(16 16 20 / 90%);
}

.site-header.is-scrolled .nav-phone {
  border-color: rgb(255 255 255 / 34%);
  color: #fff;
}

.btn {
  appearance: none;
  border: 0;
  border-radius: var(--radius-pill);
  min-height: 50px;
  padding: 12px 22px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  color: #101014;
  background: var(--cta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 140ms ease, background-color 140ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  background: var(--cta-hover);
}

.hero {
  position: relative;
  padding: 0;
  height: auto;
  min-height: 0;
  display: block;
  color: #fff;
  background-image: url("assets/bg-hero.webp");
  background-size: cover;
  background-position: 40% center;
  isolation: isolate;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(16 16 20 / 100%) 0%, rgb(16 16 20 / 0%) 100%);
  z-index: -1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  max-width: none;
  min-height: 100svh;
}

.hero-main {
  flex: 1 1 auto;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding-right: 0;
  padding-top: 80px;
}

.hero-side {
  display: none;
}

.hero-main > * {
  animation: reveal-up 560ms ease both;
}

.hero-main > *:nth-child(2) {
  animation-delay: 60ms;
}

.hero-main > *:nth-child(3) {
  animation-delay: 110ms;
}

.hero-main > *:nth-child(4) {
  animation-delay: 160ms;
}

.hero-main > *:nth-child(5) {
  animation-delay: 210ms;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgb(255 255 255 / 26%);
  border-radius: var(--radius-pill);
  background: rgb(255 255 255 / 8%);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.hero-trigger {
  position: relative;
  overflow: visible;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  padding: 14px 16px 14px;
}

.hero-trigger::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    110deg,
    rgb(255 255 255 / 0%) 0%,
    rgb(255 255 255 / 0%) 40%,
    rgb(255 255 255 / 38%) 50%,
    rgb(255 255 255 / 0%) 60%,
    rgb(255 255 255 / 0%) 100%
  );
  background-size: 240% 100%;
  background-position: 160% 0;
  animation: shine-sweep 2.7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-trigger-label {
  position: absolute;
  right: 52%;
  top: 0;
  transform: translate(-50%, -58%);
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #ff7a00 0%, #ff8d00 100%);
  color: #101014;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  z-index: 2;
}

.hero-trigger-content {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pulse-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cta);
  flex: 0 0 10px;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid rgb(var(--cta-rgb) / 48%);
  animation: pulse-ring 1.4s ease-out infinite;
}

.hero h1 {
  color: #fff;
  max-width: 20ch;
}

.hero-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: fit-content;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(12px);
}

.hero-brand-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgb(241 242 248 / 78%);
}

.hero-brand img {
  width: clamp(252px, 24vw, 260px);
  opacity: 0.78;
  filter: saturate(0.75) brightness(1.04);
}

.hero-lead {
  max-width: 66ch;
  color: #f1f2f8;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
}

.hero-cta-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  margin: 32px 0;
}

.hero-cta-btn {
  min-height: 64px;
  padding: 20px 70px;
  font-size: 18px;
  font-weight: 400;
}

.badge {
  margin: 0;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  width: fit-content;
  font-weight: 700;
  border: 1px solid rgb(255 255 255 / 23%);
  background: rgb(255 255 255 / 10%);
  color: #fff;
}

.problem {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.problem-media {
  display: none;
}

.problem-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.problem-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.problem-content .check-list {
  margin: 0;
}

.problem-blank {
  display: none;
}

.usp {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.usp-media {
  display: none;
}

.usp-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.usp-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.usp-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.usp-item {
  position: relative;
  padding: 0 0 14px 28px;
  border-bottom: 1px solid var(--line);
  animation: reveal-up 620ms ease both;
}

.usp-item:last-child {
  border-bottom: 0;
}

.usp-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cta) 0 45%, rgb(var(--cta-rgb) / 20%) 46% 100%);
}

.usp-item > div {
  display: grid;
  gap: 6px;
}

.usp-item:nth-child(2) {
  animation-delay: 60ms;
}

.usp-item:nth-child(3) {
  animation-delay: 120ms;
}

.usp-item:nth-child(4) {
  animation-delay: 180ms;
}

.usp-item:nth-child(5) {
  animation-delay: 240ms;
}

.usp-item h3 {
  margin-bottom: 0;
}

.usp-blank {
  display: none;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cta) 0 45%, rgb(var(--cta-rgb) / 20%) 46% 100%);
}

.section-intro {
  margin-top: 10px;
}

.instructor-grid {
  margin-top: 40px;
  display: grid;
  gap: 48px;
}

.instructor-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  display: grid;
  gap: 16px;
  align-content: start;
  animation: reveal-up 620ms ease both;
}

.instructor-card img {
  width: clamp(150px, 28vw, 220px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  clip-path: circle(50% at 50% 50%);
}

.instructor-card div {
  padding: 0;
}

.meta {
  margin: 9px 0;
  color: #26262f;
  font-weight: 700;
}

.program {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, #17130e 0%, #261e18 100%);
}

.program h2 {
  color: #fff;
}

.program-layout {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.program-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.program-media {
  margin: 0;
  min-height: 360px;
  position: relative;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: var(--radius-m);
  overflow: hidden;
  background: rgb(255 255 255 / 8%);
}

.program-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.program-timeline {
  position: relative;
  display: grid;
  gap: 16px;
  margin-top: 0;
}

.program-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg, rgb(201 106 16 / 82%) 0%, rgb(201 106 16 / 30%) 100%);
  transform-origin: top;
  animation: timeline-grow 900ms ease both;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  animation: reveal-up 620ms ease both;
}

.timeline-item:nth-child(2) {
  animation-delay: 70ms;
}

.timeline-item:nth-child(3) {
  animation-delay: 140ms;
}

.timeline-item:nth-child(4) {
  animation-delay: 210ms;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-dark);
  border: 2px solid #fff;
  outline: 2px solid rgb(166 83 0 / 22%);
  animation: timeline-dot-pulse 2.2s ease-in-out infinite;
}

.timeline-card,
.benefits,
.pricing-card,
.pricing-note,
.signup-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: #fff;
  padding: 20px;
}

.program .timeline-card,
.program .benefits {
  border-color: rgb(255 255 255 / 24%);
  background: rgb(255 255 255 / 8%);
}

.benefits,
.pricing-card,
.pricing-note,
.signup-card,
.review-card {
  animation: reveal-up 620ms ease both;
}

.timeline-step {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  color: #6a6a75;
}

.program .timeline-step {
  color: #d3d8e6;
}

.timeline-card h3 {
  margin-bottom: 10px;
}

.program .timeline-card h3,
.program .benefits h3 {
  color: #fff;
}

.timeline-card ul,
.pricing-note ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.program .timeline-card ul,
.program .benefits .check-list li {
  color: #eceff8;
}

.timeline-card li + li {
  margin-top: 6px;
}

@media (max-width: 576px) {
  .hero-main {
    padding-top: 120px;
  }

  .header-phone {
    display: none;
  }

  .site-nav .nav-phone {
    display: inline-flex;
    margin-top: 8px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  h1 {
    font-size: clamp(2.6rem, 13vw, 3.8rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  h3 {
    font-size: clamp(1rem, 4.8vw, 1.24rem);
  }

  h4 {
    font-size: clamp(0.96rem, 4.2vw, 1.14rem);
  }

  h5 {
    font-size: clamp(0.9rem, 3.8vw, 1.02rem);
  }

  h6 {
    font-size: clamp(0.84rem, 3.4vw, 0.94rem);
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    max-width: none;
  }

  .btn {
    font-size: 14px;
  }

  .hero-cta-btn {
    min-height: 54px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .pricing .pricing-card,
  .pricing .pricing-note {
    padding: 24px;
  }

  .hero {
    background-position: 65% center;
  }

  .program-timeline::before {
    top: 14px;
    bottom: 14px;
  }

  .timeline-item {
    gap: 12px;
  }

  .timeline-dot {
    width: 16px;
    height: 16px;
    margin-top: 20px;
  }

  .timeline-card {
    padding: 18px;
  }

  .program-media {
    min-height: 300px;
  }

  .form-disclaimer {
    font-size: 0.84rem;
  }

  .consent-check {
    font-size: 0.88rem;
  }

  .cookie-settings-toggle {
    left: auto;
    right: 4%;
    bottom: 12px;
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .cookie-banner {
    bottom: 8px;
  }

  .cookie-banner-panel {
    width: 92%;
    padding: 14px;
    gap: 12px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }

  .header-content {
  padding: 16px;
}
}

.benefits {
  margin-top: 14px;
}

.pricing {
  background: #fff;
}

.pricing-grid {
  display: grid;
  gap: 14px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px;
}

.pricing-note {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 48px;
}

.pricing-note-copy {
  color: var(--ink-soft);
}

.price-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 12px;
  color: #5a5a66;
  margin: 0;
}

.price {
  color: var(--ink);
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1;
  margin: 0;
  font-weight: 800;
}

.pricing-card .badge {
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background: rgb(16 16 20 / 4%);
  padding: 12px 20px;
  font-weight: 600;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pricing-card .badge .pulse-dot {
  background: var(--cta);
}

.pricing-card .badge .pulse-dot::after {
  border-color: rgb(var(--cta-rgb) / 42%);
}

.pricing-benefits {
  margin: 18px 0 22px;
}

.pricing-cta-row {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.pricing-contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 18px;
}

.pricing-note label {
  font-weight: 400;
  color: var(--ink);
}

.pricing-note input[type="text"],
.pricing-note input[type="email"],
.pricing-note input[type="tel"] {
  width: 100%;
  min-height: 50px;
  border-radius: var(--radius-s);
  border: 1px solid var(--line-strong);
  padding: 0 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.pricing-note input[type="text"]::placeholder,
.pricing-note input[type="email"]::placeholder,
.pricing-note input[type="tel"]::placeholder {
  color: #90909a;
}

.pricing-note input[type="text"]:focus-visible,
.pricing-note input[type="email"]:focus-visible,
.pricing-note input[type="tel"]:focus-visible {
  border-color: var(--ink);
}

.pricing-contact-form .btn {
  width: fit-content;
}

.proof {
  background: #fff;
}

.proof h2 {
  max-width: none;
}

.reviews-grid {
  margin-top: 40px;
  display: grid;
  gap: 14px;
}

.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: #fff;
  padding: 20px;
  animation: reveal-up 620ms ease both;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.review-quote {
  color: #eaeaea;
  font-size: 3rem;
}

.review-stars {
  display: inline-flex;
  gap: 4px;
  color: #f4b400;
  font-size: 0.94rem;
  line-height: 1;
}

.review-card p {
  color: var(--ink-soft);
}

.review-author {
  margin-top: 12px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.review-role {
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.signup {
  color: #fff;
  background: linear-gradient(90deg, #17130e 0%, #261e18 100%);
}

.signup h2 {
  color: #fff;
  max-width: none;
}

.signup-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.signup .signup-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 0;
  background: transparent;
  padding: 0;
  align-items: start;
  justify-content: center;
}

.signup-media {
  margin: 0;
  min-height: 340px;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: var(--radius-m);
  overflow: hidden;
  background: rgb(255 255 255 / 8%);
}

.signup-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

.signup .signup-card p {
  margin: 10px 0 0;
  color: #e7ebf8;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.signup label {
  font-weight: 400;
  color: #f2f5ff;
}

.signup input[type="text"],
.signup input[type="email"],
.signup input[type="tel"] {
  width: 100%;
  min-height: 50px;
  border-radius: var(--radius-s);
  border: 1px solid rgb(255 255 255 / 34%);
  padding: 0 12px;
  font: inherit;
  color: #fff;
  background: rgb(255 255 255 / 8%);
}

.signup input[type="text"]::placeholder,
.signup input[type="email"]::placeholder,
.signup input[type="tel"]::placeholder {
  color: #c4c9d8;
}

.signup input[type="text"]:focus-visible,
.signup input[type="email"]:focus-visible,
.signup input[type="tel"]:focus-visible {
  border-color: #fff;
}

.signup-form .btn {
  width: fit-content;
}

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

.field-error {
  font-size: 0.82rem;
  color: #f87171;
  margin-top: 2px;
}

.form-submit-error {
  color: #f87171;
  font-size: 0.9rem;
  padding: 10px 14px;
  background: rgba(248, 113, 113, 0.1);
  border-left: 3px solid #f87171;
  border-radius: 4px;
}

.form-success {
  text-align: center;
  padding: 40px 24px;
}

.form-success-icon {
  font-size: 3rem;
  color: #4ade80;
  line-height: 1;
  margin-bottom: 12px;
}

.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.form-debug {
  font-size: 0.78rem;
  background: #0f2a43;
  border: 1px solid #2a4a6a;
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

.form-debug pre {
  color: #7dd3fc;
  white-space: pre-wrap;
  word-break: break-all;
  margin: 6px 0 0;
}

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

.form-disclaimer {
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-disclaimer a,
.consent-check a {
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

.pricing-note .form-disclaimer {
  color: #4e4e59;
}

.signup .form-disclaimer {
  color: #dbe1f2;
}

.signup .form-disclaimer a,
.signup .consent-check a {
  color: #fff;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.consent-check input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  accent-color: var(--cta);
}

.pricing-note .consent-check {
  color: var(--ink);
}

.signup .consent-check {
  color: #f2f5ff;
}

.consent-optional {
  opacity: 0.95;
}

.legal-page {
  background: #fff;
}

.legal-page-header {
  padding: 20px 0 0;
  background: #fff;
}

.legal-page-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.legal-page-header .btn {
  gap: 8px;
}

.legal-page-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
}

.legal-page-main {
  padding-bottom: 28px;
}

.legal-page h1 {
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  font-weight: 400;
  max-width: none;
}

.legal-updated {
  font-size: 0.92rem;
}

.legal {
  background: #fff;
}

.legal h2 {
  max-width: none;
}

.legal-layout {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: #fff;
  padding: 20px;
  display: grid;
  gap: 10px;
}

.legal-card h2,
.legal-card h3 {
  margin-bottom: 0;
  max-width: none;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 600;
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
}

.legal-card ul {
  margin: 0;
  padding-left: 18px;
}

.legal-card li + li {
  margin-top: 8px;
}

.cookie-settings-toggle {
  position: fixed;
  left: auto;
  right: max(16px, calc((100vw - min(1300px, 92vw)) / 2));
  bottom: 16px;
  z-index: 38;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(12px);
  color: #656565;
  font: inherit;
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.cookie-settings-toggle:focus-visible,
.cookie-settings-toggle:hover {
  border-color: var(--ink);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 10px;
  z-index: 40;
  padding-inline: 0;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner-panel {
  width: min(1300px, 92%);
  margin-inline: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-m);
  background: rgb(255 255 255 / 96%);
  backdrop-filter: blur(12px);
  padding: 18px;
  display: grid;
  gap: 14px;
}

.cookie-banner-head {
  display: grid;
  gap: 6px;
}

.cookie-title {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.25;
}

.cookie-desc,
.cookie-meta {
  font-size: 0.88rem;
  color: #4b4b58;
}

.cookie-desc a,
.cookie-meta a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-preferences {
  display: grid;
  gap: 10px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 10px 12px;
  background: #fff;
}

.cookie-option.is-required {
  background: #f7f7f8;
}

.cookie-option-main {
  display: grid;
  gap: 2px;
}

.cookie-option strong {
  font-size: 0.92rem;
  line-height: 1.3;
}

.cookie-option small {
  font-size: 0.8rem;
  color: #666774;
}

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

.cookie-actions .btn {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 14px;
}

.cookie-btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.cookie-btn-secondary:hover,
.cookie-btn-secondary:focus-visible {
  background: #f1f1f4;
}

.site-footer {
  background: #f7f7f8;
  color: #2a2a33;
  padding: 22px 0;
  border-top-left-radius: var(--radius-s);
  border-top-right-radius: var(--radius-s);
  border-top: 1px solid var(--line);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-content p {
  color: inherit;
}

.footer-links {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-content a {
  color: #1f1f28;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes reveal-up {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.7);
    opacity: 0.95;
  }
  80% {
    transform: scale(1.45);
    opacity: 0;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

@keyframes timeline-grow {
  0% {
    opacity: 0.4;
    transform: scaleY(0);
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes timeline-dot-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.86;
  }
}

@keyframes shine-sweep {
  0% {
    background-position: 160% 0;
  }
  50% {
    background-position: -60% 0;
  }
  100% {
    background-position: -60% 0;
  }
}

@media (max-width: 575px) {
  .hero {
    background-image: none !important;
    background: linear-gradient(90deg, #17130e 0%, #261e18 100%) !important;
  }
  
  .hero-overlay {
    display: none !important;
  }
  
  .hero-mobile-img {
    display: block;
    height: 300px;
    width: 100%;
    background-image: url("assets/bg-hero.webp");
    background-size: cover;
    background-position: 100% center;
  }
}

@media (min-width: 576px) and (max-width: 1024px) {

  .section {
    padding: 82px 0;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    display: inline-flex;
    flex-direction: row;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }

  .hero-cta-row {
    flex-direction: row;
    align-items: center;
  }

  .program-timeline {
    gap: 16px;
  }

  .pricing-grid {
    grid-template-columns: 1.06fr 0.94fr;
  }

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

  .footer-content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .hero {
    background-position: 60% center;
  }
}

@media (min-width: 1025px) {
  .section {
    padding: 82px 0;
  }

  .hero-cta-row {
    flex-direction: row;
    align-items: center;
  }

  .program-timeline {
    gap: 16px;
  }

  .pricing-grid {
    grid-template-columns: 1.06fr 0.94fr;
  }

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

  .footer-content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    display: inline-flex;
    flex-direction: row;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }

  .hero-content {
    flex-direction: row;
  }

  .hero-main {
    flex: 0 0 75%;
    max-width: 75%;
    padding-right: 24px;
  }

  .hero-side {
    display: block;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .program-layout {
    flex-direction: row;
    align-items: stretch;
    gap: 24px;
  }

  .program-content {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .program-media {
    flex: 0 0 50%;
    max-width: 50%;
    min-height: 0;
  }

  .signup-layout {
    flex-direction: row;
    align-items: stretch;
    gap: 24px;
  }

  .signup-card {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .signup-media {
    flex: 0 0 50%;
    max-width: 50%;
    min-height: auto;
  }

  .problem-layout {
    flex-direction: row;
    align-items: center;
    min-height: clamp(460px, 52vw, 700px);
  }

  .problem-blank {
    display: block;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .problem-content {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 40px 0;
  }

  .problem-media {
    display: block;
    position: absolute;
    inset: 0 auto 0 0;
    width: 54%;
    pointer-events: none;
  }

  .problem-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: ellipse(80% 70% at 0% 50%);
  }

  .usp-layout {
    flex-direction: row;
    align-items: center;
    min-height: clamp(460px, 52vw, 700px);
  }

  .usp-content {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 40px 24px 40px 0;
  }

  .usp-blank {
    display: block;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .usp-media {
    display: block;
    position: absolute;
    inset: 0 0 0 auto;
    width: 54%;
    pointer-events: none;
  }

  .usp-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: ellipse(80% 70% at 100% 50%);
    object-position: right center;
  }

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

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

  .hero-content {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }

  .hero-main > *,
  .instructor-card,
  .timeline-item,
  .benefits,
  .pricing-card,
  .pricing-note,
  .signup-card,
  .usp-item,
  .review-card {
    animation: none;
  }

  .pulse-dot::after {
    animation: none;
  }

  .timeline-dot,
  .program-timeline::before {
    animation: none;
  }

  .hero-trigger::before {
    animation: none;
  }
}
