/* =============================================
   БУЛКА-TEAM — Главная таблица стилей
   #D4A76A — Золотая корочка (акценты, кнопки)
   #3E2723 — Винтажный шоколад (текст, заголовки)
   #FDF6E3 — Кремовый лён (фон)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --gold:        #D4A76A;
  --gold-dark:   #b8894f;
  --choco:       #3E2723;
  --choco-light: #6d4c41;
  --linen:       #FDF6E3;
  --linen-dark:  #f0e6cc;
  --white:       #ffffff;
  --radius:      6px;
  --shadow:      0 4px 24px rgba(62,39,35,.12);
  --transition:  .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--linen);
  color: var(--choco);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--choco); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  color: var(--choco);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

/* ---- Кнопки ---- */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--choco);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.btn:hover { background: var(--gold-dark); color: var(--choco); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--choco); }

.btn-dark {
  background: var(--choco);
  color: var(--white);
}
.btn-dark:hover { background: var(--choco-light); color: var(--white); }

/* ---- Навигация ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled,
body.inner-page .navbar {
  background: var(--choco);
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
  padding: 10px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo img { height: 40px; width: auto; }
.navbar-links {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}
.navbar-links a {
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .95;
  transition: opacity var(--transition), color var(--transition);
}
.navbar-links a:hover { color: var(--gold); opacity: 1; }
.navbar-links .nav-cta a {
  background: var(--gold);
  color: var(--choco);
  padding: 8px 20px;
  border-radius: var(--radius);
  opacity: 1;
}
.navbar-links .nav-cta a:hover { background: var(--gold-dark); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(20,8,5,.55) 0%, rgba(62,39,35,.65) 100%),
    url('../images/hero.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}
.hero-content { max-width: 780px; }
.hero-logo {
  width: 110px;
  margin: 0 auto 28px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.5));
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
  letter-spacing: -.01em;
}
.hero-slogan {
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  color: var(--gold);
  font-style: italic;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 44px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Вспомогательные ---- */
.section-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  margin-bottom: 20px;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--choco-light);
  max-width: 620px;
  margin-bottom: 0;
}

/* ---- О клубе ---- */
.about { background: var(--linen); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 72px;
  align-items: center;
}
.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--choco);
  line-height: 1.4;
  border-left: 4px solid var(--gold);
  padding-left: 24px;
}
.about-text .section-label { margin-top: 0; }
.about-text p { color: var(--choco-light); margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.badge {
  background: var(--linen-dark);
  border: 1px solid rgba(62,39,35,.15);
  color: var(--choco);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ---- Наши проекты ---- */
.projects { background: var(--linen-dark); }
.projects-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.project-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  min-height: 100%;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(62,39,35,.16);
}
.project-logo {
  width: 100%;
  max-width: 220px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.project-info p {
  font-size: .93rem;
  color: var(--choco-light);
  margin-bottom: 12px;
  line-height: 1.65;
}
.project-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold-dark);
}
.project-card:hover .project-link { color: var(--choco); }

/* ---- Тренеры ---- */
.trainers { background: var(--choco); }
.trainers .section-label { color: var(--gold); }
.trainers .section-title { color: var(--white); }
.trainers .section-lead { color: rgba(255,255,255,.65); }

.trainers-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 52px 0 44px;
  max-width: 640px;
}
.trainer-card { text-align: center; }

/* ---- Карусель тренера ---- */
.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin: 0 auto 18px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  cursor: grab;
  user-select: none;
}
.carousel.dragging { cursor: grabbing; }
.carousel-track {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform .35s ease;
  will-change: transform;
}
.carousel-track.no-transition { transition: none; }
.carousel-slide {
  position: relative;
  min-width: 100%;
  flex-shrink: 0;
}
.carousel-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(62,39,35,.6);
  color: var(--white);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: .9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}
.carousel:hover .carousel-btn { opacity: 1; }
.carousel-prev { left: 6px; }
.carousel-next { right: 6px; }
.carousel-dots {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: background var(--transition);
}
.carousel-dot.active { background: var(--gold); }

