/* ============================================================
   ALTEA NUTRITION — Feuille de style partagée (v2)
   Palette d'origine : rose #ff84a5 · turquoise #29c4a9
   Typo : Oswald (titres) + Open Sans (texte)
   ============================================================ */

:root {
  --rose:        #ff84a5;
  --rose-dark:   #f76089;
  --rose-soft:   #ffd9e3;
  --teal:        #29c4a9;
  --teal-dark:   #1ea58d;
  --teal-soft:   #d3f3ec;
  --ink:         #2b2b33;
  --ink-soft:    #5b5b66;
  --paper:       #ffffff;
  --cream:       #fdf7f4;
  --line:        #efe7e3;
  --shadow:      0 18px 50px -25px rgba(43, 43, 51, .35);
  --shadow-sm:   0 8px 24px -14px rgba(43, 43, 51, .3);
  --radius:      22px;
  --radius-sm:   14px;
  --maxw:        1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}
h1, h2, h3, .display {
  font-family: 'Oswald', Helvetica, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: .5px;
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.eyebrow {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--teal-dark);
  display: inline-block;
  margin-bottom: 14px;
}
.eyebrow.rose { color: var(--rose-dark); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: .92rem;
  padding: 15px 30px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(255, 132, 165, .85);
}
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-3px); box-shadow: 0 20px 38px -14px rgba(255, 132, 165, .9); }
.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 14px 30px -12px rgba(41, 196, 169, .8); }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-3px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-dark); transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--rose-dark); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none !important; }

/* ============ HEADER ============ */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
header.scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(0,0,0,.4); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.brand-logo { height: 52px; width: auto; flex-shrink: 0; }
@media (max-width: 640px) { .brand-logo { height: 42px; } }
.brand-name { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1.32rem; letter-spacing: 2px; text-transform: uppercase; }
.brand-name span { color: var(--rose); }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  transition: color .2s ease;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--rose); transition: width .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s; }

.mobile-menu {
  display: none; position: fixed; inset: 78px 0 auto 0; z-index: 99;
  background: #fff; flex-direction: column; padding: 20px 24px 30px;
  box-shadow: var(--shadow); gap: 6px;
}
.mobile-menu a {
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1.2px;
  padding: 14px 4px; border-bottom: 1px solid var(--line); color: var(--ink-soft);
}
.mobile-menu .btn { margin-top: 16px; justify-content: center; }
.mobile-menu.open { display: flex; }

