/* =========================================================
   Target-CRM — Feuille de style principale
   Couleurs extraites du logo officiel :
   navy #00273B · teal #00ACA6 · teal-mid #00939C · teal-dark #007480
   ========================================================= */

:root {
  --navy: #00273B;
  --navy-2: #003A57;
  --navy-3: #0B4A6B;
  --teal: #00ACA6;
  --teal-mid: #00939C;
  --teal-dark: #007480;
  --teal-soft: #E1F5F4;
  --ink: #12222D;
  --ink-2: #3E545F;
  --bg: #FFFFFF;
  --bg-soft: #F4F9F9;
  --line: #DEEAEA;
  --white: #FFFFFF;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 40px rgba(0, 39, 59, .10);
  --shadow-lg: 0 24px 70px rgba(0, 39, 59, .18);
  --grad: linear-gradient(120deg, var(--teal) 0%, var(--teal-dark) 100%);
  --grad-text: linear-gradient(100deg, #2BD9D2 0%, #00ACA6 55%, #35C7E8 100%);
  --font-head: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-dark); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.15; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--ink-2); }

.container { width: min(1160px, 92%); margin-inline: auto; }
section { padding: clamp(64px, 8vw, 110px) 0; position: relative; }

/* ---------- Utilitaires ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-soft);
  padding: .45rem 1rem; border-radius: 100px; margin-bottom: 1.1rem;
}
.kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: .9rem; font-size: 1.06rem; }
.grad-text { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: .95rem 1.9rem; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 10px 26px rgba(0, 150, 145, .35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0, 150, 145, .45); }
.btn-ghost { background: transparent; color: var(--navy); border-color: rgba(0, 39, 59, .25); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-dark); transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--navy); box-shadow: 0 10px 26px rgba(0, 0, 0, .18); }
.btn-light:hover { transform: translateY(-3px); }
.on-dark .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .35); }
.on-dark .btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 30px rgba(0, 39, 59, .07); }
.nav-inner { display: flex; align-items: center; gap: 2rem; height: 74px; }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; gap: 1.6rem; margin-left: auto; align-items: center; list-style: none; }
.nav-links a {
  font-family: var(--font-head); font-weight: 500; font-size: .95rem; color: var(--navy);
  position: relative; padding: .3rem 0; white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2.5px; width: 0;
  background: var(--grad); border-radius: 2px; transition: width .28s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--teal-dark); }
.nav-cta { margin-left: .5rem; }
.nav-cta .btn { padding: .65rem 1.4rem; font-size: .92rem; }
.nav-phone {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: .95rem;
}
.nav-phone svg { width: 17px; height: 17px; color: var(--teal-dark); }
.burger {
  display: none; margin-left: auto; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center;
}
.burger span, .burger span::before, .burger span::after {
  content: ""; display: block; width: 24px; height: 2.5px; background: var(--navy);
  border-radius: 2px; position: relative; transition: all .3s ease;
}
.burger span::before { position: absolute; top: -8px; }
.burger span::after { position: absolute; top: 8px; }
.nav.open .burger span { background: transparent; }
.nav.open .burger span::before { top: 0; transform: rotate(45deg); }
.nav.open .burger span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Héros ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1100px 600px at 85% -10%, rgba(0, 172, 166, .35), transparent 60%),
              radial-gradient(900px 600px at -10% 110%, rgba(0, 116, 128, .4), transparent 60%),
              linear-gradient(160deg, var(--navy) 0%, #012F47 55%, #013246 100%);
  color: #fff;
  padding: 170px 0 110px;
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: radial-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 70%, transparent);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { color: #fff; margin: 1.1rem 0 1.3rem; }
.hero .lead { font-size: 1.14rem; color: #C7DAE2; max-width: 540px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255, 255, 255, .09); border: 1px solid rgba(255, 255, 255, .18);
  color: #B8F0EC; font-size: .86rem; font-weight: 500;
  padding: .5rem 1.05rem; border-radius: 100px; backdrop-filter: blur(6px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #2BD9D2; box-shadow: 0 0 12px #2BD9D2; animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: .4; } }
.hero-ctas { display: flex; gap: 1rem; margin-top: 2.1rem; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 2.2rem; margin-top: 2.8rem; flex-wrap: wrap; }
.hero-trust .item strong { font-family: var(--font-head); font-size: 1.5rem; display: block; color: #fff; }
.hero-trust .item > span { font-size: .84rem; color: #9FBECB; }

/* Mockup produit dans le héros */
.hero-visual { position: relative; }
.mockup {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 20px; padding: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .45);
  transform: perspective(1200px) rotateY(-7deg) rotateX(3deg);
  transition: transform .6s ease;
}
.hero-visual:hover .mockup { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }
.mockup svg { width: 100%; height: auto; border-radius: 12px; display: block; }
.float-card {
  position: absolute; background: #fff; border-radius: 14px; padding: .85rem 1.1rem;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .7rem;
  animation: floaty 5.5s ease-in-out infinite;
}
.float-card .ic {
  width: 38px; height: 38px; border-radius: 10px; background: var(--teal-soft);
  display: flex; align-items: center; justify-content: center; color: var(--teal-dark); flex: none;
}
.float-card .ic svg { width: 20px; height: 20px; }
.float-card b { font-family: var(--font-head); color: var(--navy); font-size: .92rem; display: block; line-height: 1.2; }
.float-card small { color: var(--ink-2); font-size: .78rem; }
.fc-1 { top: -26px; right: -14px; animation-delay: .8s; }
.fc-2 { bottom: -24px; left: -20px; }
@keyframes floaty { 50% { transform: translateY(-12px); } }

