  :root {
    --indigo: #3D4EE8;
    --indigo-dark: #2A38CC;
    --indigo-deep: #1a26a0;
    --azure: #7BA7F0;
    --sunflower: #F5C240;
    --crystal: #B8CCEE;
    --ivory: #E3EAFA;
    --black: #111111;
    --dark-grey: #333333;
    --grey: #BBBBBB;
    --light-grey: #F0F0F0;
    --white: #FFFFFF;
  }

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

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-grey);
    background: var(--white);
    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 60px;
    height: 72px;
    background: rgba(10, 14, 80, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all .3s;
  }
  .nav-logo img {
    height: 42px; border-radius: 6px;
  }
  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }
  .nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--sunflower); }
  .nav-cta {
    background: var(--sunflower);
    color: var(--black) !important;
    padding: 8px 22px;
    border-radius: 4px;
    font-weight: 700 !important;
    letter-spacing: 0.05em;
  }
  .nav-cta:hover { background: #f0b820 !important; color: var(--black) !important; }

  /* ─── HERO ─────────────────────────────────────────── */
  #hero {
    min-height: 100vh;
    background: linear-gradient(145deg, #0a0e50 0%, #1a26a0 40%, var(--indigo) 75%, #5a6ded 100%);
    display: flex; flex-direction: column; justify-content: center;
    padding: 120px 60px 80px;
    position: relative;
    overflow: hidden;
  }
  #hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(245,194,64,0.12) 0%, transparent 70%),
                radial-gradient(ellipse 40% 60% at 10% 80%, rgba(123,167,240,0.15) 0%, transparent 60%);
  }
  .hero-grid {
    display: grid; grid-template-columns: 1fr 380px;
    gap: 60px; align-items: center;
    max-width: 1200px; margin: 0 auto; width: 100%;
    position: relative; z-index: 1;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    padding: 6px 18px;
    color: var(--crystal);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  .hero-eyebrow::before {
    content: ''; width: 6px; height: 6px;
    background: var(--sunflower);
    border-radius: 50%;
  }
  .hero-title {
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }
  .hero-title em {
    font-style: normal;
    color: var(--sunflower);
  }
  .hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 44px;
    font-weight: 400;
  }
  .hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--sunflower);
    color: var(--black);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: transform .2s, box-shadow .2s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,194,64,0.35); }
  .btn-ghost {
    border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: all .2s;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }

  .hero-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 36px 32px;
    backdrop-filter: blur(8px);
  }
  .hero-stat-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }
  .hero-stat {
    text-align: center;
  }
  .hero-stat .num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
  }
  .hero-stat .num span { color: var(--sunflower); }
  .hero-stat .label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
  .hero-divider {
    width: 1px; background: rgba(255,255,255,0.12);
    grid-column: span 2; height: 1px; margin: 4px 0;
  }
  .hero-badge {
    grid-column: span 2;
    display: flex; align-items: center; gap: 10px;
    background: rgba(245,194,64,0.12);
    border: 1px solid rgba(245,194,64,0.25);
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 4px;
  }
  .hero-badge .badge-icon {
    font-size: 1.2rem;
  }
  .hero-badge p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
  }
  .hero-badge strong { color: var(--sunflower); }

  .hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 1;
    animation: bounce 2s ease-in-out infinite;
  }
  @keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
  .hero-scroll::after {
    content: ''; width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  }

  /* ─── SECTIONS COMMUNES ─────────────────────────────── */
  section { padding: 100px 60px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--indigo);
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-eyebrow::before {
    content: ''; display: block;
    width: 32px; height: 2px;
    background: var(--sunflower);
    border-radius: 2px;
  }
  .section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 20px;
  }
  .section-lead {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.75;
    max-width: 620px;
    font-weight: 400;
  }

  /* ─── IDENTITY ─────────────────────────────────────── */
  #identity { background: var(--white); }
  .identity-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start; margin-top: 60px;
  }
  .identity-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
  }
  .identity-text p strong { color: var(--indigo); font-weight: 600; }
  .identity-chips {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 32px;
  }
  .chip {
    border: 1.5px solid var(--crystal);
    border-radius: 100px;
    padding: 7px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--indigo);
    background: var(--ivory);
    letter-spacing: 0.04em;
  }

  .identity-facts {
    display: flex; flex-direction: column; gap: 20px;
  }
  .fact-card {
    background: var(--light-grey);
    border-radius: 14px;
    padding: 28px 30px;
    border-left: 4px solid var(--indigo);
    transition: transform .2s, box-shadow .2s;
  }
  .fact-card:hover { transform: translateX(6px); box-shadow: -4px 0 20px rgba(61,78,232,0.1); }
  .fact-card .fc-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--grey);
    margin-bottom: 6px;
  }
  .fact-card .fc-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-grey);
  }
  .fact-card.accent { border-left-color: var(--sunflower); }

  /* ─── VALEURS ─────────────────────────────────────── */
  #values { background: var(--ivory); }
  .values-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; margin-top: 60px;
  }
  .value-card {
    background: var(--white);
    border-radius: 20px;
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
  }
  .value-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(61,78,232,0.12); }
  .value-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--indigo);
  }
  .value-card:nth-child(2)::before { background: var(--sunflower); }
  .value-card:nth-child(3)::before { background: var(--azure); }
  .value-icon {
    width: 56px; height: 56px;
    background: var(--ivory);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
  }
  .value-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .value-card p {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.75;
  }

  /* ─── TIMELINE ─────────────────────────────────────── */
  #timeline { background: var(--white); }
  .timeline {
    margin-top: 64px;
    position: relative;
  }
  .timeline::before {
    content: '';
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--indigo), var(--crystal));
    transform: translateX(-50%);
  }
  .tl-item {
    display: grid; grid-template-columns: 1fr 48px 1fr;
    gap: 0; margin-bottom: 52px; align-items: start;
  }
  .tl-item:nth-child(odd) .tl-content { grid-column: 1; text-align: right; }
  .tl-item:nth-child(odd) .tl-dot { grid-column: 2; }
  .tl-item:nth-child(odd) .tl-empty { grid-column: 3; }
  .tl-item:nth-child(even) .tl-empty { grid-column: 1; }
  .tl-item:nth-child(even) .tl-dot { grid-column: 2; }
  .tl-item:nth-child(even) .tl-content { grid-column: 3; text-align: left; }
  .tl-dot {
    display: flex; justify-content: center; padding-top: 16px;
  }
  .tl-dot-inner {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--indigo);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--indigo);
    transition: transform .3s;
  }
  .tl-item:hover .tl-dot-inner { transform: scale(1.4); }
  .tl-content {
    background: var(--light-grey);
    border-radius: 14px;
    padding: 22px 26px;
    max-width: 420px;
    transition: box-shadow .2s;
  }
  .tl-item:nth-child(odd) .tl-content { margin-right: 24px; margin-left: auto; }
  .tl-item:nth-child(even) .tl-content { margin-left: 24px; }
  .tl-item:hover .tl-content { box-shadow: 0 8px 32px rgba(61,78,232,0.1); }
  .tl-year {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--indigo);
    margin-bottom: 6px;
  }
  .tl-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
  }
  .tl-content p {
    font-size: 0.83rem;
    color: #777;
    line-height: 1.65;
  }
  .tl-item.highlight .tl-content {
    background: linear-gradient(135deg, var(--indigo), var(--indigo-dark));
    color: var(--white);
  }
  .tl-item.highlight .tl-year { color: var(--sunflower); }
  .tl-item.highlight h4 { color: var(--white); }
  .tl-item.highlight p { color: rgba(255,255,255,0.75); }
  .tl-item.highlight .tl-dot-inner { background: var(--sunflower); box-shadow: 0 0 0 3px var(--sunflower); }

  /* ─── ISICOM ─────────────────────────────────────── */
  #isicom {
    background: linear-gradient(145deg, #0a0e50 0%, var(--indigo-dark) 60%, var(--indigo) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  #isicom::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(245,194,64,0.1) 0%, transparent 60%);
  }
  #isicom .section-inner { position: relative; z-index: 1; }
  #isicom .section-eyebrow { color: var(--crystal); }
  #isicom .section-title { color: var(--white); }
  #isicom .section-lead { color: rgba(255,255,255,0.7); max-width: 700px; }
  .isicom-pillars {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 20px; margin-top: 48px;
  }
  .pillar {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 18px;
    padding: 32px 30px;
    transition: background .2s, transform .2s;
  }
  .pillar:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
  .pillar-header {
    display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
  }
  .pillar .p-icon {
    font-size: 1.6rem;
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .pillar-title-block h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
  }
  .pillar-promise {
    font-size: 0.75rem;
    color: var(--sunflower);
    font-weight: 600;
    font-style: italic;
  }
  .pillar-body p {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin-bottom: 14px;
  }
  .pillar-tags {
    display: flex; flex-wrap: wrap; gap: 6px;
  }
  .pillar-tag {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.15);
  }
  .pillar-tag.accent { background: rgba(250,194,57,0.15); color: var(--sunflower); border-color: rgba(250,194,57,0.3); }

  /* Positioning banner */
  .isicom-positioning {
    margin-top: 52px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 20px;
    padding: 32px 40px;
    display: grid; grid-template-columns: 1fr auto;
    gap: 32px; align-items: center;
  }
  .isicom-positioning h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .isicom-positioning p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 560px;
  }
  .isicom-badge-large {
    background: var(--sunflower);
    color: #111;
    border-radius: 14px;
    padding: 18px 28px;
    text-align: center;
    flex-shrink: 0;
    min-width: 180px;
  }
  .isicom-badge-large .badge-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.7;
    margin-bottom: 4px;
  }
  .isicom-badge-large .badge-main {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
  }
  .isicom-certs {
    display: flex; gap: 20px; margin-top: 48px; flex-wrap: wrap;
  }
  .cert-badge {
    display: flex; align-items: center; gap: 12px;
    background: rgba(245,194,64,0.1);
    border: 1px solid rgba(245,194,64,0.25);
    border-radius: 12px;
    padding: 14px 22px;
  }
  .cert-badge .cert-icon { font-size: 1.4rem; }
  .cert-badge p { font-size: 0.8rem; color: rgba(255,255,255,0.8); line-height: 1.4; }
  .cert-badge strong { color: var(--sunflower); }

  /* ─── LEADERSHIP ─────────────────────────────────── */
  #leadership { background: var(--ivory); }
  .leadership-grid {
    display: grid; grid-template-columns: 340px 1fr;
    gap: 72px; align-items: start; margin-top: 60px;
  }
  .leader-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(61,78,232,0.1);
  }
  .leader-photo {
    height: 260px;
    background: linear-gradient(145deg, var(--indigo), var(--indigo-dark));
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .leader-photo::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(245,194,64,0.2), transparent 60%);
  }
  .leader-initials {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255,255,255,0.25);
    z-index: 1;
    letter-spacing: -0.04em;
  }
  .leader-info { padding: 28px 28px 32px; }
  .leader-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 4px;
  }
  .leader-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--indigo);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
  }
  .leader-since {
    display: flex; flex-direction: column; gap: 8px;
  }
  .ls-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.8rem;
    color: #888;
  }
  .ls-item::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--sunflower);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .leader-bio p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
  }
  .leader-bio p strong { color: var(--indigo); font-weight: 600; }
  .leader-quote {
    border-left: 3px solid var(--sunflower);
    padding: 16px 24px;
    margin: 32px 0;
    background: var(--white);
    border-radius: 0 12px 12px 0;
  }
  .leader-quote p {
    font-size: 1rem;
    font-style: italic;
    color: var(--dark-grey);
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
  }
  .leader-timeline-mini {
    margin-top: 32px;
    display: flex; flex-direction: column; gap: 12px;
  }
  .ltm-item {
    display: flex; gap: 16px; align-items: flex-start;
  }
  .ltm-year {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--indigo);
    min-width: 40px;
    padding-top: 2px;
  }
  .ltm-text {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.55;
  }

  /* ─── FOOTER ─────────────────────────────────────── */
  footer {
    background: #0a0e50;
    color: var(--white);
    padding: 72px 60px 36px;
  }
  .footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 280px 1fr 1fr;
    gap: 60px; padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-brand img { height: 48px; margin-bottom: 20px; }
  .footer-brand p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
  }
  .footer-col h5 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--sunflower);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li { font-size: 0.83rem; color: rgba(255,255,255,0.6); }
  .footer-col ul li strong { color: rgba(255,255,255,0.85); display: block; font-size: 0.85rem; }
  .footer-bottom {
    max-width: 1200px; margin: 28px auto 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.75rem; color: rgba(255,255,255,0.3);
  }

  /* ─── ANIMATIONS ─────────────────────────────────── */
  .fade-in {
    opacity: 0; transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .fade-in.visible { opacity: 1; transform: translateY(0); }
  .fade-in-left {
    opacity: 0; transform: translateX(-28px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .fade-in-left.visible { opacity: 1; transform: translateX(0); }
  .fade-in-right {
    opacity: 0; transform: translateX(28px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .fade-in-right.visible { opacity: 1; transform: translateX(0); }

  /* ─── RESPONSIVE ─────────────────────────────────── */
  @media (max-width: 960px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    section, footer { padding: 72px 24px; }
    #hero { padding: 100px 24px 72px; }
    .hero-grid, .identity-grid, .leadership-grid { grid-template-columns: 1fr; }
    .hero-card { display: none; }
    .values-grid { grid-template-columns: 1fr; }
    .isicom-pillars { grid-template-columns: 1fr; }
    .isicom-positioning { grid-template-columns: 1fr; }
    .isicom-badge-large { min-width: unset; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .timeline::before { left: 24px; }
    .tl-item { grid-template-columns: 48px 1fr; }
    .tl-item:nth-child(odd) .tl-content,
    .tl-item:nth-child(even) .tl-content { grid-column: 2; text-align: left; margin: 0 0 0 0; }
    .tl-item:nth-child(odd) .tl-dot,
    .tl-item:nth-child(even) .tl-dot { grid-column: 1; }
    .tl-item .tl-empty { display: none; }
  }

  /* ─── PAGE HEADER (pages intérieures) ──────────────────── */
  .page-header {
    padding: 140px 60px 72px;
    background: linear-gradient(145deg, #1e3acc 0%, #2d4ee8 35%, var(--indigo) 70%, #6b88f8 100%);
    position: relative; overflow: hidden;
  }
  .page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 70% at 80% 50%, rgba(250,194,57,0.12) 0%, transparent 65%);
  }
  .page-header::after {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M15 10 L35 10 L22 30 L28 30 L12 55 L18 55 L5 75' stroke='rgba(255,255,255,0.07)' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 120px 120px; opacity: 0.6;
  }
  .page-header-inner {
    max-width: 1200px; margin: 0 auto;
    position: relative; z-index: 1;
  }
  .page-header-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px; padding: 6px 18px;
    color: var(--crystal);
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 20px;
  }
  .page-header h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800; color: var(--white);
    line-height: 1.1; letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .page-header h1 em { font-style: normal; color: var(--sunflower); }
  .page-header p {
    font-size: 1rem; color: rgba(255,255,255,0.7);
    line-height: 1.7; max-width: 600px; font-weight: 400;
  }

  /* ─── ACTIVE NAV ──────────────────────────────────────── */
  .nav-links a.active { color: var(--sunflower); }

  @media (max-width: 960px) {
    .page-header { padding: 110px 24px 56px; }
  }