/* ============ HERO (home) ============ */
.hero { position: relative; padding: 90px 0 110px; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(circle at 12% 18%, var(--rose-soft) 0%, transparent 42%),
    radial-gradient(circle at 88% 78%, var(--teal-soft) 0%, transparent 45%),
    var(--cream);
}
.blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; z-index: -1; }
.blob.b1 { width: 320px; height: 320px; background: var(--rose-soft); top: -80px; right: -60px; }
.blob.b2 { width: 240px; height: 240px; background: var(--teal-soft); bottom: -70px; left: -50px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 5.2vw, 4.1rem); font-weight: 600; }
.hero h1 .accent { color: var(--rose); }
.hero .lead { font-size: 1.18rem; color: var(--ink-soft); margin: 24px 0 34px; max-width: 30ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-trust { display: flex; align-items: center; gap: 18px; margin-top: 40px; flex-wrap: wrap; }
.hero-trust img { height: 58px; width: auto; opacity: .92; }
.hero-trust .trust-txt { font-size: .82rem; color: var(--ink-soft); line-height: 1.4; }

.hero-visual { position: relative; }
.hero-photo {
  border-radius: 30px 30px 30px 90px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 4.4;
  background: var(--rose-soft);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: 26px; left: -26px;
  background: #fff; border-radius: 18px; padding: 16px 22px;
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 14px;
}
.hero-badge .dot { width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; }
.hero-badge .dot svg { width: 24px; height: 24px; display: block; }
.q-ico { display: flex; justify-content: center; margin-bottom: 14px; }
.q-ico svg { width: 48px; height: 48px; display: block; }
.hero-badge b { font-family: 'Oswald', sans-serif; font-size: 1.05rem; letter-spacing: .5px; display: block; }
.hero-badge small { color: var(--ink-soft); font-size: .8rem; }

/* ============ PAGE HERO (sous-pages) ============ */
.page-hero { position: relative; padding: 64px 0 56px; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 85% 20%, var(--teal-soft) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, var(--rose-soft) 0%, transparent 45%),
    var(--cream);
}
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
.page-hero p { color: var(--ink-soft); margin-top: 16px; max-width: 56ch; font-size: 1.1rem; }
.breadcrumb { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1.5px; font-size: .78rem; color: var(--ink-soft); margin-bottom: 18px; }
.back-btn { padding: 9px 20px; font-size: .8rem; letter-spacing: 1px; background: #fff; margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--rose-dark); }
.breadcrumb span { color: var(--teal-dark); }

/* ============ SECTION SHELL ============ */
section { padding: 96px 0; }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.sec-head h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
.sec-head p { color: var(--ink-soft); margin-top: 16px; font-size: 1.08rem; }

/* ============ ABOUT ============ */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-media .frame {
  border-radius: 90px 30px 30px 30px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/5.4;
}
.about-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-media .stamp {
  position: absolute; top: -22px; right: -16px; background: #fff; border-radius: 16px;
  padding: 12px; box-shadow: var(--shadow-sm); width: 96px;
}
.about-media .stamp img { width: 100%; }
.about h2 { font-size: clamp(2rem, 3.4vw, 2.7rem); margin-bottom: 8px; }
.about .role { font-family: 'Oswald', sans-serif; color: var(--teal-dark); letter-spacing: 1.5px; text-transform: uppercase; font-size: .95rem; margin-bottom: 22px; }
.about p + p { margin-top: 16px; }
.about p { color: var(--ink-soft); }
.about .facts { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.fact { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 20px; flex: 1 1 150px; }
.fact b { font-family: 'Oswald', sans-serif; font-size: 1.7rem; color: var(--rose); display: block; line-height: 1; }
.fact span { font-size: .85rem; color: var(--ink-soft); }

/* ============ PILIERS ============ */
.piliers { background: var(--cream); }
.pil-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pil-card {
  background: #fff; border-radius: var(--radius); padding: 34px 28px;
  border: 1px solid var(--line); transition: transform .3s ease, box-shadow .3s ease;
}
.pil-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.pil-ic {
  width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center;
  margin-bottom: 20px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.pil-ic svg { width: 34px; height: 34px; display: block; }
.pil-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.pil-card p { font-size: .96rem; color: var(--ink-soft); }

/* ============ ACCOMPAGNEMENT ============ */
.accomp-intro { background: #fff; }
.accomp-narrow { max-width: 760px; margin: 0 auto; }
.accomp-intro h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 18px; }
.accomp-intro p { color: var(--ink-soft); margin-bottom: 16px; }
.quote {
  margin: 30px 0 0; padding: 22px 28px; border-left: 4px solid var(--rose);
  background: var(--cream); border-radius: 0 14px 14px 0;
  font-family: 'Oswald', sans-serif; font-weight: 300; font-style: italic;
  font-size: 1.3rem; color: var(--ink); line-height: 1.4;
}
.quote cite { display: block; margin-top: 12px; font-size: .78rem; font-style: normal; letter-spacing: 1.6px; text-transform: uppercase; color: var(--rose-dark); font-weight: 500; }

.journey-sec { background: var(--cream); }
.journey { max-width: 720px; margin: 0 auto; }
.step { display: flex; gap: 24px; position: relative; padding-bottom: 34px; }
.step:last-child { padding-bottom: 0; }
.step-num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: var(--rose); color: #fff; font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: 1.25rem; display: grid; place-items: center; z-index: 1;
  box-shadow: 0 8px 20px -8px rgba(255, 132, 165, .9);
}
.step:not(:last-child)::before { content: ''; position: absolute; left: 23px; top: 52px; bottom: 4px; width: 2px; background: var(--rose-soft); }
.step-body { padding-top: 7px; }
.step-body h3 { font-size: 1.25rem; margin-bottom: 6px; }
.step-body p { color: var(--ink-soft); font-size: .97rem; }

.domaines-sec { background: #fff; }
.domaine-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 24px; margin: 8px 0 0; }
.note-medical { margin-top: 24px; font-size: .88rem; color: var(--teal-dark); background: var(--teal-soft); border-radius: 12px; padding: 14px 18px; }

.accomp-teaser { background: #fff; }
.mini-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.mini-step { text-align: center; padding: 26px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .3s ease, box-shadow .3s ease; }
.mini-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.ms-num { display: grid; place-items: center; width: 40px; height: 40px; margin: 0 auto 14px; border-radius: 50%; background: var(--rose-soft); color: var(--rose-dark); font-family: 'Oswald', sans-serif; font-weight: 600; }
.mini-step b { display: block; font-family: 'Oswald', sans-serif; font-size: 1rem; letter-spacing: .3px; margin-bottom: 6px; }
.mini-step span:not(.ms-num) { font-size: .82rem; color: var(--ink-soft); line-height: 1.45; }

/* approche : sous-bloc « comment ça se passe » fusionné */
.approche-steps { margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--line); }
.approche-steps-title { text-align: center; font-size: 1.7rem; }
.approche-steps-sub { text-align: center; color: var(--ink-soft); max-width: 52ch; margin: 8px auto 34px; }

/* Timeline horizontale « Comment ça se passe » */
.timeline-h { display: grid; grid-template-columns: repeat(5, 1fr); max-width: 980px; margin: 0 auto; }
.th-step { text-align: center; position: relative; padding: 0 6px; }
.th-step:not(:last-child)::after { content: ''; position: absolute; top: 23px; left: 50%; width: 100%; height: 2px; background: var(--rose-soft); z-index: 0; }
.th-num { position: relative; z-index: 1; width: 46px; height: 46px; border-radius: 50%; background: var(--rose); color: #fff; font-family: 'Oswald', sans-serif; font-weight: 600; display: grid; place-items: center; margin: 0 auto 16px; box-shadow: 0 8px 20px -8px rgba(255,132,165,.9); }
.th-step b { display: block; font-family: 'Oswald', sans-serif; font-size: .98rem; letter-spacing: .3px; margin-bottom: 5px; }
.th-step > span:not(.th-num) { font-size: .82rem; color: var(--ink-soft); line-height: 1.45; display: block; padding: 0 4px; }
@media (max-width: 768px) {
  .timeline-h { grid-template-columns: 1fr; gap: 24px; max-width: 340px; }
  .th-step:not(:last-child)::after { display: none; }
}

/* Piliers en mode texte (sans encadré) */
.pil-grid.as-text .pil-card { background: transparent; border: none; box-shadow: none; padding: 0 6px; }
.pil-grid.as-text .pil-card:hover { transform: none; box-shadow: none; }
.pil-grid.as-text .pil-ic { background: transparent; border: none; box-shadow: none; width: auto; height: auto; margin-bottom: 14px; justify-items: start; }

/* Pourquoi me choisir */
.why { background: #fff; }
.why-grid { grid-template-columns: repeat(3, 1fr); }

/* Mes outils */
.tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ============ SERVICES (grille) ============ */
.services { background: #fff; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.svc-card {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px 32px; display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  background: #fff;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card.featured { border: 2px solid var(--rose); background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.svc-tag {
  position: absolute; top: -14px; left: 30px; background: var(--rose); color: #fff;
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1.5px;
  font-size: .72rem; padding: 6px 16px; border-radius: 100px;
}
.svc-kicker { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1.5px; font-size: .78rem; color: var(--teal-dark); margin-bottom: 8px; }
.svc-card h3 { font-size: 1.42rem; margin-bottom: 10px; }
.svc-price { font-family: 'Oswald', sans-serif; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
.svc-price b { font-size: 2rem; color: var(--rose); }
.svc-price .cur { font-size: 1rem; color: var(--rose); }
.svc-price small { display: block; font-family: 'Open Sans', sans-serif; font-weight: 400; font-size: .76rem; color: var(--ink-soft); letter-spacing: 0; text-transform: none; margin-top: 2px; }
.svc-card > p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 20px; }
.svc-list { list-style: none; margin-bottom: 26px; display: flex; flex-direction: column; gap: 11px; }
.svc-list li { position: relative; padding-left: 30px; font-size: .94rem; color: var(--ink); }
.svc-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-dark);
  display: grid; place-items: center; font-size: .72rem; font-weight: 700;
}
.svc-actions { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }
.svc-actions .btn { flex: 1; justify-content: center; }
.svc-card .btn { justify-content: center; }

/* ============ SERVICE DETAIL ============ */
.svc-detail { background: #fff; }
.detail-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; align-items: start; }
.detail-body h2 { font-size: 1.7rem; margin: 38px 0 16px; }
.detail-body h2:first-child { margin-top: 0; }
.detail-body p { color: var(--ink-soft); margin-bottom: 14px; }
.detail-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin: 6px 0 8px; }
.detail-list li { position: relative; padding-left: 34px; color: var(--ink); }
.detail-list li::before {
  content: '✓'; position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-dark);
  display: grid; place-items: center; font-size: .75rem; font-weight: 700;
}
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.benefit { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; }
.benefit b { font-family: 'Oswald', sans-serif; color: var(--rose-dark); display: block; margin-bottom: 4px; font-size: 1rem; letter-spacing: .3px; }
.benefit span { font-size: .9rem; color: var(--ink-soft); }

