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

:root {
  --bg: #FDFAF5;
  --bg-soft: #F5EFE4;
  --bg-card: #FFFCF7;
  --primary: #7B2D3F;
  --primary-dark: #5D1F2E;
  --primary-light: #E8C4CB;
  --accent: #C4845A;
  --accent-light: #F0D9C8;
  --sage: #5A7A6A;
  --sage-light: #D4E4DC;
  --text: #2C2318;
  --text-muted: #7A6E65;
  --border: #E8DED4;
  --border-soft: #F0E8DF;
  --white: #FFFFFF;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(44, 35, 24, 0.07);
  --shadow: 0 4px 20px rgba(44, 35, 24, 0.10);
  --shadow-lg: 0 8px 40px rgba(44, 35, 24, 0.13);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary-dark);
}

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

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 0; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
}

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

.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--bg-soft);
}

.section-dark {
  background-color: var(--primary);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark .section-label {
  color: var(--white);
}

.section-dark .section-desc {
  color: rgba(255,255,255,0.75);
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 245, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

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

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.nav__logo-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

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

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav__cta {
  display: none;
}

@media (min-width: 640px) {
  .nav__cta { display: inline-flex; }
}

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text);
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 767px) {
  .nav__links { display: none; }
  .nav__hamburger { display: block; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 20px;
    gap: 16px;
    align-items: flex-start;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

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

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

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

.btn-light:hover {
  background: var(--bg-soft);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 17px 36px;
  font-size: 1rem;
}

.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 64px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  opacity: 0.35;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero__title {
  margin-bottom: 1.25rem;
}

.hero__title em {
  font-style: italic;
  color: var(--primary);
}

.hero__desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2.5rem;
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero__social-proof strong {
  color: var(--text);
}

.hero__avatars {
  display: flex;
}

.hero__avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  overflow: hidden;
  margin-left: -8px;
}

.hero__avatars span:first-child { margin-left: 0; }

.hero__img {
  position: relative;
}

.hero__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

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

.hero__img-badge {
  position: absolute;
  bottom: -16px; left: -16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__img-badge .icon {
  width: 40px; height: 40px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}

.hero__img-badge p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.hero__img-badge strong {
  font-size: 0.9375rem;
  color: var(--text);
  display: block;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__img { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 40px 0; }
}

.stats-strip {
  background: var(--primary);
  padding: 40px 0;
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stats-strip__num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.stats-strip__label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
}

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

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

.forwhom__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.forwhom__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.forwhom__icon.burgundy { background: var(--primary-light); }
.forwhom__icon.terracotta { background: var(--accent-light); }
.forwhom__icon.sage { background: var(--sage-light); }

.forwhom__card h4 { margin-bottom: 8px; }

.forwhom__card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .forwhom__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .forwhom__grid { grid-template-columns: 1fr; }
}

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

.overview__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

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

.overview__list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.overview__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
}

.overview__list li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--sage-light);
  color: var(--sage);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 820px) {
  .overview__inner { grid-template-columns: 1fr; gap: 40px; }
  .overview__img { max-width: 480px; }
}

.program__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.module {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: box-shadow 0.2s;
}

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

.module__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
}

.module__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.module h4 {
  margin-bottom: 8px;
  font-size: 1.0625rem;
  padding-right: 40px;
}

.module p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .program__grid { grid-template-columns: 1fr; }
}

.format__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.format__item {
  text-align: center;
  padding: 28px 20px;
}

.format__item-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.format__item h4 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.format__item p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (max-width: 860px) {
  .format__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .format__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .format__item { padding: 20px 12px; }
}

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

.materials__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  order: 2;
}

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

.materials__content { order: 1; }

.materials__list {
  list-style: none;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.materials__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
}

.materials__list li::before {
  content: '✦';
  color: var(--accent);
  font-size: 10px;
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .materials__inner { grid-template-columns: 1fr; gap: 40px; }
  .materials__img { order: -1; max-width: 480px; }
  .materials__content { order: 1; }
}

@media (max-width: 480px) {
  .materials__list { grid-template-columns: 1fr; }
}

.author__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
}

.author__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}

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

.author__name {
  margin-bottom: 4px;
}

.author__role {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}

.author__bio {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.author__fact {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@media (max-width: 820px) {
  .author__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .author__photo {
    max-width: 220px;
  }
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.review-card__stars {
  color: var(--accent);
  font-size: 0.875rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.review-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.review-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.review-card__city {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@media (max-width: 860px) {
  .reviews__grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
}

.leadform {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
}

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

.leadform__content .section-label { color: var(--accent-light); }
.leadform__content h2 { color: var(--white); }
.leadform__content p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-top: 12px; }

.leadform__perks {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.leadform__perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.leadform__perks li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  color: white;
  flex-shrink: 0;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.form-card h3 {
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.form-card__sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

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

.form-group label span {
  color: var(--primary);
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(123, 45, 63, 0.1);
}

.form-group input::placeholder { color: var(--text-muted); }

.form-group input.error {
  border-color: #C0392B;
}

.form-group .err-msg {
  display: none;
  font-size: 0.8rem;
  color: #C0392B;
  margin-top: 4px;
}

.form-group.invalid .err-msg { display: block; }

.form-submit {
  margin-top: 8px;
}

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

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

.form-note a { color: var(--primary); }

@media (max-width: 860px) {
  .leadform__inner { grid-template-columns: 1fr; gap: 40px; }
}

.faq__list {
  max-width: 760px;
  margin: 48px auto 0;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  gap: 16px;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text);
}

.faq__q:hover { color: var(--primary); }

.faq__icon {
  width: 28px; height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--text-muted);
  transition: all 0.2s;
}

.faq__item.open .faq__icon {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0;
}

.faq__a-inner {
  padding: 0 0 20px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq__item.open .faq__a {
  max-height: 300px;
}

.footer {
  background: var(--text);
  color: rgba(255,255,255,0.55);
  padding: 56px 0 32px;
}

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

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 12px;
}

.footer__logo-icon {
  width: 30px; height: 30px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: white;
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__col-title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

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

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links a:hover { color: rgba(255,255,255,0.9); }

.footer__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8125rem;
}

.footer__requisites {
  font-size: 0.8125rem;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px; right: 24px;
  max-width: 680px;
  margin: 0 auto;
  background: var(--text);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(120%);
  transition: transform 0.4s ease;
}

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

.cookie-banner p {
  font-size: 0.875rem;
  line-height: 1.5;
}

.cookie-banner a {
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
}

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

@media (max-width: 560px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    left: 12px; right: 12px;
    bottom: 12px;
  }
}

.simple-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.simple-page main {
  flex: 1;
  padding: 60px 0 80px;
}

.simple-page__hero {
  background: var(--bg-soft);
  padding: 56px 0;
  margin-bottom: 48px;
  text-align: center;
}

.simple-page__hero p {
  color: var(--text-muted);
  margin-top: 8px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 10px;
}

.legal-content h3 {
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.75;
}

.legal-content ul,
.legal-content ol {
  padding-left: 20px;
  margin-bottom: 10px;
}

.success-icon {
  width: 80px; height: 80px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
}

.success-box {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 48px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.success-box h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.success-box p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fadeInUp 0.6s ease both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