/* ---------- Bandeau logos / intégrations ---------- */
.logo-strip { padding: 2.2rem 0; border-bottom: 1px solid var(--line); }
.logo-strip p { text-align: center; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 1.1rem; font-weight: 600; }
.chips { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }
.chip {
  font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--navy);
  background: var(--bg-soft); border: 1px solid var(--line);
  padding: .55rem 1.2rem; border-radius: 100px; transition: all .25s ease;
}
.chip:hover { border-color: var(--teal); color: var(--teal-dark); transform: translateY(-2px); }

/* ---------- Cartes modules ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--teal-soft);
  color: var(--teal-dark); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .55rem; }
.card p { font-size: .95rem; }
.card ul { margin-top: .8rem; list-style: none; }
.card ul li { font-size: .9rem; color: var(--ink-2); padding: .22rem 0 .22rem 1.5rem; position: relative; }
.card ul li::before {
  content: ""; position: absolute; left: 0; top: .52rem; width: 15px; height: 15px;
  background: var(--teal-soft); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300747F' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-11'/%3E%3C/svg%3E");
  background-size: 9px; background-position: center; background-repeat: no-repeat;
}
.card .link-more { font-family: var(--font-head); font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: .35rem; margin-top: 1rem; }
.card .link-more::after { content: "→"; transition: transform .25s ease; }
.card .link-more:hover::after { transform: translateX(4px); }

/* ---------- Section sombre (différenciateur) ---------- */
.dark-section {
  background: radial-gradient(900px 500px at 110% 0%, rgba(0, 172, 166, .25), transparent 55%),
              linear-gradient(150deg, var(--navy), #012F47);
  color: #fff;
}
.dark-section h2, .dark-section h3 { color: #fff; }
.dark-section p { color: #B9CEDA; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.num-list { list-style: none; display: grid; gap: 1.5rem; margin-top: 2rem; }
.num-list li { display: flex; gap: 1.1rem; }
.num-list .n {
  font-family: var(--font-head); font-weight: 700; flex: none;
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: 0 8px 20px rgba(0, 150, 145, .4);
}
.num-list b { font-family: var(--font-head); color: var(--navy); display: block; margin-bottom: .2rem; font-size: 1.04rem; }
.dark-section .num-list b { color: #fff; }
.num-list p { font-size: .95rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.stat {
  text-align: center; background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .13); border-radius: var(--radius); padding: 1.7rem 1rem;
}
.stat b { font-family: var(--font-head); font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: #fff; display: block; }
.stat b .unit { font-size: .6em; color: var(--teal); }
.stat > span { font-size: .87rem; color: #9FBECB; }

/* ---------- Tableau comparatif ---------- */
.compare-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
table.compare { width: 100%; border-collapse: collapse; background: #fff; min-width: 640px; }
table.compare th, table.compare td { padding: 1rem 1.2rem; text-align: left; border-bottom: 1px solid var(--line); font-size: .95rem; }
table.compare thead th { font-family: var(--font-head); background: var(--navy); color: #fff; font-size: .92rem; }
table.compare thead th:first-child { border-radius: 0; }
table.compare td.yes { color: var(--teal-dark); font-weight: 600; }
table.compare td.no { color: #B04A3A; }
table.compare tbody tr:hover { background: var(--bg-soft); }
table.compare .hl { background: var(--teal-soft); }

/* ---------- Témoignages ---------- */
.testi-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testi {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; display: flex; flex-direction: column; gap: 1.1rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.testi:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testi .starz { color: #F2B01E; letter-spacing: .15em; font-size: .95rem; }
.testi p { font-size: .95rem; flex: 1; }
.testi .who { display: flex; align-items: center; gap: .85rem; }
.testi .avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: var(--grad); color: #fff; font-family: var(--font-head); font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}
.testi .who b { font-family: var(--font-head); color: var(--navy); display: block; line-height: 1.2; }
.testi .who small { color: var(--ink-2); font-size: .82rem; }

/* ---------- Marquee secteurs ---------- */
.marquee { overflow: hidden; padding: 1.6rem 0; background: var(--navy); }
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: scrollx 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-head); font-weight: 600; letter-spacing: .18em; font-size: .85rem;
  color: rgba(255, 255, 255, .7); text-transform: uppercase; display: flex; align-items: center; gap: 3rem;
}
.marquee-track span::after { content: "✕"; color: var(--teal); font-size: .7rem; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- Prix ---------- */
.price-card {
  max-width: 460px; margin-inline: auto; text-align: center;
  background: #fff; border-radius: 26px; padding: 3rem 2.4rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.price-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 6px; background: var(--grad); }
.price-card .amount { font-family: var(--font-head); font-size: 4.6rem; font-weight: 700; color: var(--navy); line-height: 1; }
.price-card .amount sup { font-size: .38em; top: -1.4em; color: var(--teal-dark); }
.price-card .per { color: var(--ink-2); margin-top: .3rem; }
.price-card ul { list-style: none; margin: 1.8rem 0; text-align: left; }
.price-card ul li { padding: .5rem 0 .5rem 2rem; position: relative; border-bottom: 1px dashed var(--line); font-size: .96rem; color: var(--ink-2); }
.price-card ul li:last-child { border-bottom: 0; }
.price-card ul li::before {
  content: ""; position: absolute; left: 0; top: .72rem; width: 19px; height: 19px; border-radius: 50%;
  background: var(--teal-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300747F' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-11'/%3E%3C/svg%3E");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: .9rem; background: #fff; overflow: hidden; transition: box-shadow .3s ease; }
.faq-item[open] { box-shadow: var(--shadow); }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--font-head); font-weight: 600; color: var(--navy); padding: 1.15rem 1.4rem; font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.5rem; color: var(--teal-dark); transition: transform .3s ease; flex: none; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.4rem 1.3rem; font-size: .97rem; color: var(--ink-2); }

/* ---------- CTA final ---------- */
.cta-final {
  background: radial-gradient(800px 400px at 50% -20%, rgba(0, 172, 166, .4), transparent 60%),
              linear-gradient(160deg, var(--navy), #013247);
  border-radius: 28px; color: #fff; text-align: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  position: relative; overflow: hidden;
}
.cta-final h2 { color: #fff; max-width: 640px; margin-inline: auto; }
.cta-final p { color: #B9CEDA; margin: 1rem auto 2rem; max-width: 520px; }
.cta-final .hero-ctas { justify-content: center; }
.cta-phone-big {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  color: #fff; display: inline-flex; align-items: center; gap: .8rem; margin-top: 1.4rem;
}
.cta-phone-big svg { width: 30px; height: 30px; color: var(--teal); }
.cta-phone-big:hover { color: var(--teal); }

/* ---------- Formulaire contact ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: .4rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .9rem 1.1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .97rem; color: var(--ink); background: #fff;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(0, 172, 166, .14);
}
.contact-card {
  background: var(--navy); color: #fff; border-radius: var(--radius); padding: 2.2rem;
  display: flex; flex-direction: column; gap: 1.4rem;
}
.contact-card h3 { color: #fff; }
.contact-card a { color: var(--teal); font-weight: 600; }
.contact-card .row { display: flex; gap: .9rem; align-items: flex-start; }
.contact-card .row svg { width: 21px; height: 21px; color: var(--teal); flex: none; margin-top: .2rem; }
.contact-card .row small { color: #9FBECB; display: block; font-size: .8rem; }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: .85rem; color: #9FBECB; margin-bottom: 1rem; }
.crumbs a { color: #C7DAE2; }
.crumbs a:hover { color: var(--teal); }

/* ---------- Page header (sous-pages) ---------- */
.page-hero { padding: 150px 0 80px; }
.page-hero .lead { font-size: 1.12rem; }

/* ---------- Footer ---------- */
footer { background: #001B29; color: #8FAEBD; padding: 4rem 0 2rem; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 3rem; }
footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: .55rem; }
footer a { color: #8FAEBD; transition: color .2s ease; }
footer a:hover { color: var(--teal); }
.footer-logo { margin-bottom: 1rem; }
.footer-logo svg, .footer-logo img { height: 42px; width: auto; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .84rem; }

/* ---------- Révélation au scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; } .reveal-d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .float-card, .marquee-track, .hero-badge .dot { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .cards-grid, .testi-track { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero { padding-top: 130px; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-visual { max-width: 540px; }
  .nav-links {
    position: fixed; inset: 74px 0 auto 0; background: #fff; flex-direction: column;
    padding: 1.5rem 6%; gap: 1.1rem; align-items: flex-start;
    border-bottom: 1px solid var(--line); box-shadow: 0 30px 50px rgba(0, 39, 59, .12);
    transform: translateY(-130%); transition: transform .35s ease;
  }
  .nav.open .nav-links { transform: none; }
  .burger { display: flex; }
  .nav-cta { display: none; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .cards-grid, .testi-track { grid-template-columns: 1fr; }
  body { font-size: 15.5px; }
  .fc-1, .fc-2 { display: none; }
}

/* Ajustements navigation */
.nav-phone { white-space: nowrap; }
@media (min-width: 861px) and (max-width: 1240px) { .nav-links .nav-phone { display: none; } }

/* ---------- Galerie de captures ---------- */
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.shot { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .3s ease, box-shadow .3s ease; }
.shot:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.shot img { width: 100%; height: auto; display: block; border-bottom: 1px solid var(--line); }
.shot figcaption { padding: .9rem 1.2rem; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--navy); }
@media (max-width: 860px) { .shots { grid-template-columns: 1fr; } }
.shots-2 { grid-template-columns: repeat(2, 1fr); max-width: 1040px; margin-inline: auto; }
@media (max-width: 860px) { .shots-2 { grid-template-columns: 1fr; } }

/* ---------- Deux formules tarifaires ---------- */
.price-duo { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem; max-width: 940px; margin-inline: auto; align-items: stretch; }
.price-duo .price-card { max-width: none; margin: 0; display: flex; flex-direction: column; }
.price-duo .price-card ul { flex: 1; }
.price-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--grad); color: #fff; font-family: var(--font-head); font-weight: 600;
  font-size: .74rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .85rem; border-radius: 100px;
}
.price-card.light::before { background: var(--navy); }
.price-card .amount small { font-size: .3em; font-weight: 600; color: var(--ink-2); }
@media (max-width: 860px) { .price-duo { grid-template-columns: 1fr; } }
/* ---------- Variante trois formules ---------- */
.price-trio { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 1240px; }
.price-trio .price-card .amount { font-size: 3.6rem; }
@media (max-width: 1080px) { .price-trio { grid-template-columns: 1fr; max-width: 460px; } }
