 @import url('https://fonts.googleapis.com/css2?family=Bitter:wght@700;800;900&family=Nunito:wght@400;500;600;700;800&display=swap');

    /* ── Reset ──────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    /* ── Tokens ─────────────────────────────────────────────────── */
    :root {
      --cream:        #FDF8F3;
      --green-dark:   #0D3B11;
      --green-mint:   #73C698;
      --salmon:       #EA966C;
      --salmon-dark:  #d6824f;
      --green-light:  #EAF7EF;
      --green-mid:    #B8E5CC;
      --cream-dark:   #F0E8DE;
      --text:         #1a2e1a;
      --text-muted:   #5a7060;
      --radius:       16px;
      --shadow:       0 4px 24px rgba(13,59,17,.08);
      --shadow-lg:    0 12px 48px rgba(13,59,17,.14);
    }

    /* ── Base ───────────────────────────────────────────────────── */
    body {
      font-family: 'Nunito', sans-serif;
      color: var(--text);
      background: var(--cream);
      line-height: 1.65;
    }
    h1, h2 {
      font-family: 'Bitter', serif;
      font-weight: 800;
    }
    h3 {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      color: var(--green-mint);
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    /* ── Utility ────────────────────────────────────────────────── */
    .container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 99px;
      margin-bottom: 18px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 14px 28px;
      border-radius: 12px;
      font-family: 'Nunito', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: transform .15s, box-shadow .15s, background .15s;
      line-height: 1;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

    .btn-salmon { background: var(--salmon); color: #fff; }
    .btn-salmon:hover { background: var(--salmon-dark); }

    .btn-green  { background: var(--green-mint); color: var(--green-dark); }
    .btn-green:hover { background: #5db882; }

    .btn-outline {
      background: transparent;
      color: var(--green-dark);
      border: 2px solid var(--green-dark);
    }
    .btn-outline:hover { background: var(--green-light); box-shadow: none; }

    .btn-ghost {
      background: rgba(255,255,255,.15);
      color: #fff;
      border: 1.5px solid rgba(255,255,255,.3);
    }
    .btn-ghost:hover { background: rgba(255,255,255,.25); box-shadow: none; }

    .section-title {
      font-family: 'Bitter', serif;
      font-size: clamp(1.9rem, 4vw, 2.7rem);
      font-weight: 800;
      line-height: 1.15;
      color: var(--green-dark);
    }
    .section-sub {
      margin-top: 14px;
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 540px;
    }

    /* Lucide icon size defaults */
    [data-lucide] { width: 20px; height: 20px; stroke-width: 1.8; }

    /* ── Nav ────────────────────────────────────────────────────── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(253,248,243,.92);
      -webkit-backdrop-filter: blur(14px);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--cream-dark);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }
    .nav-logo { display: flex; align-items: center; }
    .nav-logo svg { height: 36px; width: auto; }

    .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
    .nav-links a {
      font-size: .9rem;
      font-weight: 600;
      color: var(--text-muted);
      transition: color .15s;
    }
    .nav-links a:hover { color: var(--green-dark); }

    /* ── Hero ───────────────────────────────────────────────────── */
    .hero {
      padding: 100px 0 80px;
      background: var(--cream);
      position: relative;
      overflow: hidden;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -180px; right: -180px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(115,198,152,.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 72px;
      align-items: center;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #FEF2EC;
      color: var(--salmon-dark);
      font-size: .78rem;
      font-weight: 700;
      padding: 5px 14px;
      border-radius: 99px;
      margin-bottom: 22px;
      border: 1px solid #FBDACC;
    }
    .hero-badge span { animation: blink 2s infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.5} }

    .hero h1 {
      font-size: clamp(2.4rem, 5.5vw, 3.5rem);
      line-height: 1.08;
      color: var(--green-dark);
      letter-spacing: -.02em;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--green-mint);
    }
    .hero-sub {
      margin-top: 22px;
      font-size: 1.12rem;
      color: var(--text-muted);
      max-width: 500px;
      line-height: 1.7;
    }
    .hero-ctas { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }
    .hero-trust {
      margin-top: 30px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .83rem;
      color: var(--text-muted);
      font-weight: 600;
    }
    .hero-trust-icons { display: flex; gap: 6px; }
    .hero-trust-icons span { font-size: 1.3rem; }

    /* Phone mockup */
    .phone-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }
    .phone {
      width: 272px;
      background: var(--green-dark);
      border-radius: 42px;
      padding: 14px;
      box-shadow: 0 40px 80px rgba(13,59,17,.28), 0 0 0 1px rgba(255,255,255,.06);
      position: relative;
      z-index: 2;
    }
    .phone-notch {
      width: 80px; height: 20px;
      background: var(--green-dark);
      border-radius: 99px;
      margin: 0 auto 8px;
    }
    .phone-screen {
      background: var(--cream);
      border-radius: 30px;
      overflow: hidden;
      min-height: 500px;
    }
    .app-topbar {
      background: var(--green-dark);
      padding: 14px 16px 18px;
      color: #fff;
    }
    .app-topbar-label { font-size: .62rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; opacity: .5; margin-bottom: 6px; }
    .app-pet-row { display: flex; align-items: center; gap: 8px; }
    .app-pet-avatar { font-size: 1.3rem; }
    .app-pet-name { font-size: .95rem; font-weight: 800; }
    .app-pet-chip {
      margin-left: auto;
      background: rgba(115,198,152,.2);
      color: #73C698;
      font-size: .58rem;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 99px;
    }
    .app-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
    .app-card {
      background: #fff;
      border-radius: 12px;
      padding: 11px 13px;
      box-shadow: 0 1px 4px rgba(0,0,0,.06);
    }
    .app-card-label {
      font-size: .55rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .07em;
      color: #9ab09e;
      margin-bottom: 4px;
    }
    .app-card-value { font-size: .78rem; font-weight: 700; color: var(--green-dark); }
    .app-chip-row { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 5px; }
    .app-chip {
      font-size: .55rem; font-weight: 700;
      padding: 2px 7px; border-radius: 99px;
    }
    .chip-green  { background: var(--green-light); color: var(--green-dark); }
    .chip-salmon { background: #FEF2EC; color: var(--salmon-dark); }
    .chip-gray   { background: #f0ede8; color: #7a6e65; }
    .app-notify {
      background: #FEF2EC;
      border-radius: 12px;
      padding: 9px 12px;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }
    .app-notify-dot { width: 8px; height: 8px; background: var(--salmon); border-radius: 50%; flex-shrink: 0; margin-top: 3px; }
    .app-notify-text { font-size: .65rem; color: #7a5038; font-weight: 600; }
    .floating-pill {
      position: absolute;
      background: #fff;
      border-radius: 12px;
      padding: 9px 14px;
      box-shadow: var(--shadow-lg);
      font-size: .78rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
      z-index: 4;
      color: var(--green-dark);
      border: 1px solid var(--cream-dark);
    }
    .pill-tl { top: 8%; right: -24px; }
    .pill-bl { bottom: 18%; left: -28px; }

    /* ── Problem ────────────────────────────────────────────────── */
    .section-problem { padding: 100px 0; background: #fff; }
    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
      margin-top: 52px;
    }
    .problem-list { display: flex; flex-direction: column; gap: 18px; }
    .problem-item {
      display: flex;
      gap: 16px;
      padding: 20px 22px;
      border-radius: var(--radius);
      border: 1.5px solid var(--cream-dark);
      transition: border-color .2s, box-shadow .2s;
      background: var(--cream);
    }
    .problem-item:hover { border-color: var(--green-mint); box-shadow: var(--shadow); }
    .problem-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: var(--green-light);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: var(--green-dark);
    }
    .problem-icon [data-lucide] { width: 22px; height: 22px; }
    .problem-text h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 4px; }
    .problem-text p  { font-size: .9rem; color: var(--text-muted); }

    /* Before/after visual */
  .ba-visual {
  background: var(--cream);
  border-radius: 24px;
  padding: 32px 28px;
  border: 1.5px solid var(--cream-dark);
  min-height: 530px;
  
  /* Ajoute ces 3 lignes pour le centrage */
  display: flex;
  justify-content: center; /* Centre horizontalement */
  align-items: center;     /* Centre verticalement */
  flex-direction: column;  /* Garde les éléments les uns sous les autres si tu en as plusieurs */
}
    .ba-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 14px; }
    .ba-label.before { color: #c9a090; }
    .ba-label.after  { color: var(--green-dark); }
    .ba-card-before {
      background: #fff;
      border-radius: 10px;
      padding: 18px;
      border: 1px solid #e8ddd4;
      opacity: .7;
      position: relative;
      overflow: hidden;
    }
    .ba-card-before::after {
      content: '✕';
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      font-size: 3.5rem;
      color: var(--salmon);
      opacity: .2;
      font-weight: 900;
    }
    .ba-line { height: 8px; background: #ede5de; border-radius: 99px; margin-bottom: 8px; }
    .ba-line.short { width: 55%; }
    .ba-divider {
      display: flex; align-items: center; justify-content: center;
      gap: 10px; margin: 18px 0;
      font-size: .78rem; font-weight: 700; color: var(--text-muted);
    }
    .ba-divider::before, .ba-divider::after {
      content: ''; flex: 1; height: 1px; background: var(--cream-dark);
    }
    .ba-card-after {
      background: var(--green-light);
      border-radius: 10px;
      padding: 16px;
      border: 1.5px solid var(--green-mid);
    }
    .ba-row {
      display: flex; align-items: center; gap: 64px;
      font-size: .78rem; font-weight: 600; color: var(--green-dark);
      padding: 5px 0;
    }
    .ba-row [data-lucide] { width: 16px; height: 16px; color: var(--green-mint); }

    /* ── How it works ───────────────────────────────────────────── */
    .section-how {
      padding: 100px 0;
      background: var(--cream);
    }
    .how-header { text-align: center; max-width: 580px; margin: 0 auto 64px; }
    .how-header .section-sub { margin: 14px auto 0; }
    .how-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .how-card {
      background: #fff;
      border-radius: 22px;
      padding: 34px 28px;
      border: 1.5px solid var(--cream-dark);
      position: relative;
      transition: transform .2s, box-shadow .2s;
    }
    .how-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
    .how-step-num {
      position: absolute;
      top: 24px; right: 24px;
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--cream);
      border: 1.5px solid var(--cream-dark);
      font-size: .78rem;
      font-weight: 800;
      color: var(--text-muted);
      display: flex; align-items: center; justify-content: center;
    }
    .largeur{
        width:100%;
        display: flex; align-items: center; justify-content: center;
    }
    .how-icon {
      width:56px; height: 56px;
      background: var(--green-light);
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 22px;
      color: var(--green-dark);
    }
    .how-icon [data-lucide] { width: 26px; height: 26px; }
    .how-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
    .how-card p  { font-size: .92rem; color: var(--text-muted); line-height: 1.65; }
    .how-chip {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-top: 14px;
      font-size: .72rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 99px;
    }
    .how-chip [data-lucide] { width: 13px; height: 13px; }
    .chip-gratuit  { background: var(--green-light); color: var(--green-dark); }
    .chip-premium  { background: #FEF2EC; color: var(--salmon-dark); }

    /* ── AI Feature ─────────────────────────────────────────────── */
    .section-ai {
      padding: 100px 0;
      background: var(--green-dark);
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .section-ai::before {
      content: '';
      position: absolute; top: -200px; right: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(115,198,152,.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .ai-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .ai-content .tag { background: rgba(115,198,152,.15); color: #73C698; }
    .ai-content .section-title { color: #fff; }
    .ai-content .section-sub   { color: rgba(255,255,255,.6); }

    .ai-steps { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
    .ai-step  { display: flex; gap: 16px; }
    .ai-step-icon {
      width: 42px; height: 42px;
      background: rgba(115,198,152,.15);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: var(--green-mint);
    }
    .ai-step-icon [data-lucide] { width: 20px; height: 20px; }
    .ai-step-text h3 { font-size: .95rem; color: var(--green-mint); margin-bottom: 4px; }
    .ai-step-text p  { font-size: .88rem; color: rgba(255,255,255,.65); }

    /* Email mockup */
    .email-mock {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 20px;
      overflow: hidden;
    }
    .email-top {
      background: rgba(255,255,255,.06);
      padding: 14px 18px;
      border-bottom: 1px solid rgba(255,255,255,.06);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .email-dot { width: 10px; height: 10px; border-radius: 50%; }
    .email-subject {
      font-size: .7rem;
      font-weight: 700;
      color: rgba(255,255,255,.5);
      margin-left: 4px;
    }
    .email-body { padding: 20px 22px; }
    .email-to {
      font-size: .65rem;
      color: rgba(255,255,255,.35);
      margin-bottom: 6px;
      font-weight: 600;
    }
    .email-title {
      font-size: .82rem;
      font-weight: 800;
      color: rgba(255,255,255,.9);
      margin-bottom: 12px;
      font-family: 'Bitter', serif;
    }
    .email-p {
      font-size: .72rem;
      color: rgba(255,255,255,.6);
      line-height: 1.6;
      margin-bottom: 10px;
    }
    .email-summary {
      background: rgba(115,198,152,.1);
      border: 1px solid rgba(115,198,152,.2);
      border-radius: 10px;
      padding: 12px 14px;
      margin: 14px 0;
    }
    .email-summary-title { font-size: .65rem; font-weight: 700; color: var(--green-mint); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .06em; }
    .email-row {
      display: flex; align-items: flex-start; gap: 8px;
      font-size: .65rem; color: rgba(255,255,255,.7);
      margin-bottom: 4px; line-height: 1.5;
    }
    .email-row [data-lucide] { width: 12px; height: 12px; color: var(--green-mint); flex-shrink: 0; margin-top: 2px; }
    .email-cta-row { display: flex; gap: 8px; margin-top: 14px; }
    .email-btn {
      flex: 1; text-align: center;
      padding: 9px 8px;
      border-radius: 8px;
      font-size: .68rem;
      font-weight: 700;
    }
    .email-btn-primary { background: var(--green-mint); color: var(--green-dark); }
    .email-btn-ghost   { background: rgba(255,255,255,.08); color: rgba(255,255,255,.6); }
    .ai-badge {
      position: absolute;
      top: -14px; right: 20px;
      background: var(--salmon);
      color: #fff;
      font-size: .65rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 99px;
    }

    /* ── Vets ───────────────────────────────────────────────────── */
    .section-vets {
      padding: 100px 0;
      background: #fff;
    }
    .vets-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .vets-points { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
    .vets-point  { display: flex; gap: 14px; }
    .vets-point-icon {
      width: 38px; height: 38px;
      border-radius: 10px;
      background: var(--green-light);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: var(--green-dark);
    }
    .vets-point-icon [data-lucide] { width: 18px; height: 18px; }
    .vets-point-text h3 { font-size: .95rem; color: var(--green-dark); margin-bottom: 4px; }
    .vets-point-text p  { font-size: .88rem; color: var(--text-muted); }

    /* Dashboard visual */
    .vet-dash {
      background: var(--green-dark);
      border-radius: 22px;
      padding: 26px;
    }
    .dash-header {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 18px;
    }
    .dash-title { font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.9); }
    .dash-sub   { font-size: .65rem; color: rgba(255,255,255,.4); margin-top: 2px; }
    .dash-status {
      background: rgba(115,198,152,.2);
      color: var(--green-mint);
      font-size: .62rem; font-weight: 700;
      padding: 3px 10px; border-radius: 99px;
    }
    .patient-row {
      display: flex; align-items: center; gap: 12px;
      padding: 11px 14px;
      border-radius: 12px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.06);
      margin-bottom: 8px;
    }
    .patient-avatar { font-size: 1.2rem; }
    .patient-name  { font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.9); }
    .patient-owner { font-size: .62rem; color: rgba(255,255,255,.4); margin-top: 1px; }
    .patient-badge {
      margin-left: auto;
      font-size: .62rem; font-weight: 700;
      padding: 3px 9px; border-radius: 99px;
    }
    .badge-alert   { background: rgba(234,150,108,.15); color: #f5b591; }
    .badge-ok      { background: rgba(115,198,152,.15); color: var(--green-mint); }
    .badge-pending { background: rgba(255,255,255,.06); color: rgba(255,255,255,.4); }
    .sync-row {
      display: flex; align-items: center; gap: 9px;
      margin-top: 14px; padding: 10px 14px;
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.06);
      border-radius: 10px;
      font-size: .68rem; color: rgba(255,255,255,.45);
    }
    .pulse-dot {
      width: 7px; height: 7px;
      background: var(--green-mint);
      border-radius: 50%; flex-shrink: 0;
      animation: blink 1.6s infinite;
    }

    /* ── Beta ───────────────────────────────────────────────────── */
    .section-beta {
      padding: 100px 0;
      background: var(--cream);
    }
    .beta-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .beta-steps { margin-top: 36px; display: flex; flex-direction: column; gap: 0; position: relative; }
    .beta-steps::before {
      content: '';
      position: absolute;
      left: 19px; top: 28px; bottom: 28px;
      width: 2px; background: var(--green-mid);
    }
    .beta-step { display: flex; gap: 22px; padding-bottom: 30px; position: relative; z-index: 1; }
    .beta-step:last-child { padding-bottom: 0; }
    .step-dot {
      width: 40px; height: 40px;
      background: var(--green-mint);
      color: var(--green-dark);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: .9rem;
      flex-shrink: 0;
    }
    .step-dot.gift { background: var(--salmon); color: #fff; }
    .step-text h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 5px; }
    .step-text p  { font-size: .9rem; color: var(--text-muted); }

    /* Form */
    .beta-form-card {
      background: #fff;
      border-radius: 26px;
      padding: 40px 36px;
      border: 1.5px solid var(--cream-dark);
      box-shadow: var(--shadow);
    }
    .form-title { font-family: 'Bitter', serif; font-size: 1.4rem; font-weight: 800; color: var(--green-dark); margin-bottom: 6px; }
    .form-sub   { font-size: .88rem; color: var(--text-muted); margin-bottom: 28px; }
    .form-group { margin-bottom: 16px; }
    .form-group label {
      display: block;
      font-size: .84rem; font-weight: 700;
      margin-bottom: 7px; color: var(--green-dark);
    }
    .form-group input,
    .form-group select {
      width: 100%; padding: 13px 16px;
      border-radius: 12px;
      border: 1.5px solid var(--cream-dark);
      background: var(--cream);
      font-size: .95rem; color: var(--text);
      font-family: 'Nunito', sans-serif;
      outline: none;
      transition: border-color .2s, background .2s;
    }
    .form-group input:focus,
    .form-group select:focus {
      border-color: var(--green-mint);
      background: #fff;
    }
    .radio-group { display: flex; gap: 10px; }
    .radio-opt   { flex: 1; }
    .radio-opt input { display: none; }
    .radio-lbl {
      display: block; text-align: center;
      padding: 12px; border-radius: 12px;
      border: 1.5px solid var(--cream-dark);
      font-size: .88rem; font-weight: 700;
      cursor: pointer; transition: all .2s;
      background: var(--cream);
      color: var(--text-muted);
    }
    .radio-opt input:checked + .radio-lbl {
      border-color: var(--green-mint);
      background: var(--green-light);
      color: var(--green-dark);
    }
    .btn-submit {
      width: 100%; padding: 15px;
      margin-top: 6px; font-size: 1rem;
      justify-content: center;
    }
    .form-privacy {
      text-align: center; margin-top: 12px;
      font-size: .74rem; color: var(--text-muted);
      display: flex; align-items: center; justify-content: center; gap: 5px;
    }
    .form-privacy [data-lucide] { width: 13px; height: 13px; }

    /* ── Photo pleine largeur ────────────────────────────────────── */
    .photo-bg {
      position: relative;
      
      background-size: cover;
      background-position: center;
      background-attachment: fixed; /* parallax natif au scroll */
    }
    /* Calque sombre par-dessus la photo */
    .photo-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      
      pointer-events: none;
    }
    .photo-bg > * { position: relative; z-index: 1; }

    /* ── Bloc photo intermédiaire ────────────────────────────────── */
    .section-photo-strip {
      padding: 100px 0;
      background-image: url('image/fond-chat.jpg');
    
      text-align: center;
    }
    .photo-strip-inner { max-width: 700px; margin: 0 auto; }
    .photo-strip-inner h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 16px; }
    .photo-strip-inner p  { color: rgba(255,255,255,.7); font-size: 1.1rem; line-height: 1.75; }

    /* ── Story ──────────────────────────────────────────────────── */
    .section-story {
      padding: 110px 0;
      /* Remplacer par : background-image: url('ta-photo.jpg'); */
      background-image: linear-gradient(160deg, #0D3B11 0%, #1d6b28 60%, #0a2e0e 100%);
      --photo-overlay: rgba(13,59,17,.68);
    }
    .story-inner {
      max-width: 680px; margin: 0 auto; text-align: center;
    }
    .story-cat {display: flex; justify-content: center; align-items: center;margin-bottom:18px; }
    .story-quote {
      font-size: 1.15rem; line-height: 1.85;
      color: rgba(255,255,255,.82); font-style: italic;
    }
    .story-source { margin-top: 22px; font-size: .88rem; font-weight: 700; color: var(--green-mint); }

    /* ── Footer ─────────────────────────────────────────────────── */
    footer {
      background: var(--green-dark);
      padding: 40px 0;
    }
    .footer-inner {
      display: flex; justify-content: space-between; align-items: center;
    }
    .footer-logo { height: 30px; width: auto; }
    .footer-links { display: flex; gap: 28px; }
    .footer-links a {
      font-size: .85rem; font-weight: 600;
      color: rgba(255,255,255,.45);
      transition: color .15s;
    }
    .footer-links a:hover { color: #fff; }
    .footer-copy { font-size: .82rem; color: rgba(255,255,255,.3); }

    /* ── Scroll animations ──────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }
    .reveal-delay-5 { transition-delay: .5s; }

    /* ── Responsive ─────────────────────────────────────────────── */
    @media (max-width: 940px) {
      .hero-grid, .problem-grid, .ai-grid, .vets-grid, .beta-grid { grid-template-columns: 1fr; gap: 44px; }
      .how-grid { grid-template-columns: 1fr 1fr; }
      .phone-wrap { order: -1; }
      .pill-tl, .pill-bl { display: none; }
      nav .nav-links { display: none; }
    }
    @media (max-width: 580px) {
      .how-grid { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
      .footer-links { flex-wrap: wrap; justify-content: center; }
    }