/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #F8F5EF;
  --bg-dark: #1A1A2E;
  --bg-mid: #F0EBE1;
  --accent: #C4965A;
  --accent-dark: #A87A42;
  --text: #2A2A38;
  --text-light: #6B6B7A;
  --text-pale: #9A9AAA;
  --white: #FEFCF8;
  --border: #E0D9CE;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --radius: 8px;
  --transition: 0.22s ease;
  --max-w: 1100px;
  --shadow: 0 2px 16px rgba(42, 42, 56, 0.08);
  --shadow-lg: 0 8px 40px rgba(42, 42, 56, 0.12);
}

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

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

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

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

ul {
  list-style: none;
}

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

.section {
  padding: 80px 0;
}

.section--dark {
  background: var(--bg-dark);
  color: var(--white);
}

.section--mid {
  background: var(--bg-mid);
}

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 20px;
}

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

.section-lead {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

.section--dark .section-lead {
  color: rgba(254, 252, 248, 0.7);
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

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

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.02em;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 60%, #0F3460 100%);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  mix-blend-mode: luminosity;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 60px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(196, 150, 90, 0.15);
  border: 1px solid rgba(196, 150, 90, 0.35);
  color: #D4A96A;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

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

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 24px;
}

.hero-title em {
  color: #D4A96A;
  font-style: normal;
}

.hero-text {
  font-size: 1.1rem;
  color: rgba(254, 252, 248, 0.72);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 520px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 150, 90, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(254, 252, 248, 0.75);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
  border: none;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary:hover {
  color: var(--white);
}

.hero-note {
  margin-top: 32px;
  font-size: 0.82rem;
  color: rgba(254, 252, 248, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-note::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(254, 252, 248, 0.3);
}

/* ===== FOR WHOM ===== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

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

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

.audience-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(196, 150, 90, 0.12), rgba(196, 150, 90, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.audience-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}

.audience-text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== HOW IT WORKS ===== */
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 40px;
}

.how-step {
  display: flex;
  gap: 20px;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.step-body h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}

.step-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

.how-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

/* ===== FORMAT ===== */
.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
  border: 1px solid rgba(255,255,255,0.08);
}

.format-item {
  padding: 36px 30px;
  background: rgba(255,255,255,0.03);
  transition: background var(--transition);
}

.format-item:hover {
  background: rgba(255,255,255,0.06);
}

.format-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.format-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}

.format-text {
  font-size: 0.88rem;
  color: rgba(254, 252, 248, 0.55);
  line-height: 1.6;
}

/* ===== NOTES IMAGE SECTION ===== */
.notes-section {
  padding: 0;
  overflow: hidden;
  max-height: 380px;
}

.notes-img-wrap {
  position: relative;
  height: 380px;
}

.notes-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notes-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.5) 60%, transparent 100%);
  display: flex;
  align-items: center;
}

.notes-quote {
  max-width: 480px;
  padding: 0 48px;
}

.notes-quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--white);
  line-height: 1.45;
  font-weight: 400;
  font-style: italic;
}

.notes-quote cite {
  display: block;
  margin-top: 20px;
  font-size: 0.82rem;
  color: rgba(196, 150, 90, 0.85);
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== FORM SECTION ===== */
.form-section {
  background: var(--bg-mid);
}

.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.form-meta {
  padding-top: 12px;
}

.form-features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.form-feature span {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.6;
}

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

.form-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group select {
  height: 48px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0 16px;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 150, 90, 0.12);
}

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

.form-submit {
  width: 100%;
  height: 52px;
  background: var(--accent);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 150, 90, 0.3);
}

.form-submit:active {
  transform: translateY(0);
}

.form-legal {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-pale);
  line-height: 1.55;
  text-align: center;
}

.form-legal a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== FAQ ===== */
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 22px 28px;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background var(--transition), color var(--transition);
  font-family: var(--font-sans);
}

.faq-question:hover {
  background: var(--bg-mid);
}

.faq-question.open {
  color: var(--accent);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-pale);
  transition: transform var(--transition), color var(--transition);
}

.faq-question.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  display: none;
  padding: 0 28px 24px;
  background: var(--white);
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
}

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

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-dark);
  color: rgba(254, 252, 248, 0.5);
  padding: 56px 0 32px;
}

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

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(254, 252, 248, 0.4);
  margin-bottom: 16px;
}

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

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(254, 252, 248, 0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-company {
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(254, 252, 248, 0.3);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(254, 252, 248, 0.3);
  text-align: right;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 700px;
  background: var(--bg-dark);
  color: rgba(254, 252, 248, 0.8);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  z-index: 1000;
  font-size: 0.85rem;
  line-height: 1.5;
  transition: opacity 0.3s, transform 0.3s;
}

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

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-btn {
  flex-shrink: 0;
  padding: 8px 20px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background var(--transition);
  white-space: nowrap;
}

.cookie-btn:hover {
  background: var(--accent-dark);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding-top: 104px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-header .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 24px;
  transition: color var(--transition);
}

.legal-header .back-link:hover {
  color: var(--accent);
}

.legal-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.legal-header .legal-date {
  font-size: 0.85rem;
  color: var(--text-pale);
}

.legal-body h2 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin: 36px 0 12px;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-body ul li {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
}

.success-card {
  text-align: center;
  max-width: 480px;
  padding: 60px 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  margin: 24px;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(196, 150, 90, 0.15);
  border: 1px solid rgba(196, 150, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
}

.success-card h1 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.success-card p {
  font-size: 0.95rem;
  color: rgba(254, 252, 248, 0.6);
  line-height: 1.7;
  margin-bottom: 36px;
}

.success-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.9rem;
  transition: gap var(--transition);
}

.success-back:hover {
  gap: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .section {
    padding: 60px 0;
  }

  .how-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .how-image {
    order: -1;
  }

  .how-image img {
    height: 280px;
  }

  .form-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .notes-quote blockquote {
    font-size: 1.1rem;
  }

  .notes-quote {
    padding: 0 28px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 48px 0;
  }

  .hero-content {
    padding: 40px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .footer-copy {
    text-align: left;
  }

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

  .faq-question {
    padding: 18px 20px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }

  .notes-img-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(26,26,46,0.88) 60%);
    align-items: flex-end;
  }

  .notes-quote {
    padding: 0 20px 28px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    bottom: 16px;
  }

  .cookie-btn {
    width: 100%;
  }
}
