    /* ── RESET & TOKENS ─────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --black:      #0A0A0A;
      --white:      #F0F0F0;
      --accent:     #C094FB;
      --accent-dim: rgba(192,148,251,0.10);
      --accent-glow:rgba(192,148,251,0.30);
      --gray:       #141414;
      --gray-mid:   #2A2A2A;
      --gray-text:  #777;
      --nav-h:      72px;
      --font:       'Inter', system-ui, sans-serif;
    }
    html { scroll-behavior: smooth; }
    body {
      background: var(--black);
      color: var(--white);
      font-family: var(--font);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
      cursor: none;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ── CURSOR (desktop only) ─────────────────── */
    #cursor, #cursor-ring {
      position: fixed; pointer-events: none; border-radius: 50%; z-index: 9999;
      transform: translate(-50%,-50%); transition: width .3s, height .3s;
    }
    #cursor      { width:10px; height:10px; background:var(--accent); }
    #cursor-ring { width:38px; height:38px; border:1px solid rgba(192,148,251,.35); z-index:9998; transition:transform .18s ease,width .3s,height .3s; }
    body.hovering #cursor      { width:18px; height:18px; }
    body.hovering #cursor-ring { width:56px; height:56px; border-color:var(--accent); }
    @media(max-width:768px){ #cursor,#cursor-ring{ display:none; } body{ cursor:auto; } }

    /* ── NAV ───────────────────────────────────── */
    nav {
      position: fixed; top:0; left:0; right:0; z-index:200;
      height: var(--nav-h);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px;
      background: rgba(10,10,10,.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid transparent;
      transition: border-color .3s;
    }
    nav.scrolled { border-color: var(--gray-mid); }

    .nav-logo img { height: 32px; width: auto; filter: invert(1); }

    /* Desktop links */
    .nav-links {
      display: flex; align-items: center; gap: 36px; list-style: none;
    }
    .nav-links a {
      font-size: 13px; font-weight: 500; letter-spacing: .3px;
      color: var(--gray-text); transition: color .2s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-cta {
      background: var(--accent) !important; color: var(--black) !important;
      padding: 9px 20px; border-radius: 6px; font-weight: 700 !important;
      font-size: 13px !important; transition: opacity .2s !important;
    }
    .nav-cta:hover { opacity: .85; }

    /* Burger button */
    .burger {
      display: none; flex-direction: column; justify-content: center;
      gap: 5px; width: 40px; height: 40px; cursor: pointer;
      background: none; border: none; padding: 4px; z-index: 201;
    }
    .burger span {
      display: block; width: 24px; height: 2px;
      background: var(--white); border-radius: 2px;
      transition: transform .35s cubic-bezier(.77,0,.175,1), opacity .2s, width .3s;
      transform-origin: center;
    }
    .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger.open span:nth-child(2) { opacity: 0; width: 0; }
    .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    @media(max-width:1100px){
      .nav-links { display: none; }
      .burger { display: flex; }
      nav { padding: 0 24px; }
    }

    /* ── FULLSCREEN MENU ───────────────────────── */
    #fs-menu {
      position: fixed; inset: 0; z-index: 199;
      background: var(--black);
      display: flex; flex-direction: column;
      padding: var(--nav-h) 0 0;
      transform: translateX(100%);
      transition: transform .45s cubic-bezier(.77,0,.175,1);
      overflow-y: auto;
    }
    #fs-menu.open { transform: translateX(0); }

    .fs-inner {
      flex: 1; display: flex; flex-direction: column;
      padding: 40px 32px 32px;
      gap: 0;
    }

    .fs-nav-item {
      border-bottom: 1px solid var(--gray-mid);
    }
    .fs-nav-link {
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 0;
      font-size: clamp(20px, 5vw, 28px);
      font-weight: 700; letter-spacing: -0.5px;
      color: var(--white); cursor: pointer;
      transition: color .2s;
    }
    .fs-nav-link:hover { color: var(--accent); }
    .fs-nav-link .arrow {
      font-size: 18px; color: var(--gray-text);
      transition: transform .3s, color .2s;
    }
    .fs-nav-link.has-sub .arrow { display: inline-block; }
    .fs-nav-link.has-sub.open .arrow { transform: rotate(90deg); color: var(--accent); }

    .fs-sub {
      max-height: 0; overflow: hidden;
      transition: max-height .4s cubic-bezier(.77,0,.175,1);
    }
    .fs-sub.open { max-height: 400px; }
    .fs-sub a {
      display: block; padding: 11px 0 11px 16px;
      font-size: 15px; color: var(--gray-text);
      border-left: 2px solid var(--gray-mid);
      margin-left: 4px; margin-bottom: 2px;
      transition: color .2s, border-color .2s;
    }
    .fs-sub a:hover { color: var(--accent); border-color: var(--accent); }

    .fs-socials {
      display: flex; gap: 20px; padding: 32px 0 8px;
      margin-top: auto;
    }
    .fs-socials a {
      width: 44px; height: 44px;
      border: 1px solid var(--gray-mid); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--gray-text); transition: border-color .2s, color .2s;
    }
    .fs-socials a:hover { border-color: var(--accent); color: var(--accent); }
    .fs-socials svg { width: 18px; height: 18px; fill: currentColor; }

    .fs-cta {
      display: block; text-align: center;
      background: var(--accent); color: var(--black);
      padding: 16px; border-radius: 8px;
      font-weight: 700; font-size: 16px;
      margin-top: 24px;
    }

    /* ── HERO ──────────────────────────────────── */
    #hero {
      min-height: 100svh; display: flex; flex-direction: column;
      justify-content: center;
      padding: calc(var(--nav-h) + 60px) 48px 80px;
      position: relative; overflow: hidden;
    }
    #hero::after {
      content:''; position:absolute; top:-10%; right:-5%;
      width: min(700px, 80vw); height: min(700px, 80vw);
      background: radial-gradient(circle, rgba(192,148,251,.13) 0%, transparent 70%);
      pointer-events:none;
      animation: pulse-glow 6s ease-in-out infinite;
    }
    @keyframes pulse-glow {
      0%,100%{ transform:scale(1); opacity:1; }
      50%{ transform:scale(1.1); opacity:.7; }
    }

    .hero-tag {
      display:inline-flex; align-items:center; gap:8px;
      font-size:11px; font-weight:700; letter-spacing:2.5px;
      text-transform:uppercase; color:var(--accent); margin-bottom:28px;
      opacity:0; animation:fadeUp .8s .2s forwards;
    }
    .hero-tag::before { content:''; width:20px; height:1px; background:var(--accent); }

    h1 {
      font-size: clamp(40px, 7vw, 110px);
      font-weight:900; line-height:1.0; letter-spacing:-2px;
      max-width: 900px;
      opacity:0; animation:fadeUp .9s .4s forwards;
    }
    h1 .dim    { color: var(--gray-text); }
    h1 .accent { color: var(--accent); }

    .hero-sub {
      margin-top:32px; font-size:clamp(15px,2vw,18px);
      color:var(--gray-text); max-width:480px; line-height:1.75;
      opacity:0; animation:fadeUp .9s .6s forwards;
    }
    .hero-actions {
      margin-top:44px; display:flex; align-items:center;
      gap:24px; flex-wrap:wrap;
      opacity:0; animation:fadeUp .9s .8s forwards;
    }
    .btn-primary {
      background:var(--accent); color:var(--black);
      padding:15px 32px; border-radius:8px;
      font-weight:700; font-size:15px;
      transition:transform .2s, box-shadow .2s;
    }
    .btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 28px var(--accent-glow); }
    .btn-ghost {
      color:var(--white); font-size:15px; font-weight:500;
      display:flex; align-items:center; gap:8px; transition:gap .2s;
    }
    .btn-ghost:hover { gap:14px; }
    .btn-ghost svg { width:16px; height:16px; }

    /* Morph */
    .morph-wrap {
      margin-top:80px;
      opacity:0; animation:fadeUp .9s 1s forwards;
    }
    .morph-label { font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--gray-text); margin-bottom:10px; }
    .morph-text {
      font-size:clamp(28px,5vw,72px); font-weight:900;
      letter-spacing:-2px; color:var(--white);
      transition: opacity .4s, transform .4s;
    }

    .scroll-hint {
      position:absolute; bottom:36px; left:48px;
      display:flex; align-items:center; gap:12px;
      font-size:11px; letter-spacing:1.5px; text-transform:uppercase;
      color:var(--gray-text);
      opacity:0; animation:fadeUp .9s 1.4s forwards;
    }
    .scroll-line {
      width:36px; height:1px; background:var(--gray-mid);
      position:relative; overflow:hidden;
    }
    .scroll-line::after {
      content:''; position:absolute; left:-100%; top:0;
      width:100%; height:100%; background:var(--accent);
      animation:scroll-run 2.2s 2s ease-in-out infinite;
    }
    @keyframes scroll-run { 0%{left:-100%} 100%{left:100%} }

    @media(max-width:768px){
      #hero { padding: calc(var(--nav-h) + 40px) 24px 60px; }
      h1 { letter-spacing:-1px; }
      .morph-wrap { margin-top:48px; }
      .scroll-hint { display:none; }
    }

    /* ── MARQUEE ───────────────────────────────── */
    .marquee-wrap {
      overflow:hidden;
      border-top:1px solid var(--gray-mid);
      border-bottom:1px solid var(--gray-mid);
      padding:18px 0;
    }
    .marquee-track {
      display:flex; gap:48px;
      animation:marquee 24s linear infinite;
      width:max-content;
    }
    .marquee-item {
      font-size:12px; font-weight:600; letter-spacing:2px;
      text-transform:uppercase; color:var(--gray-text);
      white-space:nowrap; display:flex; align-items:center; gap:16px;
    }
    .marquee-item::after { content:'✦'; color:var(--accent); font-size:10px; }
    @keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

    /* ── STATS ─────────────────────────────────── */
    #stats {
      border-bottom:1px solid var(--gray-mid);
      padding:60px 48px;
      display:grid; grid-template-columns:repeat(4,1fr); gap:32px;
    }
    .stat { text-align:center; }
    .stat-num {
      font-size:clamp(32px,4vw,56px); font-weight:900;
      letter-spacing:-2px;
    }
    .stat-num .sfx { color:var(--accent); }
    .stat-label { font-size:13px; color:var(--gray-text); margin-top:6px; }
    @media(max-width:600px){
      #stats { grid-template-columns:repeat(2,1fr); padding:40px 24px; }
    }

    /* ── SECTIONS COMMON ──────────────────────── */
    section { padding:100px 48px; }
    .section-tag {
      font-size:11px; font-weight:700; letter-spacing:3px;
      text-transform:uppercase; color:var(--accent);
      margin-bottom:20px; display:flex; align-items:center; gap:10px;
    }
    .section-tag::before { content:''; width:18px; height:1px; background:var(--accent); }
    h2 {
      font-size:clamp(30px,4.5vw,64px); font-weight:900;
      letter-spacing:-2px; line-height:1.05; margin-bottom:20px;
    }
    h2 .dim { color:var(--gray-text); }

    @media(max-width:768px){ section{ padding:72px 24px; } }

    /* ── SERVICES ──────────────────────────────── */
    .services-grid {
      display:grid; grid-template-columns:repeat(2,1fr);
      gap:2px; margin-top:56px;
    }
    @media(max-width:700px){ .services-grid{ grid-template-columns:1fr; } }

    .service-card {
      background:var(--gray); padding:48px 44px;
      position:relative; overflow:hidden;
      transition:background .3s; cursor:none;
    }
    @media(max-width:768px){ .service-card{ padding:36px 28px; cursor:auto; } }
    .service-card::before {
      content:''; position:absolute; inset:0;
      background:linear-gradient(135deg,var(--accent-dim),transparent);
      opacity:0; transition:opacity .3s;
    }
    .service-card:hover { background:#111; }
    .service-card:hover::before { opacity:1; }
    .service-num { font-size:11px; font-weight:700; letter-spacing:3px; color:var(--accent); margin-bottom:24px; }
    .service-title { font-size:clamp(20px,2.2vw,28px); font-weight:800; letter-spacing:-.5px; margin-bottom:14px; line-height:1.15; }
    .service-desc { font-size:14px; color:var(--gray-text); line-height:1.7; max-width:380px; }
    .service-tags { display:flex; flex-wrap:wrap; gap:7px; margin-top:24px; }
    .tag {
      font-size:11px; padding:5px 12px;
      border:1px solid var(--gray-mid); border-radius:100px;
      color:var(--gray-text); transition:border-color .2s,color .2s;
    }
    .service-card:hover .tag { border-color:rgba(192,148,251,.3); color:var(--white); }
    .service-arrow {
      position:absolute; bottom:40px; right:40px;
      width:40px; height:40px; border-radius:50%;
      border:1px solid var(--gray-mid);
      display:flex; align-items:center; justify-content:center;
      color:var(--gray-text);
      transition:border-color .3s,color .3s,transform .3s;
    }
    .service-card:hover .service-arrow { border-color:var(--accent); color:var(--accent); transform:rotate(45deg); }

    /* ── GEO ───────────────────────────────────── */
    #geo { background:var(--gray); position:relative; overflow:hidden; }
    #geo::before {
      content:''; position:absolute; top:50%; left:-10%;
      width:500px; height:500px;
      background:radial-gradient(circle,rgba(192,148,251,.08) 0%,transparent 70%);
      transform:translateY(-50%); pointer-events:none;
    }
    .geo-inner {
      display:grid; grid-template-columns:1fr 1fr;
      gap:72px; align-items:center;
    }
    @media(max-width:900px){
      .geo-inner{ grid-template-columns:1fr; gap:48px; }
    }
    .geo-list { list-style:none; margin-top:36px; display:flex; flex-direction:column; gap:18px; }
    .geo-list li { display:flex; gap:14px; align-items:flex-start; }
    .geo-icon {
      width:34px; height:34px; min-width:34px;
      background:var(--accent-dim); border-radius:8px;
      display:flex; align-items:center; justify-content:center; font-size:15px;
    }
    .geo-list-text strong { display:block; font-size:14px; margin-bottom:3px; }
    .geo-list-text span { font-size:13px; color:var(--gray-text); }

    .geo-visual {
      background:var(--black); border-radius:16px;
      padding:40px; border:1px solid var(--gray-mid);
    }
    .geo-visual-title { font-size:12px; color:var(--gray-text); letter-spacing:1px; text-transform:uppercase; margin-bottom:24px; }
    .ai-chip {
      display:flex; align-items:center; gap:10px;
      background:var(--gray); border-radius:100px;
      padding:10px 18px; font-size:13px; font-weight:600;
      margin-bottom:10px; border:1px solid transparent; transition:border-color .3s;
    }
    .ai-chip:hover { border-color:var(--accent-dim); }
    .ai-chip .dot {
      width:7px; height:7px; border-radius:50%; background:var(--accent);
      animation:blink 2s ease-in-out infinite;
    }
    .ai-chip:nth-child(2) .dot { animation-delay:.4s; }
    .ai-chip:nth-child(3) .dot { animation-delay:.8s; }
    .ai-chip:nth-child(4) .dot { animation-delay:1.2s; }
    @keyframes blink{ 0%,100%{opacity:1} 50%{opacity:.2} }

    /* ── PROCESS ───────────────────────────────── */
    .process-steps {
      display:grid; grid-template-columns:repeat(4,1fr);
      gap:2px; margin-top:60px;
    }
    @media(max-width:900px){ .process-steps{ grid-template-columns:repeat(2,1fr); } }
    @media(max-width:480px){ .process-steps{ grid-template-columns:1fr; } }
    .step { background:var(--gray); padding:40px 36px; }
    .step-num {
      font-size:clamp(52px,5vw,88px); font-weight:900;
      letter-spacing:-3px; color:var(--gray-mid); line-height:1;
      margin-bottom:20px; transition:color .3s;
    }
    .step:hover .step-num { color:var(--accent); }
    .step-title { font-size:17px; font-weight:700; margin-bottom:10px; }
    .step-desc { font-size:13px; color:var(--gray-text); line-height:1.65; }

    /* ── HUBSPOT BLOCK ─────────────────────────── */
    #hs-block {
      background:var(--gray);
      padding:72px 48px;
      display:flex; align-items:center;
      justify-content:space-between; gap:48px; flex-wrap:wrap;
    }
    .hs-left { max-width:580px; }
    .hs-left h2 { font-size:clamp(26px,3vw,42px); margin-bottom:14px; }
    .hs-left p { font-size:15px; color:var(--gray-text); line-height:1.75; }
    .hs-badge {
      flex-shrink:0;
      background:var(--black); border:1px solid var(--gray-mid);
      border-radius:14px; padding:28px 36px; text-align:center;
    }
    .hs-badge-label { font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--gray-text); margin-bottom:10px; }
    .hs-badge-title { font-size:20px; font-weight:900; margin-bottom:4px; }
    .hs-badge-sub { font-size:13px; color:var(--accent); font-weight:600; }
    @media(max-width:768px){ #hs-block{ padding:56px 24px; } }

    /* ── TESTIMONIALS ──────────────────────────── */
    .testi-grid {
      display:grid; grid-template-columns:repeat(3,1fr);
      gap:2px; margin-top:56px;
    }
    @media(max-width:900px){ .testi-grid{ grid-template-columns:1fr; } }
    .testi { background:var(--gray); padding:40px 36px; }
    .testi-quote {
      font-size:14px; line-height:1.8; color:var(--gray-text);
      margin-bottom:28px; font-style:italic;
    }
    .testi-quote::before {
      content:'"'; color:var(--accent); font-size:26px;
      font-style:normal; line-height:0; vertical-align:-9px; margin-right:3px;
    }
    .testi-author { font-weight:700; font-size:14px; }
    .testi-role { font-size:12px; color:var(--gray-text); margin-top:3px; }

    /* ── CTA FINAL ─────────────────────────────── */
    #cta-final {
      padding:120px 48px; text-align:center;
      position:relative; overflow:hidden;
    }
    #cta-final::before {
      content:''; position:absolute; top:50%; left:50%;
      width:700px; height:400px;
      background:radial-gradient(ellipse,rgba(192,148,251,.1) 0%,transparent 70%);
      transform:translate(-50%,-50%); pointer-events:none;
    }
    #cta-final h2 { font-size:clamp(36px,6vw,84px); max-width:760px; margin:0 auto 20px; }
    #cta-final p { font-size:17px; color:var(--gray-text); max-width:440px; margin:0 auto 48px; }
    .cta-row { display:flex; justify-content:center; align-items:center; gap:20px; flex-wrap:wrap; }
    .btn-outline {
      border:1px solid var(--gray-mid); color:var(--white);
      padding:15px 32px; border-radius:8px; font-size:15px; font-weight:600;
      transition:border-color .2s,background .2s;
    }
    .btn-outline:hover { border-color:var(--accent); background:var(--accent-dim); }
    @media(max-width:768px){ #cta-final{ padding:80px 24px; } }

    /* ── FOOTER ────────────────────────────────── */
    footer {
      background:var(--gray);
      border-top:1px solid var(--gray-mid);
      padding:72px 48px 40px;
    }
    .footer-top {
      display:grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap:48px; margin-bottom:56px;
    }
    @media(max-width:900px){
      .footer-top{ grid-template-columns:1fr 1fr; gap:36px; }
    }
    @media(max-width:560px){
      .footer-top{ grid-template-columns:1fr; }
      footer{ padding:56px 24px 32px; }
    }

    .footer-logo { margin-bottom:16px; }
    .footer-logo img { height:28px; filter:invert(1); }
    .footer-tagline { font-size:13px; color:var(--gray-text); line-height:1.6; max-width:240px; }
    .footer-addresses { display:flex; flex-direction:column; gap:16px; margin-top:20px; }
    .footer-addr h4 { font-size:12px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--accent); margin-bottom:4px; }
    .footer-addr p { font-size:12px; color:var(--gray-text); line-height:1.6; }

    .footer-col h4 {
      font-size:12px; font-weight:700; letter-spacing:2px;
      text-transform:uppercase; color:var(--white);
      margin-bottom:18px;
    }
    .footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
    .footer-col ul a { font-size:13px; color:var(--gray-text); transition:color .2s; }
    .footer-col ul a:hover { color:var(--accent); }
    .footer-sub-label { font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--gray-text); margin:14px 0 8px; }

    /* Newsletter */
    .footer-newsletter h4 {
      font-size:12px; font-weight:700; letter-spacing:2px;
      text-transform:uppercase; color:var(--white); margin-bottom:12px;
    }
    .footer-newsletter p { font-size:13px; color:var(--gray-text); margin-bottom:18px; line-height:1.6; }
    .newsletter-form { display:flex; flex-direction:column; gap:10px; }
    .newsletter-form input {
      background:var(--black); border:1px solid var(--gray-mid);
      color:var(--white); padding:12px 16px; border-radius:6px;
      font-size:14px; font-family:var(--font);
      transition:border-color .2s;
    }
    .newsletter-form input::placeholder { color:var(--gray-text); }
    .newsletter-form input:focus { outline:none; border-color:var(--accent); }
    .newsletter-form button {
      background:var(--accent); color:var(--black);
      border:none; padding:12px 20px; border-radius:6px;
      font-weight:700; font-size:14px; cursor:pointer;
      font-family:var(--font); transition:opacity .2s;
    }
    .newsletter-form button:hover { opacity:.85; }

    .footer-socials { display:flex; gap:12px; margin-top:20px; }
    .footer-socials a {
      width:36px; height:36px; border-radius:50%;
      border:1px solid var(--gray-mid);
      display:flex; align-items:center; justify-content:center;
      color:var(--gray-text); transition:border-color .2s,color .2s;
    }
    .footer-socials a:hover { border-color:var(--accent); color:var(--accent); }
    .footer-socials svg { width:15px; height:15px; fill:currentColor; }

    .footer-bottom {
      border-top:1px solid var(--gray-mid);
      padding-top:28px;
      display:flex; justify-content:space-between; align-items:center;
      flex-wrap:wrap; gap:12px;
    }
    .footer-bottom p { font-size:12px; color:var(--gray-text); }
    .footer-bottom-links { display:flex; gap:24px; }
    .footer-bottom-links a { font-size:12px; color:var(--gray-text); transition:color .2s; }
    .footer-bottom-links a:hover { color:var(--white); }

    /* ── VIDEO CAROUSEL ────────────────────────── */
    #video-carousel {
      position: relative;
      height: 100svh; min-height: 520px;
      overflow: hidden;
    }

    /* Slides */
    .vc-slide {
      position: absolute; inset: 0;
      opacity: 0;
      transition: opacity 1s ease;
      pointer-events: none;
    }
    .vc-slide.active {
      opacity: 1; pointer-events: auto;
    }
    .vc-slide video {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; z-index: 0;
    }
    .vc-overlay {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(
        135deg,
        rgba(10,10,10,.72) 0%,
        rgba(10,10,10,.35) 60%,
        rgba(10,10,10,.65) 100%
      );
    }

    /* Text content */
    .vc-content {
      position: absolute; z-index: 2;
      bottom: 120px; left: 60px;
      max-width: 640px;
    }
    @media(max-width:768px){ .vc-content{ left:24px; right:24px; bottom:100px; } }

    .vc-tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--accent);
      margin-bottom: 16px;
      opacity: 0; transform: translateY(16px);
      transition: opacity .6s .1s, transform .6s .1s;
    }
    .vc-tag::before { content:''; width:16px; height:1px; background:var(--accent); }
    .vc-slide.active .vc-tag { opacity:1; transform:translateY(0); }

    .vc-title {
      font-size: clamp(32px, 5vw, 68px);
      font-weight: 900; letter-spacing: -2px; line-height: 1.05;
      margin-bottom: 16px;
      opacity: 0; transform: translateY(20px);
      transition: opacity .7s .25s, transform .7s .25s;
    }
    .vc-slide.active .vc-title { opacity:1; transform:translateY(0); }

    .vc-desc {
      font-size: clamp(14px, 1.6vw, 17px);
      color: rgba(240,240,240,.8);
      line-height: 1.7; max-width: 520px;
      opacity: 0; transform: translateY(16px);
      transition: opacity .7s .4s, transform .7s .4s;
    }
    .vc-slide.active .vc-desc { opacity:1; transform:translateY(0); }

    /* Navigation dots */
    .vc-dots {
      position: absolute; z-index: 3;
      bottom: 40px; left: 60px;
      display: flex; gap: 10px; align-items: center;
    }
    @media(max-width:768px){ .vc-dots{ left:24px; } }
    .vc-dot {
      width: 28px; height: 2px; border-radius: 2px;
      background: rgba(255,255,255,.3);
      cursor: pointer; transition: background .3s, width .3s;
      border: none; padding: 0;
    }
    .vc-dot.active { background: var(--accent); width: 48px; }

    /* Prev / Next arrows */
    .vc-arrow {
      position: absolute; z-index: 3;
      top: 50%; transform: translateY(-50%);
      width: 48px; height: 48px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,.25);
      background: rgba(10,10,10,.4);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; color: var(--white);
      transition: border-color .2s, background .2s;
    }
    .vc-arrow:hover { border-color: var(--accent); background: rgba(192,148,251,.15); }
    .vc-arrow svg { width: 18px; height: 18px; }
    .vc-arrow.prev { left: 24px; }
    .vc-arrow.next { right: 24px; }
    @media(max-width:480px){ .vc-arrow{ display:none; } }

    /* Progress bar */
    .vc-progress {
      position: absolute; z-index: 3;
      bottom: 0; left: 0; right: 0;
      height: 2px; background: rgba(255,255,255,.1);
    }
    .vc-progress-bar {
      height: 100%; width: 0%;
      background: var(--accent);
      transition: width linear;
    }

    /* Scroll hint */
    .vc-scroll {
      position: absolute; z-index: 3;
      bottom: 36px; right: 60px;
      display: flex; flex-direction: column; align-items: center; gap: 6px;
    }
    @media(max-width:768px){ .vc-scroll{ display:none; } }
    .vc-scroll span {
      font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
      color: rgba(255,255,255,.35); writing-mode: vertical-rl;
    }
    .vc-scroll-line {
      width: 1px; height: 40px;
      background: rgba(255,255,255,.15); position: relative; overflow: hidden;
    }
    .vc-scroll-line::after {
      content:''; position:absolute; top:-100%; left:0;
      width:100%; height:100%; background:var(--accent);
      animation: scroll-v 2s 1s ease-in-out infinite;
    }
    @keyframes scroll-v { 0%{top:-100%} 100%{top:100%} }

    /* ── REVEAL ────────────────────────────────── */
    .reveal { opacity:0; transform:translateY(28px); transition:opacity .7s ease,transform .7s ease; }
    .reveal.visible { opacity:1; transform:translateY(0); }

    /* ── KEYFRAMES ─────────────────────────────── */
    @keyframes fadeUp {
      from{ opacity:0; transform:translateY(22px); }
      to  { opacity:1; transform:translateY(0); }
    }
    @keyframes fill-bar {
      from{ width:0% }
      to  { width:82% }
    }

