    /* ── Variables ─────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --blue:        #003dad;
      --blue-dark:   #002b8a;
      --blue-deeper: #001a5c;
      --blue-mid:    #1a55cc;
      --blue-light:  #e7f2fd;
      --blue-pale:   #f0f6ff;
      --gold:        #b9a472;
      --gold-lt:     #d4bb8a;
      --white:       #ffffff;
      --off-white:   #f8f9fc;
      --ink:         #0d1117;
      --muted:       #5a6680;
      --border:      rgba(0, 61, 173, .10);
      --border-lt:   rgba(0, 61, 173, .06);

      --serif: 'Instrument Serif', Georgia, serif;
      --sans:  'Plus Jakarta Sans', system-ui, sans-serif;
      --ease:  cubic-bezier(.22,.61,.36,1);
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      font-family: var(--sans);
      background: var(--white);
      color: var(--ink);
      line-height: 1.6;
      overflow-x: hidden;
    }
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--off-white); }
    ::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }

    /* ── Layout ────────────────────────────────────── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--blue-mid);
    }
    .eyebrow::before {
      content: '';
      width: 28px; height: 2px;
      background: var(--blue);
      flex-shrink: 0;
    }

    /* ── Nav ───────────────────────────────────────── */
    nav {
      position: fixed;
      inset: 0 0 auto;
      z-index: 100;
      background: #fff;
      box-shadow: 0 1px 0 var(--border);
      transition: box-shadow .3s var(--ease);
    }
    nav.scrolled {
      box-shadow: 0 2px 16px rgba(0,61,173,.10);
    }
    .nav-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    .logo-mark {
      width: 36px; height: 36px;
      background: var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      flex-shrink: 0;
    }
    .logo-mark svg { display: block; }
    .logo-text-top {
      font-family: var(--serif);
      font-size: 20px;
      color: var(--blue-deeper);
      line-height: 1;
    }
    .logo-text-bot {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: 13.5px;
      font-weight: 400;
      color: var(--ink);
      text-decoration: none;
      opacity: .65;
      transition: opacity .2s;
    }
    .nav-links a:hover { opacity: 1; }
    .nav-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 22px;
      background: var(--blue);
      color: #fff !important;
      border-radius: 8px;
      font-size: 13px !important;
      font-weight: 600 !important;
      opacity: 1 !important;
      letter-spacing: .02em !important;
      transition: background .2s !important;
      white-space: nowrap;
    }
    .nav-btn:hover { background: var(--blue-dark) !important; }
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }
    .nav-hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--ink); border-radius: 2px;
    }

    /* ── Hero ──────────────────────────────────────── */
    #hero {
      position: relative;
      background: var(--blue-deeper);
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 72px;
    }
    .hero-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
    }
    .hero-blob-1 {
      width: 600px; height: 600px;
      background: rgba(0,61,173,.5);
      top: -100px; right: -100px;
    }
    .hero-blob-2 {
      width: 400px; height: 400px;
      background: rgba(26,85,204,.3);
      bottom: -80px; left: 20%;
    }
    .hero-blob-3 {
      width: 300px; height: 300px;
      background: rgba(185,164,114,.12);
      top: 30%; right: 30%;
    }
    /* Dot grid */
    .hero-dots {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
      background-size: 32px 32px;
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      padding: 140px 0 100px;
      width: 100%;
    }
    .hero-left {}
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 100px;
      margin-bottom: 32px;
    }
    .hero-badge span {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .1em;
      color: rgba(255,255,255,.8);
    }
    .hero-badge-dot {
      width: 6px; height: 6px;
      background: #4ade80;
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%,100% { opacity: 1; transform: scale(1); }
      50% { opacity: .6; transform: scale(.8); }
    }
    .hero-h1 {
      font-family: var(--serif);
      font-size: clamp(46px, 5.5vw, 76px);
      font-weight: 400;
      line-height: 1.07;
      color: #fff;
      margin-bottom: 24px;
    }
    .hero-h1 em {
      font-style: italic;
      color: var(--gold-lt);
    }
    .hero-p {
      font-size: 16px;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(255,255,255,.6);
      max-width: 460px;
      margin-bottom: 44px;
    }
    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }
    .btn-gold {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      background: var(--gold);
      color: var(--ink);
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: background .2s, transform .2s;
    }
    .btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }
    .btn-outline-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border: 1.5px solid rgba(255,255,255,.25);
      color: rgba(255,255,255,.85);
      border-radius: 8px;
      font-size: 14px;
      font-weight: 400;
      text-decoration: none;
      transition: border-color .2s, background .2s;
    }
    .btn-outline-white:hover {
      border-color: rgba(255,255,255,.6);
      background: rgba(255,255,255,.06);
    }

    /* Hero right card stack */
    .hero-right {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .hero-card {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 16px;
      padding: 24px 28px;
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      gap: 18px;
      transition: background .3s, transform .3s;
    }
    .hero-card:hover {
      background: rgba(255,255,255,.11);
      transform: translateX(4px);
    }
    .hero-card-icon {
      width: 46px; height: 46px;
      background: rgba(0,61,173,.5);
      border: 1px solid rgba(0,61,173,.6);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--gold-lt);
    }
    .hero-card-text {}
    .hero-card-title {
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 2px;
    }
    .hero-card-desc {
      font-size: 12px;
      font-weight: 300;
      color: rgba(255,255,255,.5);
    }
    .hero-card-arrow {
      margin-left: auto;
      color: rgba(255,255,255,.25);
      transition: color .2s, transform .2s;
    }
    .hero-card:hover .hero-card-arrow {
      color: var(--gold-lt);
      transform: translateX(4px);
    }

    /* Stats bar */
    .stats-bar {
      background: var(--blue);
      padding: 28px 0;
    }
    .stats-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .stat-item {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .stat-num {
      font-family: var(--serif);
      font-size: 36px;
      font-weight: 400;
      color: #fff;
      line-height: 1;
    }
    .stat-label {
      font-size: 12px;
      font-weight: 400;
      color: rgba(255,255,255,.55);
      max-width: 120px;
      line-height: 1.4;
    }
    .stat-divider {
      width: 1px;
      height: 40px;
      background: rgba(255,255,255,.12);
    }

    /* ── Services ──────────────────────────────────── */
    #services {
      padding: 110px 0;
      background: var(--off-white);
    }
    .section-head {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: end;
      margin-bottom: 60px;
    }
    .section-h2 {
      font-family: var(--serif);
      font-size: clamp(36px, 3.5vw, 50px);
      font-weight: 400;
      line-height: 1.15;
      color: var(--blue-deeper);
      margin-top: 14px;
    }
    .section-h2 em { font-style: italic; color: var(--blue); }
    .section-p {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.8;
      color: var(--muted);
      max-width: 420px;
      align-self: end;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .svc-card {
      background: var(--white);
      border: 1px solid var(--border-lt);
      border-radius: 16px;
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
      transition: border-color .3s, box-shadow .3s, transform .3s;
    }
    .svc-card:hover {
      border-color: var(--blue);
      box-shadow: 0 8px 40px rgba(0,61,173,.1);
      transform: translateY(-4px);
    }
    .svc-card.featured {
      background: var(--blue);
      border-color: var(--blue);
    }
    .svc-card.featured:hover {
      box-shadow: 0 8px 40px rgba(0,61,173,.35);
    }
    .svc-num {
      position: absolute;
      top: 20px; right: 24px;
      font-family: var(--serif);
      font-size: 56px;
      font-weight: 400;
      color: rgba(0,61,173,.06);
      line-height: 1;
      user-select: none;
    }
    .svc-card.featured .svc-num { color: rgba(255,255,255,.06); }
    .svc-icon {
      width: 48px; height: 48px;
      background: var(--blue-light);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue);
      margin-bottom: 24px;
      transition: background .3s;
    }
    .svc-card:hover .svc-icon {
      background: var(--blue);
      color: #fff;
    }
    .svc-card.featured .svc-icon {
      background: rgba(255,255,255,.15);
      color: var(--gold-lt);
    }
    .svc-card.featured:hover .svc-icon {
      background: rgba(255,255,255,.25);
    }
    .svc-title {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 400;
      color: var(--blue-deeper);
      margin-bottom: 10px;
    }
    .svc-card.featured .svc-title { color: #fff; }
    .svc-desc {
      font-size: 13.5px;
      font-weight: 300;
      line-height: 1.7;
      color: var(--muted);
    }
    .svc-card.featured .svc-desc { color: rgba(255,255,255,.6); }
    .svc-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 20px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--blue);
      text-decoration: none;
      transition: gap .2s;
    }
    .svc-card.featured .svc-link { color: var(--gold-lt); }
    .svc-link:hover { gap: 10px; }

    /* ── About ─────────────────────────────────────── */
    #about {
      padding: 110px 0;
      background: var(--white);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-visual-wrap {
      position: relative;
    }
    /* Main visual block */
    .about-main-block {
      background: var(--blue-deeper);
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 4/5;
      position: relative;
    }
    .about-main-block-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 70% 30%, rgba(0,61,173,.8), transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(26,85,204,.4), transparent 50%);
    }
    .about-dots-pattern {
      position: absolute; inset: 0;
      background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: 24px 24px;
    }
    .about-block-content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 40px;
    }
    .about-years {
      font-family: var(--serif);
      font-size: 96px;
      font-weight: 400;
      color: rgba(255,255,255,.12);
      line-height: 1;
      position: absolute;
      top: 28px; right: 28px;
    }
    .about-block-quote {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 12px;
      padding: 24px;
    }
    .about-block-quote p {
      font-family: var(--serif);
      font-size: 16px;
      font-style: italic;
      color: rgba(255,255,255,.85);
      line-height: 1.6;
      margin-bottom: 10px;
    }
    .about-block-quote cite {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gold-lt);
      font-style: normal;
    }
    /* Floating badge — overlay sur l'image */
    .about-float-badge {
      position: absolute;
      top: 24px; left: 24px;
      background: var(--blue);
      border-radius: 12px;
      padding: 16px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-shadow: 0 8px 32px rgba(0,0,0,.4);
    }
    .about-float-num {
      font-family: var(--serif);
      font-size: 32px;
      color: #fff;
      line-height: 1;
    }
    .about-float-label {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.5);
      margin-top: 2px;
    }
    /* About text */
    .about-text .eyebrow { margin-bottom: 16px; }
    .about-text .section-h2 { margin-bottom: 20px; }
    .about-body {
      font-size: 14.5px;
      font-weight: 300;
      line-height: 1.85;
      color: var(--muted);
      margin-bottom: 32px;
    }
    .about-pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 36px;
    }
    .pillar {
      padding: 18px 20px;
      background: var(--blue-pale);
      border-radius: 10px;
      border: 1px solid var(--border-lt);
    }
    .pillar-icon { color: var(--blue); margin-bottom: 8px; }
    .pillar-title {
      font-size: 13px;
      font-weight: 600;
      color: var(--blue-deeper);
      margin-bottom: 4px;
    }
    .pillar-text { font-size: 12px; color: var(--muted); line-height: 1.5; }
    .btn-blue {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 26px;
      background: var(--blue);
      color: #fff;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: background .2s, transform .2s;
    }
    .btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }

    /* ── Process ───────────────────────────────────── */
    #process {
      padding: 110px 0;
      background: var(--blue-deeper);
      overflow: hidden;
      position: relative;
    }
    .process-dots {
      position: absolute; inset: 0;
      background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
    }
    #process .eyebrow { color: var(--gold-lt); }
    #process .eyebrow::before { background: var(--gold-lt); }
    #process .section-h2 { color: #fff; }
    #process .section-h2 em { color: var(--gold-lt); }
    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 56px;
      position: relative;
    }
    /* Connecting line */
    .process-grid::before {
      content: '';
      position: absolute;
      top: 27px; left: 12.5%; right: 12.5%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.12) 20%, rgba(255,255,255,.12) 80%, transparent);
      pointer-events: none;
    }
    .process-step {
      padding: 0 24px;
      position: relative;
    }
    .step-circle {
      width: 54px; height: 54px;
      border-radius: 50%;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
      position: relative;
      z-index: 1;
      transition: background .3s, border-color .3s;
    }
    .process-step:hover .step-circle {
      background: var(--blue);
      border-color: var(--blue);
    }
    .step-circle-num {
      font-family: var(--serif);
      font-size: 20px;
      color: rgba(255,255,255,.6);
    }
    .process-step:hover .step-circle-num { color: #fff; }
    .step-title {
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 400;
      color: #fff;
      margin-bottom: 10px;
    }
    .step-text {
      font-size: 13.5px;
      font-weight: 300;
      line-height: 1.75;
      color: rgba(255,255,255,.45);
    }

    /* ── Pricing ───────────────────────────────────── */
    #pricing {
      padding: 110px 0;
      background: var(--off-white);
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 56px;
    }
    .pricing-card {
      background: var(--white);
      border: 1px solid var(--border-lt);
      border-radius: 20px;
      padding: 40px 36px;
      display: flex;
      flex-direction: column;
      transition: transform .3s, box-shadow .3s;
    }
    .pricing-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,61,173,.08);
    }
    .pricing-card.pop {
      background: var(--blue);
      border-color: var(--blue);
    }
    .pricing-card.pop:hover {
      box-shadow: 0 12px 48px rgba(0,61,173,.4);
    }
    .plan-chip {
      display: inline-flex;
      padding: 4px 12px;
      background: var(--blue-light);
      border-radius: 100px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 24px;
      width: fit-content;
    }
    .pricing-card.pop .plan-chip {
      background: rgba(255,255,255,.15);
      color: #fff;
    }
    .plan-name {
      font-family: var(--serif);
      font-size: 26px;
      font-weight: 400;
      color: var(--blue-deeper);
      margin-bottom: 4px;
    }
    .pricing-card.pop .plan-name { color: #fff; }
    .plan-size {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 28px;
    }
    .pricing-card.pop .plan-size { color: rgba(255,255,255,.55); }
    .plan-price {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin-bottom: 28px;
    }
    .plan-chf {
      font-size: 15px;
      font-weight: 600;
      color: var(--blue);
    }
    .pricing-card.pop .plan-chf { color: rgba(255,255,255,.7); }
    .plan-amount {
      font-family: var(--serif);
      font-size: 44px;
      font-weight: 400;
      color: var(--ink);
      line-height: 1;
    }
    .pricing-card.pop .plan-amount { color: #fff; }
    .plan-note {
      font-size: 12px;
      color: var(--muted);
      align-self: center;
    }
    .pricing-card.pop .plan-note { color: rgba(255,255,255,.45); }
    .plan-divider {
      height: 1px;
      background: var(--border-lt);
      margin-bottom: 24px;
    }
    .pricing-card.pop .plan-divider { background: rgba(255,255,255,.12); }
    .plan-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 1;
      margin-bottom: 32px;
    }
    .plan-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13.5px;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.5;
    }
    .pricing-card.pop .plan-features li { color: rgba(255,255,255,.7); }
    .feat-check {
      width: 18px; height: 18px;
      background: var(--blue-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .pricing-card.pop .feat-check { background: rgba(255,255,255,.15); }
    .feat-check svg { display: block; }
    .plan-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 24px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      transition: .2s;
      border: 1.5px solid var(--blue);
      color: var(--blue);
      background: transparent;
    }
    .plan-cta:hover { background: var(--blue); color: #fff; }
    .pricing-card.pop .plan-cta {
      background: #fff;
      border-color: #fff;
      color: var(--blue);
    }
    .pricing-card.pop .plan-cta:hover { background: rgba(255,255,255,.9); }

    .pricing-footer {
      text-align: center;
      margin-top: 36px;
      font-size: 13.5px;
      color: var(--muted);
    }
    .pricing-footer a { color: var(--blue); }

    /* ── Testimonial / CTA ─────────────────────────── */
    #cta {
      padding: 100px 0;
      background: var(--white);
      border-top: 1px solid var(--border-lt);
    }
    .cta-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .cta-left .section-h2 { margin-bottom: 16px; }
    .cta-desc {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.8;
      color: var(--muted);
      margin-bottom: 36px;
      max-width: 420px;
    }
    .cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-outline-blue {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 26px;
      border: 1.5px solid var(--blue);
      color: var(--blue);
      border-radius: 8px;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      transition: .2s;
    }
    .btn-outline-blue:hover { background: var(--blue); color: #fff; }

    .cta-right {
      background: var(--blue-pale);
      border-radius: 20px;
      padding: 40px;
      border: 1px solid var(--border-lt);
    }
    .cta-right-title {
      font-family: var(--serif);
      font-size: 22px;
      color: var(--blue-deeper);
      margin-bottom: 20px;
    }
    .contact-items { display: flex; flex-direction: column; gap: 0; }
    .ci {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border-lt);
    }
    .ci:first-child { border-top: 1px solid var(--border-lt); }
    .ci-icon {
      width: 36px; height: 36px;
      background: var(--blue-light);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue);
      flex-shrink: 0;
    }
    .ci-lbl {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .ci-val {
      font-size: 14px;
      color: var(--blue-deeper);
      text-decoration: none;
    }
    a.ci-val:hover { color: var(--blue); }

    /* ── Contact form ──────────────────────────────── */
    #contact {
      padding: 110px 0;
      background: var(--blue-deeper);
      position: relative;
      overflow: hidden;
    }
    .contact-dots {
      position: absolute; inset: 0;
      background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
    }
    #contact .eyebrow { color: var(--gold-lt); }
    #contact .eyebrow::before { background: var(--gold-lt); }
    #contact .section-h2 { color: #fff; }
    #contact .section-h2 em { color: var(--gold-lt); }
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 80px;
      align-items: start;
      position: relative;
      z-index: 2;
    }
    .contact-left .eyebrow { margin-bottom: 16px; }
    .contact-left .section-h2 { margin-bottom: 18px; }
    .contact-subtext {
      font-size: 14.5px;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(255,255,255,.5);
      margin-bottom: 32px;
    }
    .contact-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .contact-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 14px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 100px;
      font-size: 12px;
      font-weight: 400;
      color: rgba(255,255,255,.65);
    }
    .contact-chip svg { color: var(--gold-lt); }

    .contact-form {
      background: #fff;
      border-radius: 20px;
      padding: 48px;
    }
    .form-title {
      font-family: var(--serif);
      font-size: 26px;
      color: var(--blue-deeper);
      margin-bottom: 28px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .fg {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 14px;
    }
    .fg label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .fg input, .fg select, .fg textarea {
      padding: 11px 15px;
      background: var(--off-white);
      border: 1.5px solid transparent;
      border-radius: 8px;
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 300;
      color: var(--ink);
      outline: none;
      transition: border-color .2s, background .2s;
      appearance: none;
    }
    .fg input:focus, .fg select:focus, .fg textarea:focus {
      border-color: var(--blue);
      background: #fff;
    }
    .fg textarea { min-height: 110px; resize: vertical; }
    .fg select {
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6680' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 38px;
    }
    .form-send {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 28px;
      background: var(--blue);
      color: #fff;
      border: none;
      border-radius: 8px;
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: background .2s;
    }
    .form-send:hover { background: var(--blue-dark); }
    .form-tiny {
      text-align: center;
      font-size: 11.5px;
      color: var(--muted);
      margin-top: 12px;
    }

    /* ── Footer ────────────────────────────────────── */
    footer {
      background: var(--ink);
      padding: 56px 0 28px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 60px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,.06);
      margin-bottom: 28px;
    }
    .footer-brand-name {
      font-family: var(--serif);
      font-size: 22px;
      color: #fff;
    }
    .footer-brand-sub {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255,255,255,.3);
      margin-bottom: 16px;
      display: block;
      margin-top: 2px;
    }
    .footer-brand-desc {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255,255,255,.35);
      line-height: 1.7;
      max-width: 220px;
    }
    .footer-col-head {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(255,255,255,.25);
      margin-bottom: 18px;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 9px;
      list-style: none;
    }
    .footer-links a {
      font-size: 13.5px;
      font-weight: 300;
      color: rgba(255,255,255,.45);
      text-decoration: none;
      transition: color .2s;
    }
    .footer-links a:hover { color: rgba(255,255,255,.85); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-copy { font-size: 12px; color: rgba(255,255,255,.2); }
    .social-icons { display: flex; gap: 10px; margin-top: 18px; }
    .social-icons a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.5); transition: background .2s, color .2s, border-color .2s; text-decoration: none; }
    .social-icons a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a {
      font-size: 12px;
      color: rgba(255,255,255,.2);
      text-decoration: none;
      transition: color .2s;
    }
    .footer-legal a:hover { color: rgba(255,255,255,.5); }

    /* ── Animations ────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .65s var(--ease), transform .65s var(--ease);
    }
    .reveal.in { opacity: 1; transform: none; }
    .d1 { transition-delay: .1s; }
    .d2 { transition-delay: .2s; }
    @keyframes spin { to { transform: rotate(360deg); } }
    .d3 { transition-delay: .3s; }
    .d4 { transition-delay: .4s; }

    /* ── Responsive ────────────────────────────────── */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .services-grid { grid-template-columns: repeat(2,1fr); }
      .process-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
      .process-grid::before { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    }
    @media (max-width: 960px) {
      .nav-links { gap: 16px; }
      .nav-btn { padding: 8px 14px; font-size: 12px !important; }
    }
    @media (max-width: 768px) {
      /* Nav */
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
      .nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
      .nav-hamburger span { transition: transform .25s, opacity .2s; }

      /* Layout */
      .container { padding: 0 20px; }

      /* Hero — réduire la hauteur sur mobile */
      .hero-inner { padding: 72px 0 56px; }
      #hero { min-height: auto; }

      /* Sections — moins de padding vertical */
      #services, #about, #process, #pricing { padding: 64px 0; }
      #cta { padding: 60px 0; }
      #contact { padding: 64px 0; }

      /* Grids */
      .section-head { grid-template-columns: 1fr; gap: 14px; }
      .about-grid { grid-template-columns: 1fr; }
      .about-float-badge { top: 16px; left: 16px; padding: 12px 16px; }
      .about-float-badge .about-float-num { font-size: 26px; }
      .pricing-grid { grid-template-columns: 1fr; }
      .cta-grid { grid-template-columns: 1fr; gap: 40px; }
      .contact-layout { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; gap: 12px; }
      .services-grid { grid-template-columns: 1fr; }
      .process-grid { grid-template-columns: 1fr; gap: 24px; }
      .process-step { padding: 0; }

      /* Stats — 2 par ligne */
      .stats-inner { flex-wrap: wrap; gap: 20px 32px; justify-content: center; }
      .stat-divider { display: none; }
      .stat-item { flex-basis: calc(50% - 16px); justify-content: center; }

      /* Form */
      .form-row { grid-template-columns: 1fr; }
      .contact-form { padding: 28px 20px; }
    }

    @media (max-width: 768px) {
      .pkgs-grid { grid-template-columns: 1fr !important; }
    }

    @media (max-width: 480px) {
      .container { padding: 0 16px; }

      /* Nav — logo rétrécissable sur très petits écrans */
      .logo { flex-shrink: 1; min-width: 0; overflow: hidden; }
      .logo img { max-height: 36px; }
      .logo span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 15px !important; }

      /* Hero — très petits écrans */
      .hero-inner { padding: 56px 0 44px; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .btn-gold, .btn-outline-white { width: 100%; justify-content: center; }

      /* About pillars en colonne */
      .about-pillars { grid-template-columns: 1fr; }

      /* Stats en colonne */
      .stat-item { flex-basis: 100%; justify-content: flex-start; }

      /* Pricing */
      .pricing-card { padding: 28px 20px; }

      /* CTA contact info */
      .cta-right { padding: 28px 20px; }

      /* Contact form */
      .contact-form { padding: 24px 14px; }

      /* Announcement bar — compacter sur très petit écran */
      .ann-sep { display: none; }
    }

    /* ── Modals ─────────────────────────────────────── */
    .modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 200; align-items: center; justify-content: center; padding: 24px; }
    .modal-overlay.open { display: flex; }
    .modal-box { background: #fff; border-radius: 20px; max-width: 760px; width: 100%; max-height: 85vh; overflow-y: auto; padding: 52px; position: relative; }
    .modal-close { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; background: var(--off-white); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 18px; transition: background .2s; }
    .modal-close:hover { background: var(--blue-light); color: var(--blue); }
    .modal-title { font-family: var(--serif); font-size: 32px; color: var(--blue-deeper); margin-bottom: 8px; }
    .modal-version { font-size: 12px; color: var(--muted); margin-bottom: 32px; }
    .modal-body { font-size: 14px; font-weight: 300; line-height: 1.9; color: var(--muted); }
    .modal-body ol { padding-left: 20px; display: flex; flex-direction: column; gap: 14px; }
    .modal-body p { margin-bottom: 14px; }
    .modal-body strong { color: var(--blue-deeper); font-weight: 600; }
    @media(max-width:600px) { .modal-box { padding: 32px 24px; } }
