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

:root {
  --cream: #F9F5EF;
  --cream-dark: #F0EAE0;
  --wax: #E8D9C4;
  --amber: #C8924A;
  --amber-dark: #A87538;
  --amber-light: #EFB87A;
  --dark: #2C2416;
  --text: #3D3020;
  --text-muted: #7A6B55;
  --white: #FFFFFF;
  --border: #DDD0BC;

  --font-body: 'Georgia', 'Times New Roman', serif;
  --font-ui: system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(44,36,22,0.08);
  --shadow-md: 0 4px 20px rgba(44,36,22,0.12);
  --shadow-lg: 0 8px 40px rgba(44,36,22,0.16);
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
}

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

a {
  color: var(--amber);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--amber-dark); }

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

.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  padding: 15px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200,146,74,0.35);
}
.btn-primary:hover {
  background: var(--amber-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(200,146,74,0.45);
}

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

.section-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

section {
  padding: 80px 0;
}

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

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

.logo {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: bold;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo:hover { color: var(--amber); }
.logo-dot { color: var(--amber); }

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

.nav-links a {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--amber); }

.nav-cta {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  background: var(--amber);
  color: var(--white) !important;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
  background: var(--amber-dark) !important;
  transform: translateY(-1px);
}

.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(--dark);
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-ui);
  font-size: 1.3rem;
  color: var(--dark);
}
.mobile-menu a:hover { color: var(--amber); }

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--dark);
}

.hero {
  background: var(--cream);
  padding: 80px 0 60px;
  overflow: hidden;
}

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

.hero-content { }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  background: var(--wax);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

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

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

.hero h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
}

.hero-image {
  position: relative;
}

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

.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-ui);
  font-size: 13px;
}

.hero-badge strong {
  display: block;
  font-size: 22px;
  color: var(--amber);
  line-height: 1.1;
}

.trust-strip {
  background: var(--dark);
  padding: 28px 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.trust-item-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.benefits {
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.benefit-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.benefit-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1;
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.program {
  background: var(--cream);
}

.program-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

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

.program-modules {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  transition: background var(--transition);
  user-select: none;
}

.module-header:hover { background: var(--cream); }

.module-num {
  font-size: 12px;
  font-weight: 400;
  color: var(--amber);
  margin-right: 12px;
  font-family: var(--font-ui);
}

.module-arrow {
  font-size: 10px;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.module-item.open .module-arrow { transform: rotate(180deg); }

.module-body {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.module-item.open .module-body { display: block; }

.module-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.module-body ul li::before {
  content: '— ';
  color: var(--amber);
}

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

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.whom-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border-left: 3px solid var(--amber);
}

.whom-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.whom-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.format {
  background: var(--dark);
  color: var(--cream);
}

.format h2, .format h3 { color: var(--white); }

.format .section-header p { color: rgba(255,255,255,0.6); }

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

.format-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
}

.format-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.format-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--amber-light);
}

.format-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

.results {
  background: var(--cream);
}

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

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

.results-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.result-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.result-check {
  width: 28px;
  height: 28px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 3px;
}

.result-text strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.result-text span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.instructor {
  background: var(--white);
}

.instructor-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: center;
}

.instructor-photo {
  position: relative;
}

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

.instructor-photo-badge {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: var(--amber);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
}

.instructor-info h2 { margin-bottom: 6px; }

.instructor-title {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--amber);
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}

.instructor-bio {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1.02rem;
}

.instructor-facts {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.instructor-fact strong {
  display: block;
  font-size: 1.6rem;
  color: var(--amber);
  font-family: var(--font-ui);
}

.instructor-fact span {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
}

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

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

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--dark);
  transition: background var(--transition);
  user-select: none;
  gap: 16px;
}
.faq-question:hover { background: var(--cream); }

.faq-arrow {
  font-size: 12px;
  color: var(--amber);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

.lead-form-section {
  background: linear-gradient(135deg, var(--dark) 0%, #3D2E1A 100%);
  color: var(--cream);
}

.lead-form-section h2 { color: var(--white); }

.lead-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lead-left h2 { margin-bottom: 16px; }

.lead-left p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  font-size: 1.02rem;
}

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

.lead-guarantees li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.lead-guarantees li::before {
  content: '✓';
  color: var(--amber-light);
  font-weight: 700;
  font-size: 15px;
}

.lead-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.lead-form h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.lead-form-subtitle {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(200,146,74,0.12);
}

.form-group input::placeholder { color: var(--text-muted); }

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

.form-note {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.form-note a {
  color: var(--amber);
}

.site-footer {
  background: #1E1710;
  color: rgba(255,255,255,0.55);
  padding: 48px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  color: var(--cream);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-legal-details {
  font-family: var(--font-ui);
  font-size: 11px;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
}

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--amber-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-family: var(--font-ui);
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 780px;
  background: var(--dark);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  font-family: var(--font-ui);
  transition: opacity 0.3s, transform 0.3s;
}

.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}

.cookie-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

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

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

.cookie-btn {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: background var(--transition);
}

.cookie-accept {
  background: var(--amber);
  color: var(--white);
}
.cookie-accept:hover { background: var(--amber-dark); }

.cookie-decline {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
}
.cookie-decline:hover { background: rgba(255,255,255,0.12); }

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}

.success-card {
  text-align: center;
  max-width: 520px;
  padding: 60px 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: 24px;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
}

.success-card h1 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.success-card p {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

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

.legal-updated {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.legal-page h2 {
  font-size: 1.2rem;
  margin: 36px 0 12px;
}

.legal-page p, .legal-page ul {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-page ul {
  padding-left: 24px;
}

.legal-page strong { color: var(--dark); }

@media (max-width: 900px) {
  .hero-inner,
  .program-layout,
  .results-layout,
  .lead-form-layout {
    grid-template-columns: 1fr;
  }

  .hero-image { order: -1; }
  .results-image { order: -1; }

  .instructor-layout {
    grid-template-columns: 1fr;
  }

  .instructor-photo {
    max-width: 300px;
    margin: 0 auto;
  }

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

  .footer-brand { grid-column: 1 / -1; }

  .trust-items { gap: 28px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }

  section { padding: 60px 0; }

  .nav-links { display: none; }
  .nav-cta-desktop { display: none; }
  .nav-burger { display: flex; }

  .hero { padding: 48px 0 40px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 14px; }

  .hero-badge {
    left: 8px;
    bottom: 8px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .format-cards { grid-template-columns: 1fr 1fr; }
}