/* ── WORDPRESS SPECIFICS ─────────────────────────────────────────────────── */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: var(--gray-text); margin-top: 6px; }
.alignleft  { float: left; margin-right: 24px; }
.alignright { float: right; margin-left: 24px; }
.aligncenter { display: block; margin: 0 auto; }

/* Admin bar offset */
body.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar nav { top: 46px; } }

/* Breadcrumb */
.breadcrumb {
  font-size: 12px; color: var(--gray-text);
  padding: 12px 48px; letter-spacing: .3px;
}
.breadcrumb a { color: var(--gray-text); transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }

/* Editor blocks alignment */
.wp-block-image { margin: 32px 0; }

/* ── PAGE TEAM ───────────────────────────────────────────────────────────── */
#hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  padding-left: 48px;
  padding-right: 48px;
  max-width: 1200px;
  margin: 0 auto;
}
@media(max-width:768px){ #hero { padding: calc(var(--nav-h) + 48px) 24px 60px; } }

#corpo-video {
  position: relative; width: 100%;
  max-width: 1200px; margin: 0 auto 100px; padding: 0 48px;
}
.video-wrapper {
  position: relative; border-radius: 16px; overflow: hidden;
  background: var(--gray); aspect-ratio: 16/9; cursor: pointer;
}
.video-wrapper video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,.35);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .3s;
}
.video-overlay.hidden { opacity: 0; pointer-events: none; }
.play-btn {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(192,148,251,.15); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px); transition: transform .3s, background .3s;
}
.play-btn:hover { transform: scale(1.1); background: rgba(192,148,251,.3); }
.play-btn svg { width: 28px; height: 28px; fill: var(--white); margin-left: 4px; }
.video-caption { text-align: center; margin-top: 20px; font-size: 13px; color: var(--gray-text); }
@media(max-width:768px){ #corpo-video { padding: 0 24px; } }

#stats-bar {
  border-top: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid);
  padding: 48px; display: grid; grid-template-columns: repeat(4,1fr);
  gap: 32px; max-width: 1200px; margin: 0 auto 100px; text-align: center;
}
.stat-item .stat-num { font-size: 48px; font-weight: 900; letter-spacing: -2px; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-item .stat-num span { color: var(--accent); }
.stat-item .stat-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray-text); }
@media(max-width:768px){ #stats-bar { grid-template-columns: repeat(2,1fr); padding: 32px 24px; } }

#team { max-width: 1200px; margin: 0 auto 120px; padding: 0 48px; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.member { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--gray); cursor: none; }
.member img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .6s cubic-bezier(.77,0,.175,1), filter .4s; filter: grayscale(20%); }
.member:hover img { transform: scale(1.06); filter: grayscale(0%); }
.member-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 20px 20px; background: linear-gradient(transparent, rgba(10,10,10,.92)); transform: translateY(8px); transition: transform .3s; }
.member:hover .member-info { transform: translateY(0); }
.member-name { font-size: 15px; font-weight: 700; letter-spacing: .5px; margin-bottom: 4px; }
.member-role { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); font-weight: 500; }
.member-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; font-weight: 900; color: var(--gray-mid); background: var(--gray); }
@media(max-width:1100px){ .team-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:768px){ .team-grid { grid-template-columns: repeat(2,1fr); } #team { padding: 0 24px; } }

#values { background: var(--gray); padding: 100px 48px; }
.values-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.values-text h2 { font-size: clamp(32px,4vw,52px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 24px; }
.values-text h2 span { color: var(--accent); }
.values-text p { color: var(--gray-text); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.values-list { list-style: none; margin-top: 32px; }
.values-list li { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--gray-mid); font-size: 15px; color: var(--gray-text); }
.values-list li:last-child { border-bottom: none; }
.values-list li::before { content: '→'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.values-list strong { color: var(--white); }
@media(max-width:900px){ .values-inner { grid-template-columns: 1fr; gap: 48px; } #values { padding: 72px 24px; } }

#join { max-width: 1200px; margin: 0 auto; padding: 100px 48px; text-align: center; }
#join h2 { font-size: clamp(32px,4vw,56px); font-weight: 900; letter-spacing: -2px; margin-bottom: 20px; }
#join h2 span { color: var(--accent); }
#join p { color: var(--gray-text); font-size: 17px; max-width: 480px; margin: 0 auto 40px; line-height: 1.7; }
.join-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-ghost { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--gray-mid); color: var(--white); padding: 16px 36px; border-radius: 8px; font-weight: 600; font-size: 15px; transition: border-color .2s, transform .2s; }
.btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); }
@media(max-width:768px){ #join { padding: 72px 24px; } .join-btns { flex-direction: column; align-items: center; } }

/* ══════════════════════════════════════════════════════════════════════════
   BLOG — LISTING + ARTICLE
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Hero blog ──────────────────────────────────────────────────────────── */
#blog-hero {
  padding: calc(var(--nav-h) + 80px) 48px 60px;
  max-width: 1200px; margin: 0 auto;
}
.blog-hero-inner { max-width: 640px; }
#blog-hero h1 { font-size: clamp(36px,5vw,72px); font-weight:900; letter-spacing:-2px; line-height:1.05; margin-bottom:16px; }
#blog-hero .hero-sub { font-size:17px; color:var(--gray-text); line-height:1.7; }

/* ── Filtres catégories ─────────────────────────────────────────────────── */
.blog-filters { border-bottom:1px solid var(--gray-mid); padding:0 48px 24px; }
.blog-filters-inner { max-width:1200px; margin:0 auto; display:flex; gap:10px; flex-wrap:wrap; }
.filter-pill {
  font-size:12px; font-weight:600; letter-spacing:.5px; text-transform:uppercase;
  padding:7px 16px; border-radius:100px;
  border:1px solid var(--gray-mid); color:var(--gray-text);
  transition:all .2s;
}
.filter-pill:hover, .filter-pill.active {
  background:var(--accent); border-color:var(--accent); color:var(--black);
}

/* ── Grille articles ────────────────────────────────────────────────────── */
#blog-grid { padding:60px 48px 120px; }
.blog-grid-inner {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:repeat(3,1fr); gap:32px;
}

/* Article featured (1er) — pleine largeur */
.blog-card--featured {
  grid-column: 1 / -1;
  display:grid; grid-template-columns:1fr 1fr; gap:0;
  border:1px solid var(--gray-mid); border-radius:12px; overflow:hidden;
}
.blog-card--featured .blog-card-img--featured {
  display:block; overflow:hidden;
  aspect-ratio:16/9;
}
.blog-card--featured .blog-card-img--featured img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .5s;
}
.blog-card--featured:hover .blog-card-img--featured img { transform:scale(1.04); }
.blog-card--featured .blog-card-body {
  padding:48px; display:flex; flex-direction:column; justify-content:center;
}
.blog-card--featured .blog-card-title { font-size:26px; font-weight:800; letter-spacing:-.5px; line-height:1.2; margin:12px 0 16px; }
.blog-card--featured .blog-card-title a { color:var(--white); transition:color .2s; }
.blog-card--featured .blog-card-title a:hover { color:var(--accent); }
.blog-card--featured .blog-card-excerpt { font-size:15px; color:var(--gray-text); line-height:1.7; margin-bottom:24px; }

