@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --ink: #0E0D0C;
  --ink-soft: #3D3B38;
  --ink-muted: #7A7670;
  --surface: #F7F5F0;
  --surface-alt: #EFECEA;
  --surface-dark: #1A1916;
  --white: #FDFCFA;
  --accent: #2A5C45;
  --accent-light: #D4EDE4;
  --accent-mid: #4A8C6A;
  --gold: #C8963E;
  --gold-light: #F5ECD6;
  --border: rgba(14,13,12,0.10);
  --border-strong: rgba(14,13,12,0.20);
  --radius: 4px;
  --radius-lg: 10px;
  --radius-xl: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 { font-family: 'Syne', sans-serif; line-height: 1.15; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: 'DM Sans', sans-serif; cursor: pointer; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px;
  background: rgba(247,245,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: -0.02em; color: var(--ink); }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--ink-soft); transition: color .2s; }
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--ink); }
.nav-cta {
  font-size: 13px; font-weight: 500;
  padding: 9px 20px;
  background: var(--accent); color: var(--white);
  border: none; border-radius: var(--radius);
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: #1e4332; transform: translateY(-1px); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  padding: 12px 24px; border-radius: var(--radius);
  border: none; cursor: pointer; transition: all .2s;
  text-decoration: none;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: #1e4332; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(42,92,69,0.3); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border-strong); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { font-size: 16px; padding: 16px 32px; }
.btn-sm { font-size: 13px; padding: 9px 18px; }

/* ─── BADGE ─── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
}
.badge-green { background: var(--accent-light); color: var(--accent); }
.badge-gold { background: var(--gold-light); color: #8A6320; }
.badge-dark { background: var(--ink); color: var(--white); }

/* ─── HERO ─── */
.hero {
  padding: 140px 40px 100px;
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-eyebrow { margin-bottom: 20px; }
.hero h1 { font-size: clamp(36px, 5vw, 58px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: 17px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 32px; font-weight: 300; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: 12px; color: var(--ink-muted); margin-top: 16px; display: flex; gap: 20px; }
.hero-note span::before { content: '✓  '; color: var(--accent); font-weight: 600; }
.hero-visual {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 20px 60px rgba(14,13,12,0.06);
}

/* ─── SECTION ─── */
.section { padding: 80px 40px; max-width: 1100px; margin: 0 auto; }
.section-full { padding: 80px 40px; }
.section-full > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section-title { font-size: clamp(26px, 3.5vw, 38px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--ink-soft); max-width: 560px; line-height: 1.7; font-weight: 300; }

/* ─── CARDS GRID ─── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 40px; }
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: 0 8px 32px rgba(14,13,12,0.08); transform: translateY(-2px); }
.card-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.card-icon-green { background: var(--accent-light); }
.card-icon-gold { background: var(--gold-light); }
.card-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.card-body { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }
.card-livrable { font-size: 12px; color: var(--ink-muted); margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }

/* ─── PRICING ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 40px; }
.pricing-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  display: flex; flex-direction: column;
}
.pricing-card.featured { border: 2px solid var(--accent); }
.pricing-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 8px; }
.pricing-name { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.pricing-price { font-size: 32px; font-weight: 700; font-family: 'Syne', sans-serif; color: var(--ink); margin: 12px 0 4px; }
.pricing-price span { font-size: 15px; font-weight: 400; color: var(--ink-muted); }
.pricing-note { font-size: 12px; color: var(--ink-muted); margin-bottom: 20px; }
.pricing-body { font-size: 14px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 24px; flex: 1; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ─── DIVIDER ─── */
.divider { height: 1px; background: var(--border); margin: 0 40px; }
.divider-full { height: 1px; background: var(--border); }

/* ─── PAIN POINTS ─── */
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.pain-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  font-size: 14px; color: var(--ink-soft); line-height: 1.6;
  display: flex; gap: 10px; align-items: flex-start;
}
.pain-item::before { content: '→'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ─── CHECKLIST ─── */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.checklist li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-soft); align-items: flex-start; }
.checklist li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ─── FAQ ─── */
.faq { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.faq-item { border-top: 1px solid var(--border); padding: 20px 0; }
.faq-q { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.faq-a { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }

/* ─── ABOUT STRIP ─── */
.about-strip {
  background: var(--surface-dark); color: var(--white);
  padding: 48px 40px;
}
.about-strip-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: start;
}
.about-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800;
  flex-shrink: 0;
}
.about-strip h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.about-strip p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; }
.about-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.about-tag {
  font-size: 11px; font-weight: 500;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 4px 10px;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--accent-light);
  border-top: 1px solid rgba(42,92,69,0.15);
  border-bottom: 1px solid rgba(42,92,69,0.15);
  padding: 64px 40px; text-align: center;
}
.cta-band h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 12px; }
.cta-band p { font-size: 16px; color: var(--ink-soft); max-width: 500px; margin: 0 auto 28px; font-weight: 300; }

