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

:root {
  --cream: #fdf8f2;
  --warm-white: #fffcf8;
  --terracotta: #c8604a;
  --terracotta-dark: #a84c39;
  --terracotta-light: #e8856f;
  --sage: #7a9e7e;
  --sage-light: #a8c4ab;
  --ochre: #d4a843;
  --brown: #5c3d2e;
  --text: #2e2019;
  --text-muted: #7a6659;
  --border: #e8ddd5;
  --shadow: rgba(92,61,46,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --font: 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; }
a:hover { color: var(--terracotta-dark); }

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

h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--brown);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 16px; }
h3 { font-size: 1.2rem; }
p { margin-bottom: 12px; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: center;
  line-height: 1.4;
}
.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 4px 18px rgba(200,96,74,0.35);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,96,74,0.4);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
}
.btn-outline:hover {
  background: var(--terracotta);
  color: #fff;
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 42px; font-size: 1.1rem; }

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,248,242,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 16px var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font);
  font-size: 1.4rem;
  color: var(--brown);
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo span { color: var(--terracotta); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--terracotta); }
.nav-cta { margin-left: 8px; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all var(--transition);
}

.hero {
  padding: 72px 0 60px;
  background: linear-gradient(135deg, var(--warm-white) 0%, #fceee4 100%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,168,67,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(122,158,126,0.15);
  color: var(--sage);
  border: 1px solid var(--sage-light);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero h1 { margin-bottom: 20px; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 14px;
}
.hero-img-wrap {
  position: relative;
}
.hero-img-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  max-height: 480px;
  box-shadow: 0 20px 60px var(--shadow);
}
.hero-tag {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 10px 16px;
  box-shadow: 0 4px 20px var(--shadow);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
}
.hero-tag-1 { bottom: 24px; left: -16px; }
.hero-tag-2 { top: 24px; right: -16px; }
.hero-tag span { color: var(--terracotta); }

.trust-bar {
  background: var(--brown);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-item .icon { font-size: 1.1rem; }

.section { padding: 80px 0; }
.section-alt { background: var(--warm-white); }
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.section-title-center { text-align: center; }
.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.benefit-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
}
.benefit-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.benefit-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--brown);
}
.benefit-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--terracotta-light), var(--sage-light));
}
.how-step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font);
  box-shadow: 0 4px 16px rgba(200,96,74,0.3);
}
.how-step h3 { font-size: 1rem; margin-bottom: 8px; }
.how-step p { font-size: 0.88rem; color: var(--text-muted); }

.learn-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.learn-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.learn-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.95rem;
}
.learn-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.learn-img img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  box-shadow: 0 16px 50px var(--shadow);
}

.program-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.program-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.program-item-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  transition: background var(--transition);
}
.program-item-header:hover { background: var(--cream); }
.program-num {
  font-family: var(--font);
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--terracotta);
  min-width: 36px;
}
.program-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brown);
  flex: 1;
}
.program-arrow {
  color: var(--text-muted);
  transition: transform var(--transition);
  font-size: 0.9rem;
}
.program-item.open .program-arrow { transform: rotate(180deg); }
.program-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.program-item.open .program-body { max-height: 300px; }
.program-body-inner {
  padding: 0 24px 20px 76px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.gallery-item img {
  border-radius: var(--radius);
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover img {
  transform: scale(1.03);
  box-shadow: 0 12px 40px var(--shadow);
}
.gallery-item:first-child {
  grid-column: span 2;
}
.gallery-item:first-child img { height: 340px; }

.instructor-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: center;
}
.instructor-img img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  max-height: 460px;
  box-shadow: 0 16px 50px var(--shadow);
}
.instructor-name {
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: 6px;
  font-family: var(--font);
}
.instructor-role {
  color: var(--terracotta);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.instructor-facts {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.instructor-fact strong {
  display: block;
  font-size: 1.6rem;
  color: var(--terracotta);
  font-family: var(--font);
}
.instructor-fact span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 20px;
  font-size: 3.5rem;
  color: var(--terracotta);
  opacity: 0.2;
  line-height: 1;
  font-family: var(--font);
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--terracotta-light), var(--ochre));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.88rem; color: var(--brown); }
.testimonial-city { font-size: 0.8rem; color: var(--text-muted); }
.stars { color: #f5a623; font-size: 0.85rem; margin-bottom: 2px; }

.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--brown);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--terracotta); }
.faq-q .arrow {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding-bottom: 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.lead-form-section {
  background: linear-gradient(135deg, #5c3d2e 0%, #3d2519 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.lead-form-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(212,168,67,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.lead-form-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  position: relative;
}
.lead-text h2 { color: #fff; margin-bottom: 16px; }
.lead-text p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 0; }
.lead-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lead-list li {
  display: flex;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.lead-list li::before {
  content: '✓';
  color: var(--sage-light);
  font-weight: 700;
  flex-shrink: 0;
}
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.form-title {
  font-size: 1.3rem;
  font-family: var(--font);
  color: var(--brown);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: var(--font-sans);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(200,96,74,0.12);
}
.form-submit { width: 100%; margin-top: 8px; }
.form-privacy {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}
.form-privacy a { color: var(--text-muted); text-decoration: underline; }

.footer {
  background: var(--brown);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: var(--font);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 12px;
  display: block;
}
.footer-logo span { color: var(--terracotta-light); }
.footer-tagline { font-size: 0.85rem; line-height: 1.6; }
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-sans);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-top: 28px;
  flex-wrap: wrap;
}
.footer-legal { font-size: 0.78rem; line-height: 1.7; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--brown);
  color: rgba(255,255,255,0.9);
  padding: 18px 24px;
  z-index: 999;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  display: none;
  animation: slideUp 0.4s ease;
}
.cookie-banner.show { display: block; }
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; font-size: 0.88rem; min-width: 200px; }
.cookie-text a { color: rgba(255,255,255,0.75); text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept {
  background: var(--terracotta);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-accept:hover { background: var(--terracotta-dark); }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,0.6); }

