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

:root {
  --bg: #f5f1ec;
  --bg-alt: #ede8e1;
  --bg-dark: #1e1810;
  --fg: #1e1810;
  --fg-muted: #6b5e50;
  --fg-light: #a0917f;
  --primary: #6b3a18;
  --primary-hover: #572f12;
  --primary-light: rgba(107, 58, 24, 0.12);
  --accent: #a0622a;
  --border: #d8cfc4;
  --white: #ffffff;
  --red: #c0392b;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --shadow-sm: 0 1px 4px rgba(30, 24, 16, 0.08);
  --shadow: 0 4px 16px rgba(30, 24, 16, 0.12);
  --shadow-lg: 0 8px 32px rgba(30, 24, 16, 0.15);
  --transition: 0.2s ease;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

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

.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  text-align: center;
}

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

.btn-outline {
  display: inline-block;
  padding: 13px 27px;
  background: transparent;
  color: var(--fg);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition);
  text-align: center;
}

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

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

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title--light {
  color: var(--white);
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  background: rgba(245, 241, 236, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  transition: color var(--transition);
}

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

.logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.875rem;
  color: var(--fg-muted);
  transition: color var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

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

.nav-cta {
  padding: 8px 18px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--transition);
}

.nav-cta:hover {
  background: var(--primary-hover);
}

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

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

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

.mobile-nav-link {
  font-size: 0.9rem;
  color: var(--fg-muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  padding: 4px 0;
  transition: color var(--transition);
}

.mobile-nav-link:hover {
  color: var(--primary);
}

.mobile-cta {
  padding: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  transition: background var(--transition);
}

.mobile-cta:hover {
  background: var(--primary-hover);
}

.hatching-overlay {
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(107, 58, 24, 0.035) 8px,
    rgba(107, 58, 24, 0.035) 9px
  );
}

.hatching-overlay-dark {
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(255, 255, 255, 0.035) 8px,
    rgba(255, 255, 255, 0.035) 9px
  );
}

.hero {
  padding-top: 64px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  border: 1px solid rgba(107, 58, 24, 0.2);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 24px;
}

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

.hero-badge-text {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--primary);
}

.hero-desc {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-bg {
  position: absolute;
  inset: -12px;
  background: rgba(107, 58, 24, 0.08);
  border-radius: 20px;
}

.hero-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-badge-card {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow);
}

.hero-badge-card-label {
  font-size: 0.6875rem;
  color: var(--fg-light);
  margin-bottom: 2px;
}

.hero-badge-card-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
}

.section-problem {
  padding: 80px 0;
  background: var(--bg-dark);
}

.section-problem .section-label {
  color: var(--accent);
}

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

.problem-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.problem-card-line {
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.section-value {
  padding: 80px 0;
}

.value-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.value-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1;
  object-fit: cover;
}

.value-desc {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.value-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: #3a2e24;
  line-height: 1.5;
}

.value-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.section-techniques {
  padding: 64px 0;
  background: var(--bg-alt);
}

.techniques-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.techniques-desc {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-top: 12px;
}

.techniques-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.techniques-images img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3/4;
  object-fit: cover;
}

.section-outcomes {
  padding: 80px 0;
}

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

.outcome-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

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

.outcome-num {
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.outcome-card p {
  font-size: 0.8125rem;
  color: #3a2e24;
  line-height: 1.55;
  margin-top: 6px;
}

.section-program {
  padding: 80px 0;
  background: var(--bg-dark);
}

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

.module-card {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 20px;
  transition: border-color var(--transition);
}

.module-card:hover {
  border-color: rgba(160, 98, 42, 0.5);
}

.module-num {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  color: rgba(160, 98, 42, 0.45);
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--transition);
}

.module-card:hover .module-num {
  color: rgba(160, 98, 42, 0.85);
}

.module-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.module-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.program-stats {
  margin-top: 40px;
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-value {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.section-process {
  padding: 80px 0;
}

.process-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.process-desc {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
}

.step-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
}

.step-desc {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin-top: 2px;
}

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

.visual-break {
  padding: 0 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.visual-break-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.visual-break-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.visual-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30,24,16,0.82), transparent);
  display: flex;
  align-items: center;
}