.trainer-card > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius);
  margin: 0 auto 18px;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  display: block;
}
.trainer-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.trainer-card .trainer-role {
  color: var(--gold);
  font-size: .88rem;
  font-style: italic;
}

.trainers-bio {
  background: rgba(255,255,255,.07);
  border-left: 4px solid var(--gold);
  padding: 32px 36px;
  border-radius: var(--radius);
  max-width: 820px;
}
.trainers-bio p {
  color: rgba(255,255,255,.82);
  margin-bottom: 14px;
  line-height: 1.75;
}
.trainers-bio p:last-child { margin-bottom: 0; }

/* ---- Услуги ---- */
.services { background: var(--linen-dark); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(62,39,35,.18);
}
.service-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--choco);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.service-card p {
  color: var(--choco-light);
  font-size: .93rem;
  flex: 1;
  margin-bottom: 24px;
  line-height: 1.65;
}
.service-card .btn { align-self: flex-start; }

/* ---- Как работает ---- */
.how { background: var(--linen); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 52px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 2px;
  background: var(--linen-dark);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--choco);
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(212,167,106,.4);
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: .88rem; color: var(--choco-light); line-height: 1.6; }

/* ---- FAQ ---- */
.faq { background: var(--linen-dark); }
.faq-list {
  margin-top: 44px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item { border-bottom: 1px solid rgba(62,39,35,.14); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: .98rem;
  font-weight: 600;
  color: var(--choco);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-dark);
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 22px 0;
  color: var(--choco-light);
  line-height: 1.75;
  font-size: .96rem;
}
.faq-item.open .faq-answer { display: block; }

/* ---- Форма записи ---- */
.signup { background: var(--choco); }
.signup .section-label { color: var(--gold); }
.signup .section-title { color: var(--white); }
.signup-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 48px;
}
.signup-info p {
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
  line-height: 1.7;
}
.signup-contacts { margin-top: 32px; }
.signup-contacts a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  margin-bottom: 12px;
  transition: color var(--transition);
}
.signup-contacts a:hover { color: var(--gold); }
.contact-icon { font-size: 1.1rem; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.1); }

.form-note {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  margin-top: 14px;
  line-height: 1.6;
}
.form-note a { color: rgba(255,255,255,.45); text-decoration: underline; }
.form-note a:hover { color: var(--gold); }

.form-success {
  display: none;
  background: rgba(212,167,106,.12);
  border: 1px solid rgba(212,167,106,.5);
  color: rgba(255,255,255,.9);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-top: 20px;
  line-height: 1.6;
}

/* ---- Подвал ---- */
footer {
  background: #2a1a17;
  color: rgba(255,255,255,.55);
  padding: 52px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-brand img { height: 38px; width: auto; opacity: .9; margin-bottom: 14px; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.65; max-width: 240px; }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col li:last-child { margin-bottom: 0; }
.footer-col a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  line-height: 1.5;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }


.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 28px;
  font-size: .8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ========= СТРАНИЦЫ УСЛУГ ========= */
.page-hero {
  min-height: 420px;
  padding: 140px 0 80px;
  background: linear-gradient(to bottom, rgba(20,8,5,.62) 0%, rgba(62,39,35,.68) 100%),
    center center / cover no-repeat;
  display: flex;
  align-items: flex-end;
}
.page-hero-content { max-width: 700px; }
.page-hero .section-label { color: var(--gold); }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
}
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; line-height: 1.65; }

.page-hero-start   { background-image: linear-gradient(to bottom,rgba(20,8,5,.62),rgba(62,39,35,.68)), url('../images/service-start.jpg'); background-size: cover; background-position: center; }
.page-hero-online  { background-image: linear-gradient(to bottom,rgba(20,8,5,.62),rgba(62,39,35,.68)), url('../images/service-online.jpg'); background-size: cover; background-position: center; }
.page-hero-consult { background-image: linear-gradient(to bottom,rgba(20,8,5,.62),rgba(62,39,35,.68)), url('../images/service-consult.jpg'); background-size: cover; background-position: center; }
.page-hero-training{ background-image: linear-gradient(to bottom,rgba(20,8,5,.62),rgba(62,39,35,.68)), url('../images/service-training.jpg'); background-size: cover; background-position: center; }

