:root {
  --navy: #1b2a4a;
  --navy-soft: #2a3d66;
  --orange: #ee7b1a;
  --orange-deep: #d86610;
  --orange-mid: #f39a2e;
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --sand: #ece4d6;
  --ink: #243044;
  --muted: #5d6776;
  --line: #e4dcd0;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(27, 42, 74, 0.08);
  --radius: 22px;
  --header-h: 76px;
  --switch-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Sora, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  padding-bottom: calc(var(--switch-h) + 16px);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--orange);
}

h1,
h2 {
  color: var(--navy);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  max-width: 20ch;
}

h3 {
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 46ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.section {
  padding: 72px 0;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246, 241, 232, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.logo img {
  height: 42px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--navy-soft);
  font-size: 14px;
  font-weight: 500;
}

.nav a:hover,
.nav a.is-current {
  color: var(--navy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone {
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 650;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(238, 123, 26, 0.25);
}

.btn-orange:hover {
  background: var(--orange-deep);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--white);
  border-radius: 12px;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--navy);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

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

.hero {
  padding: 28px 0 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fact {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-note {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: min(560px, 68vw);
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: 260px;
  padding: 14px 16px;
  background: rgba(255, 253, 248, 0.94);
  border-radius: 16px;
}

.hero-badge strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.hero-badge span {
  color: var(--muted);
  font-size: 13px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.step,
.card,
.price-card,
.place,
.quote,
.offer {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step {
  padding: 22px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #fff1e0;
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 700;
}

.step p,
.card p,
.offer p,
.place p,
.quote p {
  margin-top: 8px;
  color: var(--muted);
}

.reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.card {
  padding: 24px;
}

.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.offer {
  overflow: hidden;
}

.offer img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.offer-body {
  padding: 20px 22px 22px;
}

.offer small {
  display: inline-block;
  margin-top: 10px;
  color: var(--orange-deep);
  font-weight: 600;
}

.pricing-intro {
  color: var(--muted);
  max-width: 52ch;
}

.price-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 18px;
}

.price-tab {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.price-tab.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.price-panel {
  display: none;
}

.price-panel.is-active {
  display: block;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.price-card {
  padding: 20px;
}

.price-card.is-featured {
  border-color: #f3c089;
  background: #fff8ef;
}

.price-card span {
  color: var(--muted);
  font-size: 13px;
}

.price-card strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--navy);
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.price-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.places {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.place img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 22px 22px 0 0;
}

.place-body {
  padding: 20px;
}

.place ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

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

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

.quote {
  padding: 24px;
}

.quote footer {
  margin-top: 18px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 650;
}

.team {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.trainer {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}

.trainer strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.trainer span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.cta-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  padding: 36px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.form,
form[data-signup] {
  display: grid;
  gap: 12px;
}

form[data-signup][hidden] {
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.form-success {
  display: none;
  padding: 16px;
  border-radius: 14px;
  background: #eef6ea;
  color: #2f5a28;
}

.site-footer {
  padding: 40px 0 20px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.site-footer h3 {
  margin-bottom: 10px;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: 14px;
}

.footer-copy {
  margin-top: 28px;
  color: #8a847b;
  font-size: 12px;
}

.variant-switch {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 40;
  display: flex;
  transform: translateX(-50%);
  padding: 6px;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(27, 42, 74, 0.16);
}

.variant-switch a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.variant-switch b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sand);
  font-size: 12px;
}

.variant-switch a.is-active {
  background: var(--navy);
  color: var(--white);
}

.variant-switch a.is-active b {
  background: var(--orange);
  color: var(--white);
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .hero-grid,
  .reasons,
  .cta-box,
  .footer-grid,
  .quotes,
  .places,
  .offers {
    grid-template-columns: 1fr;
  }

  .steps,
  .price-grid,
  .team {
    grid-template-columns: 1fr 1fr;
  }

  .nav,
  .phone {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  body.nav-open .nav {
    display: flex;
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 20px 28px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }

  .hero-visual img {
    height: 280px;
  }

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

@media (max-width: 720px) {
  :root {
    --header-h: 64px;
  }

  .logo img {
    height: 34px;
  }

  .hero {
    padding-top: 8px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-copy {
    gap: 12px;
  }

  h1 {
    max-width: none;
    font-size: 1.85rem;
  }

  .lead {
    font-size: 0.95rem;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-cta .btn-ghost {
    display: none;
  }

  .hero-visual img {
    height: 220px;
  }

  .steps,
  .price-grid,
  .team {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }

  .cta-box {
    padding: 22px;
  }

  .variant-switch span {
    display: none;
  }

  .header-actions .btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }
}