.visual-break-text {
  padding: 0 40px;
  max-width: 420px;
}

.visual-break-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 8px;
}

.visual-break-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}

.section-faq {
  padding: 80px 0;
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  gap: 16px;
  transition: background var(--transition);
}

.faq-toggle:hover {
  background: rgba(245,241,236,0.7);
}

.faq-q {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  border-top: 1px solid var(--bg-alt);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
  padding-top: 16px;
}

.section-form {
  padding: 80px 0;
  background: var(--bg-alt);
}

.form-wrap {
  max-width: 540px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-sub {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-top: 8px;
}

.lead-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #3a2e24;
  margin-bottom: 6px;
}

.field label span {
  color: var(--red);
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: inherit;
  background: #faf8f5;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
  color: var(--fg);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--primary);
}

.field input.error,
.field textarea.error {
  border-color: var(--red);
}

.field-error {
  display: none;
  font-size: 0.75rem;
  color: var(--red);
  margin-top: 4px;
}

.field-error.visible {
  display: block;
}

.field textarea {
  resize: none;
  height: 88px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--transition);
}

.form-submit:hover {
  background: var(--primary-hover);
}

.form-legal {
  font-size: 0.75rem;
  text-align: center;
  color: var(--fg-light);
}

.form-legal a {
  color: var(--primary);
  text-decoration: underline;
}

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

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

.footer-brand-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-desc {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
}

.footer-col-title {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}

.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.45);
  transition: color var(--transition);
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
}

.footer-right {
  text-align: right;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--bg-dark);
  color: rgba(255,255,255,0.8);
  padding: 16px 24px;
}

.cookie-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-text {
  font-size: 0.875rem;
  line-height: 1.55;
  flex: 1;
}

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

.cookie-text a:hover {
  color: var(--white);
}

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

.cookie-accept {
  padding: 9px 20px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--transition);
}

.cookie-accept:hover {
  background: var(--primary-hover);
}

.cookie-close {
  padding: 8px 20px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  font-family: inherit;
  transition: border-color var(--transition);
}

.cookie-close:hover {
  border-color: rgba(255,255,255,0.45);
}

.page-header {
  padding-top: 120px;
  padding-bottom: 16px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: 24px;
  transition: opacity var(--transition);
}

.back-link:hover {
  opacity: 0.75;
}

.page-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}

.page-date {
  font-size: 0.875rem;
  color: var(--fg-light);
  margin-bottom: 40px;
}

.legal-content {
  padding-bottom: 80px;
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section h2 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.legal-section p {
  font-size: 0.9rem;
  color: #4a3c30;
  line-height: 1.75;
  margin-bottom: 10px;
}

.legal-section ul {
  padding-left: 20px;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-section li {
  font-size: 0.9rem;
  color: #4a3c30;
  line-height: 1.6;
}

.info-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.9rem;
  color: #4a3c30;
  line-height: 1.7;
}

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

.success-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.success-card {
  max-width: 480px;
  text-align: center;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.success-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 14px;
}

.success-desc {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.success-tip {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: left;
  margin-bottom: 32px;
}

.success-tip strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}

.success-tip p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

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

.notfound-num {
  font-size: 6rem;
  font-weight: 700;
  color: rgba(107, 58, 24, 0.15);
  font-family: 'Courier New', monospace;
  line-height: 1;
  margin-bottom: 16px;
}

.notfound-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.notfound-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }
  .hero-badge-card {
    bottom: -12px;
    left: -8px;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .value-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .techniques-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
  .program-grid {
    grid-template-columns: 1fr;
  }
  .program-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .process-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .footer-right {
    text-align: left;
  }
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-accept,
  .cookie-close {
    flex: 1;
    text-align: center;
  }
  .lead-form {
    padding: 28px 20px;
  }
  .visual-break-text {
    padding: 0 24px;
  }
  .visual-break-title {
    font-size: 1.0625rem;
  }
}