.legal-hero {
  background: linear-gradient(135deg, var(--warm-white), #fceee4);
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}
.legal-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 8px; }
.legal-updated { font-size: 0.85rem; color: var(--text-muted); }
.legal-content {
  max-width: 760px;
  margin: 56px auto;
  padding: 0 24px;
}
.legal-content h2 {
  font-size: 1.15rem;
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal-content p { font-size: 0.95rem; color: var(--text); line-height: 1.75; margin-bottom: 14px; }
.legal-content ul { padding-left: 24px; margin-bottom: 14px; }
.legal-content ul li { font-size: 0.95rem; line-height: 1.75; color: var(--text); margin-bottom: 8px; }
.legal-content a { color: var(--terracotta); }
.legal-nav {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
  background: #fff;
}
.legal-nav a { color: var(--text-muted); font-size: 0.88rem; }
.legal-nav a:hover { color: var(--terracotta); }
.legal-breadcrumb { display: flex; gap: 8px; align-items: center; }
.legal-breadcrumb span { color: var(--border); }

.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream), #fceee4);
  text-align: center;
  padding: 40px 24px;
}
.success-icon {
  width: 80px;
  height: 80px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
}
.success-page h1 { margin-bottom: 16px; }
.success-page p { font-size: 1.05rem; color: var(--text-muted); max-width: 460px; margin: 0 auto 32px; }
.success-back { margin-top: 8px; font-size: 0.88rem; color: var(--text-muted); }
.success-back a { color: var(--terracotta); }

.cta-section {
  background: linear-gradient(135deg, var(--terracotta) 0%, #a84c39 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 520px; margin: 0 auto 36px; }
.btn-white {
  background: #fff;
  color: var(--terracotta);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn-white:hover {
  background: var(--cream);
  color: var(--terracotta-dark);
  transform: translateY(-2px);
}

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

@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .instructor-inner { grid-template-columns: 300px 1fr; gap: 40px; }
  .lead-form-inner { gap: 40px; }
}

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .how-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > *:first-child { grid-column: span 2; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { order: -1; }
  .hero-tag-1, .hero-tag-2 { display: none; }
  .learn-inner { grid-template-columns: 1fr; }
  .learn-img { order: -1; }
  .instructor-inner { grid-template-columns: 1fr; }
  .instructor-img img { max-height: 320px; }
  .lead-form-inner { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    z-index: 200;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 1.2rem;
  }
  .mobile-close {
    position: absolute;
    top: 20px; right: 24px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--brown);
  }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .gallery-item:first-child img { height: 240px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top > *:first-child { grid-column: span 1; }
  .footer-bottom { flex-direction: column; }
  .trust-bar-inner { gap: 20px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .form-card { padding: 28px 20px; }
}
