 
  /* ============================================================
     RESET & BASE
  ============================================================ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  img { max-width: 100%; display: block; }

  :root {
    --navy:      #0B1D51;
    --navy-2:    #132268;
    --navy-3:    #1a2d80;
    --red:       #C91B1B;
    --red-2:     #E02020;
    --red-glow:  rgba(201,27,27,.35);
    --gold:      #D4A843;
    --off-white: #F6F8FC;
    --white:     #FFFFFF;
    --ink:       #0E1628;
    --muted:     #6B7280;
    --border:    #E4E8F2;
    --shadow-sm: 0 2px 12px rgba(11,29,81,.08);
    --shadow-md: 0 8px 40px rgba(11,29,81,.12);
    --shadow-lg: 0 20px 60px rgba(11,29,81,.16);
    --radius:    6px;
    --radius-lg: 12px;
    --font: 'Inter', system-ui, sans-serif;
    --trans: all .3s cubic-bezier(.4,0,.2,1);
  }

  body {
    font-family: var(--font);
    font-weight: 400;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ============================================================
     UTILITY
  ============================================================ */
  .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .section    { padding: 100px 0; }
  .section--dark   { background: var(--navy); }
  .section--gray   { background: var(--off-white); }
  .section--white  { background: var(--white); }

  /* Tags / labels */
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--red);
    margin-bottom: 16px;
  }
  .eyebrow::before {
    content: ''; display: block;
    width: 24px; height: 2px; background: var(--red);
    flex-shrink: 0;
  }
  .eyebrow--light { color: #ff8080; }
  .eyebrow--light::before { background: #ff8080; }

  /* Headings */
  .h-display {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    line-height: 1.12;
    letter-spacing: -.02em;
    color: var(--ink);
  }
  .h-display--light { color: var(--white); }

  .h-section {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -.01em;
    color: var(--ink);
  }
  .h-section--light { color: var(--white); }

  .divider {
    width: 40px; height: 3px;
    background: var(--red);
    margin: 20px 0 28px;
  }
  .divider--center { margin-left: auto; margin-right: auto; }

  .lead {
    font-size: 1.05rem; font-weight: 300;
    line-height: 1.85; color: var(--muted);
  }
  .lead--light { color: rgba(255,255,255,.65); }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font); font-size: 13px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 14px 30px; border-radius: var(--radius);
    text-decoration: none; transition: var(--trans);
    cursor: pointer; border: none; outline: none;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--red); color: var(--white);
    box-shadow: 0 4px 20px var(--red-glow);
  }
  .btn-primary:hover {
    background: var(--red-2); color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--red-glow);
  }
  .btn-ghost {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,.3);
  }
  .btn-ghost:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.6);
    color: var(--white);
  }
  .btn-outline {
    background: transparent; color: var(--navy);
    border: 1.5px solid var(--border);
  }
  .btn-outline:hover {
    border-color: var(--navy); background: var(--navy);
    color: var(--white);
  }
  .btn i { font-size: 0.85em; }

  /* ============================================================
     NAVBAR
  ============================================================ */
  .navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(11,29,81,0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: var(--trans);
  }
  .navbar.scrolled {
    background: rgba(11,29,81,0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,.25);
  }
  .navbar__inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }

  /* Logo */
  .navbar__logo {
    display: flex; align-items: center;
    text-decoration: none; flex-shrink: 0;
  }
  .navbar__logo img { height: 64px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
  .navbar__logo-name {
    font-size: 17px; font-weight: 900; letter-spacing: 4px;
    text-transform: uppercase; color: var(--white); line-height: 1;
  }

  /* Nav links */
  .navbar__links {
    display: flex; align-items: center; gap: 4px;
    list-style: none;
  }
  .navbar__links a {
    display: block; padding: 8px 14px;
    font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; text-decoration: none;
    color: rgba(255,255,255,.7); border-radius: 4px;
    transition: var(--trans);
  }
  .navbar__links a:hover, .navbar__links a.active {
    color: var(--white); background: rgba(255,255,255,.07);
  }
  .navbar__links .nav-cta a {
    background: var(--red); color: var(--white);
    padding: 8px 18px;
  }
  .navbar__links .nav-cta a:hover {
    background: var(--red-2);
  }

  /* Hamburger */
  .navbar__toggle {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 6px; background: none; border: none;
  }
  .navbar__toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: var(--trans);
  }
  .navbar__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .navbar__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .navbar__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile menu */
  .navbar__mobile {
    display: none; position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--navy); z-index: 999;
    padding: 32px 24px; overflow-y: auto;
  }
  .navbar__mobile.open { display: block; }
  .navbar__mobile ul { list-style: none; }
  .navbar__mobile ul li { border-bottom: 1px solid rgba(255,255,255,.07); }
  .navbar__mobile ul li a {
    display: block; padding: 18px 0;
    font-size: 16px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: rgba(255,255,255,.8);
    text-decoration: none; transition: var(--trans);
  }
  .navbar__mobile ul li a:hover { color: var(--white); padding-left: 8px; }
  .navbar__mobile .mobile-cta {
    margin-top: 32px;
    display: flex; flex-direction: column; gap: 12px;
  }
  .navbar__mobile .mobile-cta .btn { justify-content: center; }

  /* ============================================================
     HERO
  ============================================================ */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative; overflow: hidden;
    display: flex; align-items: center;
  }

  /* Animated gradient background */
  .hero__bg {
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,27,27,.12) 0%, transparent 60%),
      radial-gradient(ellipse 60% 80% at 10% 80%, rgba(26,45,128,.6) 0%, transparent 60%),
      radial-gradient(ellipse 100% 60% at 100% 0%, rgba(11,29,81,.8) 0%, transparent 50%);
  }

  /* Dotted grid */
  .hero__dots {
    position: absolute; inset: 0; z-index: 0;
    background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 36px 36px;
  }

  /* Decorative lines */
  .hero__lines {
    position: absolute; inset: 0; z-index: 0; overflow: hidden;
  }
  .hero__lines::before {
    content: ''; position: absolute;
    top: -200px; right: -100px;
    width: 600px; height: 600px;
    border: 1px solid rgba(255,255,255,.04);
    border-radius: 50%;
  }
  .hero__lines::after {
    content: ''; position: absolute;
    top: -100px; right: 50px;
    width: 400px; height: 400px;
    border: 1px solid rgba(201,27,27,.08);
    border-radius: 50%;
  }

  .hero__content {
    position: relative; z-index: 2;
    padding: 120px 0 80px;
    width: 100%;
  }

  .hero__grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px; align-items: center;
  }

  /* Tag pill */
  .hero__pill {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(201,27,27,.15);
    border: 1px solid rgba(201,27,27,.3);
    padding: 8px 16px; border-radius: 100px;
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: #ff9090;
    margin-bottom: 32px;
  }
  .hero__pill span.dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--red-2); animation: pulse 2s infinite;
    flex-shrink: 0;
  }
  @keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .5; transform: scale(1.4); }
  }

  .hero__title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 1.06; letter-spacing: -.03em;
    color: var(--white);
    margin-bottom: 28px;
  }
  .hero__title .line-accent { color: var(--red-2); }

  .hero__subtitle {
    font-size: clamp(.95rem, 1.5vw, 1.1rem);
    font-weight: 300; line-height: 1.85;
    color: rgba(255,255,255,.6);
    max-width: 520px; margin-bottom: 44px;
  }

  .hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }

  /* Values strip */
  .hero__values {
    display: flex; flex-wrap: wrap; gap: 28px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .hero__value {
    display: flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(255,255,255,.45);
    transition: color .2s;
  }
  .hero__value i { color: var(--red); font-size: 14px; }
  .hero__value:hover { color: rgba(255,255,255,.8); }

  /* Hero side card */
  .hero__card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    backdrop-filter: blur(20px);
  }
  .hero__card-title {
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: rgba(255,255,255,.4);
    margin-bottom: 28px;
  }

  .hero__stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3px; border-radius: var(--radius); overflow: hidden;
    margin-bottom: 3px;
  }
  .hstat {
    background: rgba(255,255,255,.05);
    padding: 24px 20px; text-align: center;
  }
  .hstat:first-child { background: var(--red); }
  .hstat__num {
    font-size: 2.2rem; font-weight: 800;
    color: var(--white); line-height: 1;
    margin-bottom: 8px;
  }
  .hstat__lbl {
    font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: rgba(255,255,255,.6);
  }
  .hstat--wide {
    grid-column: 1/-1;
    background: rgba(255,255,255,.07) !important;
  }
  .hstat--wide .hstat__num { font-size: 2.8rem; }

  /* Cert badges */
  .hero__badges { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
  .hero__badge {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius); padding: 12px 16px;
  }
  .hero__badge i { color: var(--gold); font-size: 1rem; }
  .hero__badge span {
    font-size: 11px; font-weight: 500;
    color: rgba(255,255,255,.65); letter-spacing: .5px;
  }

  /* Scroll cue */
  .hero__scroll {
    position: absolute; bottom: 36px; left: 50%;
    transform: translateX(-50%); z-index: 2;
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
    text-decoration: none;
  }
  .hero__scroll span {
    font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,.3); font-weight: 600;
  }
  .hero__scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50%  { transform: scaleY(1); transform-origin: top; }
    100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
  }

  /* ============================================================
     ABOUT
  ============================================================ */
  .about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
  }

  .about__list {
    list-style: none; margin: 32px 0;
    display: flex; flex-direction: column; gap: 0;
  }
  .about__list li {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0; border-bottom: 1px solid var(--border);
    font-size: 13px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: var(--navy);
  }
  .about__list li:last-child { border-bottom: none; }
  .about__list li .icon-dot {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(201,27,27,.08); display: flex;
    align-items: center; justify-content: center;
    color: var(--red); font-size: 11px; flex-shrink: 0;
  }

  /* Qualiopi stamp */
  .qualiopi {
    display: inline-flex; align-items: center; gap: 14px;
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 14px 20px; margin-top: 32px;
    box-shadow: var(--shadow-sm);
  }
  .qualiopi__icon {
    width: 40px; height: 40px; border-radius: 6px;
    background: #003189; display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
    font-size: 13px; font-weight: 900; color: white;
    letter-spacing: 1px;
  }
  .qualiopi__text { line-height: 1.4; }
  .qualiopi__text strong { display: block; font-size: 13px; color: var(--navy); }
  .qualiopi__text span { font-size: 11px; color: var(--muted); }

  /* Map visual */
  .about__visual {
    position: relative;
  }
  .about__map-bg {
    background: var(--navy);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    min-height: 520px;
  }
  .about__map-bg img.zone {
    width: 100%; height: 100%;
    object-fit: contain;
    display: block;
  }
  .about__map-cities {
    position: relative; z-index: 2;
    display: flex; flex-wrap: wrap;
    gap: 8px; padding: 24px; justify-content: center;
  }
  .city-tag {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 100px; padding: 6px 14px;
    font-size: 11px; font-weight: 600; letter-spacing: 1px;
    color: rgba(255,255,255,.75); display: flex;
    align-items: center; gap: 6px;
  }
  .city-tag i { font-size: 9px; color: var(--red); }

  /* Floating stat cards */
  .about__float {
    position: absolute; display: flex;
    flex-direction: column; gap: 10px;
    right: -20px; bottom: 30px;
  }
  .float-card {
    background: var(--white); border-radius: var(--radius);
    padding: 14px 18px; box-shadow: var(--shadow-md);
    border-left: 3px solid var(--red);
    min-width: 150px;
  }
  .float-card__num {
    font-size: 1.6rem; font-weight: 800;
    color: var(--navy); line-height: 1;
  }
  .float-card__lbl {
    font-size: 10px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: var(--muted); margin-top: 4px;
  }

  /* ============================================================
     SERVICES
  ============================================================ */
  .services__intro {
    text-align: center; max-width: 640px;
    margin: 0 auto 64px;
  }
  .services__intro .eyebrow { justify-content: center; }
  .services__intro .eyebrow::before { display: none; }
  .services__intro .eyebrow::after {
    content: ''; display: block;
    width: 24px; height: 2px; background: var(--red);
  }
  .services__intro .divider { margin: 20px auto 24px; }

  .services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative; overflow: hidden;
    transition: var(--trans);
    cursor: default;
  }
  .service-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--red);
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
  }
  .service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
  }
  .service-card:hover::after { transform: scaleX(1); }

  .service-card__icon {
    width: 52px; height: 52px; border-radius: 10px;
    background: var(--off-white); display: flex;
    align-items: center; justify-content: center;
    font-size: 1.35rem; color: var(--navy);
    margin-bottom: 24px; transition: var(--trans);
  }
  .service-card:hover .service-card__icon {
    background: var(--navy); color: var(--white);
  }
  .service-card h3 {
    font-size: 1rem; font-weight: 700;
    color: var(--navy); margin-bottom: 12px;
    line-height: 1.3;
  }
  .service-card p {
    font-size: .875rem; line-height: 1.8;
    color: var(--muted); font-weight: 300;
  }

  /* ============================================================
     ENGAGEMENTS
  ============================================================ */
  .engagements__intro {
    max-width: 520px; margin-bottom: 56px;
  }

  .engagements__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px; background: rgba(255,255,255,.06);
    border-radius: var(--radius-lg); overflow: hidden;
  }

  .eng-card {
    background: rgba(255,255,255,.03);
    padding: 40px 32px; transition: var(--trans);
    position: relative;
  }
  .eng-card:hover { background: rgba(255,255,255,.06); }
  .eng-card__num {
    font-family: 'DM Serif Display', serif;
    font-size: 5rem; line-height: 1;
    color: #E02020;
    margin-bottom: 20px;
    transition: color .3s;
  }
  .eng-card:hover .eng-card__num { color: #ff2020; }
  .eng-card p {
    font-size: .9rem; line-height: 1.85;
    color: rgba(255,255,255,.65); font-weight: 300;
  }
  .eng-card__tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(201,27,27,.15); border: 1px solid rgba(201,27,27,.25);
    border-radius: 100px; padding: 4px 12px;
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: #ff8080;
    margin-bottom: 16px;
  }

  /* ============================================================
     TARIFS
  ============================================================ */
  .tarifs__header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
  .tarifs__header .eyebrow { justify-content: center; }
  .tarifs__header .eyebrow::before { display: none; }
  .tarifs__header .eyebrow::after { content: ''; display: block; width: 24px; height: 2px; background: var(--red); }
  .tarifs__header .divider { margin: 20px auto 24px; }

  .tarifs__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 28px; margin-bottom: 24px;
  }

  .tarif-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
  }

  .tarif-box__head {
    background: var(--navy);
    padding: 22px 32px;
    display: flex; align-items: center; gap: 14px;
  }
  .tarif-box__head-icon {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.1);
    border-radius: 8px; display: flex;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,.8); font-size: 1rem;
    flex-shrink: 0;
  }
  .tarif-box__head h3 {
    font-size: 12px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--white); margin: 0;
  }

  .tarif-row {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
    border-bottom: 1px solid var(--border);
    transition: background .2s;
  }
  .tarif-row:last-child { border-bottom: none; }
  .tarif-row:hover { background: var(--off-white); }
  .tarif-role {
    font-size: 12px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: var(--ink);
  }
  .tarif-price {
    font-size: 1.25rem; font-weight: 800; color: var(--red);
    white-space: nowrap;
  }
  .tarif-price small {
    font-size: 11px; font-weight: 400;
    color: var(--muted); margin-left: 4px;
  }

  .tarifs__notes {
    display: flex; flex-wrap: wrap; gap: 12px;
  }
  .tarif-note {
    flex: 1; min-width: 260px;
    display: flex; align-items: center; gap: 14px;
    background: var(--white); border: 1px solid var(--border);
    border-left: 4px solid var(--red);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 16px 20px;
  }
  .tarif-note i { color: var(--red); font-size: 1.1rem; flex-shrink: 0; }
  .tarif-note p { font-size: 12px; color: var(--muted); margin: 0; line-height: 1.6; }

  /* ============================================================
     CONDITIONS
  ============================================================ */
  .conditions__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: start;
  }
  .conditions__left { position: sticky; top: 100px; }

  .cond-list { margin-top: 8px; }
  .cond-item {
    display: flex; gap: 20px;
    padding: 28px 0; border-bottom: 1px solid var(--border);
  }
  .cond-item:last-child { border-bottom: none; }
  .cond-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: var(--off-white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--red); font-size: 1rem;
    transition: var(--trans);
  }
  .cond-item:hover .cond-icon { background: var(--navy); color: var(--white); }
  .cond-item h5 {
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--navy);
    margin-bottom: 6px;
  }
  .cond-item p { font-size: .875rem; color: var(--muted); line-height: 1.7; }

  /* ============================================================
     CONTACT
  ============================================================ */
  .contact__grid {
    display: grid; grid-template-columns: 400px 1fr;
    gap: 40px; align-items: start;
  }

  .contact__info {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    position: relative; overflow: hidden;
  }
  .contact__info::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--red), var(--red-2));
  }
  .contact__info h3 {
    font-size: 1.4rem; font-weight: 700;
    color: var(--white); margin-bottom: 6px;
  }
  .contact__info .sub {
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(255,255,255,.35);
    margin-bottom: 40px;
  }

  .info-item {
    display: flex; gap: 18px;
    margin-bottom: 28px; align-items: flex-start;
  }
  .info-item__icon {
    width: 38px; height: 38px; min-width: 38px;
    background: rgba(255,255,255,.07);
    border-radius: 8px; display: flex;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,.6); font-size: .9rem;
  }
  .info-item p { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.7; }
  .info-item a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s; }
  .info-item a:hover { color: var(--white); }

  /* Form */
  .contact__form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
  }
  .contact__form h3 {
    font-size: 1.3rem; font-weight: 700;
    color: var(--navy); margin-bottom: 32px;
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block; font-size: 11px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--navy); margin-bottom: 8px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 13px 16px;
    font-family: var(--font); font-size: .9rem;
    color: var(--ink); background: var(--off-white);
    transition: var(--trans); outline: none;
    resize: vertical;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--navy);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(11,29,81,.06);
  }
  .form-group textarea { min-height: 130px; }
  .form-group select { cursor: pointer; }

  .btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 13px; padding: 16px;
    background: var(--red); color: white;
    box-shadow: 0 4px 20px var(--red-glow);
  }
  .btn-submit:hover {
    background: var(--red-2);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--red-glow);
  }

  /* ============================================================
     FOOTER
  ============================================================ */
  .footer {
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,.06);
  }
  .footer__top {
    padding: 60px 0 40px;
    display: grid;
    grid-template-columns: 280px 1fr 1fr 1fr;
    gap: 48px;
  }
  .footer__brand {}
  .footer__brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
  .footer__brand-logo img { height: 60px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
  .footer__brand-logo span {
    font-size: 13px; font-weight: 800; letter-spacing: 3px;
    text-transform: uppercase; color: var(--white);
  }
  .footer__brand p {
    font-size: .82rem; line-height: 1.8;
    color: rgba(255,255,255,.4); margin-bottom: 24px;
  }
  .footer__social {
    display: flex; gap: 8px;
  }
  .footer__social a {
    width: 34px; height: 34px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius); display: flex;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,.45); text-decoration: none;
    font-size: .8rem; transition: var(--trans);
  }
  .footer__social a:hover { background: var(--red); border-color: var(--red); color: white; }

  .footer__col h4 {
    font-size: 10px; font-weight: 800; letter-spacing: 3px;
    text-transform: uppercase; color: rgba(255,255,255,.35);
    margin-bottom: 20px;
  }
  .footer__col ul { list-style: none; }
  .footer__col ul li { margin-bottom: 10px; }
  .footer__col ul li a {
    font-size: .82rem; color: rgba(255,255,255,.5);
    text-decoration: none; transition: color .2s;
  }
  .footer__col ul li a:hover { color: rgba(255,255,255,.9); }
  .footer__col .contact-line {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .82rem; color: rgba(255,255,255,.5);
    margin-bottom: 12px;
  }
  .footer__col .contact-line i { color: var(--red); margin-top: 2px; font-size: .8rem; }
  .footer__col .contact-line a { color: rgba(255,255,255,.5); text-decoration: none; }
  .footer__col .contact-line a:hover { color: white; }

  .footer__bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 20px 0;
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 12px;
  }
  .footer__bottom p { font-size: .75rem; color: rgba(255,255,255,.25); }
  .footer__bottom-links { display: flex; gap: 20px; }
  .footer__bottom-links a {
    font-size: .75rem; color: rgba(255,255,255,.25);
    text-decoration: none; transition: color .2s;
  }
  .footer__bottom-links a:hover { color: rgba(255,255,255,.6); }

  /* ============================================================
     SCROLL ANIMATIONS
  ============================================================ */
  [data-reveal] {
    opacity: 0; transform: translateY(28px);
    transition: opacity .65s cubic-bezier(.4,0,.2,1),
                transform .65s cubic-bezier(.4,0,.2,1);
  }
  [data-reveal].revealed { opacity: 1; transform: none; }
  [data-reveal-delay="1"] { transition-delay: .1s; }
  [data-reveal-delay="2"] { transition-delay: .2s; }
  [data-reveal-delay="3"] { transition-delay: .3s; }
  [data-reveal-delay="4"] { transition-delay: .4s; }

  /* ============================================================
     RESPONSIVE
  ============================================================ */
  @media (max-width: 1100px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__card { display: none; }
    .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  }

  @media (max-width: 900px) {
    .section { padding: 72px 0; }
    .navbar__links { display: none; }
    .navbar__toggle { display: flex; }
    .about__grid { grid-template-columns: 1fr; }
    .about__float { position: static; flex-direction: row; margin-top: 16px; }
    .services__grid { grid-template-columns: 1fr 1fr; }
    .engagements__grid { grid-template-columns: 1fr; gap: 2px; }
    .tarifs__grid { grid-template-columns: 1fr; }
    .conditions__grid { grid-template-columns: 1fr; }
    .conditions__left { position: static; }
    .contact__grid { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 600px) {
    .section { padding: 56px 0; }
    .container { padding: 0 18px; }
    .hero__title { font-size: 2.6rem; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { justify-content: center; }
    .services__grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .about__float { flex-direction: column; }
    .tarif-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  }