.detail-aside { position: sticky; top: 100px; }
.price-card {
  border: 2px solid var(--rose); border-radius: var(--radius); padding: 30px 28px;
  background: linear-gradient(180deg, #fff, var(--cream)); box-shadow: var(--shadow-sm);
}
.price-card .pc-name { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1.2px; font-size: .8rem; color: var(--teal-dark); }
.price-card .pc-amount { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 3rem; color: var(--rose); line-height: 1; margin: 8px 0 2px; }
.price-card .pc-amount .cur { font-size: 1.3rem; vertical-align: super; }
.price-card .pc-note { font-size: .8rem; color: var(--ink-soft); margin-bottom: 20px; }
.price-meta { list-style: none; border-top: 1px solid var(--line); padding-top: 18px; margin-bottom: 22px; display: flex; flex-direction: column; gap: 12px; }
.price-meta li { display: flex; align-items: center; gap: 12px; font-size: .92rem; color: var(--ink); }
.price-meta .ic { width: 30px; height: 30px; border-radius: 9px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0; }
.price-meta .ic svg { width: 18px; height: 18px; display: block; }
.price-card .btn { width: 100%; justify-content: center; }
.price-card .pc-small { text-align: center; font-size: .8rem; color: var(--ink-soft); margin-top: 14px; }

/* ============ CTA FINAL ============ */
.cta { padding: 0 0 96px; }
.cta-box {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--rose) 0%, var(--rose-dark) 55%, var(--teal) 140%);
  border-radius: 34px; padding: 70px 50px; text-align: center; color: #fff;
  box-shadow: var(--shadow);
}
.cta-box::before, .cta-box::after { content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,.12); }
.cta-box::before { width: 280px; height: 280px; top: -120px; left: -80px; }
.cta-box::after { width: 220px; height: 220px; bottom: -110px; right: -50px; }
.cta-box h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); position: relative; }
.cta-box p { position: relative; max-width: 50ch; margin: 18px auto 32px; font-size: 1.15rem; opacity: .95; }
.cta-box .btn { position: relative; }

