/* =====================================================
   Barrix — Online Barre Classes
   styles.css
   ===================================================== */

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

:root {
  --rose: #c8a0a0;
  --rose-dark: #a07878;
  --rose-light: #f0e0e0;
  --rose-pale: #faf5f5;
  --charcoal: #2a2020;
  --warm-gray: #6b5c5c;
  --medium-gray: #9e8a8a;
  --border: #e8d8d8;
  --white: #ffffff;
  --cream: #fdf8f5;
  --sand: #f5ede8;
  --text: #2a2020;
  --text-soft: #5a4848;
  --shadow: 0 4px 24px rgba(42, 32, 32, 0.10);
  --shadow-sm: 0 2px 10px rgba(42, 32, 32, 0.07);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --font-body: 'Georgia', 'Times New Roman', serif;
  --font-sans: system-ui, -apple-system, 'Segoe UI', sans-serif;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

/* =====================================================
   TYPOGRAPHY
   ===================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: normal;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p {
  line-height: 1.75;
  color: var(--text-soft);
}

/* =====================================================
   LAYOUT UTILITIES
   ===================================================== */

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

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--cream);
}

.section--sand {
  background: var(--sand);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  margin-bottom: 20px;
  color: var(--charcoal);
}

.section-desc {
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 40px;
}

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

.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
  font-family: var(--font-sans);
  text-align: center;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--rose-dark);
  color: var(--white);
  border-color: var(--rose-dark);
}

.btn--primary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.btn--outline {
  background: transparent;
  color: var(--rose-dark);
  border-color: var(--rose-dark);
}

.btn--outline:hover {
  background: var(--rose-dark);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
}

.btn--lg {
  padding: 17px 40px;
  font-size: 1.05rem;
}

/* =====================================================
   HEADER / NAV
   ===================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-body);
  font-size: 1.6rem;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--rose-dark);
}

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

.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav__links a {
  font-size: 0.9rem;
  color: var(--warm-gray);
  font-weight: 500;
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--charcoal);
}

.nav__cta {
  padding: 10px 24px;
  font-size: 0.88rem;
}

/* Mobile menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--charcoal);
  line-height: 1;
}

.mobile-nav a {
  font-size: 1.4rem;
  font-family: var(--font-body);
  color: var(--charcoal);
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--rose-dark);
}

/* =====================================================
   HERO
   ===================================================== */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-photo.png') center/cover no-repeat;
  opacity: 0.45;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42,32,32,0.85) 0%, rgba(42,32,32,0.5) 60%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,160,160,0.2);
  border: 1px solid rgba(200,160,160,0.4);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 24px;
}

.hero__dot {
  width: 6px;
  height: 6px;
  background: var(--rose);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose-light);
}

.hero__desc {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  cursor: pointer;
  animation: bounceDown 2s infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =====================================================
   SOFT EXPLANATION
   ===================================================== */

.soft {
  padding: 72px 0;
  background: var(--rose-pale);
}

.soft__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.soft__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--rose-light);
}

.soft__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.soft__text .section-label {
  display: inline-block;
}

/* =====================================================
   BENEFITS
   ===================================================== */

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

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefit-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.benefit-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--rose-dark);
}

.benefit-card h3 {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.92rem;
}

/* =====================================================
   HOW IT WORKS
   ===================================================== */

.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.how__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border);
}

.how__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.how__step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rose-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.how__step h3 {
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.how__step p {
  font-size: 0.88rem;
}

/* =====================================================
   TRAINER FOCUS
   ===================================================== */

.trainer__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: center;
}

.trainer__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--rose-light);
}

.trainer__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trainer__body .section-label {
  display: inline-block;
}

.trainer__body blockquote {
  border-left: 3px solid var(--rose);
  padding-left: 20px;
  margin: 24px 0;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--warm-gray);
  font-style: italic;
  line-height: 1.7;
}

.trainer__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag {
  background: var(--rose-pale);
  border: 1px solid var(--rose-light);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.82rem;
  color: var(--rose-dark);
  font-weight: 500;
}

/* =====================================================
   PROGRAM FORMAT
   ===================================================== */

.program__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.program-card {
  border-radius: var(--radius);
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.program-card:hover {
  border-color: var(--rose);
  box-shadow: var(--shadow-sm);
}

.program-card--featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
  grid-column: 1 / -1;
}

.program-card--featured .program-card__title {
  color: var(--white);
}

.program-card--featured p {
  color: rgba(255,255,255,0.7);
}

.program-card--featured .program-card__meta {
  color: var(--rose-light);
}

.program-card__badge {
  display: inline-block;
  background: var(--rose);
  color: var(--white);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.program-card__title {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.program-card p {
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.program-card__meta {
  font-size: 0.82rem;
  color: var(--medium-gray);
}

.program-card__meta span {
  margin-right: 16px;
}

/* =====================================================
   AUDIENCE FIT
   ===================================================== */

.audience__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.audience__col h3 {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.audience__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audience__col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.check-icon--yes {
  background: #e8f5e9;
  color: #4caf50;
  font-size: 0.7rem;
  font-weight: bold;
}

.check-icon--no {
  background: #fce4ec;
  color: #e91e63;
  font-size: 0.85rem;
  font-weight: bold;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-sm);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.star {
  color: var(--rose-dark);
  font-size: 0.85rem;
}

.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: var(--text-soft);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose-dark);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
}

.testimonial-card__city {
  font-size: 0.8rem;
  color: var(--medium-gray);
}

/* =====================================================
   FAQ
   ===================================================== */

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--charcoal);
  font-family: var(--font-sans);
  gap: 16px;
  transition: background var(--transition);
}

