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

    :root {
      --gold:        #B8974A;
      --gold-light:  #F9F4EA;
      --gold-dark:   #8A6E32;
      --navy:        #1A2340;
      --navy-mid:    #243055;
      --surface:     #F8F9FB;
      --white:       #FFFFFF;
      --text:        #0F172A;
      --muted:       #64748B;
      --border:      #E2E8F0;
      --radius:      12px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--white);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: #ffffff;
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--text); }

    .nav-links a.active {
      color: var(--navy);
      font-weight: 600;
      border-bottom: 2px solid var(--gold);
      padding-bottom: 2px;
    }


    .nav-cta {
      background: var(--gold) !important;
      color: var(--white) !important;
      padding: 9px 20px !important;
      border-radius: 8px !important;
      font-weight: 600 !important;
      transition: background 0.2s, transform 0.15s !important;
    }

    .nav-cta:hover {
      background: var(--gold-dark) !important;
      color: var(--white) !important;
      transform: translateY(-1px) !important;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }

    .nav-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* ── PAGE HERO ── */
    .page-hero {
      background: url('../img/img-autres.png') center/cover no-repeat;
      padding: 140px 32px 80px;
      position: relative;
      overflow: hidden;
    }

    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.6) 60%, rgba(15,23,42,0.35) 100%);
      pointer-events: none;
    }

    .page-hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.4);
      margin-bottom: 24px;
    }

    .breadcrumb a {
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      transition: color 0.2s;
    }

    .breadcrumb a:hover { color: rgba(255,255,255,0.7); }
    .breadcrumb-sep { opacity: 0.3; }

    .page-hero h1 {
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .page-hero h1 span { color: var(--gold); }

    .page-hero p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.6);
      max-width: 600px;
      line-height: 1.8;
    }

    /* ── QUICK NAV ── */
    .domains-quicknav {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 68px;
      z-index: 80;
      overflow-x: auto;
    }

    .domains-quicknav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      display: flex;
      gap: 0;
    }

    .domains-quicknav a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 16px 20px;
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      white-space: nowrap;
      border-bottom: 2px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }

    .domains-quicknav a:hover {
      color: var(--navy);
      border-bottom-color: var(--gold);
    }

    .qn-num {
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--gold);
      background: var(--gold-light);
      border-radius: 4px;
      padding: 1px 6px;
    }

    /* ── SECTIONS SHARED ── */
    section { padding: 80px 32px; }
    .section-inner { max-width: 1200px; margin: 0 auto; }

    .section-eyebrow {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 14px;
    }

    .section-title {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 700;
      color: var(--navy);
      letter-spacing: -0.03em;
      line-height: 1.18;
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 1rem;
      color: var(--muted);
      max-width: 640px;
      line-height: 1.75;
    }

    /* ── DOMAIN SECTION LAYOUT ── */
    .domain-section-light { background: var(--white); }
    .domain-section-surface { background: var(--surface); }
    .domain-section-navy { background: var(--navy); }

    .domain-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      margin-top: 48px;
    }

    .domain-layout.reverse { direction: rtl; }
    .domain-layout.reverse > * { direction: ltr; }

    /* Domain number badge */
    .domain-num-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
    }

    .domain-num {
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--gold);
      opacity: 0.2;
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .domain-num-line {
      width: 40px;
      height: 2px;
      background: var(--gold);
      opacity: 0.4;
    }

    .domain-content h2 {
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      font-weight: 700;
      color: var(--navy);
      letter-spacing: -0.03em;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .domain-content p {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.85;
      margin-bottom: 16px;
    }

    .domain-content p:last-of-type { margin-bottom: 0; }

    /* Navy variant */
    .domain-section-navy .domain-content h2 { color: var(--white); }
    .domain-section-navy .domain-content p { color: rgba(255,255,255,0.6); }
    .domain-section-navy .section-eyebrow { color: var(--gold); }
    .domain-section-navy .domain-num { opacity: 0.15; }

    /* Visual card */
    .domain-visual {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      border-radius: 20px;
      padding: 40px;
      position: relative;
      overflow: hidden;
      min-height: 320px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      background-size: cover;
      background-position: center;
    }

    .domain-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.3) 50%, rgba(15,23,42,0.15) 100%);
    }

    .domain-visual-icon {
      position: absolute;
      top: 36px;
      right: 36px;
      width: 64px;
      height: 64px;
      background: rgba(184,151,74,0.25);
      backdrop-filter: blur(6px);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .domain-visual-title {
      position: relative;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1.3;
      margin-bottom: 8px;
    }

    .domain-visual-sub {
      position: relative;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.55);
    }

    /* Light visual variant — now also uses image, just slightly brighter overlay */
    .domain-visual-light::before {
      background: linear-gradient(to top, rgba(15,23,42,0.8) 0%, rgba(15,23,42,0.25) 50%, rgba(15,23,42,0.1) 100%);
    }

    .domain-visual-light .domain-visual-icon {
      background: rgba(184,151,74,0.25);
    }

    .domain-visual-light .domain-visual-title { color: var(--white); }
    .domain-visual-light .domain-visual-sub { color: rgba(255,255,255,0.55); }

    /* Points list */
    .domain-points {
      list-style: none;
      margin-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .domain-points li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.6;
    }

    .domain-section-navy .domain-points li { color: rgba(255,255,255,0.6); }

    .domain-point-dot {
      width: 20px;
      height: 20px;
      background: var(--gold-light);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .domain-section-navy .domain-point-dot { background: rgba(184,151,74,0.2); }

    /* ── AUTRES DOMAINES ── */
    .autres-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 40px;
    }

    .autre-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 14px;
      padding: 24px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .autre-card-icon {
      width: 40px;
      height: 40px;
      background: rgba(184,151,74,0.15);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .autre-card span {
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--white);
    }

    .autres-note {
      margin-top: 24px;
      font-size: 0.875rem;
      color: rgba(255,255,255,0.4);
      font-style: italic;
    }

    /* ── CTA ── */
    .cta-section { background: var(--surface); }

    .cta-box {
      background: var(--navy);
      border-radius: 24px;
      padding: 72px 80px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 60px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .cta-box::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 360px; height: 360px;
      background: radial-gradient(circle, rgba(184,151,74,0.3) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-box h2 {
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.03em;
      line-height: 1.2;
      margin-bottom: 14px;
    }

    .cta-box > div > p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.7;
      max-width: 480px;
    }

    .cta-box-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex-shrink: 0;
    }

    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      color: var(--navy);
      padding: 14px 28px;
      border-radius: 10px;
      font-size: 0.95rem;
      font-weight: 700;
      text-decoration: none;
      white-space: nowrap;
      transition: transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 14px rgba(0,0,0,0.14);
    }

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }

    .cta-note {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.3);
      text-align: center;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      padding: 60px 32px 32px;
      color: rgba(255,255,255,0.5);
    }

    .footer-inner { max-width: 1200px; margin: 0 auto; }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .footer-brand p {
      margin-top: 14px;
      font-size: 0.875rem;
      line-height: 1.7;
      max-width: 280px;
      color: rgba(255,255,255,0.45);
    }

    .footer-col h4 {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 18px;
    }

    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }

    .footer-col ul li a {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col ul li a:hover { color: var(--white); }

    .footer-bottom {
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.82rem;
    }

    .footer-bottom-right {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.3);
    }

    /* ── ANIMATIONS ── */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
    }

    .reveal.reveal-left { transform: translateX(-32px); }
    .reveal.reveal-right { transform: translateX(32px); }
    .reveal.reveal-scale { transform: scale(0.95); }
    .reveal.in-view { opacity: 1; transform: none; }

    .stagger-children > * {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
    }

    .stagger-children.in-view > *:nth-child(1) { opacity:1; transform:none; transition-delay:0.05s; }
    .stagger-children.in-view > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.13s; }
    .stagger-children.in-view > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.21s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-toggle { display: flex; }
      section { padding: 60px 20px; }
      .page-hero { padding: 120px 20px 60px; }
      .domain-layout { grid-template-columns: 1fr; gap: 40px; }
      .domain-layout.reverse { direction: ltr; }
      .autres-grid { grid-template-columns: 1fr; }
      .cta-box { grid-template-columns: 1fr; padding: 40px 28px; gap: 28px; }
      .footer-top { grid-template-columns: 1fr; gap: 32px; }
      .domains-quicknav-inner { padding: 0 20px; }
    }
