:root {
      --bg: #101110;
      --bg-2: transparent;
      --white: #fff;
      --muted: #8a8a8a;
      --muted-2: #dedede;
      --line: rgba(255,255,255,.18);
      --line-soft: rgba(255,255,255,.14);
      --ease: cubic-bezier(.12,.23,.17,.99);
      --container: 1080px;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    html, body {
      background-color: #101110;
      color: var(--white);
    }
    body {
      font-family: "DM Sans", sans-serif;
      font-weight: 400;
      overflow-x: hidden;
    }
    body.noscroll { overflow: hidden; }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
    .noise {
      position: fixed; inset: 0;
      background: url("assets/noise.webp") repeat;
      opacity: .22;
      pointer-events: none;
      z-index: 90;
      mix-blend-mode: multiply;
    }
    .wrap {
      width: min(var(--container), calc(100% - 80px));
      margin: 0 auto;
    }

    /* NAV — logo gauche, liens au centre (alignés sur le CTA hero), contact à droite */
    .nav {
      position: absolute; top: 0; left: 0; right: 0;
      z-index: 50;
      height: 72px;
    }
    .nav-inner {
      height: 100%;
      position: relative;
      width: 100%;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      position: relative;
      z-index: 2;
      flex-shrink: 0;
    }
    .logo img { height: 26px; width: auto; }
    .nav-links {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .nav-links a, .nav-cta {
      font-size: 15px; line-height: 1.2; color: #fff;
      transition: opacity .25s var(--ease);
      white-space: nowrap;
    }
    .nav-links a:hover, .nav-cta:hover { opacity: .7; }
    .nav-cta { position: relative; z-index: 2; flex-shrink: 0; }
    .burger {
      display: none; width: 40px; height: 40px;
      position: relative; z-index: 2;
      align-items: center; justify-content: center; flex-direction: column; gap: 5px;
    }
    .burger span { width: 20px; height: 1.8px; background: #fff; display: block; }
    .mobile-menu {
      position: fixed; inset: 0; z-index: 80;
      background: #000;
      display: flex;
      flex-direction: column;
      transform: translateY(-100%);
      transition: transform .55s var(--ease);
      pointer-events: none;
    }
    .mobile-menu.open {
      transform: translateY(0);
      pointer-events: auto;
    }
    .mobile-menu-bar {
      height: 72px;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-shrink: 0;
    }
    .mobile-menu-bar .logo img { height: 26px; }
    .menu-close {
      width: 40px; height: 40px;
      font-size: 32px; line-height: 1;
      display: grid; place-items: center;
    }
    .mobile-menu-links {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 28px;
      padding-bottom: 72px;
    }
    .mobile-menu-links a {
      font-family: "Host Grotesk", sans-serif;
      font-size: 28px;
      letter-spacing: -.03em;
    }

    /* BUTTONS */
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      height: 36px; padding: 0 18px; border-radius: 48px;
      background: #fff; color: #000;
      font-family: "DM Sans", sans-serif; font-size: 14px; font-weight: 500;
      transition: transform .35s var(--ease), opacity .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
      white-space: nowrap;
    }
    .btn:hover { transform: scale(1.03); }
    .btn-ghost {
      background: transparent; color: #fff;
      border: 1px solid var(--line);
    }
    .btn-ghost:hover { background: #fff; color: #000; }

    /* HERO */
    .hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: -6%;
      background: url("assets/hero.webp") center/cover no-repeat;
      animation: kenburns 22s var(--ease) infinite alternate;
      transform: scale(1.06);
      -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
      mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
    }
    .hero-shade {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(16,17,16,.18) 0%, rgba(16,17,16,0) 45%, rgba(16,17,16,.08) 82%, #101110 100%);
    }
    .hero-fade {
      position: absolute; left: 0; right: 0; bottom: -1px;
      height: 16%;
      background: linear-gradient(to bottom, rgba(16,17,16,0) 0%, rgba(16,17,16,.22) 55%, #101110 100%);
      z-index: 1;
      pointer-events: none;
    }
    @keyframes kenburns {
      from { transform: scale(1.06) translate3d(0,0,0); }
      to { transform: scale(1.14) translate3d(0,-1.5%,0); }
    }
    .hero-content {
      position: relative; z-index: 2;
      width: min(var(--container), calc(100% - 80px));
      text-align: center;
      padding-top: 40px;
    }
    .hero h1 {
      font-family: "Host Grotesk", sans-serif;
      font-size: 56px; font-weight: 400; line-height: 1.05;
      letter-spacing: -.03em;
      max-width: none;
      margin: 0 auto;
    }
    .hero h1 .l1, .hero h1 .l2 { display: inline; }
    .hero h1 .l3 { display: block; }
    .hero-sub {
      margin: 22px auto 0; max-width: 560px;
      font-size: 16px; font-weight: 500; line-height: 1.35;
      color: #fff;
    }
    .hero .btn { margin-top: 28px; height: 36px; padding: 0 20px; }
    .scroll-hint {
      position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
      z-index: 2; display: flex; align-items: center; gap: 8px;
      color: rgba(255,255,255,.7); font-size: 13px;
      animation: bob 2.4s var(--ease) infinite;
    }
    @keyframes bob {
      0%,100% { transform: translate(-50%, 0); opacity: .7; }
      50% { transform: translate(-50%, 6px); opacity: 1; }
    }
    .mouse {
      width: 16px; height: 24px; border: 1.4px solid rgba(255,255,255,.7); border-radius: 10px; position: relative;
    }
    .mouse::after {
      content: ""; position: absolute; left: 50%; top: 5px;
      width: 2px; height: 5px; border-radius: 2px; background: rgba(255,255,255,.7);
      transform: translateX(-50%);
      animation: wheel 1.6s var(--ease) infinite;
    }
    @keyframes wheel {
      0% { opacity: 1; top: 5px; }
      100% { opacity: 0; top: 11px; }
    }

    /* SECTIONS */
    section { position: relative; z-index: 1; padding: 88px 0; }
    #services, #contact { scroll-margin-top: 12px; }
    .eyebrow {
      display: flex; align-items: center; gap: 8px;
      color: var(--muted); font-size: 14px; font-weight: 400; margin-bottom: 16px;
    }
    .eyebrow::before {
      content: ""; width: 6px; height: 6px; border-radius: 50%; background: #fff;
    }
    h2 {
      font-family: "Host Grotesk", sans-serif;
      font-size: 36px; font-weight: 400; line-height: 1.1em;
      letter-spacing: -.03em;
    }
    h2 .dim { color: var(--muted); }
    .lede {
      margin-top: 14px; max-width: 520px;
      color: var(--muted); font-size: 14px; line-height: 1.4;
    }

    /* REVEAL */
    .reveal {
      opacity: 0; transform: translateY(40px);
      transition: opacity 1s var(--ease), transform 1s var(--ease);
    }
    .reveal.in { opacity: 1; transform: none; }
    .d1 { transition-delay: .1s; }
    .d2 { transition-delay: .2s; }
    .d3 { transition-delay: .3s; }
    .d4 { transition-delay: .4s; }

    /* WHAT WE DO */
    .cards-3 {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
      margin-top: 40px;
    }
    .feature-card h3 {
      font-family: "Host Grotesk", sans-serif;
      font-size: 20px; font-weight: 400; letter-spacing: -.02em;
      margin: 16px 0 8px;
    }
    .feature-card p {
      color: var(--muted); font-size: 14px; line-height: 1.4;
    }
    .feature-card .thumb {
      border-radius: 0; overflow: hidden; aspect-ratio: 1.05 / 1;
      background: #101110;
    }
    .feature-card .thumb img { width: 100%; height: 100%; object-fit: cover; }

    /* SERVICES TABS */
    .tabs-scroll {
      margin-top: 36px;
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      border-bottom: 1px solid var(--line-soft);
    }
    .tabs-scroll::-webkit-scrollbar { display: none; }
    .tabs {
      position: relative;
      display: inline-flex; gap: 28px;
      min-width: 100%;
      padding: 0 2px 14px 0;
    }
    .tab {
      position: relative; padding: 0;
      color: var(--muted); font-size: 15px; white-space: nowrap;
      transition: color .25s var(--ease);
      flex-shrink: 0;
    }
    .tab.active { color: #fff; }
    .tab-line {
      position: absolute; left: 0; bottom: -1px; height: 1px; background: #fff;
      pointer-events: none;
      transition: left .4s var(--ease), width .4s var(--ease);
    }
    .service-panel {
      display: none; grid-template-columns: 1.15fr .85fr; gap: 48px;
      align-items: center; margin-top: 36px;
    }
    .service-panel.active { display: grid; animation: fadeup .7s var(--ease); }
    @keyframes fadeup {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: none; }
    }
    .service-visual {
      border-radius: 0; overflow: hidden; background: #101110;
      aspect-ratio: 1.32 / 1;
    }
    .service-visual img { width: 100%; height: 100%; object-fit: cover; }
    .service-copy .kicker {
      color: var(--muted); font-size: 14px; margin-bottom: 12px;
    }
    .service-copy p {
      font-family: "Host Grotesk", sans-serif;
      font-size: 20px; line-height: 1.25; letter-spacing: -.02em;
      max-width: 420px;
    }
    .service-copy .btn { margin-top: 22px; }

    /* HOW */
    .how-grid {
      display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px;
      align-items: center; margin-top: 40px;
    }
    .how-visual {
      border-radius: 0; overflow: hidden; background: #101110;
      aspect-ratio: 1.28 / 1;
    }
    .how-visual img { width: 100%; height: 100%; object-fit: cover; }
    .steps { display: flex; flex-direction: column; gap: 28px; position: relative; padding-left: 8px; }
    .steps::before {
      content: ""; position: absolute; left: 23px; top: 18px; bottom: 18px;
      width: 1px; background: var(--line);
    }
    .step { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; }
    .ico {
      width: 48px; height: 48px; border-radius: 50%;
      border: 1px solid var(--line); display: grid; place-items: center;
      background: #101110; position: relative; z-index: 1;
    }
    .ico svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 1.6; }
    .step h3 {
      font-family: "Host Grotesk", sans-serif;
      font-size: 18px; font-weight: 400; letter-spacing: -.02em; margin-bottom: 6px;
    }
    .step p { color: var(--muted); font-size: 14px; line-height: 1.4; }

    /* WHY */
    .why-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      margin-top: 40px;
      border: 1px solid var(--line-soft);
      border-radius: 0;
      background: transparent;
    }
    .why-item {
      padding: 32px 28px 36px;
      border-right: 1px solid var(--line-soft);
      border-bottom: 1px solid var(--line-soft);
    }
    .why-item:nth-child(3n) { border-right: 0; }
    .why-item:nth-child(n+4) { border-bottom: 0; }
    .why-item h3 {
      font-family: "Host Grotesk", sans-serif;
      font-size: 18px; font-weight: 400; letter-spacing: -.02em;
      margin: 16px 0 8px;
    }
    .why-item p { color: var(--muted); font-size: 14px; line-height: 1.4; }

    /* TESTIMONIALS */
    .quotes-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
    .quotes-nav { display: flex; gap: 8px; margin-top: 20px; justify-content: flex-end; }
    .qbtn {
      width: 36px; height: 36px; border-radius: 50%; background: #fff; color: #000;
      display: grid; place-items: center; transition: transform .3s var(--ease);
    }
    .qbtn:hover { transform: scale(1.06); }
    .qbtn svg { width: 16px; height: 16px; }
    .quotes-viewport { overflow: hidden; margin-top: 36px; }
    .quotes-track {
      display: flex; gap: 16px;
      transition: transform .7s var(--ease);
    }
    .quote {
      flex: 0 0 calc((100% - 32px) / 3);
      border: 1px solid var(--line-soft);
      border-radius: 0; padding: 28px 24px 20px;
      min-height: 280px; display: flex; flex-direction: column;
      background: transparent;
    }
    .quote p {
      font-size: 16px; font-weight: 500; line-height: 1.35; flex: 1;
      white-space: pre-line;
    }
    .quote-foot {
      display: flex; justify-content: space-between; align-items: flex-end;
      gap: 12px; margin-top: 20px; padding-top: 16px;
      border-top: 1px solid var(--line-soft);
      color: var(--muted); font-size: 13px; line-height: 1.35;
    }

    /* PRICING */
    .plans {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
      margin-top: 40px;
    }
    .plan {
      background: transparent;
      border: 1px solid var(--line-soft);
      border-radius: 0;
      padding: 28px 24px 32px;
      position: relative;
    }
    .plan .btn-text {
      display: inline-block;
      margin: 18px 0 22px;
      font-size: 15px; color: #fff;
    }
    .plan .btn-text:hover { opacity: .7; }
    .plan-top { display: flex; justify-content: space-between; align-items: flex-start; }
    .plan h3 { font-size: 16px; font-weight: 500; margin-bottom: 10px; }
    .plan .price {
      font-family: "Host Grotesk", sans-serif;
      font-size: 36px; letter-spacing: -.03em; line-height: 1;
    }
    .plan .per { color: var(--muted); font-size: 14px; margin: 6px 0 12px; }
    .plan .desc { color: var(--muted); font-size: 14px; line-height: 1.4; min-height: 64px; }
    .plan .btn { margin: 18px 0 22px; }
    .badge {
      background: rgba(255,255,255,.1); color: #fff;
      font-size: 12px; padding: 4px 10px; border-radius: 99px;
    }
    .feat-label {
      display: flex; align-items: center; gap: 12px;
      color: var(--muted); font-size: 12px; margin-bottom: 14px;
    }
    .feat-label::before, .feat-label::after {
      content: ""; flex: 1; height: 1px; background: var(--line-soft);
    }
    .feats { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .feats li {
      display: flex; gap: 10px; align-items: flex-start;
      font-size: 14px; line-height: 1.35; color: #e8e8e8;
    }
    .check {
      width: 16px; height: 16px; min-width: 16px; margin-top: 2px;
      border-radius: 50%; border: 1px solid rgba(255,255,255,.35);
      display: grid; place-items: center;
    }
    .check svg { width: 9px; height: 9px; }

    /* FAQ */
    .faq-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
      margin-top: 36px;
    }
    .faq-item {
      border: 1px solid var(--line-soft); border-radius: 0;
      overflow: hidden;
      background: transparent;
    }
    .faq-q {
      width: 100%; text-align: left;
      display: flex; justify-content: space-between; align-items: center; gap: 16px;
      padding: 18px 18px; font-size: 16px; font-weight: 500;
    }
    .faq-q .plus {
      width: 18px; height: 18px; position: relative; flex-shrink: 0;
    }
    .faq-q .plus::before, .faq-q .plus::after {
      content: ""; position: absolute; background: #fff; left: 50%; top: 50%;
      transform: translate(-50%,-50%);
    }
    .faq-q .plus::before { width: 12px; height: 1.5px; }
    .faq-q .plus::after { width: 1.5px; height: 12px; transition: transform .3s var(--ease), opacity .3s; }
    .faq-item.open .plus::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height .45s var(--ease), padding .45s var(--ease);
      color: var(--muted); font-size: 14px; line-height: 1.45;
      padding: 0 18px;
    }
    .faq-item.open .faq-a { max-height: 280px; padding: 0 18px 18px; }

    /* CTA BANNER */
    .cta-banner {
      position: relative; border-radius: 0; overflow: hidden;
      min-height: 380px; display: flex; align-items: center;
    }
    .cta-banner img {
      position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    }
    .cta-banner .shade {
      position: absolute; inset: 0;
      background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 60%, rgba(0,0,0,.2) 100%);
    }
    .cta-copy {
      position: relative; z-index: 1; padding: 48px;
      max-width: 520px;
    }
    .cta-copy h2 { max-width: 460px; }
    .cta-copy p { margin: 12px 0 22px; color: #fff; font-size: 16px; }

    /* FOOTER */
    footer { padding: 64px 0 40px; border-top: 1px solid var(--line-soft); }
    .foot-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      grid-template-areas:
        "brand nav"
        "legal nav";
      column-gap: 40px;
      row-gap: 48px;
    }
    .foot-brand { grid-area: brand; }
    .foot-nav { grid-area: nav; }
    .legal { grid-area: legal; }
    .brand-mark { margin-bottom: 10px; }
    .brand-mark img { height: 26px; width: auto; }
    .foot-tag { color: var(--muted); font-size: 14px; max-width: 280px; }
    .wa {
      width: 36px; height: 36px; border-radius: 50%;
      border: 1px solid var(--line); display: grid; place-items: center;
      margin-top: 20px; transition: background .25s, color .25s;
    }
    .wa:hover { background: #fff; color: #000; }
    .legal { display: flex; gap: 20px; color: var(--muted); font-size: 13px; align-self: end; }
    .legal a:hover { color: #fff; }
    .foot-nav h4 { font-size: 14px; color: var(--muted); margin-bottom: 16px; font-weight: 400; }
    .foot-nav a { display: block; margin-bottom: 10px; font-size: 15px; }
    .foot-nav a:hover { color: var(--muted-2); }

    .legal-page .nav { position: relative; background: transparent; }
    .legal-wrap { padding: 48px 0 80px; max-width: 720px; }
    .legal-wrap h1 {
      font-family: "Host Grotesk", sans-serif;
      font-size: 36px; font-weight: 400; letter-spacing: -.03em;
      margin: 12px 0 32px;
    }
    .legal-wrap h2 {
      font-size: 22px; margin: 32px 0 12px;
    }
    .legal-wrap p, .legal-wrap li {
      color: var(--muted); font-size: 15px; line-height: 1.55; margin-bottom: 12px;
    }
    .legal-wrap ul { padding-left: 18px; margin-bottom: 12px; }

    @media (max-width: 1100px) {
      .hero h1 { font-size: 40px; }
      .hero h1 .l1, .hero h1 .l2, .hero h1 .l3 {
        display: block;
        white-space: nowrap;
      }
    }
    @media (max-width: 980px) {
      .wrap, .hero-content { width: min(var(--container), calc(100% - 48px)); }
      .nav-inner { padding: 0 24px; }
      .hero h1 { font-size: 32px; }
      h2 { font-size: 32px; }
      .cards-3, .plans, .why-grid, .service-panel.active, .how-grid, .faq-grid {
        grid-template-columns: 1fr;
      }
      .foot-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
          "brand"
          "nav"
          "legal";
        row-gap: 36px;
      }
      .legal { margin-top: 8px; }
      .why-item { border-right: 0; }
      .why-item:nth-child(n+4) { border-bottom: 1px solid var(--line-soft); }
      .why-item:last-child { border-bottom: 0; }
      .quote { flex-basis: 100%; min-height: auto; }
      .nav-links, .nav-cta { display: none; }
      .burger { display: flex; }
      .tabs-scroll { overflow: visible; border-bottom: 0; }
      .tabs {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        min-width: 0;
        gap: 4px 22px;
        padding-bottom: 0;
      }
      .tab {
        padding-bottom: 10px;
        border-bottom: 1px solid transparent;
      }
      .tab.active { border-bottom-color: #fff; }
      .tab-line { display: none; }
      .hero .btn { white-space: normal; height: auto; padding: 10px 18px; }
      .cta-copy { padding: 32px 24px; }
      section { padding: 64px 0; }
    }
    @media (max-width: 400px) {
      .hero h1 { font-size: 26px; }
    }