/* ============ CONTACT ============ */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 54px; align-items: start; }
.contact-info h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.contact-info > p { color: var(--ink-soft); margin-bottom: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-item .ic { width: 48px; height: 48px; border-radius: 14px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: grid; place-items: center; flex-shrink: 0; }
.contact-item .ic svg { width: 26px; height: 26px; display: block; }
.contact-item h4 { font-family: 'Oswald', sans-serif; letter-spacing: .5px; font-size: 1rem; margin-bottom: 3px; }
.contact-item a, .contact-item p { color: var(--ink-soft); font-size: .95rem; }
.contact-item a:hover { color: var(--rose-dark); }

.form-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 34px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: .78rem; color: var(--ink); margin-bottom: 8px; }
.field label .req { color: var(--rose); }
.field input, .field select, .field textarea {
  width: 100%; font-family: 'Open Sans', sans-serif; font-size: .98rem; color: var(--ink);
  padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(255,132,165,.15);
}
.field input.field-error, .field select.field-error, .field textarea.field-error {
  border-color: #e0395a; background: #fff6f8;
}
.field input.field-error:focus, .field textarea.field-error:focus {
  box-shadow: 0 0 0 3px rgba(224,57,90,.15);
}
.field-row { display: grid; grid-template-columns: 110px 1fr; gap: 12px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.field-grid .field { margin-bottom: 0; }
@media (max-width: 480px) { .field-grid { grid-template-columns: 1fr; } }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: .8rem; color: var(--ink-soft); text-align: center; margin-top: 14px; }
.form-status { display: none; padding: 16px 18px; border-radius: 12px; font-size: .95rem; margin-bottom: 18px; }
.form-status.ok { display: block; background: var(--teal-soft); color: var(--teal-dark); border: 1px solid var(--teal); }
.form-status.err { display: block; background: #ffe2e8; color: var(--rose-dark); border: 1px solid var(--rose); }

/* ============ FOOTER ============ */
footer { background: var(--ink); color: #cfcfd8; padding: 64px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.foot-brand img { height: 44px; filter: brightness(0) invert(1); opacity: .92; }
.foot-brand .brand-name { color: #fff; }
.foot-brand .brand-name span { color: var(--rose); }
footer p { color: #a8a8b4; font-size: .95rem; max-width: 36ch; }
.foot-col h4 { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1.5px; color: #fff; font-size: .95rem; margin-bottom: 18px; }
.foot-col a, .foot-col li { display: block; color: #a8a8b4; font-size: .95rem; margin-bottom: 11px; transition: color .2s ease; list-style: none; }
.foot-col a:hover { color: var(--rose); }
.foot-bottom { padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: #80808c; }
.foot-bottom a:hover { color: var(--teal); }

/* ============ REVEAL ANIM ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-grid, .about-grid, .detail-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 440px; margin-inline: auto; order: -1; }
  .about-media { max-width: 420px; margin-inline: auto; }
  .pil-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .tool-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-aside { position: static; max-width: 440px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .mini-steps { grid-template-columns: repeat(2, 1fr); }
}
/* ============ HEADER RESPONSIVE ============ */
@media (max-width: 1280px) {
  .nav-cta .btn-ghost { display: none; }   /* masque « Les formules » (doublon du menu) */
  .nav-links { gap: 20px; }
}
@media (max-width: 1140px) {
  .nav-links { display: none; }            /* bascule en menu burger */
  .burger { display: flex; }
}
@media (max-width: 600px) {
  .nav-cta .btn-primary { display: none; } /* le CTA reste dans le menu déroulant */
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  section { padding: 70px 0; }
  .pil-grid, .svc-grid, .benefit-grid { grid-template-columns: 1fr; }
  .tool-grid, .why-grid { grid-template-columns: 1fr; }
  .mini-steps, .domaine-cols { grid-template-columns: 1fr; }
  .quote { font-size: 1.15rem; padding: 18px 22px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 56px 0 80px; }
  .cta-box { padding: 54px 26px; }
  .form-card { padding: 28px 22px; }
}
