/* ===========================
   Macrama — Global Styles
   =========================== */

:root {
  --clr-cream: #f5f0e8;
  --clr-warm-white: #faf8f4;
  --clr-sand: #e8ddc8;
  --clr-rope: #c4a97a;
  --clr-rope-dark: #9e7d4e;
  --clr-brown: #5c3d1e;
  --clr-charcoal: #2d2418;
  --clr-text: #3a2c1a;
  --clr-muted: #7a6a55;
  --clr-accent: #b8815a;
  --clr-accent-dark: #8c5e38;
  --clr-border: #ddd0b8;
  --clr-success: #5a8c6a;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(60,35,10,0.08);
  --shadow-md: 0 6px 24px rgba(60,35,10,0.13);
  --shadow-lg: 0 16px 48px rgba(60,35,10,0.16);

  --max-w: 1140px;
  --section-py: 80px;
}

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

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

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

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

a {
  color: var(--clr-accent-dark);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--clr-brown); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--clr-charcoal);
}

ul, ol { list-style: none; }

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

section {
  padding: var(--section-py) 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
}
.btn-primary:hover {
  background: var(--clr-accent-dark);
  border-color: var(--clr-accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--clr-brown);
  border-color: var(--clr-rope);
}
.btn-outline:hover {
  background: var(--clr-sand);
  color: var(--clr-brown);
}

.btn-large {
  font-size: 1.05rem;
  padding: 16px 40px;
}

/* ===== SECTION HEADING ===== */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  color: var(--clr-charcoal);
}

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

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

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

.nav-mobile-menu {
  display: none;
}

/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.site-nav.scrolled {
  background: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  letter-spacing: -0.02em;
}
.nav-logo:hover { color: var(--clr-accent); }

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--clr-text);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--clr-accent); }

.nav-cta {
  display: flex;
  align-items: center;
}

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

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--clr-cream);
  padding-top: 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(196,169,122,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(184,129,90,0.10) 0%, transparent 40%);
  pointer-events: none;
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,169,122,0.18);
  color: var(--clr-rope-dark);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(196,169,122,0.35);
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--clr-accent);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--clr-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
}

.hero-form-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--clr-charcoal);
  margin-bottom: 6px;
}

.hero-form-desc {
  font-size: 0.88rem;
  color: var(--clr-muted);
  margin-bottom: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--clr-text);
  background: var(--clr-warm-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-rope);
  box-shadow: 0 0 0 3px rgba(196,169,122,0.18);
}

.form-group input::placeholder {
  color: #b0a490;
}

.form-consent {
  font-size: 0.78rem;
  color: var(--clr-muted);
  margin-top: 12px;
  line-height: 1.5;
}

.form-consent a {
  color: var(--clr-accent-dark);
}

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

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

.hero-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 10px 16px;
  box-shadow: var(--shadow-sm);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--clr-text);
}

.hero-image-badge strong {
  display: block;
  font-size: 1rem;
  color: var(--clr-charcoal);
  font-weight: 700;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--clr-sand);
  padding: 24px 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

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

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

.trust-icon {
  width: 36px;
  height: 36px;
  background: rgba(196,169,122,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===== ABOUT COURSE ===== */
.about-course {
  background: var(--clr-warm-white);
}

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

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
}

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

.about-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-point-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--clr-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-top: 2px;
}

.about-point-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-charcoal);
  margin-bottom: 3px;
}

.about-point-text span {
  font-size: 0.88rem;
  color: var(--clr-muted);
}

/* ===== FOR WHOM ===== */
.for-whom {
  background: var(--clr-cream);
}

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

.whom-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

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

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

.whom-card p {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.65;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--clr-warm-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-card::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--clr-border);
}

.step-card:last-child::after { display: none; }

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clr-sand);
  color: var(--clr-rope-dark);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  border: 2px solid var(--clr-rope);
}

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

.step-card p {
  font-size: 0.86rem;
  color: var(--clr-muted);
  line-height: 1.6;
}

/* ===== PROGRAM ===== */
.program {
  background: var(--clr-cream);
}

.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}

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

