:root {
  --cream: #FAF8F4;
  --cream-alt: #F3EDE4;
  --teal-dark: #1E5A66;
  --teal: #2A7080;
  --teal-mid: #3D8A9A;
  --teal-light: #EBF4F6;
  --teal-border: #C5DDE2;
  --terra: #C47842;
  --terra-light: #F8F0E6;
  --text: #1F2937;
  --text-muted: #6B7280;
  --border: #E5DDD5;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.10);
  --radius: 6px;
  --radius-lg: 12px;
  --max-w: 1120px;
  --header-h: 64px;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); text-decoration: underline; }
ul, ol { padding-left: 1.25rem; }
li { margin-bottom: 0.35rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; color: var(--text); }
strong { font-weight: 500; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 24px;
  max-width: 640px;
}
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--teal);
  background: var(--teal-light);
  border: 1px solid var(--teal-border);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s, transform 0.12s;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal-dark);
  box-shadow: 0 2px 8px rgba(42, 112, 128, 0.25);
}
.btn--primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: var(--white); }
.btn--ghost {
  background: transparent;
  color: var(--teal-dark);
  border-color: var(--teal-border);
}
.btn--ghost:hover { background: var(--teal-light); color: var(--teal-dark); }
.btn--ghost-dark {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.2);
}
.btn--ghost-dark:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.btn--light {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--white);
}
.btn--light:hover { background: var(--cream); }
.btn--full { width: 100%; }
.btn--sm { font-size: 13px; padding: 8px 18px; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  text-decoration: none !important;
  flex-shrink: 0;
}
.logo__mark { color: var(--teal); flex-shrink: 0; }
.logo__text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--teal-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius);
  text-decoration: none !important;
  transition: color 0.15s, background 0.15s;
}
.nav__link:hover { color: var(--text); background: var(--cream-alt); }
.nav__link--cta {
  font-weight: 500;
  color: var(--teal);
  background: var(--teal-light);
  border: 1px solid var(--teal-border);
}
.nav__link--cta:hover { background: var(--teal); color: var(--white); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius);
}
.burger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.hero {
  padding: 80px 0 64px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero__desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__image {
  position: relative;
}
.hero__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42, 112, 128, 0.06) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}
.about__text p { color: var(--text-muted); font-size: 16px; }
.about__text p + p { margin-top: 0; }
.about__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.point { padding: 8px 0; }
.point__icon {
  color: var(--terra);
  font-size: 10px;
  margin-bottom: 14px;
  opacity: 0.8;
}
.point h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.point p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }

.who-for__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.who-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.who-item::before {
  content: '—';
  display: block;
  color: var(--teal);
  font-size: 18px;
  margin-bottom: 10px;
  font-family: var(--font-head);
}
.who-item p { font-size: 15px; color: var(--text); line-height: 1.6; margin: 0; }

.outcomes__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.outcomes__left { position: sticky; top: calc(var(--header-h) + 24px); }
.outcomes__img {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.outcomes__list {
  list-style: none;
  padding: 0;
}
.outcome-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.outcome-item:first-child { padding-top: 0; }
.outcome-item__num {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--terra);
  opacity: 0.7;
  flex-shrink: 0;
  padding-top: 2px;
  letter-spacing: 0.04em;
}
.outcome-item strong {
  display: block;
  font-size: 17px;
  font-family: var(--font-head);
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.outcome-item p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }

.format__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.format-item {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.2s;
}
.format-item:hover { box-shadow: var(--shadow); }
.format-item__icon {
  font-size: 11px;
  color: var(--teal);
  margin-bottom: 16px;
  opacity: 0.7;
}
.format-item h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}
.format-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }

