  :root {
    --navy: #1A3A5C;
    --navy-mid: #1E4570;
    --blue: #1E6FBF;
    --blue-light: #2E85D4;
    --blue-pale: #EAF3FB;
    --white: #FFFFFF;
    --off-white: #F5F8FC;
    --grey: #6B7A8D;
    --grey-light: #D0DCE8;
    --text: #1A2B3C;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Nunito', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 56px;
    height: 76px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--grey-light);
    box-shadow: 0 1px 20px rgba(26,58,92,0.06);
  }

  .nav-logo { display: flex; align-items: center; gap: 12px; }
  .nav-logo img { height: 46px; width: auto; object-fit: contain; }
  .nav-logo-text { display: flex; flex-direction: column; gap: 1px; }
  .nav-logo .wordmark {
    font-family: 'Akshar', sans-serif;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.12em;
    color: var(--navy);
    text-transform: uppercase;
  }
  .nav-logo .wordmark span { color: var(--blue); }
  .nav-logo .tagline {
    font-size: 9px;
    letter-spacing: 0.22em;
    color: var(--grey);
    text-transform: uppercase;
    font-weight: 300;
    white-space: nowrap;
  }

  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--grey);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.25s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--blue);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--navy); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--blue);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    border-radius: 10px;
  }
  .nav-cta:hover { background: var(--blue-light); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    background: var(--off-white);
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 72px 100px 72px;
    position: relative;
    z-index: 2;
    background: var(--white);
  }

  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
  }
  .hero-eyebrow .line { width: 40px; height: 1px; background: var(--blue); }
  .hero-eyebrow span {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 400;
  }

  .hero-title {
    font-family: 'Akshar', sans-serif;
    font-size: 68px;
    line-height: 1.05;
    color: var(--navy);
    font-weight: 300;
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeUp 0.9s 0.5s forwards;
  }
  .hero-title-2 {
    font-family: 'Akshar', sans-serif;
    font-size: 68px;
    line-height: 1.05;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.9s 0.65s forwards;
  }

  .hero-rule {
    width: 56px; height: 2px;
    background: var(--blue);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.75s forwards;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--grey);
    max-width: 400px;
    margin-bottom: 52px;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.8s 0.85s forwards;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    opacity: 0;
    animation: fadeUp 0.8s 0.95s forwards;
  }

  .btn-primary {
    padding: 16px 36px;
    background: var(--blue);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    border-radius: 10px;
  }
  .btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(30,111,191,0.25); }

  .btn-ghost {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey);
    text-decoration: none;
    transition: color 0.25s;
    position: relative;
  }
  .btn-ghost::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--blue);
    transition: width 0.35s ease;
  }
  .btn-ghost:hover::after { width: calc(100% - 22px); }
  .btn-ghost:hover { color: var(--navy); }
  .btn-ghost .arrow { transition: transform 0.25s; }
  .btn-ghost:hover .arrow { transform: translateX(4px); }

  .hero-right {
    position: relative;
    overflow: hidden;
    background: var(--off-white);
  }
  .hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 30%),
                linear-gradient(to top, var(--white) 0%, transparent 30%);
    z-index: 1;
  }

  .hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dceeff 0%, #b8d9f5 50%, #cce4f8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .hero-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(30,111,191,0.04) 60px,
      rgba(30,111,191,0.04) 61px
    );
  }
  .towel-graphic { position: relative; z-index: 1; }


  /* ── BAND ── */
  .band {
    background: var(--navy);
    padding: 20px 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    overflow: hidden;
  }
  .band-label {
    font-size: 9px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .band-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.15); flex-shrink: 0; }
  .band-items { display: flex; gap: 40px; }
  .band-item {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    font-weight: 300;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .band-item::before { content: '—'; color: var(--blue-light); font-size: 10px; }

  /* ── SECTION HEADER ── */
  .section-header { text-align: center; margin-bottom: 72px; }
  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  .section-eyebrow .dot { width: 5px; height: 5px; background: var(--blue); border-radius: 50%; }
  .section-eyebrow span {
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--blue);
  }
  .section-title {
    font-family: 'Akshar', sans-serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--navy);
    line-height: 1.15;
  }
  .section-title em { font-style: italic; color: var(--blue); }
  .section-sub {
    font-size: 14px;
    color: var(--grey);
    margin-top: 14px;
    line-height: 1.7;
    font-weight: 300;
  }

  /* ── SERVICES ── */
  .services { padding: 120px 72px; background: var(--white); }

  .services-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
  }

  .service-card {
    background: var(--white);
    border: 1px solid var(--grey-light);
    width: 380px;
    flex-shrink: 0;
    border-radius: 10px;
    padding: 52px 44px;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 44px;
    width: 0; height: 2px;
    background: var(--blue);
    transition: width 0.4s;
  }
  .service-card:hover { background: var(--blue-pale); }
  .service-card:hover::before { width: calc(100% - 88px); }

  .service-icon {
    width: 52px; height: 52px;
    background: var(--off-white);
    border: 1px solid var(--grey-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: background 0.3s, border-color 0.3s;
  }
  .service-card:hover .service-icon { background: var(--blue); border-color: var(--blue); }
  .service-icon svg { width: 22px; height: 22px; stroke: var(--blue); transition: stroke 0.3s; }
  .service-card:hover .service-icon svg { stroke: var(--white); }
  .service-icon img { width: 22px; height: 22px; filter: brightness(0) saturate(100%) invert(38%) sepia(49%) saturate(849%) hue-rotate(178deg) brightness(89%) contrast(98%); transition: filter 0.3s; }
  .service-card:hover .service-icon img { filter: brightness(0) invert(1); }

  .service-title { font-family: 'Akshar', sans-serif; font-size: 32px; font-weight: 400; color: var(--navy); margin-bottom: 14px; line-height: 1.2; }
  .service-desc { font-size: 13px; line-height: 1.85; color: var(--grey); font-weight: 300; }

  /* ── CLIENTS ── */
  .clients {
    padding: 120px 72px;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
  }
  .clients::before {
    content: 'HOSPITALITY';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Akshar', sans-serif;
    font-size: 120px;
    font-weight: 300;
    color: rgba(30,111,191,0.05);
    letter-spacing: 0.1em;
    pointer-events: none;
    white-space: nowrap;
  }

  .clients-grid { display: flex; justify-content: center; gap: 24px; }

  /* ── CLIENT CARDS (flip) ── */
  .card {
    width: 380px;
    height: 420px;
    perspective: 1000px;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.65s ease;
  }
  .card.flipped .card__inner { transform: rotateY(180deg); }

  .card__front,
  .card__back {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .card__front {
    background: var(--white);
    border: 1px solid var(--grey-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
  }

  .card__body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .card__title {
    font-family: 'Akshar', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .card__text {
    font-size: 13px;
    line-height: 1.8;
    color: var(--grey);
    font-weight: 300;
    flex: 1;
    margin-bottom: 20px;
  }

  .card__btn {
    align-self: flex-start;
    padding: 9px 20px;
    background: transparent;
    color: var(--blue);
    border: 1px solid var(--blue);
    font-family: 'Nunito', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    border-radius: 6px;
  }
  .card__btn:hover { background: var(--blue); color: var(--white); }

  .card__back {
    background: var(--navy);
    transform: rotateY(180deg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
  }

  .card__back-eyebrow {
    font-size: 9px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 12px;
  }

  .card__back-title {
    font-family: 'Akshar', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .card__back-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    margin-bottom: 24px;
  }

  .card__back-list li {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    font-weight: 300;
    line-height: 1.5;
    padding-left: 14px;
    position: relative;
  }
  .card__back-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--blue-light);
    font-size: 10px;
  }

  .card__back-note {
    font-size: 12px;
    color: var(--blue-light);
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .card__btn-back {
    align-self: flex-start;
    padding: 9px 20px;
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    font-family: 'Nunito', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.25s, color 0.25s;
    border-radius: 6px;
  }
  .card__btn-back:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

  /* ── ABOUT ── */
  .about {
    background: var(--navy);
    padding: 96px 72px;
  }

  .about-inner {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .about-left {
    flex: 0 0 380px;
  }

  .about-title {
    font-family: 'Akshar', sans-serif;
    font-size: 40px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
  }

  .about-right { flex: 1; }

  .about-lead {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    margin-bottom: 24px;
  }

  .about-text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    margin-bottom: 16px;
  }

  .about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
  }
  .about-list li {
    font-size: 14px;
    color: var(--blue-light);
    font-weight: 300;
    padding-left: 18px;
    position: relative;
  }
  .about-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--blue-light);
    font-size: 11px;
  }

  .about-cta {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    border-left: 2px solid var(--blue-light);
    padding-left: 16px;
  }

  /* ── WHY ── */
  .why { padding: 120px 72px; background: var(--white); }

  .why-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; }

  .why-item {
    position: relative;
    padding: 52px 44px;
    background: var(--white);
    border: 1px solid var(--grey-light);
    border-radius: 10px;
    width: 380px;
    flex-shrink: 0;
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .why-item:hover { box-shadow: 0 20px 60px rgba(30,111,191,0.10); transform: translateY(-4px); }

  .why-icon { margin-bottom: 20px; align-self: flex-start; }
  .why-icon svg { width: 28px; height: 28px; stroke: var(--blue); display: block; }
  .why-title { font-family: 'Akshar', sans-serif; font-size: 32px; font-weight: 400; color: var(--navy); margin-bottom: 10px; }
  .why-desc { font-size: 13px; line-height: 1.8; color: var(--grey); font-weight: 300; }

  /* ── TICKER ── */
  .ticker {
    background: var(--navy);
    padding: 20px 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    overflow: hidden;
  }

  .ticker__title {
    font-size: 9px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .ticker__group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 0;
  }

  .ticker__item {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    font-weight: 300;
    white-space: nowrap;
    padding: 0 8px;
  }

  .ticker__sep {
    color: var(--blue-light);
    font-size: 10px;
  }

  /* ── CONTACT ── */
  .contact {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: var(--off-white);
    padding: 96px 72px;
    gap: 80px;
  }

  .contact-left {
    flex: 1;
    max-width: 480px;
  }

  .contact-title { font-family: 'Akshar', sans-serif; font-size: 52px; font-weight: 300; color: var(--navy); line-height: 1.1; margin-bottom: 24px; }
  .contact-title em { font-style: italic; color: var(--blue); }
  .contact-sub { font-size: 14px; line-height: 1.8; color: var(--grey); font-weight: 300; max-width: 420px; margin-bottom: 48px; }

  .contact-info { display: flex; flex-direction: column; gap: 20px; }
  .contact-info-item { display: flex; align-items: flex-start; gap: 12px; }
  .contact-info-item svg { width: 16px; height: 16px; stroke: var(--blue); flex-shrink: 0; margin-top: 2px; }
  .info-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); margin-bottom: 3px; }
  .info-val { font-size: 14px; color: var(--navy); font-weight: 300; }

  .contact-right {
    flex: 0 0 460px;
    background: var(--white);
    padding: 52px 48px;
    border: 1px solid var(--grey-light);
    box-shadow: 0 8px 40px rgba(26,58,92,0.08);
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
  .field { display: flex; flex-direction: column; gap: 8px; }
  .field label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); }
  .field input, .field textarea {
    border: none;
    border-bottom: 1px solid var(--grey-light);
    background: transparent;
    padding: 12px 0;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: var(--navy);
    outline: none;
    transition: border-color 0.25s;
    width: 100%;
  }
  .field input:focus, .field textarea:focus { border-color: var(--blue); }
  .field textarea { resize: none; height: 100px; }

  .form-submit { margin-top: 36px; display: flex; align-items: center; justify-content: space-between; }
  .form-note { font-size: 11px; color: var(--grey); font-weight: 300; }
  button[type="submit"] {
    padding: 16px 40px;
    background: var(--blue);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    border-radius: 8px;
    white-space: nowrap;
  }
  button[type="submit"]:hover { background: var(--blue-light); transform: translateY(-1px); }

  /* ── FORM FEEDBACK ── */
  .form-feedback {
    margin-top: 16px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    padding: 12px 16px;
    border-radius: 6px;
    display: none;
  }
  .form-feedback:not(:empty) { display: block; }
  .form-feedback--success {
    background: #edfbf3;
    color: #1a7a45;
    border: 1px solid #a3e6c0;
  }
  .form-feedback--error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
  }

  /* ── SERVICE CARD CURSOR ── */
  .service-card[data-service] { cursor: pointer; }

  /* ── MODAL ── */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,58,92,0.55);
    backdrop-filter: blur(6px);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .modal-overlay.open {
    opacity: 1;
    pointer-events: all;
  }
  .modal-card {
    background: var(--white);
    border-top: 3px solid var(--blue);
    padding: 48px 52px;
    width: 90%;
    max-width: 580px;
    position: relative;
    transform: translateY(24px);
    transition: transform 0.35s ease;
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal-overlay.open .modal-card { transform: translateY(0); }

  .modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    opacity: 0.4;
    transition: opacity 0.2s;
  }
  .modal-close:hover { opacity: 1; }
  .modal-close svg { width: 20px; height: 20px; stroke: var(--navy); }

  .modal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
  }
  .modal-icon-wrap {
    width: 56px; height: 56px;
    background: var(--blue-pale);
    border: 1px solid var(--grey-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .modal-icon-wrap img { width: 26px; height: 26px; filter: brightness(0) saturate(100%) invert(38%) sepia(49%) saturate(849%) hue-rotate(178deg) brightness(89%) contrast(98%); }

  .modal-title {
    font-family: 'Akshar', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.1;
  }
  .modal-desc {
    font-size: 14px;
    line-height: 1.85;
    color: var(--grey);
    font-weight: 300;
    margin-bottom: 28px;
  }
  .modal-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
  }
  .modal-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text);
    font-weight: 300;
    line-height: 1.6;
  }
  .modal-features li::before {
    content: '';
    display: block;
    width: 5px; height: 5px;
    background: var(--blue);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
  }
  .modal-note {
    font-size: 13px;
    color: var(--navy);
    font-weight: 400;
    font-style: italic;
    border-left: 2px solid var(--blue);
    padding-left: 14px;
    margin-bottom: 28px;
    line-height: 1.6;
  }
  .modal-cta { display: inline-block; }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    border-top: 1px solid rgba(30,111,191,0.2);
    padding: 36px 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-logo .wordmark { font-family: 'Akshar', sans-serif; font-weight: 600; font-size: 24px; letter-spacing: 0.12em; color: var(--white); text-transform: uppercase; }
  .footer-logo .wordmark span { color: var(--blue-light); }
  .footer-logo .tagline { font-size: 9px; letter-spacing: 0.2em; color: rgba(255,255,255,0.3); text-transform: uppercase; margin-top: 2px; }

  .footer-links { display: flex; gap: 32px; list-style: none; }
  .footer-links a { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.25s; }
  .footer-links a:hover { color: var(--white); }
  .footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 0.06em; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes zoomIn {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
  }
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ── PARTENAIRES TICKER ── */
  .partners {
    padding: 72px 0 80px;
    background: #ffffff;
    overflow: hidden;
    border-top: 1px solid var(--grey-light);
    border-bottom: 1px solid var(--grey-light);
  }

  .partners-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 72px;
  }

  .partners-ticker-wrap {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  }

  .partners-track {
    display: flex;
    align-items: center;
    gap: 72px;
    width: max-content;
    animation: partners-scroll 28s linear infinite;
  }

  .partners-track:hover { animation-play-state: paused; }

  .partners-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .partners-logo-item img {
    height: 160px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    filter: none;
    transition: transform 0.3s ease;
  }

  .partners-logo-item img:hover {
    transform: scale(1.05);
  }

  @keyframes partners-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ── HAMBURGER ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    flex-shrink: 0;
  }
  .nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }

  /* ── RESPONSIVE : 1100px ── */
  @media (max-width: 1100px) {
    nav { padding: 0 32px; }
    .hero-left { padding: 120px 48px 80px 48px; }
    .hero-title, .hero-title-2 { font-size: 54px; }
    .services, .clients, .why { padding: 80px 40px; }
    .about { padding: 80px 40px; }
    .contact { padding: 80px 40px; gap: 48px; }
    .band { padding: 20px 32px; gap: 24px; }
    .ticker { padding: 20px 32px; gap: 24px; }
    footer { padding: 32px 40px; }
    .service-card { width: 320px; }
    .card { width: 320px; }
    .why-item { width: 320px; }
  }

  /* ── RESPONSIVE : 900px ── */
  @media (max-width: 900px) {
    .hero { display: block; position: relative; min-height: 100vh; overflow: visible; }
    .hero-right { display: block; position: absolute; inset: 0; height: 100%; z-index: 0; }
    .hero-right::before { display: block; background: rgba(10,25,45,0.55); z-index: 1; }
    .hero-left { position: relative; z-index: 2; min-height: 100vh; background: transparent; padding: 120px 40px 80px; }
    .services-grid { flex-wrap: wrap; justify-content: center; }
    .service-card { width: calc(50% - 12px); min-width: 280px; }
    .clients-grid { flex-wrap: wrap; justify-content: center; }
    .card { width: calc(50% - 12px); min-width: 280px; }
    .why-grid { flex-wrap: wrap; justify-content: center; }
    .why-item { width: calc(50% - 12px); min-width: 280px; }
    .about-inner { gap: 48px; }
    .about-left { flex: 0 0 260px; }
    .contact-right { flex: 0 0 360px; }
  }

  /* ── RESPONSIVE : 768px ── */
  @media (max-width: 768px) {
    /* Nav */
    nav { padding: 0 20px; height: 64px; }
    .nav-logo img { height: 38px; }
    .nav-logo .wordmark { font-size: 18px; }
    .nav-links {
      display: none;
      position: fixed;
      top: 64px; left: 0; right: 0; bottom: 0;
      background: var(--white);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 40px;
      z-index: 99;
      list-style: none;
    }
    .nav-links.mobile-open { display: flex; }
    .nav-links a { font-size: 20px; letter-spacing: 0.08em; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    /* Hero */
    .hero { display: block; position: relative; min-height: 100vh; overflow: visible; }
    .hero-right { display: block; position: absolute; inset: 0; height: 100%; z-index: 0; }
    .hero-right::before { display: block; background: rgba(10,25,45,0.55); z-index: 1; }
    .hero-left { position: relative; z-index: 2; min-height: 100vh; background: transparent; padding: 100px 24px 60px; }
    .hero-title { color: var(--white); }
    .hero-title-2 { color: var(--blue-light); }
    .hero-rule { background: var(--blue-light); }
    .hero-desc { color: rgba(255,255,255,0.8); }
    .hero-eyebrow span { color: var(--blue-light); }
    .hero-eyebrow .line { background: var(--blue-light); }
    .btn-ghost { color: rgba(255,255,255,0.75); }
    .btn-ghost:hover { color: var(--white); }
    .hero-title, .hero-title-2 { font-size: clamp(24px, 7vw, 42px); }
    .hero-desc { font-size: 14px; margin-bottom: 40px; }
    .hero-desc span { white-space: normal !important; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; }

    /* Band */
    .band { flex-wrap: wrap; gap: 12px; padding: 16px 20px; justify-content: center; }
    .band-label { text-align: center; width: 100%; }
    .band-divider { display: none; }
    .band-items { flex-wrap: wrap; justify-content: center; gap: 8px 16px; }

    /* Section header */
    .section-header { margin-bottom: 48px; }
    .section-title { font-size: 34px; }

    /* Services */
    .services { padding: 72px 20px; }
    .services-grid { flex-direction: column; align-items: center; }
    .service-card { width: 100%; max-width: 480px; }

    /* Clients */
    .clients { padding: 72px 20px; }
    .clients::before { display: none; }
    .clients-grid { flex-direction: column; align-items: center; }
    .card { width: 100%; max-width: 480px; }

    /* About */
    .about { padding: 72px 20px; }
    .about-inner { flex-direction: column; gap: 36px; }
    .about-left { flex: none; width: 100%; }
    .about-title { font-size: 32px; }

    /* Why */
    .why { padding: 72px 20px; }
    .why-grid { flex-direction: column; align-items: center; }
    .why-item { width: 100%; max-width: 480px; }

    /* Ticker */
    .ticker { flex-wrap: wrap; gap: 12px; padding: 16px 20px; justify-content: center; }
    .ticker__title { text-align: center; width: 100%; }
    .ticker__group { justify-content: center; }

    /* Contact */
    .contact { flex-direction: column; padding: 72px 20px; gap: 40px; align-items: stretch; }
    .contact-left { max-width: 100%; }
    .contact-right { flex: none; width: 100%; padding: 32px 24px; }
    .contact-title { font-size: 36px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-row .field { margin-bottom: 20px; }
    .form-submit { flex-direction: column; align-items: stretch; gap: 16px; }
    button[type="submit"] { width: 100%; text-align: center; }

    /* Footer */
    footer { flex-direction: column; padding: 36px 20px; gap: 24px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px 24px; }
    .footer-copy { order: 3; }

    /* Partners */
    .partners { padding: 52px 0; }
    .partners-header { padding: 0 20px; margin-bottom: 32px; }
    .partners-track { gap: 40px; animation-duration: 20s; }
    .partners-logo-item img { height: 56px; max-width: 160px; }

    /* Modal */
    .modal-card { padding: 32px 24px; width: 95%; }
    .modal-title { font-size: 24px; }
  }

  /* ── RESPONSIVE : 480px ── */
  @media (max-width: 480px) {
    .hero-title, .hero-title-2 { font-size: clamp(22px, 6.5vw, 34px); }
    .hero-left { padding: 90px 16px 48px; }
    .section-title { font-size: 28px; }
    .about-title { font-size: 26px; }
    .contact-title { font-size: 28px; }
    .service-card { padding: 36px 28px; }
    .why-item { padding: 36px 28px; }
    .contact-sub { margin-bottom: 32px; }
    .band-item { font-size: 10px; }
  }
