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

  :root {
    --black: #0a0a0c;
    --white: #ffffff;
    --grey: #76717f;
    --line: rgba(20, 10, 40, 0.09);
    --violet: #f1ecfa;
    --violet-deep: #e6def5;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-luxe: cubic-bezier(0.65, 0, 0.35, 1);
    --nav-h: 90px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: linear-gradient(175deg, #ffffff 0%, #fdfcff 35%, #f6f1fc 70%, var(--violet) 100%);
    background-attachment: fixed;
    color: var(--black);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    overflow-x: hidden;
  }

  ::selection { background: var(--black); color: var(--white); }

  /* ─── FOND DE PAGE (image à faible opacité) ─── */
  .page-bg {
    position: fixed; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transition: background-image 0.1s, opacity 1.2s var(--ease);
    will-change: opacity;
  }

  .orb {
    position: fixed; border-radius: 50%;
    filter: blur(90px); pointer-events: none; z-index: 0;
    opacity: 0.5;
    animation: orbFloat 18s ease-in-out infinite alternate;
  }
  .orb-1 { width: 480px; height: 480px; background: radial-gradient(circle, #ece2fb, transparent 70%); top: -10%; right: -8%; }
  .orb-2 { width: 380px; height: 380px; background: radial-gradient(circle, #f3edfc, transparent 70%); bottom: -6%; left: -6%; animation-delay: -9s; }
  @keyframes orbFloat {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-40px, 30px) scale(1.08); }
  }

  .veil {
    position: fixed; inset: 0; z-index: 900;
    background: var(--black);
    transform: scaleY(0); transform-origin: bottom;
    pointer-events: none;
  }
  .veil.sweep { animation: veilSweep 0.9s var(--ease-luxe) forwards; }
  @keyframes veilSweep {
    0%   { transform: scaleY(0); transform-origin: bottom; }
    45%  { transform: scaleY(1); transform-origin: bottom; }
    55%  { transform: scaleY(1); transform-origin: top; }
    100% { transform: scaleY(0); transform-origin: top; }
  }

  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease),
                -webkit-backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease),
                box-shadow 0.5s var(--ease);
  }
  nav.scrolled {
    background: rgba(10, 10, 12, 0.78);
    backdrop-filter: blur(22px) saturate(1.5);
    -webkit-backdrop-filter: blur(22px) saturate(1.5);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  }

  .nav-inner {
    position: relative;
    max-width: 1440px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
    padding: 24px 48px;
    gap: 20px;
    transition: padding 0.4s var(--ease);
  }
  nav.scrolled .nav-inner { padding: 14px 48px; }

  .nav-brand { cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 3px; flex-shrink: 0; justify-self: start; }
  .nav-logo-img {
    width: 42px; height: 42px; object-fit: contain; box-sizing: border-box;
    animation: logoOpacity 3.6s ease-in-out infinite;
  }
  @keyframes logoOpacity { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }
  .nav-logo-fallback {
    display: none; color: var(--white);
    font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
    animation: logoOpacity 3.6s ease-in-out infinite;
  }
  .nav-studio { font-size: 9px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.55); }

  .nav-center {
    display: flex; gap: 34px; align-items: center;
    justify-self: center;
  }
  .nav-link {
    font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; color: rgba(255,255,255,0.78);
    cursor: pointer; position: relative; padding: 6px 0;
    background: none; border: none; font-family: inherit;
    overflow: visible; white-space: nowrap;
    transition: color 0.3s var(--ease);
  }
  .nav-link:hover, .nav-link.active { color: var(--white); }
  .nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--white);
    transition: width 0.45s var(--ease);
  }
  .nav-link:hover::after, .nav-link.active::after { width: 100%; }

  .nav-utils { display: flex; gap: 14px; align-items: center; justify-self: end; }

  .lang-toggle {
    font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
    background: none; border: 1px solid rgba(255,255,255,0.24);
    padding: 7px 14px; cursor: pointer; color: rgba(255,255,255,0.85);
    font-family: inherit;
    transition: all 0.35s var(--ease);
  }
  .lang-toggle:hover { border-color: var(--white); color: var(--white); }

  .nav-connect {
    font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.24);
    padding: 9px 20px;
    cursor: pointer; color: var(--white);
    font-family: inherit;
    position: relative; overflow: hidden;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  }
  .nav-connect span { position: relative; z-index: 1; }
  .nav-connect:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.45); }

  .nav-cta {
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; white-space: nowrap;
    background: var(--white); color: var(--black);
    border: none; padding: 11px 26px; cursor: pointer;
    font-family: inherit; position: relative; overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  }
  .nav-cta::before {
    content: ''; position: absolute; top: 0; left: -60%;
    width: 40%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(10,10,12,0.16), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s var(--ease-luxe);
  }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255,255,255,0.22); }
  .nav-cta:hover::before { left: 120%; }

  .nav-burger {
    display: none; width: 42px; height: 42px; position: relative;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.45);
    border-radius: 50%;
    cursor: pointer; padding: 0;
    align-items: center; justify-content: center; z-index: 1;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav-burger:hover { background: rgba(255,255,255,0.14); border-color: var(--white); }
  .nav-burger:active { transform: scale(0.92); }
  body.menu-open .nav-burger { border-color: var(--white); background: rgba(255,255,255,0.14); }
  .nav-burger-glyph {
    display: block; font-size: 22px; line-height: 1; color: var(--white);
    transition: transform 0.45s var(--ease-luxe);
  }
  body.menu-open .nav-burger-glyph { transform: rotate(135deg); }

  /* ─── MENU MOBILE FULLSCREEN ─── */
  .mobile-menu {
    position: fixed; inset: 0; z-index: 999;
    background: var(--black);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.5s var(--ease-luxe), visibility 0.5s;
  }
  body.menu-open { overflow: hidden; }
  body.menu-open .mobile-menu { opacity: 1; visibility: visible; pointer-events: auto; }

  .mobile-menu-links { display: flex; flex-direction: column; align-items: center; gap: 24px; }
  .mobile-link {
    font-size: clamp(14px, 3.2vw, 18px); font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: rgba(255,255,255,0.78);
    opacity: 0; transform: translateY(18px);
    transition: color 0.3s var(--ease), opacity 0.5s var(--ease), transform 0.5s var(--ease);
  }
  .mobile-link::after { display: none; }
  .mobile-link.active, .mobile-link:hover { color: var(--white); }
  body.menu-open .mobile-link { opacity: 1; transform: translateY(0); }
  body.menu-open .mobile-link:nth-child(1) { transition-delay: 0.08s; }
  body.menu-open .mobile-link:nth-child(2) { transition-delay: 0.14s; }
  body.menu-open .mobile-link:nth-child(3) { transition-delay: 0.20s; }
  body.menu-open .mobile-link:nth-child(4) { transition-delay: 0.26s; }
  body.menu-open .mobile-link:nth-child(5) { transition-delay: 0.32s; }
  body.menu-open .mobile-link:nth-child(6) { transition-delay: 0.38s; }

  .mobile-cta {
    margin-top: 48px; padding: 17px 48px; font-size: 13px;
    opacity: 0; transform: translateY(18px);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
                opacity 0.5s var(--ease) 0.44s, transform 0.5s var(--ease) 0.44s;
  }
  body.menu-open .mobile-cta { opacity: 1; transform: translateY(0); }

  .mobile-menu-footer {
    position: absolute; bottom: 44px; left: 0; right: 0;
    display: flex; justify-content: center; gap: 16px;
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.5s var(--ease) 0.5s, transform 0.5s var(--ease) 0.5s;
  }
  body.menu-open .mobile-menu-footer { opacity: 1; transform: translateY(0); }

  /* En dessous de 1180px, le menu centré + CTA + connexion ne tiennent plus
     à côté du logo : on bascule sur le hamburger plus tôt que les autres
     ajustements mobiles (qui restent au breakpoint 920px). */
  @media (max-width: 1180px) {
    .nav-center { display: none; }
    .nav-utils .lang-toggle,
    .nav-utils .nav-connect,
    .nav-utils .nav-cta { display: none; }
    .nav-burger { display: flex; }
  }

  .view { display: none; position: relative; z-index: 1; }
  .view.active { display: block; animation: viewIn 0.8s var(--ease) both; }
  @keyframes viewIn {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 150px 28px 100px;
    position: relative;
  }
  .hero-kicker {
    font-size: 11px; font-weight: 500; letter-spacing: 0.34em;
    text-transform: uppercase; color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.45);
    margin-bottom: 30px; padding: 0 10px;
    opacity: 0; animation: riseIn 1s var(--ease) 0.2s forwards;
  }
  .hero-title {
    font-size: clamp(30px, 4.6vw, 56px);
    font-weight: 700; letter-spacing: -0.03em; line-height: 1.15;
    padding: 0 12px 6px;
    overflow: visible;
  }
  .hero-title .word {
    display: inline-block;
    opacity: 0; transform: translateY(34px);
    animation: wordUp 1s var(--ease-luxe) forwards;
  }
  @keyframes wordUp { to { opacity: 1; transform: translateY(0); } }
  .hero-line {
    width: 1px; height: 60px; background: linear-gradient(to bottom, var(--black), transparent);
    margin: 46px 0;
    transform: scaleY(0); transform-origin: top;
    animation: lineGrow 1s var(--ease-luxe) 1.1s forwards;
  }
  .hero-start {
    font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--black);
    background: var(--black);
    color: var(--white);
    padding: 19px 54px; cursor: pointer;
    font-family: inherit;
    position: relative; overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    opacity: 0; animation: riseIn 1s var(--ease) 1.35s forwards;
  }
  .hero-start span { position: relative; z-index: 1; }
  .hero-start::before {
    content: ''; position: absolute; top: 0; left: -60%;
    width: 40%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.18), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s var(--ease-luxe);
  }
  .hero-start:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(10,10,12,0.32); }
  .hero-start:hover::before { left: 120%; }
  @keyframes riseIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes lineGrow { to { transform: scaleY(1); } }

  /* ─── IMAGE HÉROS PAR PAGE — fixe en fond, le contenu défile dessus ─── */
  .page-hero-wrap {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100vh;
    overflow: hidden;
    z-index: 0;
    background: linear-gradient(135deg, #f6f3fd 0%, #ede5f8 100%);
    will-change: opacity;
  }
  .hero-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
  }
  .hero-slide.active { opacity: 1; }
  .hero-slide img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
  }
  .page-hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(
      to bottom,
      rgba(228, 215, 252, 0.35) 0%,    /* violet clair */
      rgba(255, 255, 255, 0.04) 38%,   /* quasi transparent */
      rgba(255, 255, 255, 0.65) 100%   /* blanc */
    );
    pointer-events: none;
  }
  /* ─── PAGE-BG (fond semi-transparent via CSS variable) ─── */
  html::before {
    content: '';
    position: fixed; top:0; left:0; width:100%; height:100%;
    background-image: var(--page-bg-url, none);
    background-size: cover;
    background-position: center;
    opacity: 0.07;
    pointer-events: none;
    z-index: -1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    transition: opacity 0.8s ease;
  }
  /* Voile violet clair + blanc sur le fond de page */
  html::after {
    content: '';
    position: fixed; top:0; left:0; width:100%; height:100%;
    background: linear-gradient(
      160deg,
      rgba(241, 236, 250, 0.5) 0%,
      rgba(255, 255, 255, 0.28) 50%,
      rgba(246, 241, 252, 0.45) 100%
    );
    pointer-events: none;
    z-index: -1;
  }
  @media (max-width: 920px) {
    :root { --nav-h: 130px; }
    html::before { opacity: 0.10; }
  }

  /* ─── ACCORDÉONS ─── */
  .accordion-item {
    border-bottom: 1px solid var(--line);
  }
  .accordion-item:first-child { border-top: 1px solid var(--line); }
  .accordion-trigger {
    width: 100%; text-align: left;
    background: none; border: none; font-family: inherit;
    font-size: clamp(16px, 2.2vw, 22px);
    font-weight: 700; letter-spacing: -0.015em;
    color: var(--black); cursor: pointer;
    padding: 30px 0;
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px;
    transition: opacity 0.3s var(--ease);
  }
  .accordion-trigger:hover { opacity: 0.75; }
  .accordion-chevron {
    width: 28px; height: 28px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: transform 0.5s var(--ease-luxe), border-color 0.35s var(--ease);
  }
  .accordion-chevron svg { width: 14px; height: 14px; stroke: var(--black); fill: none; }
  .accordion-trigger[aria-expanded="true"] .accordion-chevron {
    transform: rotate(180deg); border-color: var(--black);
  }
  .accordion-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.7s var(--ease-luxe);
  }
  .accordion-body.open { max-height: 6000px; }
  .accordion-content { padding: 0 0 44px; }

  /* ─── SERVICES TABS ─── */
  .svc-tabs {
    display: flex; gap: 4px;
    border: 1px solid var(--line);
    padding: 5px;
    border-radius: 6px;
    margin-bottom: 52px;
    background: rgba(255,255,255,0.5);
    width: fit-content;
  }
  .svc-tab {
    font-family: inherit; font-size: 12px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    background: none; border: none; cursor: pointer;
    color: var(--grey);
    padding: 13px 30px;
    border-radius: 3px;
    transition: all 0.35s var(--ease);
  }
  .svc-tab.active { background: var(--black); color: var(--white); }
  .svc-tab:hover:not(.active) { color: var(--black); }

  /* ─── DÉROULÉ PROCESS ─── */
  .process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .process-steps { display: flex; flex-direction: column; }
  .process-step {
    display: flex; gap: 28px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    transition: opacity 0.4s var(--ease);
  }
  .process-step:last-child { border-bottom: none; }
  .ps-num {
    width: 44px; height: 44px; flex-shrink: 0;
    border: 1px solid var(--black);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
    transition: all 0.4s var(--ease);
    margin-top: 3px;
  }
  .process-step:hover .ps-num { background: var(--black); color: var(--white); }
  .ps-icon { font-size: 22px; margin-bottom: 8px; line-height: 1; }
  .ps-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
  .ps-text { font-size: 13px; line-height: 1.85; color: var(--grey); }
  .ps-tag {
    display: inline-block; margin-top: 10px;
    font-size: 9.5px; font-weight: 600; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--grey);
    border: 1px solid var(--line); padding: 5px 11px;
    border-radius: 100px;
  }
  .process-img { position: sticky; top: 180px; }
  .process-img .side-img { margin-bottom: 0; }
  .process-info-box {
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.55);
    padding: 28px;
    border-radius: 8px;
    margin-top: 18px;
  }
  .process-info-box p { font-size: 13px; line-height: 1.9; color: #3a3544; margin-bottom: 10px; }
  .process-info-box p:last-child { margin-bottom: 0; }

  /* ─── TIMELINE PROCHAINES ÉTAPES (devis & déroulé) ─── */
  .pt-card {
    background: var(--black);
    border-radius: 12px;
    padding: 40px 38px;
    color: var(--white);
  }
  .pt-kicker {
    font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--violet); margin-bottom: 10px;
  }
  .pt-sub {
    font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 34px;
    max-width: 380px;
  }
  .pt-list { display: flex; flex-direction: column; }
  .pt-step { display: flex; gap: 18px; }
  .pt-num-col { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 34px; }
  .pt-num {
    width: 34px; height: 34px; border-radius: 50%;
    border: 1.5px solid rgba(241,236,250,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; color: var(--violet);
    flex-shrink: 0;
  }
  .pt-line { width: 1px; flex: 1; min-height: 30px; background: rgba(241,236,250,0.22); margin: 6px 0; }
  .pt-step:last-child .pt-line { display: none; }
  .pt-body { padding-bottom: 30px; }
  .pt-step:last-child .pt-body { padding-bottom: 0; }
  .pt-title-row { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; flex-wrap: wrap; }
  .pt-title { font-size: 15px; font-weight: 700; color: var(--white); }
  .pt-badge {
    font-size: 9.5px; font-weight: 700; letter-spacing: 0.08em;
    color: var(--black); background: var(--violet);
    border-radius: 100px; padding: 4px 10px;
  }
  .pt-text { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 420px; }

  @media (max-width: 920px) {
    .process-grid { grid-template-columns: 1fr; }
    .process-img { position: static; }
    .svc-tabs { width: 100%; }
    .svc-tab { flex: 1; text-align: center; padding: 12px 10px; font-size: 10.5px; }
    .pt-card { padding: 30px 24px; }
  }

  /* ─── LOGO CAROUSEL (partenaires) ─── */
  .trust-section { margin-bottom: 72px; }
  .trust-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--grey);
    text-align: center; margin-bottom: 36px;
  }
  .logo-carousel {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }
  .logo-track {
    display: flex; gap: 28px; align-items: center;
    width: max-content;
    animation: marqueeScroll 32s linear infinite;
  }
  .logo-carousel:hover .logo-track { animation-play-state: paused; }
  .logo-pill {
    flex-shrink: 0;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    padding: 18px 32px;
    border-radius: 6px;
    font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
    color: var(--black);
    white-space: nowrap;
    transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
  }
  .logo-pill:hover { border-color: var(--black); background: var(--white); }

  /* ─── OPTIONS ICÔNES ─── */
  .opt-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
  .photo-pack-list { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
  .photo-pack {
    display: flex; justify-content: space-between; align-items: center;
    border: 1px solid var(--line); border-radius: 4px;
    padding: 10px 14px; cursor: pointer;
    font-size: 12.5px; font-weight: 600;
    transition: all 0.3s var(--ease);
    background: rgba(255,255,255,0.5);
  }
  .photo-pack:hover { border-color: var(--black); }
  .photo-pack.selected { border-color: var(--black); background: var(--black); color: var(--white); }
  .photo-pack-price { font-size: 12px; font-weight: 700; }
  .opt-item.selected .photo-pack { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); }
  .opt-item.selected .photo-pack.selected { border-color: var(--white); background: rgba(255,255,255,0.2); }
  .opt-item.selected .photo-pack:hover { border-color: rgba(255,255,255,0.7); }

  .hero-access-row {
    display: flex; gap: 28px; margin-top: 26px;
    flex-wrap: wrap; justify-content: center;
    opacity: 0; animation: riseIn 1s var(--ease) 1.55s forwards;
  }
  .hero-access {
    font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em;
    text-transform: uppercase;
    background: none; border: none;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    padding: 8px 2px;
    cursor: pointer; color: rgba(255,255,255,0.75);
    font-family: inherit;
    transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
  }
  .hero-access:hover { color: var(--white); border-bottom-color: var(--white); }

  /* ─── LOGIN / ESPACE CLIENT & PARTENAIRE ─── */
  .login-page { max-width: 520px; margin: 0 auto; padding: 180px 32px 140px; position: relative; z-index: 1; }
  .login-tabs { display: flex; border: 1px solid var(--line); margin-bottom: 44px; }
  .login-tab {
    flex: 1; padding: 16px 10px;
    font-family: inherit; font-size: 11px; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    background: transparent; border: none; cursor: pointer;
    color: var(--grey);
    transition: all 0.35s var(--ease);
  }
  .login-tab.active { background: var(--black); color: var(--white); }
  .login-switch { text-align: center; margin-top: 30px; font-size: 12.5px; color: var(--grey); line-height: 1.8; }
  .login-switch button {
    background: none; border: none; font-family: inherit;
    font-size: 12.5px; color: var(--black);
    text-decoration: underline; cursor: pointer; padding: 0;
  }
  .login-error {
    color: #a33c3c; font-size: 13px; margin-top: 18px;
    line-height: 1.7; display: none;
  }
  .login-info {
    border: 1px solid var(--line);
    background: rgba(240, 234, 250, 0.5);
    border-radius: 8px; padding: 20px 24px;
    font-size: 12.5px; line-height: 1.85; color: #3a3544;
    margin-bottom: 38px;
  }

  .account-page { max-width: 980px; margin: 0 auto; padding: 170px 32px 130px; position: relative; z-index: 1; }
  .account-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    flex-wrap: wrap; gap: 20px;
    border-bottom: 1px solid var(--black);
    padding-bottom: 32px; margin-bottom: 44px;
  }
  .account-type-badge {
    display: inline-block;
    font-size: 9px; font-weight: 600; letter-spacing: 0.24em;
    text-transform: uppercase;
    border: 1px solid var(--black);
    padding: 6px 14px; margin-bottom: 16px;
  }
  .account-name {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 700; letter-spacing: -0.025em; line-height: 1.2;
    word-break: break-word;
  }
  .account-logout {
    font-family: inherit; font-size: 11px; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    background: none; border: 1px solid var(--line);
    padding: 12px 24px; cursor: pointer; color: var(--black);
    transition: all 0.35s var(--ease);
  }
  .account-logout:hover { border-color: var(--black); }
  .account-tabs {
    display: flex; gap: 4px 34px; flex-wrap: wrap;
    border-bottom: 1px solid var(--line);
    margin-bottom: 44px;
  }
  .account-section { display: none; }
  .account-section.active { display: block; animation: viewIn 0.6s var(--ease) both; }

  .table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,0.55); }
  .data-table { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 560px; }
  .data-table th {
    text-align: left;
    font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--grey);
    padding: 18px 20px;
    border-bottom: 1px solid var(--black);
    white-space: nowrap;
  }
  .data-table td { padding: 18px 20px; border-bottom: 1px solid var(--line); color: #3a3544; line-height: 1.6; }
  .data-table tr:last-child td { border-bottom: none; }
  .data-table tbody tr { transition: background 0.3s var(--ease); }
  .data-table tbody tr:hover { background: rgba(240, 234, 250, 0.4); }
  .status-pill {
    display: inline-block;
    font-size: 9.5px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 100px;
    border: 1px solid var(--line);
    color: var(--grey);
    white-space: nowrap;
  }
  .status-pill.st-done { background: var(--black); color: var(--white); border-color: var(--black); }
  .status-pill.st-progress { background: var(--violet-deep); color: var(--black); border-color: var(--violet-deep); }
  .status-pill.st-cancel { border-color: #c9a0a0; color: #a33c3c; }
  .empty-note { font-size: 13.5px; color: var(--grey); padding: 36px 24px; line-height: 1.8; }

  .lr-box {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.55);
    border-radius: 8px;
    padding: 56px 40px;
    text-align: center;
  }
  .lr-box h3 { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
  .lr-box p { font-size: 13.5px; color: var(--grey); line-height: 1.9; max-width: 420px; margin: 0 auto 30px; }

  /* ─── CROSS-SELL COMMUNICATION (Agency Nascimento) ─── */
  .comm-box {
    border: 1px solid var(--line);
    background: rgba(240, 234, 250, 0.45);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 54px;
  }
  .comm-kicker {
    font-size: 9px; font-weight: 600; letter-spacing: 0.24em;
    text-transform: uppercase; color: var(--grey); margin-bottom: 12px;
  }
  .comm-title { font-size: 15.5px; font-weight: 700; margin-bottom: 10px; line-height: 1.45; }
  .comm-text { font-size: 13px; line-height: 1.85; color: #3a3544; margin-bottom: 20px; }
  .comm-check {
    display: flex; align-items: flex-start; gap: 14px;
    cursor: pointer;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    padding: 16px 20px;
    transition: all 0.35s var(--ease);
    font-size: 13.5px; font-weight: 600;
  }
  .comm-check:hover { border-color: var(--black); }
  .comm-check.selected { background: var(--black); color: var(--white); border-color: var(--black); }
  .comm-check .opt-check { margin-top: 0; }
  .comm-check.selected .opt-check { background: var(--white); border-color: var(--white); }
  .comm-check.selected .opt-check::after {
    content: ''; width: 8px; height: 4px;
    border-left: 1.5px solid var(--black); border-bottom: 1.5px solid var(--black);
    transform: rotate(-45deg) translateY(-1px);
  }

  .comm-redirect {
    background: var(--black); color: var(--white);
    border-radius: 8px;
    padding: 38px 36px;
    margin-top: 30px;
    position: relative; overflow: hidden;
  }
  .comm-redirect::after {
    content: ''; position: absolute; top: 0; left: -80%;
    width: 50%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-18deg);
    animation: subShine 5s var(--ease-luxe) infinite;
  }
  .comm-redirect h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; position: relative; z-index: 1; }
  .comm-redirect p { font-size: 13.5px; line-height: 1.85; opacity: 0.85; margin-bottom: 22px; position: relative; z-index: 1; }
  .comm-redirect a {
    display: inline-block;
    font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black); background: var(--white);
    text-decoration: none;
    padding: 15px 34px;
    position: relative; z-index: 1;
    transition: transform 0.4s var(--ease);
  }
  .comm-redirect a:hover { transform: translateY(-3px); }

  .rv {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  }
  .rv.in { opacity: 1; transform: translateY(0); }

  .quiz-wrap {
    max-width: 760px; margin: 0 auto;
    padding: 170px 32px 130px;
    position: relative; z-index: 1;
  }

  .progress-track { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 400; }
  .progress-fill {
    height: 100%; width: 0%;
    background: linear-gradient(to right, var(--black), #6d5a9e);
    transition: width 0.7s var(--ease-luxe);
  }

  .qstep { display: none; }
  .qstep.active { display: block; }
  .qstep.active .stagger {
    opacity: 0; transform: translateY(22px);
    animation: stagUp 0.8s var(--ease-luxe) forwards;
  }
  @keyframes stagUp { to { opacity: 1; transform: translateY(0); } }

  .qstep-meta {
    font-size: 11px; font-weight: 500; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--grey); margin-bottom: 20px;
    padding: 2px 0;
  }
  .qstep-title {
    font-size: clamp(26px, 3.8vw, 42px);
    font-weight: 700; letter-spacing: -0.025em; line-height: 1.2;
    margin-bottom: 12px; padding-bottom: 4px;
  }
  .qstep-sub {
    font-size: 14px; color: var(--grey); line-height: 1.75;
    margin-bottom: 54px; padding-right: 12px;
  }

  .cat-list { display: flex; flex-direction: column; }
  .cat-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 28px 10px;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    position: relative;
    transition: padding 0.45s var(--ease);
  }
  .cat-item:first-child { border-top: 1px solid var(--line); }
  .cat-item::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(240, 234, 250, 0.0), rgba(240, 234, 250, 0.65));
    opacity: 0; transition: opacity 0.45s var(--ease);
    pointer-events: none;
  }
  .cat-item:hover { padding-left: 26px; }
  .cat-item:hover::before { opacity: 1; }
  .cat-name { font-size: 19px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.4; position: relative; z-index: 1; }
  .cat-tag { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); line-height: 1.6; text-align: right; position: relative; z-index: 1; }
  .cat-arrow {
    width: 28px; height: 1px; background: var(--black);
    position: relative; opacity: 0; transform: translateX(-10px);
    transition: all 0.45s var(--ease); flex-shrink: 0; z-index: 1;
  }
  .cat-arrow::after {
    content: ''; position: absolute; right: 0; top: -3.5px;
    width: 7px; height: 7px;
    border-top: 1px solid var(--black); border-right: 1px solid var(--black);
    transform: rotate(45deg);
  }
  .cat-item:hover .cat-arrow { opacity: 1; transform: translateX(0); }
  .cat-right { display: flex; align-items: center; gap: 22px; }
  .cat-left { display: flex; align-items: center; gap: 20px; position: relative; z-index: 1; min-width: 0; }
  .cat-ic {
    width: 42px; height: 42px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.45s var(--ease);
  }
  .cat-ic svg { width: 100%; height: 100%; }
  .cat-item:hover .cat-ic { transform: scale(1.1); }

  .prof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 40px;
  }
  .prof-card {
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    cursor: pointer;
    padding: 22px 12px;
    border-radius: 12px;
    transition: all 0.45s var(--ease);
    border: 1px solid transparent;
  }
  .prof-card:hover {
    border: 1px solid var(--line);
    background: rgba(240, 234, 250, 0.4);
    transform: translateY(-4px);
  }
  .prof-card.selected { border: 1px solid var(--black); background: var(--black); }
  .prof-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.45s var(--ease);
  }
  .prof-card:hover .prof-icon { transform: scale(1.12); }
  .prof-card.selected .prof-icon svg { stroke: var(--white); }
  .prof-name {
    font-size: 12px; font-weight: 600; text-align: center;
    line-height: 1.45; transition: color 0.45s var(--ease);
  }
  .prof-card.selected .prof-name { color: var(--white); }

  .prof-q-box {
    background: rgba(240, 234, 250, 0.5);
    border: 1px solid var(--line);
    padding: 28px;
    margin: 0 0 38px;
    border-radius: 8px;
    font-size: 14px; line-height: 1.9; color: #3a3544;
    min-height: 60px;
  }

  /* ─── PAIEMENT FLEXIBLE (mis en avant à côté des tarifs) ─── */
  .payment-flex-strip {
    display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
    border: 1px solid var(--black);
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    padding: 20px 28px;
    margin-bottom: 28px;
    border-radius: 8px;
  }
  .payment-flex-icon { font-size: 21px; line-height: 1; flex-shrink: 0; }
  .payment-flex-body { flex: 1 1 260px; min-width: 220px; }
  .payment-flex-kicker {
    font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--grey); margin-bottom: 5px;
  }
  .payment-flex-text { font-size: 13.5px; line-height: 1.7; color: #3a3544; }
  .payment-flex-text strong { color: var(--black); }
  .payment-flex-methods { display: flex; gap: 8px; flex-wrap: wrap; min-width: 0; }
  .payment-flex-pill {
    font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    border: 1px solid var(--line); padding: 7px 13px; border-radius: 100px;
    white-space: nowrap; color: var(--black);
  }
  .payment-flex-pill.highlight { background: var(--black); color: var(--white); border-color: var(--black); }

  .tier-list { display: flex; flex-direction: column; gap: 16px; }
  .tier-card {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    padding: 32px 34px;
    cursor: pointer;
    position: relative; overflow: hidden;
    transition: border-color 0.4s var(--ease), transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  }
  .tier-card::after {
    content: ''; position: absolute; top: 0; left: -80%;
    width: 60%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.85), transparent);
    transform: skewX(-18deg);
    transition: left 0.85s var(--ease-luxe);
    pointer-events: none;
  }
  .tier-card:hover {
    border-color: var(--black);
    transform: translateY(-4px);
    box-shadow: 0 24px 50px -28px rgba(40, 20, 80, 0.28);
  }
  .tier-card:hover::after { left: 120%; }
  .tier-head {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 12px; gap: 14px; flex-wrap: wrap;
  }
  .tier-name { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.4; }
  .tier-price { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; white-space: nowrap; }
  .tier-price small { font-size: 11px; font-weight: 500; color: var(--grey); margin-left: 4px; }
  .tier-pay-line { font-size: 12px; font-weight: 500; color: var(--grey); margin-bottom: 14px; }
  .tier-detail { font-size: 13px; line-height: 1.85; color: var(--grey); padding-right: 6px; }
  .tier-badge {
    display: inline-block;
    font-size: 9px; font-weight: 600; letter-spacing: 0.22em;
    text-transform: uppercase;
    border: 1px solid var(--black);
    padding: 5px 12px; margin-bottom: 16px;
    line-height: 1.4;
  }

  /* ─── CARTE ABONNEMENT (mise en valeur) ─── */
  .tier-card.sub-card {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
  }
  .tier-card.sub-card::after {
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.14), transparent);
    animation: subShine 4.5s var(--ease-luxe) infinite;
  }
  @keyframes subShine {
    0%, 55% { left: -80%; }
    100% { left: 140%; }
  }
  .tier-card.sub-card .tier-detail { color: rgba(255,255,255,0.65); }
  .tier-card.sub-card .tier-price small { color: rgba(255,255,255,0.6); }
  .tier-card.sub-card .tier-badge {
    border-color: rgba(255,255,255,0.9);
    background: var(--white);
    color: var(--black);
  }
  .sub-engagement {
    margin-top: 16px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
  }
  .tier-card.sub-card:hover {
    box-shadow: 0 28px 60px -28px rgba(10, 10, 12, 0.55);
  }

  .recap-box {
    border: 1px solid var(--black);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    padding: 34px;
    margin-bottom: 52px;
    position: relative; overflow: hidden;
  }
  .recap-box::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(to right, var(--black), #8a72c0);
  }
  .recap-label {
    font-size: 10px; font-weight: 600; letter-spacing: 0.26em;
    text-transform: uppercase; color: var(--grey); margin-bottom: 16px;
  }
  .recap-title {
    font-size: 20px; font-weight: 700; letter-spacing: -0.015em;
    margin-bottom: 20px; line-height: 1.45;
    display: flex; justify-content: space-between; align-items: baseline; gap: 18px; flex-wrap: wrap;
  }
  .recap-items { list-style: none; }
  .recap-items li {
    font-size: 13.5px; color: #3a3544; line-height: 1.7;
    padding: 10px 0 10px 24px;
    border-bottom: 1px solid var(--line);
    position: relative;
  }
  .recap-items li:last-child { border-bottom: none; }
  .recap-items li::before {
    content: ''; position: absolute; left: 2px; top: 19px;
    width: 9px; height: 1px; background: var(--black);
  }

  .recap-payment {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12.5px; font-weight: 600; color: var(--black);
    background: rgba(20,10,40,0.04);
    border: 1px solid var(--line);
    padding: 9px 16px; border-radius: 100px;
    margin-bottom: 22px; line-height: 1.5;
  }

  .opt-section-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.26em;
    text-transform: uppercase; color: var(--grey); margin-bottom: 24px;
  }
  .opt-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 54px; }
  .opt-item {
    display: flex; align-items: flex-start; gap: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.5);
    padding: 21px 26px;
    cursor: pointer;
    transition: border-color 0.35s var(--ease), background 0.4s var(--ease), transform 0.35s var(--ease);
    border-radius: 6px;
  }
  .opt-item:hover { border-color: var(--black); transform: translateX(4px); }
  .opt-item.selected { border-color: var(--black); background: var(--black); color: var(--white); transform: translateX(0); }
  .opt-check {
    width: 17px; height: 17px; flex-shrink: 0;
    border: 1px solid var(--black);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.35s var(--ease);
    margin-top: 2px;
  }
  .opt-item.selected .opt-check { background: var(--white); border-color: var(--white); }
  .opt-item.selected .opt-check::after {
    content: ''; width: 8px; height: 4px;
    border-left: 1.5px solid var(--black); border-bottom: 1.5px solid var(--black);
    transform: rotate(-45deg) translateY(-1px);
  }
  .opt-body { flex: 1; min-width: 0; }
  .opt-name { font-size: 14px; font-weight: 600; margin-bottom: 6px; line-height: 1.5; }
  .opt-note { font-size: 12px; color: var(--grey); line-height: 1.6; }
  .opt-item.selected .opt-note { color: rgba(255,255,255,0.65); }
  .opt-price { font-size: 13px; font-weight: 700; white-space: nowrap; flex-shrink: 0; margin-top: 2px; }

  .sub-options-note {
    border: 1px solid var(--line);
    background: rgba(240, 234, 250, 0.5);
    border-radius: 8px;
    padding: 26px;
    font-size: 13.5px; line-height: 1.9; color: #3a3544;
    margin-bottom: 54px;
  }

  .fgroup { margin-bottom: 26px; }
  .fgroup label {
    display: block;
    font-size: 10px; font-weight: 600; letter-spacing: 0.24em;
    text-transform: uppercase; color: var(--grey); margin-bottom: 11px;
    line-height: 1.5;
  }
  .fgroup input, .fgroup textarea, .fgroup select {
    width: 100%;
    border: none; border-bottom: 1px solid var(--line);
    padding: 13px 2px;
    font-family: inherit; font-size: 16px; color: var(--black);
    outline: none; background: transparent;
    transition: border-color 0.35s var(--ease);
    border-radius: 0;
    line-height: 1.5;
  }
  .fgroup input:focus, .fgroup textarea:focus, .fgroup select:focus { border-bottom-color: var(--black); }
  .fgroup textarea { resize: vertical; min-height: 96px; }
  .fgroup select { cursor: pointer; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%230a0a0c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 2px center; }

  .quiz-reassurance {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid rgba(10,10,12,0.08);
  }
  .quiz-reassurance-text {
    font-size: 12.5px; line-height: 1.75; color: var(--grey);
  }
  .quiz-reassurance-pay {
    font-size: 12.5px; line-height: 1.75; color: var(--black);
    margin-top: 10px;
  }
  .quiz-reassurance-pay strong { font-weight: 700; }
  .quiz-microcopy {
    text-align: right;
    font-size: 10px; letter-spacing: 0.1em;
    color: var(--grey); opacity: 0.65;
    margin-top: 12px;
  }

  .btn-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 50px; }
  .btn {
    font-family: inherit;
    font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 18px 42px;
    cursor: pointer;
    border: 1px solid var(--black);
    position: relative; overflow: hidden;
    transition: color 0.45s var(--ease);
    line-height: 1.4;
  }
  .btn span { position: relative; z-index: 1; }
  .btn-solid { background: var(--black); color: var(--white); }
  .btn-solid::before {
    content: ''; position: absolute; inset: 0;
    background: var(--white);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.5s var(--ease-luxe);
  }
  .btn-solid:hover:not(:disabled) { color: var(--black); }
  .btn-solid:hover:not(:disabled)::before { transform: scaleX(1); transform-origin: left; }
  .btn-solid:disabled { opacity: 0.25; cursor: not-allowed; }
  .btn-ghost { background: transparent; color: var(--black); border-color: rgba(10,10,12,0.18); }
  .btn-ghost::before {
    content: ''; position: absolute; inset: 0;
    background: var(--black);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.5s var(--ease-luxe);
  }
  .btn-ghost:hover { color: var(--white); border-color: var(--black); }
  .btn-ghost:hover::before { transform: scaleX(1); transform-origin: left; }

  .devis-head { border-bottom: 1px solid var(--black); padding-bottom: 38px; margin-bottom: 46px; }
  .devis-kicker {
    font-size: 11px; font-weight: 600; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--grey); margin-bottom: 18px;
  }
  .devis-name {
    font-size: clamp(30px, 4.6vw, 50px);
    font-weight: 700; letter-spacing: -0.03em; line-height: 1.15;
    padding-bottom: 4px; word-break: break-word;
  }

  .success-box {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--black);
    padding: 38px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
  }
  .success-box::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(to right, var(--black), #8a72c0);
  }
  .success-box h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
  .success-box p { font-size: 14px; line-height: 1.9; color: #3a3544; margin-bottom: 14px; }
  .success-box p:last-child { margin-bottom: 0; }

  /* ─── PORTFOLIO PERSONNALISÉ EN FIN DE QUESTIONNAIRE ─── */
  .pf-preview { margin-top: 90px; }
  .pf-preview-head { text-align: center; margin-bottom: 50px; }
  .pf-divider {
    width: 44px; height: 1px;
    background: linear-gradient(to right, transparent, var(--black), transparent);
    margin: 0 auto 40px;
  }
  .pf-preview-title {
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 700; letter-spacing: -0.025em; margin-bottom: 12px;
    line-height: 1.3; padding: 0 14px;
  }
  .pf-preview-sub { font-size: 14px; color: var(--grey); line-height: 1.6; padding: 0 14px; }
  .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .gallery .ph { aspect-ratio: 4/3; }

  /* SERVICES */
  .services-page { max-width: 1200px; margin: 0 auto; padding: 170px 32px 130px; position: relative; z-index: 1; }
  .page-title {
    font-size: clamp(32px, 5.2vw, 58px);
    font-weight: 700; letter-spacing: -0.03em;
    margin-bottom: 16px; line-height: 1.15; padding-bottom: 4px;
    color: var(--black);
    opacity: 0; transform: translateY(24px);
    animation: pageTextIn 0.9s var(--ease-luxe) forwards;
  }
  .page-sub {
    font-size: 14px; color: var(--grey); margin-bottom: 58px;
    max-width: 520px; line-height: 1.85;
    opacity: 0; transform: translateY(20px);
    animation: pageTextIn 0.9s var(--ease-luxe) 0.12s forwards;
  }
  @keyframes pageTextIn { to { opacity: 1; transform: translateY(0); } }

  .services-filters { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 52px; }
  .filter-btn {
    font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--black);
    font-family: inherit;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.35s var(--ease);
  }
  .filter-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }
  .filter-btn:hover { border-color: var(--black); }

  .services-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }
  .services-layout.has-photo {
    grid-template-columns: 280px 1fr;
  }
  .svc-cat-photo {
    position: sticky; top: 180px;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 8px;
    background: var(--violet-deep);
  }
  .svc-cat-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s var(--ease);
  }
  .svc-cat-photo img.loaded { opacity: 1; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
  }
  @media (max-width: 920px) {
    .services-layout.has-photo { grid-template-columns: 1fr; }
    .svc-cat-photo { display: none; }
  }
  .service-card {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    padding: 34px 32px;
    transition: all 0.45s var(--ease);
    border-radius: 8px;
    display: flex; flex-direction: column;
  }
  .service-card:hover {
    border-color: var(--black);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -20px rgba(40, 20, 80, 0.2);
  }
  .service-head { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
  .service-icon { width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
  .service-icon svg { width: 100%; height: 100%; }
  .service-name { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.35; color: var(--black); }
  .service-tag { font-size: 10.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); margin-bottom: 22px; line-height: 1.6; }
  .service-tiers { display: flex; flex-direction: column; flex: 1; }
  .service-tier {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13.5px; padding: 12px 0;
    border-bottom: 1px solid var(--line);
    gap: 14px;
  }
  .service-tier:last-child { border-bottom: none; }
  .service-tier-name { font-weight: 600; color: var(--black); }
  .service-tier-price { font-weight: 700; color: var(--black); white-space: nowrap; }
  .service-tier-price small { font-size: 10px; font-weight: 500; color: var(--grey); margin-left: 3px; }

  /* ─── LIGNE ABONNEMENT dans la grille services ─── */
  .service-sub-row {
    margin-top: 16px;
    background: var(--black);
    color: var(--white);
    border-radius: 6px;
    padding: 16px 18px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px;
    position: relative; overflow: hidden;
  }
  .service-sub-row::after {
    content: ''; position: absolute; top: 0; left: -80%;
    width: 50%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.13), transparent);
    transform: skewX(-18deg);
    animation: subShine 4.5s var(--ease-luxe) infinite;
  }
  .service-sub-label { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; position: relative; z-index: 1; }
  .service-sub-price { font-size: 14px; font-weight: 700; white-space: nowrap; position: relative; z-index: 1; }
  .service-sub-price small { font-size: 10px; font-weight: 500; opacity: 0.65; }

  .service-cta {
    margin-top: 22px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--black);
    background: none; border: none; cursor: pointer; font-family: inherit;
    padding: 0; position: relative;
    align-self: flex-start;
  }
  .service-cta::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 100%; height: 1px; background: var(--black);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s var(--ease);
  }
  .service-card:hover .service-cta::after { transform: scaleX(1); }

  /* DRONE PAGE */
  .drone-page { max-width: 1100px; margin: 0 auto; padding: 170px 32px 130px; position: relative; z-index: 1; }

  .drone-intro {
    font-size: 15px; line-height: 2; color: #3a3544;
    max-width: 640px; margin-bottom: 70px;
  }

  .cred-section-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--grey);
    margin-bottom: 30px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }

  .cred-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
  }
  .cred-card {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    padding: 32px 28px;
    border-radius: 8px;
    transition: all 0.45s var(--ease);
    position: relative;
    overflow: hidden;
  }
  .cred-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(to right, var(--black), #8a72c0);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.6s var(--ease-luxe);
  }
  .cred-card:hover { border-color: var(--black); transform: translateY(-5px); }
  .cred-card:hover::before { transform: scaleX(1); }
  .cred-num {
    font-size: 11px; font-weight: 600; letter-spacing: 0.24em;
    color: var(--grey); margin-bottom: 18px;
  }
  .cred-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
  .cred-text { font-size: 13px; line-height: 1.85; color: var(--grey); }

  .gear-strip {
    display: flex; flex-wrap: wrap; gap: 14px;
    margin-bottom: 80px;
  }
  .gear-pill {
    font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
    border: 1px solid var(--black);
    padding: 12px 22px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.35s var(--ease);
  }
  .gear-pill:hover { background: var(--black); color: var(--white); }

  .drone-cats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-bottom: 60px;
  }
  .drone-cat-card {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.55);
    padding: 30px 28px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.45s var(--ease);
    position: relative;
    overflow: hidden;
  }
  .drone-cat-card:hover, .drone-cat-card.active {
    border-color: var(--black);
    transform: translateY(-4px);
  }
  .drone-cat-card.active { background: var(--black); }
  .drone-cat-card.active .drone-cat-name { color: var(--white); }
  .drone-cat-card.active .drone-cat-count { color: rgba(255,255,255,0.6); }
  .drone-cat-name { font-size: 16px; font-weight: 700; margin-bottom: 8px; transition: color 0.4s var(--ease); }
  .drone-cat-count { font-size: 12px; color: var(--grey); transition: color 0.4s var(--ease); }

  .drone-projects { display: flex; flex-direction: column; gap: 26px; }
  .drone-project {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 34px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.55);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.45s var(--ease);
  }
  .drone-project:hover {
    border-color: var(--black);
    box-shadow: 0 24px 50px -28px rgba(40, 20, 80, 0.25);
  }
  .drone-project-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: #efeaf6;
  }
  .drone-project-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(20%);
    transition: transform 0.8s var(--ease-luxe), filter 0.6s var(--ease);
  }
  .drone-project-thumb:hover img { transform: scale(1.05); filter: grayscale(0%); }
  .drone-project-thumb::after {
    content: '▶';
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 30px;
    background: rgba(10, 10, 12, 0.25);
    opacity: 0;
    transition: opacity 0.45s var(--ease);
  }
  .drone-project-thumb:hover::after { opacity: 1; }
  .drone-project-body { padding: 30px 30px 30px 0; display: flex; flex-direction: column; justify-content: center; }
  .drone-project-cat {
    font-size: 10px; font-weight: 600; letter-spacing: 0.24em;
    text-transform: uppercase; color: var(--grey); margin-bottom: 10px;
  }
  .drone-project-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; line-height: 1.35; }
  .drone-project-desc { font-size: 13.5px; line-height: 1.9; color: #3a3544; }

  /* DRONE PRICING */
  .drone-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0 16px;
  }
  .drone-price-card {
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(8px);
    border-radius: 4px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.35s var(--ease), transform 0.4s var(--ease);
  }
  .drone-price-card:hover { border-color: var(--black); transform: translateY(-4px); }
  .drone-price-card--featured {
    background: var(--black);
    border-color: var(--black);
  }
  .drone-price-card--featured:hover { transform: translateY(-4px); }
  .dpc-badge {
    position: absolute; top: -12px; left: 28px;
    background: var(--white); color: var(--black);
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 4px 12px;
  }
  .dpc-tag {
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--grey); margin-bottom: 12px;
  }
  .drone-price-card--featured .dpc-tag { color: rgba(255,255,255,0.4); }
  .dpc-name {
    font-size: 22px; font-weight: 700;
    letter-spacing: -0.02em; color: var(--black); margin-bottom: 14px;
  }
  .drone-price-card--featured .dpc-name { color: var(--white); }
  .dpc-desc {
    font-size: 13.5px; line-height: 1.75;
    color: #3a3544; margin-bottom: 24px;
  }
  .drone-price-card--featured .dpc-desc { color: rgba(255,255,255,0.6); }
  .dpc-items {
    list-style: none; padding: 0; margin: 0 0 28px; flex: 1;
  }
  .dpc-items li {
    font-size: 13px; color: #3a3544;
    padding: 8px 0 8px 18px;
    border-bottom: 1px solid var(--line);
    position: relative;
  }
  .dpc-items li::before {
    content: '—'; position: absolute; left: 0; top: 10px;
    color: var(--grey); font-size: 10px;
  }
  .drone-price-card--featured .dpc-items li {
    color: rgba(255,255,255,0.75);
    border-bottom-color: rgba(255,255,255,0.1);
  }
  .drone-price-card--featured .dpc-items li::before { color: rgba(255,255,255,0.3); }
  .dpc-price-row { margin-bottom: 22px; }
  .dpc-price {
    font-size: 26px; font-weight: 700;
    letter-spacing: -0.03em; color: var(--black); margin-bottom: 3px;
  }
  .drone-price-card--featured .dpc-price { color: var(--white); }
  .dpc-price-note {
    font-size: 10px; color: var(--grey);
    letter-spacing: 0.1em; text-transform: uppercase;
  }
  .drone-price-card--featured .dpc-price-note { color: rgba(255,255,255,0.4); }
  .dpc-btn {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.18);
    color: var(--black);
    font-family: inherit; font-size: 13px; font-weight: 600;
    padding: 13px 20px; cursor: pointer;
    transition: all 0.25s var(--ease);
    letter-spacing: 0.04em; text-align: center;
  }
  .dpc-btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }
  .drone-price-card--featured .dpc-btn {
    background: var(--white); color: var(--black); border-color: var(--white);
  }
  .drone-price-card--featured .dpc-btn:hover { background: rgba(255,255,255,0.85); }
  .drone-pricing-note {
    font-size: 12px; color: var(--grey);
    text-align: center; margin: 8px 0 56px; line-height: 1.6;
  }
  .drone-jump-btn {
    display: inline-flex; align-items: center; gap: 10px;
    margin: 28px 0 64px;
    font-family: inherit; font-size: 13px; font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--black); background: transparent;
    border: 1px solid rgba(10,10,12,0.2);
    padding: 13px 24px; cursor: pointer;
    transition: all 0.25s var(--ease);
  }
  .drone-jump-btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }
  .drone-jump-arrow {
    display: inline-block;
    transition: transform 0.3s var(--ease);
  }
  .drone-jump-btn:hover .drone-jump-arrow { transform: translateY(3px); }

  .video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
  }
  .video-modal.active { display: flex; }
  .video-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16/9;
  }
  .video-modal video { width: 100%; height: 100%; object-fit: contain; }
  .video-modal-close {
    position: absolute;
    top: -46px; right: 0;
    color: var(--white);
    font-size: 26px;
    cursor: pointer;
    font-weight: 300;
    background: none; border: none; font-family: inherit;
  }

  /* PORTFOLIO */
  .pf-page { max-width: 1180px; margin: 0 auto; padding: 170px 32px 130px; position: relative; z-index: 1; }
  .pf-cats {
    display: flex; flex-wrap: wrap; gap: 4px 34px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 50px;
  }
  .pf-cat-tab {
    font-family: inherit;
    font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
    text-transform: uppercase;
    background: none; border: none; cursor: pointer;
    padding: 4px 0 18px; color: var(--grey);
    position: relative;
    transition: color 0.35s var(--ease);
    line-height: 1.5;
  }
  .pf-cat-tab::after {
    content: ''; position: absolute; bottom: -1px; left: 0;
    width: 0; height: 2px; background: var(--black);
    transition: width 0.45s var(--ease);
  }
  .pf-cat-tab.active { color: var(--black); }
  .pf-cat-tab.active::after { width: 100%; }
  .pf-cat-tab:hover { color: var(--black); }

  .pf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .pf-grid .ph { aspect-ratio: 3/4; }
  .ph { background: #efeaf6; overflow: hidden; position: relative; }
  .ph img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    filter: grayscale(25%);
    transform: scale(1.06);
    transition: transform 1.1s var(--ease-luxe), filter 0.7s var(--ease);
  }
  .ph:hover img { transform: scale(1); filter: grayscale(0%); }
  .ph::after {
    content: ''; position: absolute; inset: 0;
    background: var(--violet-deep);
    transform: scaleY(1); transform-origin: top;
    transition: transform 1s var(--ease-luxe);
  }
  .ph.revealed::after { transform: scaleY(0); }

  .pf-empty {
    grid-column: 1 / -1;
    padding: 48px 24px;
    text-align: center;
    color: var(--gray-mid, #76717f);
    font-size: 14px;
    background: #efeaf6;
    border-radius: 4px;
  }

  /* ─── CTA BAND — FIN DE PORTFOLIO ─── */
  .pf-cta-band {
    background: var(--black); color: var(--white);
    padding: 46px 48px; margin-top: 60px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 32px;
    position: relative; overflow: hidden; cursor: pointer;
  }
  .pf-cta-band::after {
    content: ''; position: absolute; top: 0; left: -80%;
    width: 50%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.07), transparent);
    transform: skewX(-18deg);
    animation: subShine 5s var(--ease-luxe) infinite;
  }
  .pf-cta-left { flex: 1; position: relative; z-index: 1; }
  .pf-cta-kicker {
    font-size: 10px; font-weight: 600; letter-spacing: 0.28em;
    text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 10px;
  }
  .pf-cta-title {
    font-size: 22px; font-weight: 700; color: var(--white);
    line-height: 1.25; margin-bottom: 10px;
  }
  .pf-cta-sub {
    font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,0.52);
  }
  .pf-cta-right { flex-shrink: 0; position: relative; z-index: 1; }
  .pf-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black); background: var(--white);
    border: none; padding: 16px 30px; border-radius: 2px;
    cursor: pointer;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    white-space: nowrap;
  }
  .pf-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
  .pf-cta-arrow { transition: transform 0.35s var(--ease); display: inline-block; }
  .pf-cta-btn:hover .pf-cta-arrow { transform: translateX(5px); }

  /* ─── MARQUEE D'IMAGES (accueil) ─── */
  .marquee {
    overflow: hidden;
    padding: 0 0 100px;
    position: relative; z-index: 1;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  }
  .marquee-track {
    display: flex; gap: 14px;
    width: max-content;
    animation: marqueeScroll 55s linear infinite;
  }
  .marquee:hover .marquee-track { animation-play-state: paused; }
  .marquee-item {
    width: 280px; aspect-ratio: 4/5;
    flex-shrink: 0;
    overflow: hidden;
    background: #efeaf6;
    border-radius: 6px;
  }
  .marquee-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    filter: grayscale(30%);
    transition: filter 0.6s var(--ease), transform 0.8s var(--ease-luxe);
  }
  .marquee-item:hover img { filter: grayscale(0%); transform: scale(1.05); }
  @keyframes marqueeScroll { to { transform: translateX(-50%); } }

  .home-claim {
    text-align: center;
    padding: 0 28px 90px;
    position: relative; z-index: 1;
  }
  .home-claim-kicker {
    font-size: 10px; font-weight: 600; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--grey); margin-bottom: 18px;
  }
  .home-claim-text {
    font-size: clamp(19px, 2.8vw, 28px);
    font-weight: 700; letter-spacing: -0.02em; line-height: 1.45;
    max-width: 620px; margin: 0 auto;
  }

  /* ─── TÉMOIGNAGES (accueil) ─── */
  .testimonials-section {
    padding: 0 48px 90px;
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto;
  }
  .testimonials-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--grey);
    margin-bottom: 44px; padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  }
  .testi-card {
    padding: 36px 30px 32px;
    border: 1px solid rgba(10,10,12,0.07);
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    position: relative;
  }
  .testi-mark {
    display: block; font-size: 52px; font-weight: 700; line-height: 0.9;
    color: var(--violet-deep);
    font-family: Georgia, 'Times New Roman', serif;
    margin-bottom: 14px; user-select: none;
  }
  .testi-text {
    font-size: 13.5px; line-height: 1.85;
    color: var(--black); margin-bottom: 26px; font-style: italic;
  }
  .testi-sep { width: 28px; height: 1px; background: var(--line); margin-bottom: 16px; }
  .testi-name {
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.05em; color: var(--black); margin-bottom: 4px;
  }
  .testi-role {
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--grey); line-height: 1.6;
  }

  .side-img {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 44px;
  }

  /* CONTACT */
  .ct-page {
    max-width: 1080px; margin: 0 auto;
    padding: 170px 32px 130px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 88px;
    position: relative; z-index: 1;
  }
  .ct-title {
    font-size: clamp(32px, 5.2vw, 58px);
    font-weight: 700; letter-spacing: -0.03em;
    margin-bottom: 18px; line-height: 1.15; padding-bottom: 4px;
    opacity: 0; transform: translateY(24px);
    animation: pageTextIn 0.9s var(--ease-luxe) forwards;
  }
  .ct-sub {
    font-size: 14px; color: var(--grey); line-height: 1.85; margin-bottom: 52px; max-width: 400px;
    opacity: 0; transform: translateY(20px);
    animation: pageTextIn 0.9s var(--ease-luxe) 0.12s forwards;
  }
  .ct-info-block { margin-bottom: 40px; }
  .ct-info-label {
    font-size: 10px; font-weight: 600; letter-spacing: 0.26em;
    text-transform: uppercase; color: var(--grey); margin-bottom: 12px;
    line-height: 1.5;
  }
  .ct-info-value { font-size: 15px; font-weight: 500; line-height: 1.8; }
  .ct-info-value a {
    color: var(--black); text-decoration: none;
    border-bottom: 1px solid var(--line);
    transition: border-color 0.3s; padding-bottom: 1px;
  }
  .ct-info-value a:hover { border-color: var(--black); }
  .ct-follow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black); text-decoration: none;
    border: 1px solid var(--black);
    padding: 16px 34px;
    position: relative; overflow: hidden;
    transition: color 0.45s var(--ease);
    line-height: 1.4;
  }
  .ct-follow span { position: relative; z-index: 1; }
  .ct-follow::before {
    content: ''; position: absolute; inset: 0;
    background: var(--black);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.5s var(--ease-luxe);
  }
  .ct-follow:hover { color: var(--white); }
  .ct-follow:hover::before { transform: scaleX(1); transform-origin: left; }

  /* PARTNERS */
  .partners-page { max-width: 860px; margin: 0 auto; padding: 170px 32px 130px; position: relative; z-index: 1; }
  .partner-section { margin-bottom: 58px; }
  .partner-section h2 {
    font-size: 22px; font-weight: 700; letter-spacing: -0.015em;
    margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
  }
  .partner-section p { font-size: 14px; line-height: 1.95; color: #3a3544; margin-bottom: 14px; }
  .partner-section ul { list-style: none; padding-left: 0; }
  .partner-section li {
    font-size: 14px; line-height: 1.85; color: #3a3544;
    padding-left: 24px; margin-bottom: 9px; position: relative;
  }
  .partner-section li::before { content: '—'; position: absolute; left: 0; font-weight: 700; }
  .partner-cta {
    background: var(--black); color: var(--white);
    padding: 46px 42px;
    margin-top: 52px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .partner-cta::after {
    content: ''; position: absolute; top: 0; left: -80%;
    width: 50%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-18deg);
    animation: subShine 5s var(--ease-luxe) infinite;
  }
  .partner-cta-title { font-size: 20px; font-weight: 700; margin-bottom: 16px; }
  .partner-cta-text { font-size: 14px; line-height: 1.85; margin-bottom: 26px; opacity: 0.85; }
  .partner-cta-btn {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--white);
    border: none;
    font-family: inherit;
    padding: 17px 40px;
    cursor: pointer;
    transition: transform 0.45s var(--ease);
    position: relative; z-index: 1;
  }
  .partner-cta-btn:hover { transform: translateY(-3px); }

  /* ─── CTA FOOTER ─── */
  .footer-cta-row {
    display: flex; align-items: center;
    justify-content: space-between; gap: 24px; flex-wrap: wrap;
    max-width: 1200px; margin: 0 auto 46px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
  }
  .footer-cta-headline {
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 700; letter-spacing: -0.02em; color: var(--black);
  }
  .footer-cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: inherit;
    font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white); background: var(--black);
    border: none; padding: 13px 26px; border-radius: 2px;
    cursor: pointer; white-space: nowrap;
    position: relative; overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  }
  .footer-cta-btn::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,0.12);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.45s var(--ease-luxe);
  }
  .footer-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(10,10,12,0.18); }
  .footer-cta-btn:hover::before { transform: scaleX(1); transform-origin: left; }

  footer {
    border-top: 1px solid var(--line);
    padding: 60px 48px 34px;
    position: relative; z-index: 1;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 46px;
    align-items: start;
  }
  .footer-cols-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .ft-brand-logo-img {
    width: 42px; height: 42px; object-fit: contain; box-sizing: border-box;
    background: var(--black); border-radius: 10px; padding: 7px;
    display: block; margin-bottom: 6px;
    animation: logoOpacity 3.6s ease-in-out infinite;
  }
  .ft-brand-logo {
    font-size: 24px; font-weight: 700; letter-spacing: -0.02em;
    margin-bottom: 4px;
    animation: logoOpacity 3.6s ease-in-out infinite;
  }
  .ft-brand-studio {
    font-size: 9px; font-weight: 600; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--grey);
    margin-bottom: 20px;
  }
  .ft-claim { font-size: 13px; color: var(--grey); line-height: 1.9; max-width: 280px; }
  .ft-follow { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
  .ft-follow-label {
    font-size: 10px; font-weight: 600; letter-spacing: 0.26em;
    text-transform: uppercase; color: var(--grey);
  }
  .ft-social {
    width: 34px; height: 34px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--line); border-radius: 50%;
    color: var(--black);
    transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  }
  .ft-social svg { width: 17px; height: 17px; }
  .ft-social:hover { background: var(--black); color: var(--white); border-color: var(--black); }
  .ft-col-title {
    font-size: 10px; font-weight: 600; letter-spacing: 0.26em;
    text-transform: uppercase; color: var(--grey);
    margin-bottom: 20px;
  }
  .ft-list { list-style: none; }
  .ft-list li { margin-bottom: 11px; }
  .ft-list button, .ft-list a {
    font-family: inherit;
    font-size: 13px; font-weight: 500;
    color: var(--black);
    background: none; border: none; cursor: pointer; padding: 0;
    text-decoration: none;
    position: relative;
    transition: opacity 0.3s var(--ease);
    line-height: 1.7;
    text-align: left;
  }
  .ft-list button::after, .ft-list a::after {
    content: ''; position: absolute; bottom: -1px; left: 0;
    width: 0; height: 1px; background: var(--black);
    transition: width 0.4s var(--ease);
  }
  .ft-list button:hover::after, .ft-list a:hover::after { width: 100%; }
  .footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 26px;
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
  }
  .ft-tag { font-size: 11px; color: var(--grey); letter-spacing: 0.06em; line-height: 1.7; }

  @media (max-width: 920px) {
    /* ─── NAVBAR MOBILE : logo + hamburger ─── */
    .nav-inner { padding: 18px 22px; }
    nav.scrolled .nav-inner { padding: 14px 22px; }
    .nav-studio { font-size: 7px; letter-spacing: 0.26em; }

    .hero { padding: 130px 22px 70px; }
    .quiz-wrap, .services-page, .drone-page, .pf-page, .partners-page, .login-page, .account-page { padding: 130px 22px 100px; }
    .ct-page { grid-template-columns: 1fr; gap: 56px; padding: 130px 22px 100px; }
    .qstep-title, .page-title, .ct-title { scroll-margin-top: 150px; }
    .pf-grid { grid-template-columns: repeat(2, 1fr); }
    .pf-cta-band { flex-direction: column; text-align: center; padding: 32px 24px; gap: 20px; }
    .pf-cta-btn { width: 100%; justify-content: center; }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .prof-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .drone-project { grid-template-columns: 1fr; gap: 0; }
    .drone-project-body { padding: 26px; }
    .drone-pricing-grid { grid-template-columns: 1fr; gap: 16px; }
    .dpc-price { font-size: 22px; }
    .video-modal-close { top: -40px; }
    .testimonials-section { padding: 0 22px 70px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
    .footer-cta-row { flex-direction: column; align-items: flex-start; gap: 18px; }
    .footer-cta-btn { width: 100%; justify-content: center; }
    footer { padding: 40px 22px 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-cols-right { grid-template-columns: 1fr 1fr; gap: 20px; }
    .btn { width: 100%; text-align: center; }
    .cat-tag { display: none; }
    .cat-ic { width: 36px; height: 36px; }
    .cat-left { gap: 16px; }
    .cat-item { padding: 22px 6px; }
    .cat-item:hover { padding-left: 14px; }
    .marquee-item { width: 220px; }
    .orb-1 { width: 300px; height: 300px; }
    .orb-2 { width: 260px; height: 260px; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  }
  /* ─── ESTIMATION CALCULATEUR ─── */
  .price-calc-wrap {
    text-align: center;
    padding: 40px 32px 36px;
    border: 1.5px solid rgba(160,120,220,0.25);
    border-radius: 12px;
    margin-bottom: 36px;
    background: linear-gradient(135deg,rgba(246,243,253,0.85),rgba(255,255,255,0.92));
    position: relative; overflow: hidden;
  }
  .price-calc-wrap::before {
    content:''; position:absolute; top:0; left:-100%;
    width:60%; height:100%;
    background:linear-gradient(90deg,transparent,rgba(200,170,240,0.12),transparent);
    animation: shimmer 2.2s ease-in-out infinite;
  }
  @keyframes shimmer { to { left: 160%; } }
  .price-calc-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
    color: var(--grey); margin-bottom: 20px;
  }
  .price-calc-amount {
    font-size: clamp(34px,6vw,60px); font-weight: 700;
    letter-spacing: -0.03em; color: var(--black);
    font-variant-numeric: tabular-nums;
    position: relative; z-index: 1;
  }
  .price-calc-note {
    margin: 20px auto 0; max-width: 480px;
    font-size: 13px; color: var(--grey); line-height: 1.7;
    position: relative; z-index: 1;
  }
  .price-calc-payment {
    margin: 16px auto 0; max-width: 480px;
    font-size: 13px; font-weight: 600; color: var(--black); line-height: 1.7;
    position: relative; z-index: 1;
  }
  @media (max-width: 920px) {
    .tier-list { grid-template-columns: 1fr; gap: 14px; }
    .services-grid { grid-template-columns: 1fr; }
    .quiz-wrap { padding: 24px 16px 60px; }
    .prof-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .opt-item { padding: 14px 12px; gap: 10px; }
    .price-calc-wrap { padding: 28px 20px; }
    .drone-projects { grid-template-columns: 1fr; }
    .services-layout.has-photo { grid-template-columns: 1fr; }
    .svc-cat-photo { display: none; }
    .cred-grid { grid-template-columns: 1fr; }
    .pfGrid { grid-template-columns: 1fr 1fr; }
  }
