/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #FAF7F2;
  --beige: #F0EAE0;
  --beige-dark: #E4D9CB;
  --terra: #B85C38;
  --terra-dark: #9A4A2C;
  --terra-light: #D4896A;
  --sage: #7A8C6E;
  --sage-light: #A3B594;
  --gold: #C9974A;
  --gold-light: #E8C07A;
  --brown: #2D1B0E;
  --brown-mid: #5C3D2A;
  --brown-light: #8B6550;
  --text: #2D1B0E;
  --text-mid: #6B4E3D;
  --text-light: #9B7B6C;
  --white: #FFFFFF;
  --font-main: 'Golos Text', 'Segoe UI', system-ui, sans-serif;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(45, 27, 14, 0.08);
  --shadow-lg: 0 8px 40px rgba(45, 27, 14, 0.12);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--brown);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 2vw, 1.2rem); }

p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(184, 92, 56, 0.35);
}

.btn-primary:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(184, 92, 56, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--terra);
  border: 2px solid var(--terra);
}

.btn-secondary:hover {
  background: var(--terra);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201, 151, 74, 0.4);
}

.btn-gold:hover {
  background: #b5823a;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201, 151, 74, 0.5);
}

.btn-lg {
  padding: 20px 48px;
  font-size: 1.1rem;
}

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  background: rgba(184, 92, 56, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-label.sage {
  color: var(--sage);
  background: rgba(122, 140, 110, 0.1);
}

.section-label.gold {
  color: var(--gold);
  background: rgba(201, 151, 74, 0.12);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 27, 14, 0.06);
  transition: box-shadow var(--transition);
}

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

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__icon {
  width: 40px;
  height: 40px;
  background: var(--terra);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.logo__text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.02em;
}

.logo__text span {
  color: var(--terra);
}

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

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--terra);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--beige-dark);
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow);
}

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

.mobile-nav a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--beige);
}

/* ===== HERO ===== */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 80px;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, rgba(250,247,242,0.3) 60%, transparent 100%);
  border-radius: 0 0 0 80px;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 92, 56, 0.08);
  border: 1px solid rgba(184, 92, 56, 0.2);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 28px;
}

.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--terra);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  margin-bottom: 24px;
  font-weight: 700;
}

.hero h1 em {
  font-style: normal;
  color: var(--terra);
}

.hero__sub {
  font-size: 1.15rem;
  color: var(--text-mid);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__note {
  font-size: 0.85rem;
  color: var(--text-light);
}

.hero__stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== PAIN SECTION ===== */
.pain {
  background: var(--brown);
  color: var(--white);
  padding: 80px 0;
}

.pain h2 {
  color: var(--cream);
  margin-bottom: 48px;
}

.pain p {
  color: rgba(250, 247, 242, 0.7);
}

.pain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.pain__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px;
}