/* Cards normales */
.blog-card {
  border:1px solid var(--gray-mid); border-radius:12px; overflow:hidden;
  display:flex; flex-direction:column;
  transition:border-color .2s, transform .2s;
}
.blog-card:hover { border-color:var(--gray-text); transform:translateY(-4px); }
.blog-card-img { display:block; overflow:hidden; aspect-ratio:16/9; }
.blog-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.blog-card:hover .blog-card-img img { transform:scale(1.05); }
.blog-card-body { padding:24px; flex:1; display:flex; flex-direction:column; }
.blog-cat {
  font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
  color:var(--accent); margin-bottom:10px; display:inline-block;
}
.blog-card-title { font-size:17px; font-weight:700; line-height:1.3; margin-bottom:12px; flex:1; }
.blog-card-title a { color:var(--white); transition:color .2s; }
.blog-card-title a:hover { color:var(--accent); }
.blog-card-excerpt { font-size:13px; color:var(--gray-text); line-height:1.65; margin-bottom:16px; }
.blog-card-meta { display:flex; justify-content:space-between; align-items:center; margin-top:auto; }
.blog-date { font-size:11px; color:var(--gray-text); }
.blog-read-more { font-size:12px; font-weight:600; color:var(--accent); transition:opacity .2s; }
.blog-read-more:hover { opacity:.7; }