.page-body { background: var(--linen); padding: 72px 0; }
.page-body-inner { max-width: 820px; }

.page-body h2 {
  font-size: 1.55rem;
  margin: 44px 0 16px;
  padding-top: 8px;
}
.page-body h2:first-child { margin-top: 0; }
.page-body p { color: var(--choco-light); margin-bottom: 16px; line-height: 1.75; }
.page-body ul { padding-left: 20px; margin-bottom: 16px; }
.page-body li { margin-bottom: 8px; color: var(--choco-light); line-height: 1.65; }
.page-body strong { color: var(--choco); }

.price-box {
  background: var(--choco);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin: 44px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.price-box-left .price-label {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 6px;
  letter-spacing: .04em;
}
.price-box-left .price-val {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1.1;
}
.price-box-left .price-sub {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  margin-top: 4px;
}

.stages { margin: 32px 0 40px; }
.stage-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.stage-num {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--choco);
  font-weight: 700;
  font-size: .9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.stage-body h3 { font-size: 1rem; margin-bottom: 6px; }
.stage-body p { font-size: .93rem; color: var(--choco-light); margin: 0; }

.includes-box {
  background: var(--linen-dark);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 32px 0;
}
.includes-box h3 { font-size: 1.05rem; margin-bottom: 16px; }
.includes-box ul { padding-left: 0; list-style: none; margin: 0; }
.includes-box li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--choco-light);
  font-size: .95rem;
  border-bottom: 1px solid rgba(62,39,35,.08);
}
.includes-box li:last-child { border-bottom: none; }
.includes-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}

.page-cta {
  background: var(--choco);
  padding: 64px 0;
  text-align: center;
}
.page-cta .section-label { color: var(--gold); }
.page-cta h2 { color: var(--white); font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.page-cta p { color: rgba(255,255,255,.65); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ========= ЮРИДИЧЕСКИЕ СТРАНИЦЫ ========= */
.legal-wrap {
  background: var(--linen);
  padding: 120px 0 80px;
}
.legal-wrap .container { max-width: 820px; }
.legal-wrap h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 6px; }
.legal-date { font-size: .85rem; color: var(--choco-light); margin-bottom: 48px; display: block; }
.legal-wrap h2 { font-size: 1.25rem; margin: 36px 0 12px; }
.legal-wrap h3 { font-size: 1.05rem; margin: 22px 0 8px; }
.legal-wrap p { color: var(--choco-light); margin-bottom: 14px; line-height: 1.75; }
.legal-wrap ul, .legal-wrap ol { padding-left: 20px; margin-bottom: 14px; }
.legal-wrap li { margin-bottom: 7px; color: var(--choco-light); line-height: 1.65; }
.legal-wrap strong { color: var(--choco); }
.legal-wrap table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .93rem; }
.legal-wrap th { background: var(--choco); color: var(--white); padding: 10px 14px; text-align: left; }
.legal-wrap td { padding: 10px 14px; border-bottom: 1px solid var(--linen-dark); color: var(--choco-light); }
.legal-wrap tr:last-child td { border-bottom: none; }
.legal-requisites {
  background: var(--linen-dark);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 20px 0;
}
.legal-requisites p { margin-bottom: 6px; }
.legal-requisites p:last-child { margin-bottom: 0; }

/* ========= АДАПТИВ ========= */
@media (max-width: 960px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; max-width: 540px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .signup-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  section { padding: 56px 0; }
  .navbar-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--choco); padding: 20px 24px; gap: 16px; }
  .navbar-links.open { display: flex; }
  .burger { display: flex; }
  .projects-grid { grid-template-columns: 1fr; }
  .trainers-photos { grid-template-columns: 1fr; max-width: 280px; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .price-box { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}