.faq-item__question:hover {
  background: var(--rose-pale);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--rose-pale);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--rose-dark);
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  color: var(--white);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
  padding: 0 24px;
}

.faq-item.open .faq-item__answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq-item__answer p {
  font-size: 0.93rem;
  color: var(--text-soft);
  line-height: 1.75;
}

/* =====================================================
   LEAD FORM
   ===================================================== */

.lead-form-section {
  background: var(--charcoal);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.lead-form-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(200,160,160,0.07);
}

.lead-form-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(200,160,160,0.05);
}

.lead-form__inner {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lead-form__left .section-label {
  color: var(--rose-light);
}

.lead-form__left h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.lead-form__left p {
  color: rgba(255,255,255,0.68);
}

.lead-form__perks {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-form__perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
}

.lead-form__perks li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(42,32,32,0.25);
}

.form-card h3 {
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-card .form-subtitle {
  font-size: 0.88rem;
  color: var(--medium-gray);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-sans);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--rose-dark);
  box-shadow: 0 0 0 3px rgba(160,120,120,0.12);
}

.form-group input.error,
.form-group select.error {
  border-color: #e53e3e;
}

.form-group .error-msg {
  font-size: 0.78rem;
  color: #e53e3e;
  margin-top: 4px;
  display: none;
}

.form-group.has-error .error-msg {
  display: block;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  margin-top: 8px;
  border-radius: var(--radius-sm);
}

.form-note {
  font-size: 0.75rem;
  color: var(--medium-gray);
  text-align: center;
  margin-top: 14px;
}

.form-note a {
  color: var(--rose-dark);
  text-decoration: underline;
}

/* =====================================================
   TRUST BLOCKS
   ===================================================== */

.trust {
  padding: 56px 0;
  background: var(--sand);
}

.trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.trust-item__value {
  font-family: var(--font-body);
  font-size: 2.4rem;
  color: var(--charcoal);
  line-height: 1;
}

.trust-item__label {
  font-size: 0.82rem;
  color: var(--warm-gray);
  max-width: 120px;
}

.trust-divider {
  width: 1px;
  height: 56px;
  background: var(--border);
}

/* =====================================================
   CTA BANNER
   ===================================================== */

.cta-banner {
  padding: 72px 0;
  background: var(--rose-pale);
}

.cta-banner__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner h2 {
  margin-bottom: 18px;
}

.cta-banner p {
  margin-bottom: 32px;
  font-size: 1.02rem;
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
  background: var(--charcoal);
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.7);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer__brand .logo {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.footer__brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
}

.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
}

.footer__copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: right;
}

/* =====================================================
   COOKIE BANNER
   ===================================================== */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 680px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--rose-light);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept {
  padding: 9px 20px;
  background: var(--rose-dark);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  font-family: var(--font-sans);
  white-space: nowrap;
}

.cookie-accept:hover {
  background: var(--rose);
}

.cookie-decline {
  padding: 9px 16px;
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
  font-family: var(--font-sans);
  white-space: nowrap;
}

.cookie-decline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

/* =====================================================
   SUCCESS PAGE
   ===================================================== */

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rose-pale);
  padding: 40px 24px;
}

.success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow);
}

.success-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-card__icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--rose-dark);
}

.success-card h1 {
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.success-card p {
  margin-bottom: 12px;
}

.success-card .btn {
  margin-top: 28px;
}

/* =====================================================
   LEGAL PAGES
   ===================================================== */

.legal-header {
  background: var(--charcoal);
  padding: 80px 0 60px;
  color: var(--white);
}

.legal-header h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.legal-header p {
  color: rgba(255,255,255,0.6);
}

.legal-content {
  padding: 64px 0;
}

.legal-body {
  max-width: 800px;
}

.legal-body h2 {
  font-size: 1.3rem;
  color: var(--charcoal);
  margin: 40px 0 14px;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-body ul {
  margin: 12px 0 16px 20px;
}

.legal-body li {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 6px;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
  .how__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .how__steps::before {
    display: none;
  }

  .trainer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trainer__photo {
    max-width: 400px;
    aspect-ratio: 4/3;
  }

  .lead-form__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .nav__links, .nav__cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .soft__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .program-card--featured {
    grid-column: auto;
  }

  .audience__split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .trust__inner {
    gap: 36px;
  }

  .trust-divider {
    display: none;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__copyright {
    text-align: left;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn--lg {
    width: 100%;
    justify-content: center;
  }

  .lead-form__inner {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 28px 24px;
  }

  .success-card {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { min-height: 85vh; }
}