/* Pagination */
.blog-pagination { grid-column:1/-1; display:flex; justify-content:center; gap:8px; margin-top:24px; }
.blog-pagination .page-numbers {
  padding:8px 16px; border:1px solid var(--gray-mid); border-radius:6px;
  font-size:13px; color:var(--gray-text); transition:all .2s;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover { background:var(--accent); border-color:var(--accent); color:var(--black); }

.blog-empty { grid-column:1/-1; text-align:center; color:var(--gray-text); padding:80px 0; font-size:18px; }

/* ── Page article ───────────────────────────────────────────────────────── */
.article-breadcrumb { padding:24px 48px 0; }
.article-breadcrumb-inner {
  max-width:1200px; margin:0 auto;
  font-size:12px; color:var(--gray-text);
  display:flex; gap:8px; flex-wrap:wrap; align-items:center;
}
.article-breadcrumb-inner a { color:var(--gray-text); transition:color .2s; }
.article-breadcrumb-inner a:hover { color:var(--white); }
.article-breadcrumb-inner span:not(:last-child) { color:var(--gray-mid); }

.article-hero { max-width:800px; margin:40px auto 0; padding:0 48px; text-align:center; }
.article-cat {
  display:inline-block; font-size:10px; font-weight:700; letter-spacing:1.5px;
  text-transform:uppercase; color:var(--accent); margin-bottom:20px;
}
.article-title { font-size:clamp(28px,4vw,52px); font-weight:900; letter-spacing:-1.5px; line-height:1.1; margin-bottom:20px; }
.article-meta { font-size:13px; color:var(--gray-text); display:flex; gap:10px; justify-content:center; flex-wrap:wrap; }
.article-sep { color:var(--gray-mid); }

.article-cover { max-width:1000px; margin:40px auto; padding:0 48px; }
.article-cover img { width:100%; border-radius:12px; }

/* Layout 2 colonnes : sidebar + contenu */
/* ── LAYOUT ARTICLE : contenu centré, TOC fixed hors flux ─────────────── */
.article-layout {
  max-width: 780px;
  margin: 0 auto 80px;
  padding: 0 48px;
  /* plus de grid — le TOC est positionné par JS */
}

/* Placeholder caché (garde l'espace dans le DOM pour le JS) */
.article-toc {
  display: none; /* caché par défaut — le JS crée un panneau fixed */
}

/* Panneau TOC fixed créé par JS */
#toc-panel {
  position: fixed;
  top: calc(var(--nav-h, 72px) + 32px);
  width: 220px;
  max-height: calc(100vh - var(--nav-h, 72px) - 64px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-mid, #333) transparent;
  padding: 20px 18px;
  background: var(--gray, #111);
  border: 1px solid var(--gray-mid, #333);
  border-radius: 12px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
#toc-panel.toc-visible {
  opacity: 1;
  pointer-events: auto;
}
.toc-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent, #7c3aed);
  margin-bottom: 14px;
}
#toc-panel ul { list-style: none; margin: 0; padding: 0; }
#toc-panel li {
  border-left: 2px solid var(--gray-mid, #333);
  padding-left: 10px;
  margin-bottom: 7px;
  transition: border-color .2s;
}
#toc-panel li.toc-sub { padding-left: 20px; }
#toc-panel li:has(a.active) { border-left-color: var(--accent, #7c3aed); }
#toc-panel a {
  font-size: 11px;
  color: var(--gray-text, #888);
  display: block;
  line-height: 1.4;
  transition: color .2s;
  text-decoration: none;
}
#toc-panel a:hover, #toc-panel a.active { color: var(--accent, #7c3aed); }

/* Corps de l'article */
.article-body { font-size:16px; line-height:1.8; color:var(--white); }
.article-body h2 { font-size:clamp(22px,3vw,32px); font-weight:800; letter-spacing:-.5px; margin:56px 0 20px; color:var(--white); }
.article-body h3 { font-size:clamp(17px,2vw,22px); font-weight:700; margin:40px 0 16px; color:var(--white); }
.article-body h4 { font-size:16px; font-weight:700; margin:28px 0 12px; color:var(--accent); }
.article-body p { margin-bottom:20px; color:#c8c8c8; }
.article-body a { color:var(--accent); text-decoration:underline; text-underline-offset:3px; }
.article-body a:hover { opacity:.8; }
.article-body ul, .article-body ol { padding-left:24px; margin-bottom:20px; }
.article-body li { margin-bottom:8px; color:#c8c8c8; }
.article-body strong { color:var(--white); }
.article-body em { color:var(--gray-text); }
.article-body blockquote {
  border-left:3px solid var(--accent); padding-left:24px; margin:32px 0;
  color:var(--gray-text); font-style:italic; font-size:17px;
}
.article-body table {
  width:100%; border-collapse:collapse; margin:32px 0; font-size:14px;
}
.article-body th { background:var(--gray); color:var(--white); padding:12px 16px; text-align:left; font-weight:700; border:1px solid var(--gray-mid); }
.article-body td { padding:12px 16px; border:1px solid var(--gray-mid); color:#c8c8c8; }
.article-body tr:nth-child(even) td { background:rgba(255,255,255,.02); }
.article-body img { max-width:100%; border-radius:8px; margin:24px 0; }
.article-body code { background:var(--gray); color:var(--accent); padding:2px 6px; border-radius:4px; font-size:14px; }
.article-body pre { background:var(--gray); padding:24px; border-radius:8px; overflow-x:auto; margin:24px 0; }
.article-body pre code { background:none; color:var(--white); }
.article-body hr { border:none; border-top:1px solid var(--gray-mid); margin:48px 0; }

/* Tags & partage */
.article-tags { display:flex; gap:8px; flex-wrap:wrap; margin:40px 0 32px; }
.article-share { display:flex; align-items:center; gap:12px; padding:24px 0; border-top:1px solid var(--gray-mid); border-bottom:1px solid var(--gray-mid); margin-bottom:48px; }
.article-share span { font-size:13px; color:var(--gray-text); }
.share-btn { font-size:12px; font-weight:600; padding:7px 14px; border-radius:6px; transition:opacity .2s; }
.share-linkedin { background:#0A66C2; color:#fff; }
.share-twitter  { background:#000; color:#fff; }
.share-facebook { background:#1877F2; color:#fff; }
.share-btn:hover { opacity:.85; }

/* CTA bloc dans l'article */
.article-cta-block {
  background:var(--gray); border:1px solid var(--gray-mid); border-radius:12px;
  padding:40px; text-align:center; margin-top:48px;
}
.article-cta-block h3 { font-size:22px; font-weight:800; margin-bottom:10px; }
.article-cta-block p { color:var(--gray-text); margin-bottom:24px; }

/* Related articles */
.related-articles { background:var(--gray); padding:80px 48px; }
.related-inner { max-width:1200px; margin:0 auto; }
.related-inner h2 { font-size:clamp(24px,3vw,36px); font-weight:900; letter-spacing:-1px; margin-bottom:40px; }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media(max-width:1100px){
  .article-layout { max-width:680px; }
  .blog-grid-inner { grid-template-columns:repeat(2,1fr); }
  .related-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:900px){
  .blog-card--featured { grid-template-columns:1fr; }
  .article-layout { padding: 0 24px; max-width: 100%; }
  #toc-panel { display: none !important; }
}
@media(max-width:768px){
  #blog-hero, .blog-filters, #blog-grid, .article-hero,
  .article-cover, .article-breadcrumb, .related-articles { padding-left:24px; padding-right:24px; }
  .article-layout { padding:0 24px; }
  .blog-grid-inner, .related-grid { grid-template-columns:1fr; }
  .blog-card--featured .blog-card-body { padding:24px; }
}

/* ═══════════════════════════════════════════════════════════
   PAGES SERVICES
═══════════════════════════════════════════════════════════ */

/* Hero service */
.svc-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: var(--dark);
  overflow: hidden;
}
.svc-hero__inner {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px;
  z-index: 1;
}
.svc-hero__title {
  font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 16px 0 20px;
}
.svc-hero__sub { color: rgba(255,255,255,.7); font-size: 1.1rem; margin-bottom: 32px; max-width: 480px; }
.svc-hero__img {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}
@media(max-width:900px){
  .svc-hero { grid-template-columns: 1fr; }
  .svc-hero__img { display: none; }
  .svc-hero__inner { padding: 60px 24px; }
}

/* Tag */
.svc-tag {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Breadcrumb */
.svc-breadcrumb {
  max-width: 1200px; margin: 0 auto;
  padding: 16px 48px;
  font-size: .85rem;
  color: rgba(0,0,0,.5);
  display: flex; align-items: center; gap: 8px;
}
.svc-breadcrumb a { color: inherit; text-decoration: none; }
.svc-breadcrumb a:hover { color: var(--accent); }

/* Section title */
.svc-section-title {
  font-size: clamp(1.6rem,3vw,2.4rem);
  font-weight: 800;
  margin-bottom: 48px;
  text-align: center;
}

/* Intro */
.svc-intro { padding: 80px 0; }
.svc-intro h2 { font-size: clamp(1.5rem,2.5vw,2rem); font-weight: 800; margin-bottom: 24px; }
.svc-intro__body { font-size: 1.05rem; line-height: 1.75; max-width: 800px; }
.svc-intro__body h2,.svc-intro__body h3 { margin: 2em 0 .5em; font-weight: 700; }
.svc-intro__body ul { padding-left: 1.5em; }
.svc-intro__body li { margin-bottom: .4em; }

/* Points forts */
.svc-points { padding: 80px 0; background: var(--gray); }
.svc-points__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media(max-width:900px){ .svc-points__grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:540px){ .svc-points__grid { grid-template-columns: 1fr; } }
.svc-point-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform .2s, box-shadow .2s;
}
.svc-point-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.svc-point-card__icon { font-size: 2.4rem; margin-bottom: 16px; }
.svc-point-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.svc-point-card p { font-size: .9rem; color: rgba(0,0,0,.6); line-height: 1.6; }

/* Stats */
.svc-stats { background: var(--dark); }
.svc-stats__inner {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.svc-stat {
  flex: 1; min-width: 160px;
  display: flex; flex-direction: column; align-items: center;
  padding: 48px 32px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.svc-stat:last-child { border-right: none; }
.svc-stat__num { font-size: 3rem; font-weight: 900; color: var(--accent); line-height: 1; }
.svc-stat__label { font-size: .85rem; color: rgba(255,255,255,.6); text-align: center; margin-top: 8px; }

/* Process */
.svc-process { padding: 80px 0; }
.svc-process__steps { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
.svc-step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 24px; align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.svc-step:last-child { border-bottom: none; }
.svc-step__num {
  width: 56px; height: 56px;
  background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900;
  flex-shrink: 0;
}
.svc-step__content h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.svc-step__content p { font-size: .95rem; color: rgba(0,0,0,.65); line-height: 1.65; }

/* CTA service */
.svc-cta { background: var(--dark); padding: 80px 0; text-align: center; }
.svc-cta h2 { font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.svc-cta p { color: rgba(255,255,255,.7); margin-bottom: 40px; font-size: 1.05rem; }
.svc-cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Services liés */
.svc-related { padding: 80px 0; }
.svc-related__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.svc-related-card {
  background: var(--gray);
  border-radius: 12px; overflow: hidden;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform .2s;
}
.svc-related-card:hover { transform: translateY(-4px); }
.svc-related-card__img { height: 180px; background-size: cover; background-position: center; }
.svc-related-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.svc-related-card__body h3 { font-size: 1rem; font-weight: 700; }
.svc-related-card__arrow { margin-top: auto; font-weight: 700; color: var(--accent); }

/* Archive services */
.svc-archive-hero { padding: 100px 0 80px; background: var(--dark); text-align: center; }
.svc-archive-hero h1 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: #fff; margin: 16px 0 20px; max-width: 700px; margin-inline: auto; }
.svc-archive-hero p { color: rgba(255,255,255,.7); font-size: 1.1rem; }
.svc-archive-grid { padding: 80px 0; }
.svc-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 32px; }
.svc-card { background: var(--gray); border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.svc-card__img { height: 220px; background-size: cover; background-position: center; }
.svc-card__img--placeholder { background: linear-gradient(135deg, #1a1a1a 0%, #333 100%); }
.svc-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.svc-card__body h2 { font-size: 1.25rem; font-weight: 700; }
.svc-card__body p { font-size: .9rem; color: rgba(0,0,0,.6); line-height: 1.6; flex: 1; }
.svc-card__arrow { font-weight: 700; color: var(--accent); }

@media(max-width:768px){
  .svc-related__grid { grid-template-columns: 1fr; }
  .svc-cards { grid-template-columns: 1fr; }
  .svc-step { grid-template-columns: 56px 1fr; }
}

/* ── AUTEUR ARTICLE (ACF team member) ─────────────────────────────────── */
.article-author-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.article-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gray-mid, #333);
  flex-shrink: 0;
}
.article-author {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 14px;
  font-weight: 600;
  color: var(--white, #fff);
}
.article-author-role {
  font-size: 11px;
  font-weight: 400;
  color: var(--gray-text, #888);
  letter-spacing: 0.02em;
}

/* ── AUTEUR LISTING BLOG ────────────────────────────────────────────────── */
.blog-author-wrap {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.blog-author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gray-mid, #333);
  flex-shrink: 0;
}
.blog-author-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--white, #fff);
}
.blog-sep {
  color: var(--gray-text, #888);
  margin: 0 2px;
}

/* ── ARTICLE — Blocs piliers ───────────────────────────────────────────── */
.article-pillar {
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  margin: 28px 0;
  background: rgba(255,255,255,.03);
  border-radius: 0 10px 10px 0;
}
.article-pillar h4 {
  margin-top: 0;
  font-size: 16px;
  color: var(--white);
}

/* ── ARTICLE — Grille E-E-A-T ──────────────────────────────────────────── */
.article-eeat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0;
}
@media (max-width: 768px) {
  .article-eeat-grid { grid-template-columns: repeat(2, 1fr); }
}
.eeat-item {
  background: var(--gray);
  border: 1px solid var(--gray-mid);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.eeat-letter {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.eeat-item strong {
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.eeat-item p {
  font-size: 12px;
  color: var(--gray-text);
  margin: 0;
  line-height: 1.5;
}

/* ── ARTICLE — Callout / Encadré ───────────────────────────────────────── */
.article-callout {
  background: linear-gradient(135deg, rgba(var(--accent-rgb, 139,92,246),.08), rgba(255,255,255,.02));
  border: 1px solid rgba(139,92,246,.3);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 36px 0;
  text-align: center;
}
.article-callout p { margin: 0 0 8px; font-weight: 700; font-size: 15px; color: var(--white); }
.article-callout img { border-radius: 8px; }

/* ── ARTICLE — Bloc auteur en bas ──────────────────────────────────────── */
.article-author-block {
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 48px;
}
.article-author-block-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: var(--gray);
  border: 1px solid var(--gray-mid);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.article-author-block-inner::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--accent), #a855f7);
  border-radius: 4px 0 0 4px;
}
.article-author-block-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  flex-shrink: 0;
}
.article-author-block-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.article-author-block-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.article-author-block-role {
  font-size: 13px;
  color: var(--gray-text);
  margin-top: 4px;
}

/* ── ARTICLE — Meta header (auteur compact) ────────────────────────────── */
.article-meta-author-name {
  font-weight: 600;
  color: var(--white);
}

/* (sommaire géré via #toc-panel fixed par JS) */

@media (max-width: 900px) {
  .article-author-block { padding: 0 24px; }
  .article-author-block-inner { flex-direction: column; text-align: center; }
  .article-author-block-inner::before { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MÉGA-MENU DROPDOWN
   ═══════════════════════════════════════════════════════════════════════════ */
.nav-item { position: relative; }
.nav-has-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-arrow { font-size: 9px; opacity: .5; transition: opacity .2s; }
.nav-has-dropdown:hover .nav-arrow { opacity: 1; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 22px 8px 10px; /* padding-top = bridge invisible */
  min-width: 260px;
  z-index: 500;
  box-shadow: 0 32px 64px rgba(0,0,0,.7), 0 0 0 1px rgba(192,148,251,.06);
  /* pseudo-bridge = zone transparente entre nav-link et dropdown */
}
.nav-has-dropdown:hover .nav-dropdown { display: flex; flex-direction: column; gap: 2px; }
/* Bridge invisible qui couvre le gap entre le lien et la carte dropdown */
.nav-has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
  display: none;
}
.nav-has-dropdown:hover::after { display: block; }

/* Dropdown avec icône + texte double ligne */
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #888;
  font-size: 13px;
  transition: color .15s, background .15s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-dropdown a:hover { color: #f0f0f0; background: rgba(255,255,255,.04); }
.dd-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 7px;
}
.dd-icon svg {
  width: 16px;
  height: 16px;
  color: #fff;
  stroke: #fff;
  opacity: .6;
  transition: opacity .15s;
}
.nav-dropdown a:hover .dd-icon { background: rgba(192,148,251,.12); border-color: rgba(192,148,251,.2); }
.nav-dropdown a:hover .dd-icon svg { opacity: 1; }
.dd-text { display: flex; flex-direction: column; gap: 1px; }
.dd-text strong { font-size: 13px; font-weight: 600; color: #d0d0d0; line-height: 1.2; }
.dd-text small { font-size: 11px; color: #555; line-height: 1.2; }
.nav-has-dropdown:hover .dd-text strong { color: #f0f0f0; }

/* Dropdown grille (Secteurs) */
.nav-dropdown--grid {
  display: none;
  min-width: 300px;
}
.nav-has-dropdown:hover .nav-dropdown--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.nav-dropdown--grid a {
  font-size: 12px;
  gap: 8px;
  white-space: nowrap;
}

/* Flèche pointant vers le nav — repositionnée dans le padding-top */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 6px;
  background: #2a2a2a;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGES INTERNES — Layout de base
   ═══════════════════════════════════════════════════════════════════════════ */
.page-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: calc(var(--nav-h, 72px) + 80px) 48px 80px;
}
.page-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent, #C094FB);
  margin-bottom: 16px;
}
.page-h1 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.page-lead {
  font-size: 18px;
  color: #aaa;
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 36px;
}

/* ─── Section générique ────────────────────────────────────────────────── */
.page-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
}
.page-section h2 {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.page-section .section-sub {
  font-size: 16px;
  color: #666;
  margin-bottom: 48px;
  max-width: 560px;
}

/* ─── Problem grid ─────────────────────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.problem-card {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 24px 20px;
  transition: border-color .2s;
}
.problem-card:hover { border-color: rgba(192,148,251,.3); }
.problem-card .p-icon { font-size: 28px; display: block; margin-bottom: 14px; }
.problem-card strong { font-size: 15px; color: #f0f0f0; display: block; margin-bottom: 8px; line-height: 1.3; }
.problem-card p { font-size: 13px; color: #666; margin: 0; line-height: 1.6; }

/* ─── Stats / résultats ────────────────────────────────────────────────── */
.stats-row {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 48px;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
}
.stat-block {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 36px 24px;
  border-right: 1px solid #2a2a2a;
}
.stat-block:last-child { border-right: none; }
.stat-big {
  font-size: 48px;
  font-weight: 900;
  color: var(--accent, #C094FB);
  display: block;
  line-height: 1;
  letter-spacing: -.03em;
}
.stat-lbl {
  font-size: 12px;
  color: #555;
  display: block;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ─── Approach steps ───────────────────────────────────────────────────── */
.approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.approach-step {
  border-left: 2px solid var(--accent, #C094FB);
  padding: 0 0 0 20px;
}
.step-n {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent, #C094FB);
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.approach-step strong {
  font-size: 16px;
  color: #f0f0f0;
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}
.approach-step p { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }

/* ─── Why list ─────────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.why-card {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 24px;
  transition: border-color .2s;
}
.why-card:hover { border-color: rgba(192,148,251,.25); }
.why-card .why-icon { font-size: 24px; margin-bottom: 12px; display: block; }
.why-card strong { font-size: 15px; color: #f0f0f0; display: block; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }

/* ─── Outils / stack ───────────────────────────────────────────────────── */
.tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.tool-badge {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  color: #888;
  font-weight: 500;
}

/* ─── FAQ accordion ────────────────────────────────────────────────────── */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
}
.faq-q {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #d0d0d0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-q::after { content: '+'; color: var(--accent, #C094FB); font-size: 20px; font-weight: 400; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 20px 18px; }

/* ─── CTA block ────────────────────────────────────────────────────────── */
.page-cta-block {
  text-align: center;
  background: linear-gradient(135deg, rgba(192,148,251,.08), rgba(0,0,0,0));
  border: 1px solid rgba(192,148,251,.2);
  border-radius: 20px;
  padding: 72px 48px;
  margin: 80px 48px;
  position: relative;
  overflow: hidden;
}
.page-cta-block::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse, rgba(192,148,251,.15), transparent 70%);
  pointer-events: none;
}
.page-cta-block h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
}
.page-cta-block p { color: #666; margin-bottom: 36px; font-size: 15px; position: relative; }
.page-cta-block .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── Footer 5 colonnes ────────────────────────────────────────────────── */
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 64px 80px;
  border-bottom: 1px solid #1a1a1a;
}
@media (max-width: 1100px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px)  { .footer-top { grid-template-columns: 1fr; padding: 40px 24px; } }

/* ─── Responsive dropdown ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-has-dropdown .nav-dropdown { display: none !important; }
}

/* ─── Responsive pages internes ────────────────────────────────────────── */
@media (max-width: 768px) {
  .page-inner, .page-section { padding-left: 24px; padding-right: 24px; }
  .stats-row { flex-direction: column; }
  .stat-block { border-right: none; border-bottom: 1px solid #2a2a2a; }
  .stat-block:last-child { border-bottom: none; }
  .page-cta-block { margin: 40px 24px; padding: 40px 24px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE EXPERTISE — Layout différencié (SEO/GEO/SGO + autres expertises)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Hero expertise ───────────────────────────────────────────────────── */
.exp-hero {
  padding: calc(var(--nav-h, 72px) + 80px) 80px 80px;
  background: radial-gradient(ellipse 80% 60% at 60% -20%, rgba(192,148,251,.12), transparent 70%);
  position: relative;
  overflow: hidden;
}
.exp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,.015) 60px,
    rgba(255,255,255,.015) 61px
  );
  pointer-events: none;
}
.exp-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  position: relative;
}
.exp-hero-text .page-h1 { font-size: clamp(36px, 5.5vw, 72px); }
.h1-accent { color: var(--accent, #C094FB); display: block; }
.exp-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

/* Badges stats hero */
.exp-hero-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-width: 260px;
}
.exp-badge {
  background: #141414;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color .2s;
}
.exp-badge:hover { border-color: rgba(192,148,251,.3); }
.eb-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent, #C094FB);
  display: block;
  letter-spacing: -.03em;
  line-height: 1;
}
.eb-lbl {
  font-size: 11px;
  color: #555;
  display: block;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.3;
}

/* ─── Partenaires ──────────────────────────────────────────────────────── */
.exp-partners {
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 28px 80px;
}
.exp-partners-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.partners-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #444;
  flex-shrink: 0;
  white-space: nowrap;
}
.partners-row { display: flex; gap: 10px; flex-wrap: wrap; }
.partner-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #999;
  white-space: nowrap;
  transition: border-color .2s, color .2s;
}
.partner-badge:hover { border-color: rgba(192,148,251,.3); color: #c094fb; }

/* ─── Intro équipe + timeline ──────────────────────────────────────────── */
.exp-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.exp-checklist { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 12px; }
.exp-checklist li {
  padding-left: 26px;
  position: relative;
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}
.exp-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent, #C094FB);
  font-weight: 700;
}

.exp-timeline { display: flex; flex-direction: column; gap: 0; padding-left: 20px; border-left: 1px solid #222; }
.etl-item {
  padding: 16px 0 16px 24px;
  position: relative;
  border-bottom: 1px solid #1a1a1a;
}
.etl-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 24px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #333;
  border: 1px solid #555;
}
.etl-now::before { background: var(--accent, #C094FB); border-color: var(--accent, #C094FB); box-shadow: 0 0 8px rgba(192,148,251,.5); }
.etl-year {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent, #C094FB);
  display: block;
  margin-bottom: 4px;
  letter-spacing: .06em;
}
.etl-ev { font-size: 13px; color: #888; line-height: 1.5; }
.etl-now .etl-ev { color: #d0d0d0; font-weight: 600; }

/* ─── Cartes expertise (image + texte alternés) ────────────────────────── */
.exp-cards-grid { display: flex; flex-direction: column; gap: 2px; margin-top: 56px; }

.exp-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #0d0d0d;
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .2s;
}
.exp-card:hover { border-color: rgba(192,148,251,.2); }
.exp-card--reverse { direction: rtl; }
.exp-card--reverse > * { direction: ltr; }

.exp-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.exp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.exp-card:hover .exp-card-img img { transform: scale(1.04); }

.exp-card-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.exp-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--accent, #C094FB);
  opacity: .7;
}
.exp-card-body h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 0;
}
.exp-card-body p {
  font-size: 14px;
  color: #888;
  line-height: 1.75;
  margin: 0;
}
.exp-card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.exp-card-pills span {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  color: #666;
  white-space: nowrap;
}

/* ─── Grille offres de service ─────────────────────────────────────────── */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.offer-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.offer-card:hover { border-color: rgba(192,148,251,.3); transform: translateY(-3px); }
.offer-card--highlight {
  background: linear-gradient(160deg, rgba(192,148,251,.06), rgba(0,0,0,0));
  border-color: rgba(192,148,251,.25);
}
.offer-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent, #C094FB);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
}
.offer-header { display: flex; align-items: center; gap: 14px; }
.offer-icon { font-size: 28px; }
.offer-header h3 { font-size: 18px; font-weight: 700; margin: 0; }
.offer-desc { font-size: 13px; color: #666; line-height: 1.65; margin: 0; }
.offer-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.offer-features li {
  font-size: 13px;
  color: #777;
  padding-left: 18px;
  position: relative;
}
.offer-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent, #C094FB);
  font-size: 11px;
}
.offer-cta {
  display: inline-block;
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent, #C094FB);
  text-decoration: none;
  padding-top: 8px;
  border-top: 1px solid #1e1e1e;
  transition: opacity .2s;
}
.offer-cta:hover { opacity: .7; }

/* ─── Responsive expertise ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .exp-hero { padding-left: 48px; padding-right: 48px; }
  .exp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .exp-hero-badges { grid-template-columns: repeat(4, 1fr); min-width: auto; }
  .exp-partners { padding-left: 48px; padding-right: 48px; }
  .exp-intro-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .exp-hero { padding: calc(var(--nav-h, 72px) + 40px) 24px 40px; }
  .exp-hero-badges { grid-template-columns: 1fr 1fr; }
  .exp-partners { padding: 20px 24px; }
  .exp-partners-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .exp-card { grid-template-columns: 1fr; }
  .exp-card--reverse { direction: ltr; }
  .exp-card-img { aspect-ratio: 16/9; }
  .exp-card-body { padding: 28px 24px; }
  .offers-grid { grid-template-columns: 1fr; }
}

/* ─── Pictos SVG secteurs (négatif blanc) ──────────────────────────────── */
.dd-picto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}
.dd-picto svg {
  width: 18px;
  height: 18px;
  color: #fff;
  stroke: #fff;
  opacity: .55;
  transition: opacity .15s;
}
.nav-dropdown--grid a:hover .dd-picto svg { opacity: 1; }
/* mobile */
.fs-sub .dd-picto { width: 22px; height: 22px; }
.fs-sub .dd-picto svg { width: 15px; height: 15px; }