/* ─── FOOTER ─── */
.footer {
  padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
}
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; }
.footer-logo span { color: var(--accent); }
.footer-meta { font-size: 12px; color: var(--ink-muted); text-align: right; line-height: 1.8; }

/* ─── FORM ─── */
.form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px; max-width: 560px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-label { font-size: 13px; font-weight: 500; color: var(--ink); display: block; margin-bottom: 6px; }
.form-label span { color: var(--ink-muted); font-weight: 400; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 14px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--ink);
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--radius); outline: none;
  transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); background: var(--white); }
.form-textarea { resize: vertical; min-height: 100px; }
.radio-group { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.radio-opt { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-soft); cursor: pointer; }
.radio-opt input { accent-color: var(--accent); width: 16px; height: 16px; cursor: pointer; }
.checkbox-group { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.checkbox-opt { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-soft); cursor: pointer; }
.checkbox-opt input { accent-color: var(--accent); width: 16px; height: 16px; cursor: pointer; margin-top: 2px; flex-shrink: 0; }

/* ─── PROFILE SELECTOR ─── */
.profile-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 32px 0; }
.profile-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
  cursor: pointer; transition: all .2s; text-decoration: none; color: var(--ink);
  display: block;
}
.profile-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,92,69,0.12); }
.profile-icon { font-size: 24px; margin-bottom: 10px; }
.profile-name { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.profile-pain { font-size: 12px; color: var(--ink-muted); line-height: 1.55; margin-bottom: 10px; }
.profile-link { font-size: 12px; font-weight: 600; color: var(--accent); }

/* ─── STEPS ─── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.step {
  text-align: center; padding: 28px 20px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 800;
  margin: 0 auto 16px;
}
.step-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step-body { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }
.step-livrable { font-size: 12px; color: var(--ink-muted); margin-top: 10px; font-style: italic; }

/* ─── AXES GRID ─── */
.axes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.axe {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}
.axe-num { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 8px; }
.axe-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.axe-body { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }
.axe-livrable { font-size: 12px; color: var(--ink-muted); margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }

/* ─── NOTICE BOX ─── */
.notice {
  background: var(--gold-light); border: 1px solid rgba(200,150,62,0.25);
  border-radius: var(--radius-lg); padding: 24px 28px;
}
.notice h4 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 8px; color: #6B4A10; }
.notice p { font-size: 14px; color: #7A5515; line-height: 1.6; }

/* ─── INCLUDED STRIP ─── */
.included {
  background: var(--surface-alt);
  border-radius: var(--radius-lg); padding: 28px 32px;
  margin-top: 40px;
}
.included h3 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

/* ─── SUCCESS PAGE ─── */
.success-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px; }
.success-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 56px; max-width: 520px; text-align: center; }
.success-icon { font-size: 48px; margin-bottom: 20px; }
.success-card h1 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.success-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 20px; }

/* ─── BREADCRUMB ─── */
.breadcrumb { font-size: 12px; color: var(--ink-muted); padding: 24px 40px 0; max-width: 1180px; margin: 0 auto; }
.breadcrumb a { color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--accent); }

/* ─── SPACER ─── */
.pt-nav { padding-top: 64px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 110px 20px 60px; gap: 40px; }
  .hero-visual { display: none; }
  .section { padding: 56px 20px; }
  .section-full { padding: 56px 20px; }
  .pain-grid { grid-template-columns: 1fr; }
  .profile-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .axes { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .breadcrumb { padding: 20px 20px 0; }
  .about-strip { padding: 40px 20px; }
  .cta-band { padding: 48px 20px; }
  .footer { flex-direction: column; gap: 12px; text-align: center; padding: 24px 20px; }
  .footer-meta { text-align: center; }
  .about-strip-inner { grid-template-columns: 1fr; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim { animation: fadeUp .5s ease both; }
.anim-1 { animation-delay: .1s; }
.anim-2 { animation-delay: .2s; }
.anim-3 { animation-delay: .3s; }
.anim-4 { animation-delay: .4s; }
