/* ===========================
   POLIVO — Стили лендинга
   =========================== */

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

:root {
  --bg:        #F9F5F0;
  --bg-alt:    #FFF8F3;
  --text:      #2C2218;
  --muted:     #6B5B4E;
  --accent:    #C4744A;
  --accent-lt: #EDD5BC;
  --sage:      #7A9E6F;
  --border:    #E2D5C7;
  --white:     #FFFFFF;
  --radius:    12px;
  --max-w:     1100px;
  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'Inter', system-ui, sans-serif;
  --shadow:    0 4px 24px rgba(44,34,24,0.08);
}

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

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }

p { color: var(--muted); line-height: 1.7; }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-lt);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196,116,74,0.35);
}

.btn-primary:hover {
  background: #b5623b;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,116,74,0.45);
  text-decoration: none;
  color: var(--white);
}

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

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249,245,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}

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

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

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

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

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

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

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}

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

.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

.mobile-nav a:last-child { border-bottom: none; }

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

.hero {
  padding: 80px 0 60px;
  overflow: hidden;
}

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

.hero-text { max-width: 540px; }

.hero-pretitle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-pretitle::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.hero h1 {
  margin-bottom: 20px;
}

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

.hero .lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 12px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

/* ===========================
   TRUST STRIP
   =========================== */

.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

.trust-icon {
  font-size: 1.25rem;
}

/* ===========================
   SECTIONS — GENERIC
   =========================== */

section {
  padding: 80px 0;
}

section:nth-child(even) {
  background: var(--bg-alt);
}

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

.section-head p {
  max-width: 560px;
  margin: 12px auto 0;
  font-size: 1rem;
}

/* ===========================
   FOR WHOM
   =========================== */

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

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

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

.audience-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.audience-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.audience-card p {
  font-size: 0.9rem;
}

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

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

.format-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.format-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

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

.format-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.format-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--accent-lt);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.format-list li div strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

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

.program-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}

.program-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  padding: 0 24px 0;
  text-align: center;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.88rem;
}

/* ===========================
   RESULTS / GALLERY
   =========================== */

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

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--accent-lt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  text-align: center;
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ===========================
   SKILLS/OUTCOMES
   =========================== */

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

.skill-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.skill-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}

.skill-item p {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  margin: 0;
  padding-top: 4px;
}

/* ===========================
   TEACHER
   =========================== */

.teacher-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: start;
}

.teacher-photo {
  width: 280px;
  flex-shrink: 0;
}

.teacher-photo img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.teacher-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
}

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

.teacher-bio p {
  margin-bottom: 16px;
}

.teacher-facts {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.teacher-fact strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.teacher-fact span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ===========================
   MATERIALS
   =========================== */

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

.materials-img img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.materials-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

.materials-note {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--accent-lt);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--text);
}

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

.testimonials { background: var(--text); }

.testimonials .section-head h2 { color: var(--white); }
.testimonials .section-head p { color: rgba(255,255,255,0.6); }
.testimonials .section-tag {
  background: rgba(196,116,74,0.3);
  color: var(--accent-lt);
}

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

.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: background 0.2s;
}

.testi-card:hover {
  background: rgba(255,255,255,0.09);
}

.testi-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-text::before { content: '«'; }
.testi-text::after { content: '»'; }

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

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}

.testi-city {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ===========================
   PRICING
   =========================== */

.pricing-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-top {
  background: var(--accent);
  padding: 32px 40px;
  color: var(--white);
}

.pricing-top h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}

.pricing-top p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.price-row {
  margin-top: 24px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-amount {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 500;
}

.price-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.pricing-body {
  padding: 32px 40px;
}

.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

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

.pricing-includes li::before {
  content: '✓';
  font-weight: 700;
  color: var(--sage);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-cta {
  width: 100%;
  display: block;
  text-align: center;
  padding: 16px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
  transition: background 0.15s, transform 0.15s;
  text-decoration: none;
}

.pricing-cta:hover {
  background: #b5623b;
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--white);
}

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

.lead-form-section {
  background: linear-gradient(135deg, var(--accent) 0%, #a85830 100%);
}

.lead-form-section .section-head h2 { color: var(--white); }
.lead-form-section .section-head p { color: rgba(255,255,255,0.8); }
.lead-form-section .section-tag {
  background: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}

.lead-form-wrap {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 16px 48px rgba(44,34,24,0.2);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-row input,
.form-row select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.15s;
  outline: none;
}

.form-row input:focus,
.form-row select:focus {
  border-color: var(--accent);
  background: var(--white);
}

.form-row input::placeholder { color: #bbb; }

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

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

.form-privacy a { color: var(--muted); text-decoration: underline; }

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

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.15s;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-lt);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.25s;
}

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

.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ===========================
   GIFT / BONUS
   =========================== */

.gift-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--accent-lt);
  border-radius: 20px;
  padding: 40px;
  max-width: 820px;
  margin: 0 auto;
}

.gift-img {
  width: 200px;
  flex-shrink: 0;
}

.gift-img img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 1;
}

.gift-label {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.gift-banner h3 {
  margin-bottom: 8px;
}

/* ===========================
   CTA BAND
   =========================== */

.cta-band {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  text-align: center;
}

.cta-band h2 { margin-bottom: 12px; }
.cta-band p { margin-bottom: 28px; }

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

.site-footer {
  background: #1C1510;
  padding: 60px 0 32px;
  color: rgba(255,255,255,0.6);
}

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

.footer-brand .logo { color: var(--white); }

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
  max-width: 240px;
  line-height: 1.5;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

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

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.footer-legal p { color: rgba(255,255,255,0.35); }

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

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 480px;
  background: var(--text);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

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

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

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

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-accept {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.15s;
}

.cookie-accept:hover { background: #b5623b; }

/* ===========================
   SIMPLE PAGE LAYOUT (legal)
   =========================== */

.simple-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.simple-page h1 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.simple-page .page-date {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 40px;
}

.simple-page h2 {
  font-size: 1.25rem;
  margin-top: 36px;
  margin-bottom: 12px;
}

.simple-page p {
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.simple-page ul {
  margin: 10px 0 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.simple-page ul li {
  font-size: 0.93rem;
  color: var(--muted);
}

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

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}

.success-inner {
  max-width: 480px;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.success-inner h1 {
  margin-bottom: 12px;
}

.success-inner p {
  margin-bottom: 32px;
  font-size: 1rem;
}

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

@media (max-width: 900px) {
  .hero-grid,
  .format-grid,
  .materials-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image { order: -1; }

  .hero-badge { left: 0; bottom: 12px; }

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

  .teacher-photo {
    width: 200px;
  }

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

  .gift-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gift-img { width: 160px; margin: 0 auto; }

  .program-steps::before { display: none; }
}

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

  .nav-links { display: none; }
  .header-cta .btn { display: none; }
  .burger { display: flex; }

  section { padding: 60px 0; }

  .trust-items { gap: 24px; }

  .hero { padding: 48px 0 40px; }

  .pricing-top, .pricing-body, .lead-form-wrap {
    padding: 28px 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .program-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .program-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
}