.pain__icon {
  width: 48px;
  height: 48px;
  background: rgba(184, 92, 56, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.pain__card h4 {
  color: var(--cream);
  margin-bottom: 8px;
  font-size: 1rem;
}

.pain__card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.pain__answer {
  background: rgba(184, 92, 56, 0.15);
  border: 1px solid rgba(184, 92, 56, 0.3);
  border-radius: var(--radius);
  padding: 32px 36px;
  text-align: center;
}

.pain__answer p {
  color: var(--cream);
  font-size: 1.15rem;
  line-height: 1.7;
}

.pain__answer strong {
  color: var(--terra-light);
}

/* ===== FOR WHOM ===== */
.forwhom {
  background: var(--beige);
}

.forwhom__header {
  text-align: center;
  margin-bottom: 56px;
}

.forwhom__header p {
  max-width: 540px;
  margin: 0 auto;
  margin-top: 16px;
}

.forwhom__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.forwhom__card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--beige-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.forwhom__emoji {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.forwhom__card h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.forwhom__card p {
  font-size: 0.9rem;
}

/* ===== CURRICULUM ===== */
.curriculum__header {
  text-align: center;
  margin-bottom: 56px;
}

.curriculum__header p {
  max-width: 560px;
  margin: 0 auto;
  margin-top: 16px;
}

.curriculum__modules {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.module {
  background: var(--cream);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.module:hover {
  box-shadow: var(--shadow);
}

.module__header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  cursor: pointer;
  user-select: none;
}

.module__num {
  width: 40px;
  height: 40px;
  background: var(--terra);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.module__title {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--brown);
  font-weight: 600;
}

.module__arrow {
  color: var(--text-light);
  transition: transform var(--transition);
  font-size: 1.2rem;
}

.module.open .module__arrow {
  transform: rotate(180deg);
}

.module__body {
  display: none;
  padding: 0 28px 24px;
  border-top: 1px solid var(--beige);
  padding-top: 20px;
}

.module.open .module__body {
  display: block;
}

.module__topics {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.module__topic {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.module__topic::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* ===== OUTCOMES ===== */
.outcomes {
  background: var(--beige);
}

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

.outcomes__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.outcomes__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.outcomes__content h2 {
  margin-bottom: 32px;
}

.outcomes__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.outcome-item__check {
  width: 28px;
  height: 28px;
  background: rgba(122, 140, 110, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.outcome-item__text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.outcome-item__text strong {
  color: var(--brown);
}

/* ===== FORMAT ===== */
.format {
  background: var(--cream);
}

.format__header {
  text-align: center;
  margin-bottom: 56px;
}

.format__header p {
  max-width: 540px;
  margin: 0 auto;
  margin-top: 16px;
}

.format__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.format__card {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  border: 1px solid var(--beige-dark);
}

.format__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.format__card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.format__card p {
  font-size: 0.9rem;
}

/* ===== INSTRUCTOR ===== */
.instructor__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: center;
}

.instructor__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.instructor__photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.instructor__photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(250, 247, 242, 0.96);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}

.instructor__photo-badge-icon {
  width: 42px;
  height: 42px;
  background: var(--terra);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.instructor__photo-badge-text {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.4;
}

.instructor__photo-badge-text strong {
  display: block;
  color: var(--brown);
  font-size: 0.95rem;
}

.instructor__content h2 {
  margin-bottom: 8px;
}

.instructor__subtitle {
  color: var(--terra);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.instructor__bio {
  margin-bottom: 32px;
}

.instructor__bio p {
  margin-bottom: 16px;
}

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

.instructor__fact {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 18px 20px;
  border: 1px solid var(--beige-dark);
}

.instructor__fact-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--terra);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.instructor__fact-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--beige);
}

.reviews__header {
  text-align: center;
  margin-bottom: 56px;
}

.reviews__header p {
  max-width: 480px;
  margin: 0 auto;
  margin-top: 16px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review__card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--beige-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.review__stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review__result {
  background: rgba(122, 140, 110, 0.1);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 20px;
}

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

.review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--beige-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--brown-mid);
  font-weight: 700;
  flex-shrink: 0;
}

.review__author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brown);
  font-weight: 600;
}

.review__author-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== INGREDIENTS SECTION ===== */
.ingredients {
  overflow: hidden;
  position: relative;
  padding: 0;
}

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

.ingredients__image {
  height: 480px;
}

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

.ingredients__content {
  background: var(--brown);
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ingredients__content .section-label {
  color: var(--terra-light);
  background: rgba(184, 92, 56, 0.2);
}

.ingredients__content h2 {
  color: var(--cream);
  margin-bottom: 24px;
}

.ingredients__content p {
  color: rgba(250, 247, 242, 0.7);
  margin-bottom: 32px;
}

.ingredients__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ingredient-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(250, 247, 242, 0.85);
  font-size: 0.95rem;
}

.ingredient-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--terra-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== LEAD FORM ===== */
.leadform {
  background: var(--cream);
}

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

.leadform__left h2 {
  margin-bottom: 20px;
}

.leadform__left p {
  margin-bottom: 32px;
}

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

.leadform__promise {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.leadform__promise::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: rgba(122, 140, 110, 0.15);
  color: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.leadform__form {
  background: var(--beige);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--beige-dark);
}

.leadform__form h3 {
  font-size: 1.3rem;
  margin-bottom: 28px;
  text-align: center;
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown-mid);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--cream);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 18px;
  font-size: 1.05rem;
}

