  .about-hero {
    min-height: 68vh;
    background: var(--surface-alt);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: var(--sp-4) 0;
  }

  .about-hero-dots {
    position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(circle, rgba(0,0,0,0.055) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  }

  .about-blob {
    position: absolute; border-radius: 50%;
    filter: blur(90px); pointer-events: none;
    will-change: transform;
  }

  .about-blob-a {
    width: 90vw; max-width: 500px; height: 450px;
    background: rgba(25, 118, 210, 0.08);
    top: -180px; right: -80px;
  }

  .about-blob-b {
    width: 70vw; max-width: 380px; height: 340px;
    background: rgba(124, 179, 66, 0.07);
    bottom: -80px; left: -60px;
  }

  .about-hero-inner {
    position: relative; z-index: 1;
    max-width: 1140px; margin: 0 auto;
    padding: 0 var(--sp-4) 24px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
  }

  /* ── LEFT CONTENT ── */
  .about-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: white;
    border: 1.5px solid var(--line);
    color: var(--ink-light);
    font-size: 11px; font-weight: 600;
    padding: 5px 12px 5px 7px;
    border-radius: var(--r-full);
    margin-bottom: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }

  .about-eyebrow-icon {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(25, 118, 210, 0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
  }

  .about-headline {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    line-height: 1.06;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 14px;
  }

  .about-headline em {
    font-style: italic;
    background: linear-gradient(130deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 5px;
  }

  .about-sub {
    font-size: clamp(14px, 3vw, 16px);
    color: var(--ink-light);
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 24px;
  }

  .about-hero-stats {
    display: flex; flex-wrap: wrap; gap: 12px;
  }

  .about-hero-stat {
    padding: 0 14px 0 0;
    border-right: 1px solid var(--line);
    margin-right: 14px;
  }

  .about-hero-stat:first-child { padding-left: 0; }
  .about-hero-stat:last-child { border-right: none; margin-right: 0; }

  .about-stat-val {
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .about-stat-val span {
    font-size: clamp(14px, 2.5vw, 17px);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .about-stat-lbl {
    font-size: 10px;
    color: var(--ink-muted);
    margin-top: 4px;
    font-weight: 500;
  }

  /* ── RIGHT VISUAL ── */
  .about-hero-visual {
    position: relative;
    height: 260px;
    max-width: 100%;
    margin: 0 auto;
  }

  .about-photo {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.11);
    background: var(--surface-alt);
  }

  .about-photo img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }

  .about-photo-main { width: 64%; height: 62%; top: 0; right: 0; border-radius: 14px; }
  .about-photo-b { width: 48%; height: 46%; bottom: 0; left: 0; border-radius: 14px; }
  .about-photo-c { width: 34%; height: 30%; bottom: 12%; right: 3%; border-radius: 12px; }

  .about-float {
    position: absolute; top: 54%; left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 14px;
    padding: 11px 15px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.9);
    animation: about-float-y 4.5s ease-in-out infinite;
    white-space: nowrap;
  }

  @keyframes about-float-y {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
  }

  .about-float-top {
    display: flex; align-items: center; gap: 6px;
    margin-bottom: 3px;
  }

  .about-float-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--secondary);
    animation: about-pulse 2s infinite;
    flex-shrink: 0;
  }

  @keyframes about-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
  }

  .about-float-lbl {
    font-size: 8px; font-weight: 700;
    color: var(--ink-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .about-float-val {
    font-size: 18px; font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.03em;
  }

  .about-float-sub {
    font-size: 9px;
    color: var(--ink-muted);
    margin-top: 1px;
  }

  /* ══════════════════════════════════════════
     ABOUT — INTRO
  ══════════════════════════════════════════ */
  .about-intro {
    padding: 72px 0;
    background: white;
  }

  .about-intro-inner {
    max-width: 760px; margin: 0 auto;
    padding: 0 var(--sp-4);
    text-align: center;
  }

  .about-eyebrow-section {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 14px;
  }

  .about-eyebrow-section::before {
    content: '';
    width: 14px; height: 2px;
    background: var(--secondary);
    border-radius: 2px;
  }

  .about-intro-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--ink);
    letter-spacing: -0.015em;
    line-height: 1.18;
    margin-bottom: 18px;
  }

  .about-intro-body {
    font-size: clamp(14px, 2.5vw, 16px);
    color: var(--ink-light);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto;
  }

  /* ══════════════════════════════════════════
     ABOUT — VALUES
  ══════════════════════════════════════════ */
  .about-values-section {
    padding: 72px 0;
    background: var(--surface-alt);
  }

  .about-values-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 32px; gap: 20px; flex-wrap: wrap;
  }

  .about-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-value-card {
    background: white;
    border: 1.5px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    transition: transform 0.28s var(--transition),
                box-shadow 0.28s var(--transition),
                border-color 0.28s var(--transition);
    position: relative;
    overflow: hidden;
  }

  .about-value-card::before {
    content: '';
    position: absolute; top: -30px; right: -30px;
    width: 90px; height: 90px; border-radius: 50%;
    pointer-events: none; opacity: 0.5;
    transition: opacity 0.3s;
  }

  .about-value-blue::before { background: rgba(25, 118, 210, 0.08); }
  .about-value-lime::before { background: rgba(124, 179, 66, 0.08); }

  .about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 56px rgba(0,0,0,0.08);
    border-color: var(--ink-lighter);
  }

  .about-value-card:hover::before { opacity: 1; }

  .about-value-top {
    display: flex; align-items: flex-start;
    gap: 14px;
  }

  .about-value-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .about-icon-blue { background: rgba(25, 118, 210, 0.08); }
  .about-icon-lime { background: rgba(124, 179, 66, 0.08); }

  .about-value-content { flex: 1; min-width: 0; }

  .about-value-title {
    font-size: 15px; font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
  }

  .about-value-desc {
    font-size: 12.5px;
    color: var(--ink-muted);
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .about-value-tags {
    display: flex; flex-wrap: wrap; gap: 5px;
  }

  .about-badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 9px;
    border-radius: var(--r-full);
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.02em;
  }

  .about-badge-blue {
    background: rgba(25, 118, 210, 0.08);
    color: var(--primary);
  }

  .about-badge-lime {
    background: rgba(124, 179, 66, 0.08);
    color: var(--secondary-dark);
  }

  /* ══════════════════════════════════════════
     ABOUT — COMMITMENTS
  ══════════════════════════════════════════ */
  .about-commitments-section {
    padding: 72px 0;
    background: white;
  }

  .about-commitments-header {
    text-align: center;
    margin-bottom: 36px;
  }

  .about-commitments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-commitment-card {
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    border: 1.5px solid var(--line);
    background: white;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s var(--transition),
                box-shadow 0.28s var(--transition);
  }

  .about-commitment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 56px rgba(0,0,0,0.08);
  }

  .about-commitment-blue {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: transparent;
  }

  .about-commitment-lime {
    background: linear-gradient(145deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-color: transparent;
  }

  .about-commitment-card::before {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 140px; height: 140px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    pointer-events: none;
  }

  .about-commitment-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
  }

  .about-commit-icon-light { background: rgba(25, 118, 210, 0.08); }
  .about-commit-icon-white { background: rgba(255,255,255,0.15); }

  .about-commit-val {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(40px, 8vw, 52px);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
  }

  .about-commit-val-dark { color: var(--ink); }
  .about-commit-val-white { color: white; }
  .about-commit-val-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .about-commit-label {
    font-size: 14px; font-weight: 700;
    margin-bottom: 8px;
  }

  .about-commit-label-dark { color: var(--ink); }
  .about-commit-label-white { color: rgba(255,255,255,0.9); }

  .about-commit-desc {
    font-size: 12.5px;
    line-height: 1.65;
    max-width: 220px;
    margin: 0 auto;
  }

  .about-commit-desc-dark { color: var(--ink-muted); }
  .about-commit-desc-white { color: rgba(255,255,255,0.65); }

  /* ══════════════════════════════════════════
     ABOUT — TRUST STRIP
  ══════════════════════════════════════════ */
  .about-trust-strip {
    padding: 40px 0;
    background: var(--surface-alt);
    border-top: 1px solid var(--line);
  }

  .about-trust-inner {
    max-width: 1140px; margin: 0 auto;
    padding: 0 var(--sp-4);
  }

  .about-trust-title {
    text-align: center;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 20px;
  }

  .about-trust-items {
    display: flex; flex-wrap: wrap;
    justify-content: center; gap: 8px 10px;
  }

  .about-trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 500;
    color: var(--ink-light);
    background: white;
    border: 1px solid var(--line);
    padding: 8px 14px;
    border-radius: var(--r-full);
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .about-trust-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(25, 118, 210, 0.1);
  }

  .about-trust-check {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(25, 118, 210, 0.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
  }

  /* ══════════════════════════════════════════
     ABOUT — STORY
  ══════════════════════════════════════════ */
  .about-story-section {
    padding: 72px 0;
    background: white;
  }

  .about-story-inner {
    max-width: 1140px; margin: 0 auto;
    padding: 0 var(--sp-4);
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
  }

  .about-story-img-stack {
    position: relative;
    height: 280px;
    max-width: 100%;
    margin: 0 auto;
  }

  .about-story-img {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    background: var(--surface-alt);
  }

  .about-story-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }

  .about-story-main { width: 72%; height: 68%; bottom: 0; left: 0; border-radius: 16px; }
  .about-story-small { width: 48%; height: 44%; top: 0; right: 0; border-radius: 14px; }

  .about-story-accent {
    position: absolute; bottom: 18%; right: -8px;
    background: var(--primary);
    border-radius: 14px;
    padding: 12px 16px;
    z-index: 10;
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
    white-space: nowrap;
  }

  .about-story-year {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 28px; font-weight: 400;
    color: white;
    line-height: 1;
    margin-bottom: 2px;
  }

  .about-story-lbl {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
  }

  .about-story-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 16px;
    margin-top: 10px;
  }

  .about-story-body {
    font-size: clamp(13px, 2.5vw, 14.5px);
    color: var(--ink-light);
    line-height: 1.8;
    margin-bottom: 22px;
  }

  .about-milestones {
    display: flex; flex-direction: column; gap: 12px;
  }

  .about-milestone {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: var(--surface-alt);
    border: 1px solid var(--line);
    transition: border-color 0.2s, background 0.2s;
  }

  .about-milestone:hover {
    border-color: rgba(25, 118, 210, 0.25);
    background: white;
  }

  .about-milestone-dot {
    width: 30px; height: 30px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .about-milestone-dot-blue { background: rgba(25, 118, 210, 0.08); }
  .about-milestone-dot-lime { background: rgba(124, 179, 66, 0.08); }

  .about-milestone-year {
    font-size: 10px; font-weight: 700;
    color: var(--ink-muted);
    letter-spacing: 0.04em;
    margin-bottom: 2px;
  }

  .about-milestone-text {
    font-size: 13px; font-weight: 500;
    color: var(--ink-light);
  }

  /* ══════════════════════════════════════════
     ABOUT — CTA
  ══════════════════════════════════════════ */
  .about-cta-section {
    padding: 72px 0;
    background: var(--surface-alt);
  }

  .about-cta-band {
    background: var(--primary);
    border-radius: 22px;
    padding: 48px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .about-cta-band::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 500px 350px at 20% 50%, rgba(25, 118, 210, 0.2) 0%, transparent 70%),
      radial-gradient(ellipse 350px 250px at 80% 50%, rgba(124, 179, 66, 0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .about-cta-content { position: relative; z-index: 1; }

  .about-cta-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(1.7rem, 5vw, 2.8rem);
    color: white;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    line-height: 1.15;
  }

  .about-cta-sub {
    font-size: clamp(13px, 2.5vw, 15px);
    color: rgba(255,255,255,0.5);
    max-width: 440px;
    margin: 0 auto 28px;
    line-height: 1.7;
  }

  .about-cta-actions {
    display: flex; gap: 10px;
    justify-content: center; flex-wrap: wrap;
  }

  .about-cta-btn-white,
  .about-cta-btn-ghost {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: inherit;
    font-size: 13px; font-weight: 700;
    padding: 12px 22px;
    border-radius: var(--r-full);
    text-decoration: none;
    transition: all 0.22s var(--transition);
    min-height: 44px;
  }

  .about-cta-btn-white {
    background: var(--secondary); color: white;
  }

  .about-cta-btn-white:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(124, 179, 66, 0.3);
  }

  .about-cta-btn-ghost {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    border: 1.5px solid rgba(255,255,255,0.2);
  }

  .about-cta-btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    color: white;
  }

  /* ══════════════════════════════════════════
     TABLETTE — min-width: 560px
  ══════════════════════════════════════════ */
  @media (min-width: 560px) {
    .about-hero-stats { gap: 0; flex-wrap: nowrap; }
    .about-hero-stat { padding: 0 22px 0 0; margin-right: 22px; }

    .about-hero-visual { height: 340px; }

    .about-intro { padding: 88px 0; }

    .about-values-section { padding: 88px 0; }
    .about-values-grid {
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .about-commitments-section { padding: 88px 0; }
    .about-commitments-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .about-story-section { padding: 88px 0; }

    .about-cta-section { padding: 88px 0; }
    .about-cta-band { padding: 60px 36px; border-radius: 24px; }
  }

  /* ══════════════════════════════════════════
     TABLETTE LARGE — min-width: 768px
  ══════════════════════════════════════════ */
  @media (min-width: 768px) {
    .about-hero {
      padding: 48px 0 36px;   /* ← compact au lieu de 110px 0 80px */
      min-height: auto;
    }

    .about-blob-a {
      width: 80vw; max-width: 580px; height: 520px;
      top: -200px; right: -100px;
    }

    .about-blob-b {
      width: 60vw; max-width: 420px; height: 380px;
      bottom: -100px; left: -80px;
    }

    .about-hero-inner {
      padding: 0 26px 32px;    /* ← compact au lieu de 0 26px 48px */
      gap: 44px;
    }

    .about-headline { margin-bottom: 18px; }
    .about-sub { margin-bottom: 28px; }

    .about-hero-visual { height: 400px; }

    .about-float {
      top: 54%; left: 44%;
      transform: none;
      padding: 12px 18px;
    }

    @keyframes about-float-y {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .about-intro { padding: 100px 0; }

    .about-values-section { padding: 100px 0; }
    .about-values-header { margin-bottom: 40px; }

    .about-value-card { padding: 26px; border-radius: 20px; }
    .about-value-icon { width: 50px; height: 50px; }
    .about-value-title { font-size: 16px; }
    .about-value-desc { font-size: 13px; margin-bottom: 16px; }
    .about-badge { font-size: 11px; padding: 4px 10px; }

    .about-commitments-section { padding: 100px 0; }
    .about-commitments-header { margin-bottom: 48px; }
    .about-commitment-card { padding: 36px 28px; border-radius: 22px; }
    .about-commitment-icon { width: 52px; height: 52px; }

    .about-trust-strip { padding: 52px 0; }
    .about-trust-items { gap: 10px 18px; }
    .about-trust-item { font-size: 13px; padding: 10px 16px; }

    .about-story-section { padding: 100px 0; }
    .about-story-img-stack { height: 400px; }

    .about-story-accent {
      bottom: 18%; right: -12px;
      padding: 14px 18px;
    }
    .about-story-year { font-size: 32px; }

    .about-cta-section { padding: 100px 0; }
    .about-cta-band { padding: 72px 48px; border-radius: 26px; }
    .about-cta-btn-white,
    .about-cta-btn-ghost { font-size: 14px; padding: 13px 26px; }
  }

  /* ══════════════════════════════════════════
     DESKTOP — min-width: 1024px
  ══════════════════════════════════════════ */
  @media (min-width: 1024px) {
    .about-hero {
      padding: 56px 0 40px;    /* ← compact au lieu de 130px 0 100px */
      min-height: auto;        /* ← plus de min-height forcé */
    }

    .about-blob-a {
      width: 70vw; max-width: 650px; height: 600px;
      top: -220px; right: -120px;
    }

    .about-blob-b {
      width: 55vw; max-width: 460px; height: 420px;
      bottom: -120px; left: -100px;
    }

    .about-hero-inner {
      padding: 0 28px 40px;    /* ← compact au lieu de 0 28px 56px */
      grid-template-columns: 1fr 1fr;
      gap: 64px;
    }

    .about-hero-visual { height: 460px; margin: 0; }

    .about-intro { padding: 120px 0; }
    .about-intro-inner { padding: 0 var(--sp-8); }

    .about-values-section { padding: 120px 0; }
    .about-values-grid { gap: 20px; }

    .about-value-card { padding: 30px; }
    .about-value-top { gap: 18px; }

    .about-commitments-section { padding: 120px 0; }
    .about-commitments-grid { gap: 20px; }
    .about-commitment-card { padding: 40px 32px; }
    .about-commit-val { font-size: 58px; }
    .about-commit-label { font-size: 15px; }
    .about-commit-desc { font-size: 13.5px; }

    .about-trust-strip { padding: 60px 0; }
    .about-trust-items { gap: 12px 20px; }
    .about-trust-item { font-size: 14px; padding: 10px 18px; }
    .about-trust-check { width: 20px; height: 20px; }

    .about-story-section { padding: 120px 0; }
    .about-story-inner {
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      padding: 0 var(--sp-8);
    }
    .about-story-img-stack { height: 440px; margin: 0; }

    .about-cta-section { padding: 120px 0; }
    .about-cta-band {
      padding: 80px 64px;
      border-radius: 28px;
    }
    .about-cta-btn-white,
    .about-cta-btn-ghost {
      font-size: 15px;
      padding: 14px 30px;
      min-height: 48px;
    }
  }

  /* ══════════════════════════════════════════
     GRAND DESKTOP — min-width: 1280px
  ══════════════════════════════════════════ */
  @media (min-width: 1280px) {
    .about-hero-inner { gap: 80px; }
    .about-story-inner { gap: 88px; }
  }

  /* ══════════════════════════════════════════
     ANIMATIONS
  ══════════════════════════════════════════ */
  .about-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: about-fade-up-anim 0.8s var(--transition) forwards;
  }

  @keyframes about-fade-up-anim {
    to { opacity: 1; transform: translateY(0); }
  }

  .about-delay-1 { animation-delay: 0.1s; }
  .about-delay-2 { animation-delay: 0.2s; }
  .about-delay-3 { animation-delay: 0.3s; }
  .about-delay-4 { animation-delay: 0.4s; }

  .about-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s var(--transition),
                transform 0.65s var(--transition);
  }

  .about-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .about-reveal-grid > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--transition), transform 0.6s var(--transition);
  }

  .about-reveal-grid.revealed > *:nth-child(1) { transition-delay: 0s; }
  .about-reveal-grid.revealed > *:nth-child(2) { transition-delay: 0.08s; }
  .about-reveal-grid.revealed > *:nth-child(3) { transition-delay: 0.16s; }
  .about-reveal-grid.revealed > *:nth-child(4) { transition-delay: 0.24s; }
  .about-reveal-grid.revealed > *:nth-child(5) { transition-delay: 0.32s; }
  .about-reveal-grid.revealed > *:nth-child(6) { transition-delay: 0.4s; }

  .about-reveal-grid.revealed > * {
    opacity: 1;
    transform: translateY(0);
  }

  /* Mobile small: float au centre/bas */
  @media (max-width: 639px) {
    .about-hero-stats { flex-wrap: wrap; gap: 10px; }
    .about-hero-stat {
      border-right: none;
      padding: 0 12px 0 0;
      margin-right: 12px;
    }

    .about-float {
      top: auto; bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
    }

    @keyframes about-float-y {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(-8px); }
    }
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .about-fade-up {
      opacity: 1;
      transform: none;
      animation: none;
    }
    .about-reveal {
      opacity: 1;
      transform: none;
    }
    .about-reveal-grid > * {
      opacity: 1;
      transform: none;
    }
  }