    /* ═══════════════════════════════════════════════════
               AMIYASIMPORT — ABOUT PAGE · PREMIUM EDITION
               Palette: #0a0a0a · #2a2424 · #d72323 · #f5eded · #0b4c64
            ═══════════════════════════════════════════════════ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --black: #0a0a0a;
      --charcoal: #2a2424;
      --red: #d72323;
      --red-dark: #a41a1a;
      --cream: #f5eded;
      --cream2: #faf7f7;
      --white: #ffffff;
      --teal: #0b4c64;
      --teal-light: #0e6080;
      --glass: rgba(255, 255, 255, 0.04);
      --glass-b: rgba(255, 255, 255, 0.10);
      --border: rgba(42, 36, 36, 0.12);
      --border-r: rgba(215, 35, 35, 0.22);
      --shadow: 0 2px 16px rgba(0, 0, 0, 0.07), 0 0 0 1px var(--border);
      --shadow-hov: 0 12px 40px rgba(0, 0, 0, 0.13), 0 0 0 1px var(--border-r);
      --r: 4px;
    }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--cream);
      color: var(--black);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* Grain overlay */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      opacity: .022;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 256px 256px;
    }

    /* ── MARQUEE ── */
    .marquee-wrap {
      background: var(--red);
      overflow: hidden;
      padding: 9px 0;
      position: relative;
      margin-top: 4.5rem;
    }

    .marquee-wrap::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(90deg, rgba(0, 0, 0, .07) 0, rgba(0, 0, 0, .07) 1px, transparent 1px, transparent 38px);
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee 28s linear infinite;
    }

    .marquee-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0 2rem;
      white-space: nowrap;
      font-family: 'Bebas Neue', sans-serif;
      font-size: .82rem;
      letter-spacing: 3px;
      color: rgba(255, 255, 255, .9);
    }

    .marquee-sep {
      color: rgba(255, 255, 255, .3);
      font-size: .3rem;
    }

    @keyframes marquee {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    /* ── CONTAINER ── */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative;
      z-index: 2;
    }

    /* ── SECTION EYEBROW ── */
    .sec-eyebrow {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Rajdhani', sans-serif;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: var(--red);
    }

    .sec-eyebrow::before {
      content: '';
      display: block;
      width: 24px;
      height: 1.5px;
      background: linear-gradient(90deg, var(--red), transparent);
    }

    /* ── SECTION TITLE ── */
    .sec-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      letter-spacing: 3px;
      line-height: 1;
      color: var(--white);
    }

    .outline {
      -webkit-text-stroke: 2px currentColor;
      color: transparent;
    }

    .red {
      color: var(--red);
    }

    /* ── HERO ── */
    .hero {
      background: var(--black);
      min-height: 82vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero-mesh {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 65% 50%, rgba(11, 76, 100, 0.28) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 20%, rgba(215, 35, 35, 0.12) 0%, transparent 60%);
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 56px 56px;
    }

    .hero-band {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, transparent, var(--red) 30%, var(--teal) 70%, transparent);
    }

    /* diagonal accent */
    .hero::after {
      content: '';
      position: absolute;
      top: -40%;
      right: -10%;
      width: 55%;
      height: 200%;
      background: linear-gradient(135deg, transparent 45%, rgba(215, 35, 35, 0.04) 45%, rgba(215, 35, 35, 0.04) 55%, transparent 55%);
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 6rem 2rem 4rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 2;
      width: 100%;
    }

    .h-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: .35rem .9rem;
      background: rgba(215, 35, 35, 0.1);
      border: 1px solid var(--border-r);
      border-radius: 2px;
      margin-bottom: 1.5rem;
      font-family: 'Rajdhani', sans-serif;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--red);
    }

    .h-badge-dot {
      width: 6px;
      height: 6px;
      background: var(--red);
      border-radius: 50%;
      animation: pulse 2s ease infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .4;
        transform: scale(0.8)
      }
    }

    .h-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 6vw, 5rem);
      letter-spacing: 4px;
      line-height: .95;
      color: var(--white);
      margin-bottom: 1.5rem;
    }

    .h-sub {
      color: rgba(255, 255, 255, .55);
      font-size: .95rem;
      line-height: 1.75;
      font-weight: 300;
      margin-bottom: 2rem;
      max-width: 420px;
    }

    .h-ctas {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-hero-red {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: .7rem 1.6rem;
      background: var(--red);
      color: var(--white);
      font-family: 'Rajdhani', sans-serif;
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      border: none;
      border-radius: 2px;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(215, 35, 35, 0.32);
      transition: all .22s ease;
    }

    .btn-hero-red:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(215, 35, 35, 0.45);
      background: var(--red-dark);
    }

    .btn-hero-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: .7rem 1.6rem;
      background: transparent;
      color: rgba(255, 255, 255, .8);
      border: 1px solid rgba(255, 255, 255, .2);
      font-family: 'Rajdhani', sans-serif;
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      border-radius: 2px;
      cursor: pointer;
      text-decoration: none;
      transition: all .22s ease;
    }

    .btn-hero-ghost:hover {
      background: rgba(255, 255, 255, .08);
      border-color: rgba(255, 255, 255, .4);
      color: white;
    }

    .hero-visual {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .hero-stat-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .hero-stat-card {
      background: var(--glass);
      border: 1px solid var(--glass-b);
      border-radius: var(--r);
      padding: 1.4rem 1.2rem;
      text-align: center;
      backdrop-filter: blur(4px);
      transition: border-color .25s;
    }

    .hero-stat-card:hover {
      border-color: var(--border-r);
    }

    .hsc-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.8rem;
      letter-spacing: 2px;
      color: var(--white);
      line-height: 1;
    }

    .hsc-num span {
      color: var(--red);
      font-size: 2rem;
    }

    .hsc-lbl {
      font-size: .72rem;
      color: rgba(255, 255, 255, .45);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-family: 'Rajdhani', sans-serif;
      margin-top: .3rem;
    }

    .hero-feat-card {
      background: var(--glass);
      border: 1px solid var(--glass-b);
      border-radius: var(--r);
      padding: 1rem 1.2rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      backdrop-filter: blur(4px);
      transition: all .25s;
    }

    .hero-feat-card:hover {
      border-color: var(--border-r);
      transform: translateX(4px);
    }

    .hfc-icon {
      width: 40px;
      height: 40px;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hfc-icon i {
      color: white;
      font-size: .9rem;
    }

    .hfc-title {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: .88rem;
      color: var(--white);
      letter-spacing: 1px;
    }

    .hfc-sub {
      font-size: .72rem;
      color: rgba(255, 255, 255, .4);
      margin-top: 2px;
      font-weight: 300;
    }

    /* ─────────────────────────────────────────────
               NOTRE PARCOURS — THREE-COLUMN: logo | spine | card
            ───────────────────────────────────────────── */
    .parcours-section {
      background: var(--cream2);
      padding: 1rem 0;
      position: relative;
      overflow: hidden;
    }

    .parcours-section::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      opacity: .4;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    }

    .parcours-head {
      text-align: center;
      margin-bottom: 4rem;
      padding: 0 2rem;
      position: relative;
      z-index: 5;
    }

    .parcours-head .sec-title {
      color: var(--black);
    }

    .parcours-head .sec-eyebrow {
      justify-content: center;
    }

    .parcours-head .sec-eyebrow::before {
      display: none;
    }

    /* Outer wrapper — max width centered */
    .parcours-layout {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
      z-index: 5;
    }

    /* Single continuous spine line across all rows */
    .parcours-layout::before {
      content: '';
      position: absolute;
      left: calc(240px + 2rem + 40px);
      /* logo col + padding + half spine col */
      top: 2rem;
      bottom: 2rem;
      width: 2px;
      background: linear-gradient(180deg, var(--red) 0%, var(--teal) 50%, #6b7280 100%);
      z-index: 0;
    }

    /* Each row = logo | spine-col | card */
    .parcours-row {
      display: grid;
      grid-template-columns: 240px 80px 1fr;
      align-items: start;
      margin-bottom: 3rem;
      opacity: 0;
      transform: translateY(20px);
      transition: all .6s cubic-bezier(.16, 1, .3, 1);
      overflow: visible;
    }

    .parcours-row.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .parcours-row:last-child {
      margin-bottom: 0;
    }

    /* ── Logo cell ── */
    .parcours-logo-cell {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-right: 1rem;
      padding-top: .3rem;
    }

    .parcours-logo-img {
      width: 100%;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
      border: 1px solid var(--border);
      transition: all .35s ease;
    }

    .parcours-row:hover .parcours-logo-img {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    }

    .parcours-logo-img img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    /* ── Spine cell ── */
    .parcours-spine-cell {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      z-index: 10;
    }

    /* vertical line — handled by parcours-layout::before */
    .parcours-spine-cell::before {
      display: none;
    }

    /* Year bubble — old style */
    .tl-bubble {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 1px;
      color: var(--white);
      border: 2px solid;
      position: relative;
      z-index: 10;
      cursor: default;
      transition: transform .3s ease;
      flex-shrink: 0;
      margin-top: .3rem;
    }

    .tl-bubble:hover {
      transform: scale(1.15);
    }

    .tl-bubble .yr {
      font-size: 1.2rem;
      line-height: 1;
    }

    .era-founding {
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      border-color: var(--red);
      box-shadow: 0 0 0 4px rgba(215, 35, 35, 0.12), 0 0 20px rgba(215, 35, 35, 0.4);
    }

    .era-growth {
      background: linear-gradient(135deg, var(--teal), #063a50);
      border-color: var(--teal);
      box-shadow: 0 0 0 4px rgba(11, 76, 100, 0.15), 0 0 20px rgba(11, 76, 100, 0.4);
    }

    .era-leadership {
      background: linear-gradient(135deg, #6b7280, #4b5563);
      border-color: #6b7280;
      box-shadow: 0 0 0 4px rgba(107, 114, 128, 0.12), 0 0 20px rgba(107, 114, 128, 0.4);
    }

    /* ── Card cell ── */
    .parcours-card-cell {
      padding-left: 1rem;
      padding-top: .3rem;
    }

    /* tl-entry reset for new layout */
    .tl-entry {
      width: 100%;
      opacity: 1;
      transform: none;
    }

    .tl-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1.6rem 1.8rem;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all .35s cubic-bezier(.16, 1, .3, 1);
      width: 100%;
    }

    .tl-card:hover {
      box-shadow: var(--shadow-hov);
      transform: translateY(-4px);
      border-color: var(--border-r);
    }

    /* era top accent */
    .tl-card[data-era="founding"] {
      border-top: 2.5px solid var(--red);
    }

    .tl-card[data-era="growth"] {
      border-top: 2.5px solid var(--teal);
    }

    .tl-card[data-era="leadership"] {
      border-top: 2.5px solid #6b7280;
    }

    .tl-card-year {
      position: absolute;
      bottom: -5px;
      right: 10px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 4.5rem;
      line-height: 1;
      letter-spacing: 3px;
      opacity: .06;
      color: var(--black);
      pointer-events: none;
      user-select: none;
    }

    .tl-phase {
      display: inline-block;
      font-size: .6rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 100px;
      margin-bottom: .6rem;
    }

    .phase-founding {
      background: rgba(215, 35, 35, .08);
      color: var(--red-dark);
      border: 1px solid rgba(215, 35, 35, .22);
    }

    .phase-growth {
      background: rgba(11, 76, 100, .08);
      color: var(--teal);
      border: 1px solid rgba(11, 76, 100, .22);
    }

    .phase-leadership {
      background: rgba(107, 114, 128, .08);
      color: #4b5563;
      border: 1px solid rgba(107, 114, 128, .22);
    }

    .tl-card-title {
      font-family: 'Bebas Neue', sans-serif;
      letter-spacing: 1.5px;
      font-size: 1.6rem;
      color: var(--black);
      margin-bottom: .5rem;
      line-height: 1.05;
    }

    .tl-card-desc {
      color: rgba(10, 10, 10, .65);
      font-size: .82rem;
      line-height: 1.7;
      font-weight: 300;
      margin-bottom: .8rem;
    }

    .tl-chips {
      display: flex;
      flex-wrap: wrap;
      gap: .4rem;
    }

    .tl-chip {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 3px 9px;
      border-radius: 100px;
      font-size: .65rem;
      font-weight: 600;
      background: rgba(0, 0, 0, .04);
      color: rgba(0, 0, 0, .5);
      border: 1px solid rgba(0, 0, 0, .09);
      transition: all .25s;
    }

    .tl-chip:hover {
      background: rgba(215, 35, 35, .07);
      color: var(--red-dark);
      border-color: rgba(215, 35, 35, .25);
    }

    .tl-chip i {
      color: var(--red);
      font-size: .6rem;
    }

    /* ── STATS STRIP ── */
    .page-section {
      padding: 3.5rem 0;
    }

    .stats-strip {
      background: var(--black);
      padding: 3.5rem 2rem;
      position: relative;
      overflow: hidden;
    }

    .stats-strip::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
      background-size: 48px 48px;
    }

    .stats-strip::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--red) 30%, var(--teal) 70%, transparent);
    }

    .stats-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      position: relative;
      z-index: 2;
    }

    .stat-item {
      text-align: center;
      padding: 1rem;
      border-right: 1px solid rgba(255, 255, 255, .06);
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      letter-spacing: 2px;
      color: var(--white);
      line-height: 1;
    }

    .stat-num span {
      color: var(--red);
    }

    .stat-lbl {
      font-family: 'Rajdhani', sans-serif;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .35);
      margin-top: .3rem;
    }

    /* ── MISSION ── */
    .mission-section {
      background: var(--cream);
      padding: 3rem 0;
    }

    .mission-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 0;
      min-height: 480px;
    }

    .mission-left {
      background: var(--black);
      padding: 4rem 3rem;
      position: relative;
      overflow: hidden;
      border-radius: 24px 0 0 24px;
    }

    .mission-left::before {
      content: '';
      position: absolute;
      bottom: -60px;
      left: -60px;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(215, 35, 35, 0.25), transparent 70%);
      pointer-events: none;
    }

    .mission-watermark {
      position: absolute;
      bottom: -20px;
      right: -20px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 10rem;
      line-height: 1;
      color: rgba(255, 255, 255, 0.03);
      user-select: none;
      letter-spacing: 4px;
    }

    .mission-left .sec-title {
      color: var(--white);
      margin-bottom: 1.5rem;
    }

    .mission-left p {
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.8;
      font-size: 0.95rem;
      font-weight: 300;
      margin-bottom: 2rem;
    }

    .mission-list {
      list-style: none;
    }

    .mission-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: rgba(255, 255, 255, 0.65);
      font-size: 0.9rem;
      margin-bottom: 0.9rem;
      line-height: 1.5;
    }

    .mission-list li .dot {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
      font-size: 0.5rem;
      color: #fff;
    }

    .mission-right {
      background: var(--red);
      padding: 4rem 3rem;
      border-radius: 0 24px 24px 0;
      position: relative;
      overflow: hidden;
    }

    .mission-right::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.15);
      pointer-events: none;
    }

    .vision-watermark {
      position: absolute;
      bottom: -20px;
      left: -10px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 10rem;
      line-height: 1;
      color: rgba(0, 0, 0, 0.10);
      user-select: none;
      letter-spacing: 4px;
    }

    .mission-right .sec-title {
      color: var(--white);
      margin-bottom: 1.5rem;
    }

    .mission-right p {
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.8;
      font-size: 0.95rem;
      font-weight: 300;
      margin-bottom: 2rem;
    }

    .mission-list.light li {
      color: rgba(255, 255, 255, 0.85);
    }

    .mission-list.light li .dot {
      background: rgba(0, 0, 0, 0.25);
    }

    /* ── VALUES ── */
    .values-section {
      background: var(--white);
      padding: 3rem 0;
    }

    .values-section .sec-title {
      color: var(--black);
    }

    .bento-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
      padding-bottom: 2rem;
    }

    .bento-card {
      flex: 1 1 180px;
      background: var(--white);
      border-radius: 20px;
      padding: 2rem;
      border: 1px solid rgba(0, 0, 0, 0.07);
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
      min-width: 160px;
    }

    .bento-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 28px 50px -12px rgba(0, 0, 0, 0.18);
      border-color: var(--red);
    }

    .bento-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(215, 35, 35, 0.05) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.35s;
    }

    .bento-card:hover::after {
      opacity: 1;
    }

    .bento-card.wide {
      grid-column: auto;
      flex: 1 1 180px;
    }

    .bv-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.3rem;
      transition: transform 0.35s ease;
    }

    .bento-card:hover .bv-icon {
      transform: scale(1.12) rotate(6deg);
    }

    .bv-icon.red {
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      color: #fff;
    }

    .bv-icon.teal {
      background: linear-gradient(135deg, var(--teal), #063a50);
      color: #fff;
    }

    .bv-icon.dark {
      background: linear-gradient(135deg, var(--black), var(--charcoal));
      color: #fff;
    }

    .bv-icon.cream {
      background: var(--cream);
      color: var(--charcoal);
      border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .bv-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      letter-spacing: 1px;
      color: var(--black);
      margin-bottom: 0.5rem;
    }

    .bv-desc {
      color: #6b6565;
      font-size: 0.88rem;
      line-height: 1.65;
      font-weight: 400;
    }

    .bento-card.dark-bg {
      background: var(--black);
      border-color: rgba(255, 255, 255, 0.05);
    }

    .bento-card.dark-bg .bv-title {
      color: var(--white);
    }

    .bento-card.dark-bg .bv-desc {
      color: rgba(255, 255, 255, 0.4);
    }

    .bento-card.dark-bg:hover {
      border-color: var(--red);
    }

    .bento-card.red-bg {
      background: var(--red);
      border-color: var(--red-dark);
    }

    .bento-card.red-bg .bv-title {
      color: var(--white);
    }

    .bento-card.red-bg .bv-desc {
      color: rgba(255, 255, 255, 0.75);
    }

    /* ── TEAM ── */
    .team-section {
      background: var(--black);
      padding: 5rem 0;
    }

    .team-section .sec-title {
      color: var(--white);
      margin-bottom: .5rem;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      margin-top: 2.5rem;
    }

    .team-card {
      background: var(--glass);
      border: 1px solid var(--glass-b);
      border-radius: var(--r);
      padding: 1.6rem 1.2rem 1.2rem;
      text-align: center;
      transition: all .3s ease;
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform: translateY(20px);
    }

    .team-card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .team-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--red), var(--teal));
      transform: scaleX(0);
      transition: transform .35s;
    }

    .team-card:hover {
      background: rgba(255, 255, 255, .06);
      border-color: var(--border-r);
    }

    .team-card:hover::before {
      transform: scaleX(1);
    }

    .team-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      margin: 0 auto 1rem;
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem;
      color: white;
      letter-spacing: 1px;
      border: 2px solid rgba(255, 255, 255, .1);
    }

    .team-name {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: .95rem;
      color: white;
      letter-spacing: .5px;
      margin-bottom: .2rem;
    }

    .team-role {
      font-size: .7rem;
      color: var(--red);
      font-family: 'Rajdhani', sans-serif;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: .7rem;
    }

    .team-bio {
      font-size: .75rem;
      color: rgba(255, 255, 255, .4);
      line-height: 1.65;
      font-weight: 300;
      margin-bottom: .8rem;
    }

    .team-socials {
      display: flex;
      justify-content: center;
      gap: .5rem;
    }

    .team-socials a {
      width: 30px;
      height: 30px;
      border-radius: 2px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .5);
      font-size: .75rem;
      text-decoration: none;
      transition: all .2s;
    }

    .team-socials a:hover {
      background: var(--red);
      border-color: var(--red);
      color: white;
    }

    /* ── CERTS ── */
    .cert-section {
      background: var(--cream);
      padding: 5rem 0;
    }

    .cert-section .sec-title {
      color: var(--black);
    }

    .cert-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 1.4rem;
      margin-top: 3rem;
      max-width: 1300px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 2rem;
    }

    .cert-card {
      background: var(--white);
      border-radius: 12px;
      border: 1px solid rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      aspect-ratio: 3/4;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
      transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    .cert-card:hover {
      box-shadow: 0 10px 32px rgba(0, 0, 0, 0.13);
      transform: translateY(-6px);
    }

    .cert-card img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      border-radius: 8px;
      -webkit-user-drag: none;
      user-select: none;
    }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--black);
      padding: 1rem 2rem;
      border-top: 1px solid rgba(255, 255, 255, .05);
    }

    .trust-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: .4rem;
      font-family: 'Rajdhani', sans-serif;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .45);
    }

    .trust-item i {
      color: var(--red);
      font-size: .75rem;
    }

    /* ── CTA ── */
    .cta-section {
      background: var(--red);
      padding: 4rem 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(45deg, rgba(0, 0, 0, .04) 0, rgba(0, 0, 0, .04) 1px, transparent 1px, transparent 18px);
    }

    .cta-section h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      letter-spacing: 3px;
      color: white;
      margin-bottom: .8rem;
      position: relative;
      z-index: 1;
    }

    .cta-section p {
      color: rgba(255, 255, 255, .75);
      font-size: .9rem;
      max-width: 500px;
      margin: 0 auto 2rem;
      line-height: 1.7;
      font-weight: 300;
      position: relative;
      z-index: 1;
    }

    .cta-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .btn-cta-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: .7rem 1.8rem;
      background: white;
      color: var(--red);
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: .82rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      border-radius: 2px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: all .22s;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }

    .btn-cta-white:hover {
      background: var(--cream);
      transform: translateY(-2px);
    }

    .btn-cta-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: .7rem 1.8rem;
      background: transparent;
      color: white;
      border: 1.5px solid rgba(255, 255, 255, .5);
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: .82rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      border-radius: 2px;
      cursor: pointer;
      text-decoration: none;
      transition: all .22s;
    }

    .btn-cta-outline:hover {
      background: rgba(255, 255, 255, .12);
      border-color: white;
    }

    /* ── ANIMATIONS ── */
    @keyframes lineGrowV {
      0% {
        top: -100%
      }

      100% {
        top: 100%
      }
    }

    @keyframes spin {
      to {
        transform: rotate(360deg)
      }
    }

    /* ── RESPONSIVE ── */
    /* ══════════════════════════════════════════
             RESPONSIVE — TABLET 1024px
          ══════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .container {
        padding: 0 1.5rem;
      }

      /* Hero */
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 5rem 1.5rem 3rem;
        text-align: center;
      }

      .h-sub {
        margin-left: auto;
        margin-right: auto;
      }

      .h-ctas {
        justify-content: center;
      }

      .hero-visual {
        max-width: 500px;
        margin: 0 auto;
      }

      /* Stats */
      .stats-inner {
        grid-template-columns: repeat(2, 1fr);
      }

      .stat-item:nth-child(2) {
        border-right: none;
      }

      .stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }

      /* Parcours — shrink columns */
      .parcours-layout {
        padding: 0 1.5rem;
      }

      .parcours-layout::before {
        left: calc(180px + 1.5rem + 40px);
      }

      .parcours-row {
        grid-template-columns: 180px 70px 1fr;
      }

      .parcours-logo-cell {
        padding-right: .5rem;
      }

      .parcours-card-cell {
        padding-left: .5rem;
      }

      /* Mission */
      .mission-left,
      .mission-right {
        padding: 3rem 2rem;
      }

      /* Team */
      .team-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      /* Certs */
      .cert-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 700px;
        gap: 1.5rem;
      }
    }

    /* ══════════════════════════════════════════
             RESPONSIVE — MOBILE 768px
          ══════════════════════════════════════════ */
    @media (max-width: 768px) {

      /* Hero */
      .hero {
        min-height: auto;
      }

      .hero-inner {
        padding: 4rem 1.2rem 2.5rem;
        gap: 1.5rem;
      }

      .h-title {
        font-size: clamp(2.4rem, 8vw, 3.5rem);
      }

      .hero-visual {
        display: none;
      }

      .h-ctas {
        flex-direction: column;
        align-items: center;
        gap: .75rem;
      }

      .btn-hero-red,
      .btn-hero-ghost {
        width: 100%;
        max-width: 280px;
        justify-content: center;
      }

      /* Marquee */
      .marquee-item {
        padding: 0 1.2rem;
        font-size: .72rem;
      }

      /* Parcours — stack vertically */
      .parcours-section {
        padding: 3rem 0;
      }

      .parcours-layout {
        padding: 0 1rem;
        flex-direction: column;
      }

      .parcours-layout::before {
        display: none;
      }

      .parcours-row {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        margin-bottom: 2rem;
        position: relative;
      }

      /* Mobile: logo top, bubble below logo centered, card below */
      .parcours-logo-cell {
        padding-right: 0;
        padding-bottom: .8rem;
        align-items: center;
      }

      .parcours-logo-img {
        max-width: 200px;
        margin: 0 auto;
      }

      .parcours-spine-cell {
        justify-content: center;
        padding: .4rem 0;
        border-left: none;
      }

      .parcours-spine-cell::before {
        display: none;
      }

      .parcours-card-cell {
        padding-left: 0;
      }

      /* Vertical connector between rows on mobile */
      .parcours-row:not(:last-child)::after {
        content: '';
        display: block;
        width: 2px;
        height: 2rem;
        background: var(--red);
        margin: 0 auto;
      }

      /* Mission */
      .mission-grid {
        grid-template-columns: 1fr;
      }

      .mission-left {
        border-radius: 20px 20px 0 0;
        padding: 2.5rem 1.5rem;
      }

      .mission-right {
        border-radius: 0 0 20px 20px;
        padding: 2.5rem 1.5rem;
      }

      .mission-watermark,
      .vision-watermark {
        font-size: 6rem;
      }

      /* Values */
      .bento-grid {
        gap: .9rem;
      }

      .bento-card {
        flex: 1 1 140px;
        padding: 1.5rem;
      }

      .bento-card.wide {
        flex: 1 1 100%;
      }

      /* Stats */
      .stats-inner {
        grid-template-columns: 1fr 1fr;
        gap: 0;
      }

      .stat-item {
        padding: 1.5rem .75rem;
        border-right: 1px solid rgba(255, 255, 255, .05);
        border-bottom: 1px solid rgba(255, 255, 255, .05);
      }

      .stat-item:nth-child(even) {
        border-right: none;
      }

      .stat-num {
        font-size: 2.4rem;
      }

      /* Team */
      .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .9rem;
      }

      .team-card {
        padding: 1.4rem 1rem;
      }

      .team-avatar {
        width: 72px;
        height: 72px;
        font-size: 1.4rem;
      }

      /* Certs */
      .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        padding: 0 1.5rem;
        max-width: 500px;
      }

      /* Trust */
      .trust-inner {
        gap: 1.2rem;
        padding: .75rem 1rem;
      }

      .trust-item {
        font-size: .68rem;
      }

      /* Parcours head */
      .parcours-head {
        margin-bottom: 2.5rem;
      }
    }

    /* ══════════════════════════════════════════
             RESPONSIVE — SMALL MOBILE 480px
          ══════════════════════════════════════════ */
    @media (max-width: 480px) {

      /* Hero */
      .hero-inner {
        padding: 3.5rem 1rem 2rem;
      }

      .h-title {
        font-size: 2.4rem;
        letter-spacing: 2px;
      }

      .h-badge {
        font-size: .65rem;
      }

      /* Stats */
      .stats-strip {
        padding: 2rem 1rem;
      }

      .stat-num {
        font-size: 2rem;
      }

      .stat-lbl {
        font-size: .62rem;
        letter-spacing: 1px;
      }

      /* Mission */
      .mission-left,
      .mission-right {
        padding: 2rem 1.2rem;
      }

      .mission-watermark,
      .vision-watermark {
        font-size: 4.5rem;
      }

      .mission-list li {
        font-size: .82rem;
      }

      /* Values */
      .bento-card {
        flex: 1 1 100%;
      }

      .bv-title {
        font-size: 1.3rem;
      }

      /* Team */
      .team-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
      }

      /* Certs */
      .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
        max-width: 400px;
      }

      /* Trust */
      .trust-inner {
        flex-direction: column;
        gap: .75rem;
        align-items: flex-start;
        padding: 1rem 1.2rem;
      }

      /* Parcours */
      .parcours-logo-img {
        max-width: 160px;
      }

      .tl-card {
        padding: 1.2rem;
      }

      .tl-card-title {
        font-size: 1.3rem;
      }

      .tl-card-desc {
        font-size: .78rem;
      }

      .tl-card-year {
        font-size: 3.5rem;
      }

      /* Sec title */
      .sec-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
      }

      /* Marquee */
      .marquee-item {
        padding: 0 .9rem;
        font-size: .66rem;
        letter-spacing: 2px;
      }
    }

    /* ══════════════════════════════════════════
             RESPONSIVE — TINY 360px
          ══════════════════════════════════════════ */
    @media (max-width: 360px) {
      .h-title {
        font-size: 2rem;
      }

      .btn-hero-red,
      .btn-hero-ghost {
        font-size: .72rem;
        padding: .6rem 1.2rem;
      }

      .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem;
        padding: 0 .75rem;
        max-width: 340px;
      }

      .team-grid {
        max-width: 280px;
      }

      .tl-card {
        padding: 1rem;
      }

      .container {
        padding: 0 1rem;
      }

      .parcours-layout {
        padding: 0 .75rem;
      }
    }