.faq__list {
  margin-top: 36px;
  max-width: 760px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  gap: 16px;
  color: var(--text);
  transition: color 0.15s;
}
.faq-item__q:hover { color: var(--teal-dark); }
.faq-item__q::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] .faq-item__q::after { transform: rotate(45deg); }
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__a {
  padding: 0 0 20px 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item__a p { margin: 0; }

.form-section { background: var(--teal-light); }
.form-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.form-section__text p { color: #3D5A60; line-height: 1.7; }
.form-section__img {
  margin-top: 32px;
}
.form-section__img img {
  width: 100%;
  max-width: 300px;
  border-radius: var(--radius-lg);
  opacity: 0.9;
}

.field { margin-bottom: 20px; }
.field__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.required { color: var(--terra); }
.field__input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  -webkit-appearance: none;
}
.field__input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42, 112, 128, 0.12);
}
.field__input.error {
  border-color: #D94040;
  box-shadow: 0 0 0 3px rgba(217, 64, 64, 0.1);
}
.field__textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
.field__error {
  display: block;
  font-size: 12px;
  color: #C0392B;
  margin-top: 5px;
  min-height: 18px;
}
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.form-note a { color: var(--teal); }

.form-section__form {
  background: var(--white);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.final-cta {
  background: var(--teal-dark);
  padding: 72px 0;
}
.final-cta__inner {
  text-align: center;
}
.final-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 32px;
}

.footer {
  background: #1A2E32;
  color: rgba(255, 255, 255, 0.65);
  padding: 48px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer__brand .logo__text { color: rgba(255,255,255,0.85); font-size: 20px; }
.footer__tagline { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 8px; }
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.15s;
}
.footer__nav a:hover { color: var(--white); text-decoration: none; }
.footer__legal { font-size: 12px; line-height: 1.8; }
.footer__legal p { margin-bottom: 4px; }
.footer__legal a { color: rgba(255,255,255,0.5); }
.footer__legal a:hover { color: var(--white); text-decoration: none; }
.footer__copy { color: rgba(255,255,255,0.3); margin-top: 12px !important; }

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: none;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  max-width: 560px;
  width: calc(100% - 48px);
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: 13px;
  color: var(--text-muted);
  flex: 1;
  min-width: 200px;
  margin: 0;
}
.cookie-banner__text a { color: var(--teal); }
.cookie-banner__actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }

.legal-page { padding: 48px 0 80px; }
.legal-page__inner { max-width: 720px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.15s;
}
.back-link:hover { color: var(--teal); text-decoration: none; }
.legal-page h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}
.legal-page__meta {
  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;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--text);
}
.legal-page p, .legal-page li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}
.legal-page code {
  font-size: 13px;
  background: var(--cream-alt);
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--text);
}

.success-page {
  min-height: calc(100vh - var(--header-h) - 200px);
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.success-page__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.success-icon {
  margin: 0 auto 24px;
  width: 56px;
}
.success-page__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}
.success-page__text {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 16px;
}
.success-page__inner .btn { margin-top: 24px; }

@media (max-width: 900px) {
  .section { padding: 60px 0; }
  .hero { padding: 56px 0 48px; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__image { order: -1; }
  .hero__image img { aspect-ratio: 16 / 7; }
  .hero__title { font-size: 2rem; }
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .points { grid-template-columns: 1fr 1fr; gap: 24px; }
  .who-for__grid { grid-template-columns: 1fr 1fr; }
  .outcomes__inner { grid-template-columns: 1fr; gap: 40px; }
  .outcomes__left { position: static; }
  .format__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .form-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .form-section__img { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__legal { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root { --header-h: 58px; }
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }

  .nav { display: none; flex-direction: column; align-items: stretch; position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px; gap: 4px; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav__link { padding: 12px 16px; font-size: 16px; border-radius: var(--radius); }
  .nav__link--cta { text-align: center; margin-top: 8px; }
  .burger { display: flex; }

  .hero { padding: 40px 0 36px; }
  .hero__title { font-size: 1.7rem; }
  .hero__desc { font-size: 15px; }
  .hero__actions { flex-direction: column; }
  .hero__image img { aspect-ratio: 4 / 3; }

  .points { grid-template-columns: 1fr; }
  .who-for__grid { grid-template-columns: 1fr; }
  .format__grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__legal { grid-column: auto; }

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

  .cookie-banner { bottom: 16px; padding: 12px 16px; }
}

:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
