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

:root {
  --bg:         #FAF7F2;
  --bg-card:    #F3EDE2;
  --bg-dark:    #2C2416;
  --primary:    #C4774A;
  --primary-dk: #A85F35;
  --green:      #6B8F71;
  --green-lt:   #EBF2EC;
  --text:       #2C2416;
  --text-mid:   #6B5C4E;
  --text-lt:    #9B8B7D;
  --white:      #FFFFFF;
  --border:     #E5DDD0;
  --font-h:     'Georgia', 'Times New Roman', serif;
  --font-b:     'Inter', system-ui, -apple-system, sans-serif;
  --r:          12px;
  --r-lg:       20px;
  --shadow:     0 2px 16px rgba(44,36,22,.08);
  --shadow-lg:  0 8px 40px rgba(44,36,22,.12);
}

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

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,242,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.logo {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: normal;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo span { color: var(--primary); }
.header-cta {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--r);
  padding: 10px 22px;
  font-size: .9rem;
  font-family: var(--font-b);
  cursor: pointer;
  font-weight: 500;
  transition: background .2s;
  text-decoration: none;
  display: inline-block;
}
.header-cta:hover { background: var(--primary-dk); text-decoration: none; }

.hero {
  padding: 80px 0 72px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  background: var(--green-lt);
  color: var(--green);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  font-weight: normal;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--r);
  padding: 14px 28px;
  font-size: 1rem;
  font-family: var(--font-b);
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--primary-dk); text-decoration: none; transform: translateY(-1px); }
.btn-ghost {
  color: var(--text-mid);
  font-size: .95rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-ghost:hover { color: var(--text); text-decoration: none; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/11;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: var(--r);
  padding: 10px 16px;
  box-shadow: var(--shadow-lg);
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}
.hero-badge strong { color: var(--primary); }

.benefits-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.benefits-strip ul {
  list-style: none;
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.benefits-strip li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px;
  font-size: .92rem;
  color: var(--text-mid);
  font-weight: 500;
  border-right: 1px solid var(--border);
}
.benefits-strip li:last-child { border-right: none; }
.benefits-strip .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

section { padding: 80px 0; }
.section-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: normal;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 48px;
}
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin-left: auto; margin-right: auto; }

.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.learn-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.learn-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.learn-icon {
  width: 44px;
  height: 44px;
  background: var(--green-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.learn-card h3 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 8px;
  color: var(--text);
}
.learn-card p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.55;
}

.program-section { background: var(--bg-card); }
.program-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.program-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.program-img img { width: 100%; height: auto; }
.modules-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.module-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.module-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.module-num {
  font-family: var(--font-h);
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: normal;
  min-width: 28px;
  line-height: 1;
  padding-top: 2px;
}
.module-info h4 {
  font-size: .97rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.module-info p {
  font-size: .84rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.for-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.for-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex;
  gap: 16px;
}
.for-check {
  width: 28px;
  height: 28px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.for-card h4 {
  font-size: .97rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.for-card p {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.55;
}

.process-section { background: var(--bg-dark); color: var(--white); }
.process-section .section-label { color: #C4A48A; }
.process-section .section-title { color: var(--white); }
.process-section .section-sub { color: rgba(255,255,255,.6); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  position: relative;
}
.step-num {
  font-family: var(--font-h);
  font-size: 2.5rem;
  color: rgba(196,119,74,.35);
  font-weight: normal;
  line-height: 1;
  margin-bottom: 16px;
}
.step-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.step-card p {
  font-size: .86rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}
.step-arrow {
  position: absolute;
  top: 14px;
  right: -16px;
  color: rgba(196,119,74,.3);
  font-size: 1.2rem;
}

.form-section {
  background: var(--primary);
  color: var(--white);
}
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.form-left h2 {
  font-family: var(--font-h);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: normal;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.form-left p {
  color: rgba(255,255,255,.8);
  font-size: .97rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.form-left ul {
  margin-top: 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-left li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}
.form-left li::before {
  content: "✓";
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  color: rgba(255,255,255,.6);
}
.form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.form-card h3 {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: normal;
  color: var(--text);
  margin-bottom: 6px;
}
.form-card .form-note {
  font-size: .82rem;
  color: var(--text-lt);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: .83rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: .95rem;
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus { border-color: var(--primary); }
.form-group input::placeholder { color: var(--text-lt); }
.form-submit {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--r);
  padding: 14px;
  font-size: 1rem;
  font-family: var(--font-b);
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: 4px;
}
.form-submit:hover { background: var(--primary-dk); transform: translateY(-1px); }
.form-agree {
  font-size: .74rem;
  color: var(--text-lt);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}
.form-agree a { color: var(--text-mid); }

.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--white);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 22px;
  font-family: var(--font-b);
  font-size: .96rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .7rem;
  color: var(--text-mid);
  transition: background .2s, transform .3s;
}
.faq-item.open .faq-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .2s;
  padding: 0 22px;
}
.faq-answer p {
  padding-bottom: 20px;
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 22px;
}

.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.55);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 10px; }
.footer-brand .logo span { color: var(--primary); }
.footer-desc {
  font-size: .83rem;
  line-height: 1.6;
  max-width: 240px;
}
.footer-col h5 {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: rgba(255,255,255,.55); font-size: .88rem; }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  line-height: 1.8;
}

.success-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}
.success-icon {
  width: 72px;
  height: 72px;
  background: var(--green-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 28px;
}
.success-wrap h1 {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: normal;
  color: var(--text);
  margin-bottom: 14px;
}
.success-wrap p {
  color: var(--text-mid);
  max-width: 440px;
  margin: 0 auto 32px;
  font-size: 1rem;
  line-height: 1.65;
}
.success-wrap a {
  color: var(--text-mid);
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px;
}
.legal-wrap h1 {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: normal;
  color: var(--text);
  margin-bottom: 8px;
}
.legal-date {
  font-size: .82rem;
  color: var(--text-lt);
  margin-bottom: 40px;
}
.legal-wrap h2 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: normal;
  color: var(--text);
  margin: 32px 0 10px;
}
.legal-wrap p, .legal-wrap li {
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 10px;
}
.legal-wrap ul, .legal-wrap ol {
  padding-left: 22px;
  margin-bottom: 10px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .86rem;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--bg-dark);
  color: rgba(255,255,255,.8);
  border-radius: var(--r-lg);
  padding: 18px 24px;
  max-width: 560px;
  width: calc(100% - 48px);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: .85rem;
  line-height: 1.5;
  transition: opacity .4s, transform .4s;
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}
.cookie-text { flex: 1; }
.cookie-text a { color: rgba(255,255,255,.55); }
.cookie-text a:hover { color: var(--white); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: .84rem;
  font-family: var(--font-b);
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
}
.cookie-accept:hover { background: var(--primary-dk); }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: .84rem;
  font-family: var(--font-b);
  cursor: pointer;
  white-space: nowrap;
}
.cookie-decline:hover { color: rgba(255,255,255,.8); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { order: -1; aspect-ratio: 16/9; }
  .hero h1 { font-size: 2rem; }
  .learn-grid { grid-template-columns: repeat(2, 1fr); }
  .program-layout { grid-template-columns: 1fr; gap: 32px; }
  .program-img { position: static; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-arrow { display: none; }
  .form-layout { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  section { padding: 56px 0; }
  .hero { padding: 48px 0 56px; }
  .learn-grid { grid-template-columns: 1fr; }
  .for-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .benefits-strip li { border-right: none; padding: 6px 16px; font-size: .85rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
  .form-card { padding: 24px; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
