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

:root {
  --clay: #C96A3A;
  --clay-light: #E0895F;
  --clay-dark: #9E4E25;
  --sand: #F5EDE4;
  --sand-mid: #EDD9C8;
  --warm-white: #FBF7F4;
  --text-dark: #1E1510;
  --text-mid: #4A3728;
  --text-muted: #7A6356;
  --border: #DCC8B8;
  --radius-sm: 8px;
  --radius-md: 16px;
  --shadow-soft: 0 4px 24px rgba(100, 50, 20, 0.10);
  --shadow-card: 0 2px 12px rgba(100, 50, 20, 0.08);
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --transition: 0.22s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
}

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

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

a:hover {
  color: var(--clay-dark);
}

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

section {
  padding: 80px 0;
}

h1, h2, h3, h4 {
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); font-weight: 600; }
p  { color: var(--text-mid); }

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

.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform 0.15s ease, box-shadow var(--transition);
  text-align: center;
  line-height: 1.2;
  font-family: var(--font);
}

.btn-primary {
  background: var(--clay);
  color: #fff;
  box-shadow: 0 4px 16px rgba(201, 106, 58, 0.35);
}

.btn-primary:hover {
  background: var(--clay-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 106, 58, 0.40);
}

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

.btn-outline:hover {
  background: var(--clay);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 244, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

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

.header-cta {
  font-size: 0.9rem;
}

.hero {
  padding: 0;
  background: var(--sand);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  align-items: center;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 106, 58, 0.12);
  color: var(--clay-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clay);
  flex-shrink: 0;
}

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

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 32px;
  max-width: 440px;
}

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

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
}

.hero-trust-item strong {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clay);
  line-height: 1;
}

.hero-trust-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.hero-image-wrap {
  position: relative;
  align-self: stretch;
  overflow: hidden;
}

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

.for-whom {
  background: var(--warm-white);
}

.for-whom h2 {
  margin-bottom: 16px;
}

.for-whom-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
  margin-bottom: 48px;
}

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

.fear-card {
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.fear-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.fear-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

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

.fear-card p {
  font-size: 0.88rem;
  line-height: 1.55;
}

.format {
  background: var(--sand);
}

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

.format-content h2 {
  margin-bottom: 16px;
}

.format-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.format-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.format-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
  flex-shrink: 0;
  margin-top: 8px;
}

.format-feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.format-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.format-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.format-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.process {
  background: var(--warm-white);
}

.process h2 {
  text-align: center;
  margin-bottom: 12px;
}

.process-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 56px;
}

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

.step {
  background: var(--sand);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--border);
}

.step-num {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--sand-mid);
  line-height: 1;
  margin-bottom: 16px;
}

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

.step p {
  font-size: 0.85rem;
  line-height: 1.55;
}

.teacher {
  background: var(--sand);
}

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

.teacher-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.teacher-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top center;
}

.teacher-content {
  padding-top: 16px;
}

.teacher-content h2 {
  margin-bottom: 6px;
}

.teacher-role {
  color: var(--clay);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.teacher-bio {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.7;
}

.teacher-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.teacher-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.teacher-detail::before {
  content: '—';
  color: var(--clay);
  flex-shrink: 0;
  font-weight: 700;
}

.result-section {
  background: var(--warm-white);
  padding: 80px 0;
}

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

.result-content h2 {
  margin-bottom: 20px;
}

.result-content p {
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

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

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

.result-list li::before {
  content: '✓';
  color: var(--clay);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.result-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.result-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
}

.faq {
  background: var(--sand);
}

.faq h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

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

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

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

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform var(--transition), background var(--transition);
  color: var(--clay);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--clay);
  color: #fff;
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.65;
}

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

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

.form-wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.form-wrap h2 {
  color: #fff;
  margin-bottom: 12px;
}

.form-wrap .form-sub {
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.lead-form {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  box-shadow: 0 8px 40px rgba(100, 40, 10, 0.25);
  text-align: left;
}

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

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

.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--text-dark);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(201, 106, 58, 0.15);
}

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

.form-group input.error {
  border-color: #c0392b;
}

.form-group .error-msg {
  display: none;
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 4px;
}

.form-group input.error + .error-msg {
  display: block;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--clay);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.65);
  padding: 48px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  margin-bottom: 32px;
}

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

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--clay-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--text-dark);
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  max-width: 580px;
  width: calc(100% - 48px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
  font-size: 0.85rem;
  line-height: 1.55;
}

.cookie-text a {
  color: var(--clay-light);
}

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

.btn-cookie {
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--transition);
  font-family: var(--font);
}

.btn-cookie-accept {
  background: var(--clay);
  color: #fff;
}

.btn-cookie-accept:hover {
  background: var(--clay-light);
}

.btn-cookie-decline {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

.btn-cookie-decline:hover {
  background: rgba(255,255,255,0.15);
}

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

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

.legal-date {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.2rem;
  margin: 32px 0 10px;
}

.legal-content p {
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-content ul li {
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

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

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

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

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

.success-content p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 32px;
}

@media (max-width: 900px) {
  section { padding: 60px 0; }

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

  .hero-content {
    padding: 60px 24px 40px;
  }

  .hero-image-wrap {
    height: 300px;
  }

  .format-inner,
  .teacher-inner,
  .result-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .teacher-photo img {
    height: 320px;
  }

  .result-image img {
    height: 260px;
  }

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

@media (max-width: 600px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }

  .header-cta { display: none; }

  .lead-form {
    padding: 28px 24px;
  }

  .hero-trust {
    gap: 16px;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

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