:root {
  --bg: #f9f6f1;
  --bg-sand: #ede8de;
  --bg-dark: #1d2c3a;
  --bg-white: #ffffff;
  --accent: #c8902e;
  --accent-dark: #a87020;
  --accent-light: #f5e6cc;
  --text: #1a1a1a;
  --text-muted: #6b6b7b;
  --text-light: #ffffff;
  --border: #ddd7cc;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.12);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w: 1160px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.section-sand { background: var(--bg-sand); }
.section-white { background: var(--bg-white); }
.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}
.section-accent {
  background: var(--accent-light);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.section-dark .section-title { color: var(--text-light); }
.section-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 56px;
}
.section-dark .section-sub { color: rgba(255,255,255,0.65); }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(200, 144, 46, 0.35);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 144, 46, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}
.btn-lg { padding: 17px 40px; font-size: 1.0625rem; }
.btn-white {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 246, 241, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--bg-dark);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a:not(.btn) {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav a:not(.btn):hover { color: var(--text); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.0625rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-menu a:last-child { border-bottom: none; }

.hero {
  padding: 80px 0 0;
  overflow: hidden;
  background: var(--bg);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 144, 46, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  min-height: 580px;
}
.hero-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--bg-dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.hero-image-wrap {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
}
.hero-image-wrap img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  box-shadow: var(--shadow-md);
}
.hero-image-badge {
  position: absolute;
  bottom: 40px;
  left: -24px;
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.hero-badge-text strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
}
.hero-badge-text span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.pain-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 32px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.pain-card:hover { transform: translateY(-4px); }
.pain-icon {
  font-size: 1.75rem;
  margin-bottom: 16px;
}
.pain-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.pain-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.outcome-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.outcome-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.outcome-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.outcome-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.outcome-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.format-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 16px;
  position: relative;
}
.format-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: rgba(255,255,255,0.2);
}
.format-step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(200, 144, 46, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto 24px;
}
.format-step h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
}
.format-step p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}
.format-image-wrap {
  margin-top: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-height: 420px;
}
.format-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.for-whom-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.for-whom-card:hover { transform: translateY(-3px); }
.for-whom-icon {
  font-size: 1.875rem;
  flex-shrink: 0;
  line-height: 1;
}
.for-whom-card h3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 6px;
}
.for-whom-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  max-height: 520px;
}
.about-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80%;
  height: 80%;
  border-radius: 20px;
  border: 3px solid var(--accent-light);
  z-index: -1;
}
.about-label {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.about-content .section-title { margin-bottom: 8px; }
.about-name {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.about-content p {
  font-size: 1.0rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-fact {
  background: var(--bg-sand);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}
.about-fact strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.about-fact span {
  font-size: 0.8375rem;
  color: var(--text-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--accent-light);
  position: absolute;
  top: 24px;
  left: 24px;
  pointer-events: none;
}
.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  padding-top: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 2px;
}
.testimonial-role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.faq-list {
  max-width: 740px;
  margin: 16px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  text-align: left;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  gap: 24px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question.open { color: var(--accent); }
.faq-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), border-color var(--transition);
}
.faq-question.open .faq-arrow {
  transform: rotate(180deg);
  border-color: var(--accent);
}
.faq-arrow svg { display: block; }
.faq-answer {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0;
}
.faq-answer.open {
  max-height: 400px;
  padding-bottom: 24px;
}

.form-wrap {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: #fff;
}
.form-group input.error,
.form-group textarea.error { border-color: #e05252; }
.form-group textarea { resize: vertical; min-height: 110px; }
.field-error {
  display: none;
  font-size: 0.8125rem;
  color: #e05252;
  margin-top: 6px;
}
.field-error.show { display: block; }
.form-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}
.form-check-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.form-check-group input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.form-check-group label {
  font-size: 0.8375rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
.form-check-group label a {
  color: var(--accent);
  text-decoration: underline;
}
.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.0625rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  transition: background var(--transition), transform var(--transition);
}
.btn-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}
.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: rgba(255,255,255,0.9);
  padding: 20px 24px;
  z-index: 1000;
  border-top: 3px solid var(--accent);
  transform: translateY(0);
  transition: transform 0.35s ease;
}
.cookie-banner.hidden {
  transform: translateY(110%);
}
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  font-size: 0.9rem;
  line-height: 1.55;
  flex: 1;
  min-width: 240px;
}
.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.btn-cookie-accept {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--transition);
}
.btn-cookie-accept:hover { background: var(--accent-dark); }
.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color var(--transition), border-color var(--transition);
}
.btn-cookie-decline:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.success-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 60px 48px;
  text-align: center;
  max-width: 520px;
  box-shadow: var(--shadow-md);
}
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin: 0 auto 28px;
}
.success-card h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.success-card p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.legal-page {
  padding: 80px 0;
  min-height: 80vh;
}
.legal-inner { max-width: 760px; }
.legal-page h1 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.legal-updated {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.legal-section { margin-bottom: 40px; }
.legal-section h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}
.legal-section p, .legal-section li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-section ul {
  list-style: disc;
  padding-left: 24px;
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero { padding: 56px 0 0; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-image-badge { left: 0; bottom: 20px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap::after { display: none; }
  .format-steps { grid-template-columns: 1fr; }
  .format-steps::before { display: none; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .nav { display: none; }
  .burger { display: flex; }
  .pain-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .for-whom-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-image-badge { display: none; }
  .form-wrap { padding: 32px 24px; }
  .about-facts { grid-template-columns: 1fr; }
}