.form-legal {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.form-legal a {
  color: var(--terra);
  text-decoration: underline;
}

/* ===== FAQ ===== */
.faq {
  background: var(--beige);
}

.faq__header {
  text-align: center;
  margin-bottom: 56px;
}

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

.faq__item {
  background: var(--cream);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--terra);
}

.faq__question-icon {
  width: 28px;
  height: 28px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}

.faq__item.open .faq__question-icon {
  transform: rotate(45deg);
  background: var(--terra);
  color: var(--white);
}

.faq__answer {
  display: none;
  padding: 0 28px 22px;
  border-top: 1px solid var(--beige);
  padding-top: 18px;
}

.faq__item.open .faq__answer {
  display: block;
}

.faq__answer p {
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--terra);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--cream);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(250, 247, 242, 0.8);
  margin-bottom: 36px;
  font-size: 1.1rem;
}

.cta-banner .btn {
  background: var(--cream);
  color: var(--terra);
  font-weight: 700;
}

.cta-banner .btn:hover {
  background: var(--beige);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brown);
  color: rgba(250, 247, 242, 0.7);
  padding: 60px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand .logo__text {
  color: var(--cream);
}

.footer__brand p {
  color: rgba(250, 247, 242, 0.55);
  font-size: 0.9rem;
  margin-top: 12px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer__col h4 {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: rgba(250, 247, 242, 0.55);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--terra-light);
}

.footer__contacts p {
  color: rgba(250, 247, 242, 0.55);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__legal {
  font-size: 0.82rem;
  color: rgba(250, 247, 242, 0.4);
  line-height: 1.7;
}

.footer__legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__legal-links a {
  color: rgba(250, 247, 242, 0.45);
  font-size: 0.82rem;
  transition: color var(--transition);
  text-decoration: underline;
}

.footer__legal-links a:hover {
  color: var(--terra-light);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brown);
  color: var(--cream);
  padding: 20px 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 3px solid var(--terra);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  color: rgba(250, 247, 242, 0.8);
  font-size: 0.9rem;
  flex: 1;
  min-width: 200px;
}

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

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

.cookie-banner .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding-top: 110px;
  padding-bottom: 80px;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.legal-page h1 {
  margin-bottom: 8px;
}

.legal-page .legal-date {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 40px;
  display: block;
}

.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-page p, .legal-page li {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 12px;
  line-height: 1.75;
}

.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page .legal-contact-block {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 40px;
  border: 1px solid var(--beige-dark);
}

.legal-page .legal-contact-block p {
  margin-bottom: 6px;
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.success-card {
  background: var(--cream);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(122, 140, 110, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 28px;
}

.success-card h1 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

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

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero__bg { width: 50%; }
  .outcomes__inner { grid-template-columns: 1fr; gap: 40px; }
  .outcomes__image img { height: 300px; }
  .instructor__inner { grid-template-columns: 1fr; gap: 40px; }
  .instructor__photo img { height: 360px; }
  .leadform__inner { grid-template-columns: 1fr; gap: 40px; }
  .ingredients__inner { grid-template-columns: 1fr; }
  .ingredients__image { height: 280px; }
  .ingredients__content { padding: 48px 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  section { padding: 60px 0; }
  .hero { padding-top: 110px; padding-bottom: 60px; }
  .hero__bg { display: none; }
  .hero__content { max-width: 100%; }
  .hero h1 { font-size: 2rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__stats { gap: 24px; }
  .nav { display: none; }
  .header__cta { display: none; }
  .burger { display: flex; }
  .pain__grid { grid-template-columns: 1fr; }
  .forwhom__grid { grid-template-columns: 1fr 1fr; }
  .format__grid { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .ingredients__content { padding: 40px 28px; }
  .leadform__form { padding: 28px 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .instructor__facts { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  .forwhom__grid { grid-template-columns: 1fr; }
  .format__grid { grid-template-columns: 1fr; }
  .hero__stat-num { font-size: 1.4rem; }
}