.module-item {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.module-item:hover {
  border-color: var(--clr-rope);
  box-shadow: var(--shadow-sm);
}

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

.module-info h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--clr-charcoal);
  margin-bottom: 4px;
}

.module-info p {
  font-size: 0.82rem;
  color: var(--clr-muted);
}

.program-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
  position: sticky;
  top: 100px;
}

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

/* ===== RESULTS ===== */
.results {
  background: var(--clr-brown);
  position: relative;
  overflow: hidden;
}

.results::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(196,169,122,0.15) 0%, transparent 60%);
}

.results .section-title {
  color: #fff;
}

.results .section-desc {
  color: rgba(255,255,255,0.7);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
}

.result-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: background 0.2s;
}

.result-card:hover {
  background: rgba(255,255,255,0.12);
}

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

.result-card h3 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 10px;
}

.result-card p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--clr-warm-white);
}

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

.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: var(--clr-rope);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

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

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

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-rope-dark);
  flex-shrink: 0;
}

.review-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-charcoal);
}

.review-city {
  font-size: 0.8rem;
  color: var(--clr-muted);
}

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

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

.faq-item {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-charcoal);
  user-select: none;
  gap: 12px;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--clr-warm-white);
}

.faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--clr-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--clr-rope-dark);
  transition: transform 0.25s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--clr-rope);
  color: #fff;
}

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

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

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

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--clr-cream);
  border-top: 1px solid var(--clr-border);
}

.cta-box {
  background: var(--clr-sand);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  border: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(196,169,122,0.3) 0%, transparent 60%);
  pointer-events: none;
}

.cta-box .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
}

.cta-box .section-desc {
  margin: 0 auto 32px;
  color: var(--clr-muted);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--clr-charcoal);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 32px;
}

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

.footer-brand .nav-logo {
  color: #fff;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: rgba(255,255,255,0.9);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.7);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 560px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
  z-index: 999;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

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

.cookie-banner h4 {
  font-size: 0.95rem;
  color: var(--clr-charcoal);
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 0.82rem;
  color: var(--clr-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.cookie-banner p a {
  color: var(--clr-accent-dark);
  text-decoration: underline;
}

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

.cookie-accept {
  padding: 9px 22px;
  font-size: 0.85rem;
}

.cookie-decline {
  background: transparent;
  border: 1.5px solid var(--clr-border);
  color: var(--clr-muted);
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.cookie-decline:hover {
  border-color: var(--clr-muted);
  color: var(--clr-text);
}

/* ===== LEGAL PAGES ===== */
.legal-hero {
  background: var(--clr-cream);
  padding: 120px 0 60px;
  border-bottom: 1px solid var(--clr-border);
}

.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.legal-hero p {
  color: var(--clr-muted);
  font-size: 0.9rem;
}

.legal-content {
  padding: 60px 0 80px;
}

.legal-content .container {
  max-width: 800px;
}

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

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

.legal-content p {
  font-size: 0.92rem;
  color: var(--clr-muted);
  margin-bottom: 14px;
  line-height: 1.75;
}

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

.legal-content ul li {
  font-size: 0.92rem;
  color: var(--clr-muted);
  margin-bottom: 6px;
  line-height: 1.7;
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--clr-cream);
  padding: 60px 0;
}

.success-box {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--clr-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  border: 3px solid var(--clr-rope);
}

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

.success-box p {
  color: var(--clr-muted);
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  :root { --section-py: 60px; }

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

  .hero-content {
    max-width: 100%;
    order: -1;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-card::after { display: none; }

  .about-grid,
  .program-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .program-image {
    position: static;
    aspect-ratio: 16/9;
  }

  .whom-grid,
  .results-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-box {
    padding: 40px 28px;
  }
}

@media (max-width: 640px) {
  :root { --section-py: 48px; }

  .nav-links,
  .nav-cta { display: none; }

  .nav-burger { display: flex; }

  .nav-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--clr-warm-white);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 40px;
  }

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

  .nav-mobile-menu a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--clr-charcoal);
  }

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

  .whom-grid,
  .steps-grid,
  .results-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-form-wrap { padding: 20px; }

  .success-box { padding: 36px 24px; }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
