  :root[data-theme="light"] {
    --bg: #ffffff;
    --bg-soft: #f5f7fb;
    --surface: #ffffff;
    --ink: #182b72;
    --ink-soft: #5a6390;
    --blue: #182b72;
    --blue-deep: #0e1a4a;
    --orange: #ff5e00;
    --orange-soft: #ffb380;
    --pink: #ff4d8d;
    --yellow: #ffd400;
    --green: #00d68f;
    --purple: #7c3aed;
    --line: rgba(13,23,65,0.08);
  }
  :root[data-theme="dark"] {
    --bg: #0a0a1f;
    --bg-soft: #14143a;
    --surface: #1a1a40;
    --ink: #ffffff;
    --ink-soft: #b0b4d6;
    --blue: #5470ff;
    --blue-deep: #1e40ff;
    --orange: #ff7a2e;
    --orange-soft: #ff9d5e;
    --pink: #ff5e9c;
    --yellow: #ffd400;
    --green: #00e89e;
    --purple: #a78bfa;
    --line: rgba(255,255,255,0.1);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; overflow-x: hidden; }
  body {
    font-family: 'Bricolage Grotesque', sans-serif;
    max-width: 100vw;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: background 0.4s, color 0.4s;
  }
  .container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
  a { color: inherit; }

  /* === BLOBS animés en fond === */
  .bg-blobs {
    display: none;
  }
  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    animation: float 18s ease-in-out infinite;
  }
  .blob-1 {
    width: 500px; height: 500px;
    background: var(--orange);
    top: -100px; left: -100px;
    animation-delay: 0s;
  }
  .blob-2 {
    width: 400px; height: 400px;
    background: var(--blue);
    top: 30%; right: -100px;
    animation-delay: -6s;
  }
  .blob-3 {
    width: 450px; height: 450px;
    background: var(--pink);
    bottom: -100px; left: 30%;
    animation-delay: -12s;
    opacity: 0.3;
  }
  @keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -40px) scale(1.1); }
    66% { transform: translate(-40px, 60px) scale(0.95); }
  }

  /* === NAV === */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
    backdrop-filter: blur(20px);
    background: color-mix(in srgb, var(--bg) 75%, transparent);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    max-width: 1320px;
    margin: 0 auto;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: var(--ink);
  }
  .logo-mark {
    height: 48px; width: auto;
    object-fit: contain;
    display: block;
  }
  .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
  }
  .nav-links a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .theme-toggle {
    display: none !important;
    width: 38px; height: 38px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--surface);
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    transition: transform 0.2s, background 0.3s;
  }
  .theme-toggle:hover { transform: scale(1.05); }
  .nav-cta {
    background: var(--ink);
    color: var(--bg);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .nav-cta:hover { transform: translateY(-1px); }
  .nav-links > li { position: relative; }
  .nav-link-toggle {
    display: inline-flex; align-items: center; gap: 5px;
    cursor: pointer; background: none; border: none;
    color: var(--ink-soft); font-family: inherit;
    font-size: 14px; font-weight: 500; padding: 0;
    transition: color 0.2s;
  }
  .nav-link-toggle:hover { color: var(--ink); }
  .nav-link-toggle::after {
    content: ''; width: 5px; height: 5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translate(-1px, -1px);
    transition: transform 0.2s;
  }
  .has-dropdown.open .nav-link-toggle::after { transform: rotate(-135deg) translate(-3px, -3px); }
  .dropdown {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 220px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 12px 32px rgba(13,23,65,0.08);
    opacity: 0; pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    margin-top: 10px;
    z-index: 50;
  }
  .has-dropdown:hover > .dropdown,
  .has-dropdown.open > .dropdown {
    opacity: 1; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .dropdown a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
  }
  .dropdown a:hover { background: var(--bg-soft); color: var(--orange); }
  .nav-toggle {
    display: none;
    width: 38px; height: 38px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--surface);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
  }
  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu {
    display: none;
    flex-direction: column;
    padding: 8px 24px 20px;
    border-top: 1px solid var(--line);
    background: color-mix(in srgb, var(--bg) 95%, transparent);
    backdrop-filter: blur(20px);
  }
  .mobile-menu a {
    color: var(--ink);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu.open { display: flex; }
  .mobile-group { padding: 6px 0 10px; border-bottom: 1px solid var(--line); }
  .mobile-group:last-child { border-bottom: none; }
  .mobile-group-title {
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--ink-soft);
    font-weight: 700; padding: 12px 4px 4px;
  }
  .mobile-group a { border-bottom: none; padding: 10px 4px 10px 14px; font-size: 15px; }

  /* === HERO === */
  .hero {
    padding: 80px 0 120px;
    position: relative;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    padding: 0 24px;
    max-width: 1320px;
    margin: 0 auto;
  }
  .hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
    color: var(--ink-soft);
  }
  .hero-pill-dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 25%, transparent);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 25%, transparent); }
    50% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--green) 0%, transparent); }
  }
  .hero h1 {
    font-size: clamp(48px, 7vw, 84px);
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
  }
  .hero h1 .grad {
    background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 50%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero h1 .grad-blue {
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero h1 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
  }
  .hero-lead {
    font-size: 19px;
    color: var(--ink-soft);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.55;
  }
  .hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: white;
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--orange) 35%, transparent);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px color-mix(in srgb, var(--orange) 50%, transparent);
  }
  .btn-secondary {
    background: var(--surface);
    color: var(--ink);
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
  }
  .btn-secondary:hover { transform: translateY(-2px); }

  .hero-trust {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--ink-soft);
  }
  .stars { color: var(--orange); font-size: 16px; letter-spacing: 1px; }
  .avatars {
    display: flex;
  }
  .avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    margin-left: -8px;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }
  .avatar:nth-child(1) { background: linear-gradient(135deg, var(--orange), var(--pink)); margin-left: 0; }
  .avatar:nth-child(2) { background: linear-gradient(135deg, var(--blue), var(--purple)); }
  .avatar:nth-child(3) { background: linear-gradient(135deg, var(--green), var(--blue)); }
  .avatar:nth-child(4) { background: linear-gradient(135deg, var(--pink), var(--purple)); }

  /* === HERO VISUAL : mockup app === */
  .hero-visual {
    position: relative;
    aspect-ratio: 1/1;
  }
  .mockup-card {
    position: absolute;
    background: var(--surface);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(13,23,65,0.15);
    padding: 20px;
    border: 1px solid var(--line);
    transition: transform 0.4s;
  }
  .mockup-main {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 85%;
    z-index: 2;
    animation: floatCard 6s ease-in-out infinite;
  }
  .mockup-side {
    bottom: 20px;
    right: -10px;
    width: 60%;
    transform: rotate(4deg);
    z-index: 3;
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    color: white;
    border: none;
    animation: floatCard 7s ease-in-out infinite reverse;
  }
  .mockup-corner {
    top: 30%;
    left: -10px;
    width: 50%;
    transform: rotate(-6deg);
    z-index: 1;
    background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
    color: white;
    border: none;
    animation: floatCard 8s ease-in-out infinite;
    animation-delay: -3s;
  }
  @keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
    50% { transform: translateY(-10px) rotate(var(--rot, 0deg)); }
  }
  .mockup-main { --rot: -2deg; }
  .mockup-side { --rot: 4deg; }
  .mockup-corner { --rot: -6deg; }

  .mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }
  .mock-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    font-weight: 600;
  }
  .mock-dots { display: flex; gap: 4px; }
  .mock-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.3;
  }
  .mock-question {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .mock-bubble {
    background: color-mix(in srgb, currentColor 8%, transparent);
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 12px;
    margin-bottom: 8px;
    line-height: 1.4;
  }
  .mock-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 6px 0;
  }
  .mock-stat-label { font-size: 11px; opacity: 0.8; }
  .mock-stat-val { font-size: 20px; font-weight: 700; }
  .mock-progress {
    height: 6px;
    background: rgba(255,255,255,0.25);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 8px;
  }
  .mock-progress-fill {
    height: 100%;
    width: 78%;
    background: white;
    border-radius: 999px;
  }
  .mock-emoji {
    font-size: 24px;
    margin-bottom: 8px;
  }

  /* === PRESS / VU DANS LA PRESSE === */
  .press-strip {
    padding: 56px 24px;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
  }
  .press-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 36px;
    align-items: center;
  }
  .press-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-soft);
    font-weight: 700;
    margin-bottom: 8px;
  }
  .press-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 18px;
    color: var(--ink);
    letter-spacing: -0.01em;
    text-decoration: none;
    line-height: 1.1;
  }
  .press-logo-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #e30613;
    flex-shrink: 0;
  }
  .press-logo-sub {
    font-size: 11px;
    color: var(--ink-soft);
    font-weight: 600;
    margin-top: 2px;
    letter-spacing: 0.04em;
  }
  .press-quote {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.45;
    color: var(--ink);
    position: relative;
    padding-left: 18px;
    border-left: 3px solid var(--orange);
  }
  .press-attr {
    display: block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-style: normal;
    font-size: 12px;
    color: var(--ink-soft);
    margin-top: 8px;
    font-weight: 500;
  }
  .press-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    text-decoration: none;
    white-space: nowrap;
    transition: gap 0.2s;
  }
  .press-link:hover { gap: 10px; }
  @media (max-width: 820px) {
    .press-inner { grid-template-columns: 1fr; gap: 20px; text-align: left; }
    .press-link { justify-self: start; }
  }

  /* === LOGO MARQUEE / TRUST BAR === */
  .trust-bar {
    padding: 32px 0;
    background: #182b72;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
  }
  .trust-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 24px;
    max-width: 1320px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .trust-num {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
  }
  .trust-label {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .trust-qualiopi {
    background: white;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid var(--line);
  }
  .trust-qualiopi img { height: 36px; width: auto; display: block; }

  /* === SERVICES (cartes asymétriques colorées) === */
  .services {
    padding: 120px 0;
    position: relative;
  }
  .services-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 24px;
  }
  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .section-tag-emoji { font-size: 16px; }
  .section-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
  }
  .section-title .grad {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .section-sub {
    color: var(--ink-soft);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 24px;
    max-width: 1320px;
    margin: 0 auto;
  }
  .service {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px 26px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    min-width: 0;
  }
  .service-name, .service-desc { word-wrap: break-word; overflow-wrap: anywhere; }
  .service:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(13,23,65,0.10);
    border-color: var(--orange);
  }
  .service-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--bg-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
  }
  .service-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
  }
  .service-badge {
    background: var(--bg-soft);
    color: var(--ink-soft);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .service-badge.live {
    background: var(--orange);
    color: white;
  }
  .service-content { flex: 1; display: flex; flex-direction: column; }
  .service-name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin-bottom: 8px;
    color: var(--ink);
  }
  .service-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-soft);
    margin-bottom: 20px;
    flex: 1;
  }
  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    transition: color 0.2s, gap 0.2s;
  }
  .service:hover .service-link { color: var(--orange); gap: 10px; }
  .service.is-live .service-link { color: var(--orange); }

  /* === AVIS / TÉMOIGNAGES carousel === */
  .testimonials {
    padding: 100px 24px;
    background: var(--bg-soft);
    text-align: center;
  }
  .testimonials-header {
    max-width: 700px;
    margin: 0 auto 56px;
  }
  .testimonials-carousel {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
  }
  .testimonials-viewport {
    overflow: hidden;
    border-radius: 28px;
  }
  .testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }
  .testimonial-slide {
    min-width: 100%;
    padding: 0 4px;
    box-sizing: border-box;
  }
  .testimonial-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 56px 48px 44px;
    text-align: center;
    position: relative;
    box-shadow: 0 12px 32px rgba(13,23,65,0.06);
  }
  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 32px;
    font-family: 'Instrument Serif', serif;
    font-size: 200px;
    color: var(--orange);
    opacity: 0.18;
    line-height: 1;
    pointer-events: none;
  }
  .testimonial-stars {
    color: #ffb800;
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 22px;
  }
  .testimonial-text {
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.55;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
  }
  .testimonial-text em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
  }
  .testimonial-author {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
  }
  .testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
  }
  .avatar-1 { background: linear-gradient(135deg, var(--orange), #ff8a4a); }
  .avatar-2 { background: linear-gradient(135deg, var(--blue), #3856b8); }
  .avatar-3 { background: linear-gradient(135deg, #d946ef, var(--pink)); }
  .avatar-4 { background: linear-gradient(135deg, #14b8a6, #06b6d4); }
  .testimonial-info { text-align: left; line-height: 1.3; }
  .testimonial-name { font-weight: 700; font-size: 15px; color: var(--ink); }
  .testimonial-meta { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }

  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--line);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    color: var(--ink);
    box-shadow: 0 4px 14px rgba(13,23,65,0.10);
    z-index: 5;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    display: flex; align-items: center; justify-content: center;
  }
  .carousel-btn:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(13,23,65,0.18);
    background: var(--orange);
    color: white;
    border-color: var(--orange);
  }
  .carousel-prev { left: -22px; }
  .carousel-next { right: -22px; }
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
  }
  .carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(24,43,114,0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
  }
  .carousel-dot.active {
    background: var(--orange);
    width: 28px;
    border-radius: 4px;
  }
  @media (max-width: 720px) {
    .testimonial-card { padding: 44px 28px 36px; }
    .testimonial-card::before { font-size: 140px; top: -20px; left: 16px; }
    .carousel-prev { left: 6px; }
    .carousel-next { right: 6px; }
    .carousel-btn { width: 38px; height: 38px; font-size: 18px; }
  }

  /* === CTA inline (horizontal teaser) === */
  .cta-inline-wrap {
    padding: 80px 24px 0;
  }
  .cta-inline {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    box-shadow: 0 10px 40px rgba(13,23,65,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .cta-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(13,23,65,0.1);
  }
  .cta-inline-text { min-width: 0; }
  .cta-inline-text h3 {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    color: var(--ink);
  }
  .cta-inline-text h3 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .cta-inline-text p {
    font-size: 15px;
    color: var(--ink-soft);
    margin: 0;
  }
  .cta-inline .btn-primary {
    flex-shrink: 0;
    white-space: nowrap;
  }
  @media (max-width: 720px) {
    .cta-inline {
      flex-direction: column;
      align-items: flex-start;
      padding: 28px;
    }
    .cta-inline .btn-primary { width: 100%; text-align: center; }
    .services-grid { grid-template-columns: 1fr; gap: 16px; padding: 0 16px; }
    .service { padding: 22px 20px; min-height: auto; }
  }

  /* === CTA final === */
  .cta-section {
    padding: 100px 24px 120px;
    text-align: center;
    background: #182b72;
    color: #ffffff;
  }
  .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 28px;
  }
  .cta-trust {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
  }
  .cta-trust span { white-space: nowrap; }
  .cta-trust .star { color: var(--orange); }
  .cta-section h2 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 24px;
    color: #ffffff;
  }
  .cta-section h2 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
  }
  .cta-section h2 .grad {
    background: linear-gradient(135deg, var(--orange), #ffb380);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin: 0 auto 40px;
  }

  /* === FOOTER === */
  footer {
    padding: 60px 24px 30px;
    background: var(--surface);
    border-top: 1px solid var(--line);
  }
  .footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
  }
  .footer-contact a:hover { color: var(--orange); opacity: 1; }

  /* CTA contact tiles */
  .cta-contacts {
    margin-top: 56px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    text-decoration: none;
    color: var(--ink);
    text-align: left;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  }
  .cta-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(13,23,65,0.12);
    border-color: color-mix(in srgb, var(--orange) 50%, transparent);
  }
  .cta-contact-wa:hover {
    border-color: color-mix(in srgb, var(--green) 60%, transparent);
  }
  .cta-contact-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .cta-contact-wa .cta-contact-icon {
    background: color-mix(in srgb, var(--green) 18%, transparent);
  }
  .cta-contact-body {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    min-width: 0;
  }
  .cta-contact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
    font-weight: 600;
    margin-bottom: 2px;
  }
  .cta-contact-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
    line-height: 1.25;
  }
  @media (max-width: 900px) {
    .cta-contacts { flex-direction: column; align-items: stretch; max-width: 420px; }
    .cta-contact-value { font-size: 14px; }
  }
  .footer-tag {
    color: var(--ink-soft);
    font-size: 14px;
    max-width: 280px;
    margin: 16px 0;
  }
  .footer-qualiopi {
    background: white;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--line);
    display: inline-block;
  }
  .footer-qualiopi img { height: 36px; width: auto; display: block; }
  .footer-list h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
    margin-bottom: 14px;
    font-weight: 600;
  }
  .footer-list ul {
    list-style: none;
    font-size: 14px;
    line-height: 2;
  }
  .footer-list a {
    color: var(--ink);
    text-decoration: none;
    opacity: 0.85;
  }
  .footer-bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--ink-soft);
  }

  /* === ANIMATIONS d'entrée === */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-pill, .hero h1, .hero-lead, .hero-actions, .hero-trust {
    animation: fadeUp 0.9s ease-out both;
  }
  .hero h1 { animation-delay: 0.1s; }
  .hero-lead { animation-delay: 0.2s; }
  .hero-actions { animation-delay: 0.3s; }
  .hero-trust { animation-delay: 0.4s; }

  /* Scroll-reveal */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    will-change: opacity, transform;
  }
  .reveal.in-view { opacity: 1; transform: translateY(0); }
  .services-grid .service.reveal:nth-child(1) { transition-delay: 0.00s; }
  .services-grid .service.reveal:nth-child(2) { transition-delay: 0.06s; }
  .services-grid .service.reveal:nth-child(3) { transition-delay: 0.12s; }
  .services-grid .service.reveal:nth-child(4) { transition-delay: 0.18s; }
  .services-grid .service.reveal:nth-child(5) { transition-delay: 0.24s; }
  .services-grid .service.reveal:nth-child(6) { transition-delay: 0.30s; }
  .services-grid .service.reveal:nth-child(7) { transition-delay: 0.36s; }
  .services-grid .service.reveal:nth-child(8) { transition-delay: 0.42s; }
  .trust-inner .trust-item.reveal:nth-child(1) { transition-delay: 0.00s; }
  .trust-inner .trust-item.reveal:nth-child(2) { transition-delay: 0.08s; }
  .trust-inner .trust-item.reveal:nth-child(3) { transition-delay: 0.16s; }
  .trust-inner .trust-qualiopi.reveal { transition-delay: 0.24s; }

  /* Section title underline draw */
  .section-title .grad {
    background-size: 200% 100%;
    animation: shimmer 6s ease-in-out infinite;
  }
  @keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
  }

  /* CTA button shine */
  .btn-primary { position: relative; overflow: hidden; }
  .btn-primary::after {
    content: '';
    position: absolute; top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
  }
  .btn-primary:hover::after { left: 130%; }

  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .section-title .grad { animation: none; }
    .btn-primary::after { display: none; }
    .mockup-main, .mockup-side, .mockup-corner { animation: none; }
  }

  /* === RESPONSIVE === */
  @media (max-width: 900px) {
.nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero-inner { grid-template-columns: 1fr; gap: 60px; padding: 0 16px; }
    .hero h1 { font-size: clamp(36px, 9vw, 56px); }
    .hero-lead { font-size: 16px; }
    .hero-pill { font-size: 13px; padding: 8px 14px; }
    .hero-trust { flex-wrap: wrap; gap: 12px; font-size: 13px; }
    .mockup-side { right: 0; }
    .mockup-corner { left: 0; }
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service { min-height: auto; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .trust-inner { gap: 32px; }
    .hero { padding: 40px 0 80px; overflow: hidden; }
    .services { padding: 80px 0; }
  }

  /* === Bouton outline (Nos annonces dans le hero) === */
  .btn-outline {
    background: white;
    color: var(--ink);
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, background 0.2s, color 0.2s;
  }
  .btn-outline:hover {
    background: var(--ink);
    color: white;
    transform: translateY(-2px);
  }

  /* === Carousel annonces sur la home === */
  .home-annonces {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  }
  .home-annonces-header {
    text-align: center;
    margin-bottom: 56px;
    padding: 0 24px;
  }
  .home-annonces-carousel {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .home-annonces-viewport {
    overflow: hidden;
    border-radius: 22px;
  }
  .home-annonces-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }
  .home-annonce-slide {
    flex: 0 0 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .home-annonces-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--line);
    cursor: pointer;
    font-size: 24px;
    color: var(--ink);
    z-index: 5;
    box-shadow: 0 4px 14px rgba(13,23,65,0.10);
    transition: transform 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .home-annonces-btn:hover {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
    transform: translateY(-50%) scale(1.08);
  }
  .home-annonces-prev { left: -8px; }
  .home-annonces-next { right: -8px; }
  .home-annonces-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
  }
  .home-annonces-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(24,43,114,0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.3s, background 0.3s;
  }
  .home-annonces-dot.active {
    background: var(--orange);
    width: 28px;
    border-radius: 4px;
  }
  .home-annonces-footer {
    text-align: center;
    margin-top: 40px;
  }
  @media (max-width: 1000px) {
    .home-annonce-slide { flex: 0 0 50%; }
  }
  @media (max-width: 720px) {
    .home-annonces { padding: 70px 0; }
    .home-annonce-slide { flex: 0 0 100%; }
    .home-annonces-prev { left: 4px; }
    .home-annonces-next { right: 4px; }
    .home-annonces-btn { width: 40px; height: 40px; font-size: 20px; }
  }

  /* === Style annonce-card sur la home === */
  .home-annonce-slide .annonce-card {
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .home-annonce-slide .annonce-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(13, 23, 65, 0.10);
  }
  .home-annonce-slide .annonce-image {
    position: relative;
    aspect-ratio: 16/10;
    background: var(--bg-soft);
    overflow: hidden;
  }
  .home-annonce-slide .annonce-image img { width: 100%; height: 100%; object-fit: cover; }
  .home-annonce-slide .annonce-image-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Instrument Serif', serif; font-style: italic; font-size: 70px;
  }
  .home-annonce-slide .annonce-cat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
  .home-annonce-slide .annonce-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
  }
  .home-annonce-slide .annonce-title { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
  .home-annonce-slide .annonce-desc { color: var(--ink-soft); font-size: 14px; line-height: 1.5; flex: 1; }
  .home-annonce-slide .annonce-meta { display: flex; gap: 12px; font-size: 12px; color: var(--ink-soft); flex-wrap: wrap; }
  .home-annonce-slide .annonce-price { color: var(--orange); font-weight: 700; }
  .home-annonce-slide .annonce-cta { color: var(--orange); font-weight: 600; font-size: 13px; margin-top: 6px; }
