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

  :root {
    --black: #0A0A0A;
    --white: #FFFFFF;
    --off-white: #F5F5F3;
    --gray-100: #F0EFED;
    --gray-200: #E0DFDC;
    --gray-300: #C8C7C3;
    --gray-400: #A8A7A3;
    --gray-500: #787672;
    --gray-600: #2E2D2B;
    --gray-700: #1A1918;
    --border: #E0DFDC;
    --border-dark: rgba(255,255,255,0.12);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    height: 64px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
  }

  nav.dark-mode {
    background: var(--black);
    border-color: var(--border-dark);
  }

  .nav-logo img {
    display: block;
    height: 28px;
    width: auto;
    transition: opacity 0.2s;
  }

  .nav-logo:hover img { opacity: 0.6; }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }

  nav.dark-mode .nav-links a { color: rgba(255,255,255,0.72); }
  .nav-links a:hover, nav.dark-mode .nav-links a:hover { color: var(--black); }
  nav.dark-mode .nav-links a:hover { color: var(--white); }

  .nav-cta {
    background: var(--black) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 0.04em !important;
    transition: opacity 0.2s !important;
  }

  nav.dark-mode .nav-cta {
    background: var(--white) !important;
    color: var(--black) !important;
  }

  .nav-cta:hover { opacity: 0.7 !important; }

  /* ── HERO ── */
  .hero {
    background: var(--black);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16rem 3rem 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero-photo {
    position: absolute;
    inset: 0;
    background-image: url('');
    background-size: cover;
    background-position: center 55%;
    opacity: 0.36;
    z-index: 0;
  }

  .hero-photo-gradient {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        to right,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.2) 45%,
        rgba(0,0,0,0.0) 100%
      ),
      linear-gradient(
        to bottom,
        rgba(0,0,0,0.78) 0%,
        rgba(0,0,0,0.28) 30%,
        rgba(0,0,0,0.18) 55%,
        rgba(0,0,0,0.68) 80%,
        rgba(0,0,0,0.96) 100%
      );
    z-index: 1;
  }

  .hero-ticker {
    z-index: 2;
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 52px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 64px;
  }

  .hero-ticker-inner {
    display: flex;
    gap: 4rem;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
  }

  .hero-ticker-item {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    flex-shrink: 0;
  }

  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .hero-content {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.62);
    margin-bottom: 2.5rem;
    font-weight: 400;
  }

  .hero-title {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(2.8rem, 5.5vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 3.5rem;
  }

  .hero-title em {
    font-style: italic;
    color: rgba(255,255,255,0.38);
  }

  .hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
  }

  .hero-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent 0%,
      rgba(255,255,255,0.25) 20%,
      rgba(255,255,255,0.25) 80%,
      transparent 100%
    );
    margin-top: 5rem;
    flex-shrink: 0;
  }

  .hero-sub {
    font-size: 19px;
    font-weight: 300;
    color: rgba(255,255,255,0.88);
    max-width: 460px;
    line-height: 1.65;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    padding: 0.875rem 1.75rem;
    border-radius: 2px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
    white-space: nowrap;
  }

  .btn-primary:hover { opacity: 0.8; }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    white-space: nowrap;
  }

  .btn-ghost:hover { color: var(--white); }

  .btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    padding: 0.875rem 1.75rem;
    border-radius: 2px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
    white-space: nowrap;
  }

  .btn-dark:hover { opacity: 0.7; }

  .btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    border: 1px solid var(--border);
    padding: 0.875rem 1.75rem;
    border-radius: 2px;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
  }

  .btn-outline-dark:hover { border-color: var(--black); color: var(--black); }

  /* ── SECTION COMMONS ── */
  .section-label {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-600);
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(2rem, 4vw, 3.75rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
  }

  /* ── MANIFESTO ── */
  .manifesto {
    padding: 0;
    border-bottom: 1px solid var(--border);
    background: var(--black);
    overflow: hidden;
    position: relative;
  }

  .manifesto-bg-text {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Archivo', sans-serif;
    font-size: 14vw;
    font-weight: 900;
    color: rgba(255,255,255,0.015);
    white-space: nowrap;
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }

  .manifesto-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 3rem;
  }

  .manifesto-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .manifesto-label {
    font-size: 15px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    font-weight: 700;
  }

  .manifesto-desc {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    max-width: 400px;
    line-height: 1.7;
    text-align: right;
  }

  .manifesto-lines {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .manifesto-line {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: rgba(255,255,255,0.32);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    letter-spacing: -0.04em;
    transition: color 0.35s ease, padding-left 0.35s ease;
    cursor: default;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
  }

  .manifesto-line::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 0; bottom: 0;
    width: 3px;
    background: white;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .manifesto-line:hover {
    color: rgba(255,255,255,0.85);
    padding-left: 0.75rem;
  }

  .manifesto-line:hover::before { opacity: 1; }

  .manifesto-line.lead {
    color: var(--white);
    padding-left: 0.75rem;
  }

  .manifesto-line.lead::before { opacity: 1; }

  .manifesto-line-num {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.08em;
    flex-shrink: 0;
    font-family: 'Archivo', sans-serif;
  }

  .manifesto-line.lead .manifesto-line-num {
    color: rgba(255,255,255,0.6);
  }

  .manifesto-line:hover .manifesto-line-num {
    color: rgba(255,255,255,0.6);
  }

  .manifesto-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .manifesto-cta {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.62);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .manifesto-cta:hover { color: var(--white); }

  .manifesto-text {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255,255,255,0.62);
    line-height: 1.8;
    margin-top: 1.5rem;
  }

  /* ── CHALLENGE ── */
  .challenge {
    padding: 8rem 3rem;
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
  }

  .challenge-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 6rem;
    align-items: end;
  }

  .challenge-title {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
  }

  .challenge-body {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--gray-700);
    line-height: 1.8;
  }

  .challenge-body p + p { margin-top: 1.25rem; }

  /* ── CAPABILITIES ── */
  .capabilities {
    padding: 8rem 3rem;
    border-bottom: 1px solid var(--border);
  }

  .capabilities-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .capabilities-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 5rem;
    gap: 2rem;
  }

  .cap-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
  }

  .cap-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: start;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.2s;
  }

  .cap-item:hover { background: var(--gray-100); margin: 0 -3rem; padding-left: 3rem; padding-right: 3rem; }
  .cap-item.active { background: var(--gray-100); margin: 0 -3rem; padding-left: 3rem; padding-right: 3rem; }

  .cap-item-left {
    display: contents;
  }

  .cap-num {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 400;
    letter-spacing: 0.05em;
    padding-top: 0.35rem;
  }

  .cap-item-body {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .cap-name {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
  }

  .cap-desc {
    font-size: 19px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.35s ease, margin-top 0.35s ease;
    margin-top: 0;
  }

  .cap-item.active .cap-desc {
    max-height: 200px;
    opacity: 1;
    margin-top: 0.75rem;
  }

  .cap-arrow {
    font-size: 18px;
    color: var(--gray-300);
    transition: color 0.2s, transform 0.35s ease;
    padding-top: 0.3rem;
    flex-shrink: 0;
  }

  .cap-item:hover .cap-arrow { color: var(--black); }
  .cap-item.active .cap-arrow {
    color: var(--black);
    transform: rotate(90deg);
  }

  /* ── INDUSTRIES ── */
  .industries {
    padding: 8rem 3rem;
    background: var(--black);
    color: var(--white);
    border-bottom: 1px solid var(--border);
  }

  .industries-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .industries-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
    gap: 3rem;
  }

  .industries .section-label { color: var(--gray-600); }

  .industries .section-title { color: var(--white); }

  .industries-intro {
    font-size: 19px;
    font-weight: 300;
    color: rgba(255,255,255,0.62);
    max-width: 360px;
    line-height: 1.7;
    align-self: flex-end;
  }

  .industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-left: 1px solid rgba(255,255,255,0.1);
  }

  .industry-card {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.2s;
    cursor: default;
  }

  .industry-card:hover { background: rgba(255,255,255,0.04); }

  .industry-index {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
    display: block;
  }

  .industry-name {
    font-family: 'Archivo', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  .industry-sub {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.55;
  }

  /* ── WHY ── */
  .why {
    padding: 8rem 3rem;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  .why-photo {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background-image: url('');
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    z-index: 0;
    pointer-events: none;
  }

  .why-inner {
    position: relative;
    z-index: 1;
  }

  .why-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
  }

  .why-title {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
    margin-bottom: 3rem;
  }

  .stat-item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    padding-right: 1.5rem;
  }

  .stat-number {
    font-family: 'Archivo', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    letter-spacing: -0.03em;
  }

  .stat-label {
    font-size: 14px;
    font-weight: 300;
    color: var(--gray-600);
    margin-top: 0.5rem;
    letter-spacing: 0.02em;
  }

  .why-body {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--gray-700);
    line-height: 1.8;
  }

  .why-body p + p { margin-top: 1.25rem; }

  .who-list {
    list-style: none;
    margin-top: 2.5rem;
    border-top: 1px solid var(--border);
  }

  .who-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 19px;
    font-weight: 300;
    color: var(--gray-700);
    line-height: 1.5;
  }

  .who-list li::before {
    content: '→';
    color: var(--gray-300);
    flex-shrink: 0;
    font-size: 18px;
  }

  /* ── AUDIT ── */
  .audit {
    padding: 8rem 3rem;
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
  }

  .audit-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }

  .audit-title {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
  }

  .audit-body {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 2.5rem;
  }

  .audit-steps {
    list-style: none;
    border-top: 1px solid var(--border);
  }

  .audit-steps li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 19px;
    font-weight: 300;
    color: var(--gray-700);
  }

  .step-num {
    font-size: 11px;
    color: var(--gray-300);
    letter-spacing: 0.06em;
    flex-shrink: 0;
    margin-top: 0.15em;
    font-weight: 400;
  }

  .audit-receive {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 3rem;
  }

  .audit-receive-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: 2rem;
    display: block;
  }

  .receive-items {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
  }

  .receive-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
  }

  .receive-num {
    font-family: 'Archivo', sans-serif;
    font-size: 1.25rem;
    color: var(--gray-200);
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.3;
  }

  .receive-text {
    font-size: 18px;
    font-weight: 300;
    color: var(--gray-700);
    line-height: 1.65;
    margin-top: 0.1rem;
  }

  .tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }

  .tag {
    font-size: 14px;
    color: var(--gray-700);
    border: 1px solid var(--border);
    padding: 0.3rem 0.875rem;
    border-radius: 100px;
    font-weight: 400;
  }

  /* ── FINAL CTA ── */
  .final-cta {
    padding: 12rem 3rem;
    background: var(--black);
    color: var(--white);
    text-align: center;
  }

  .final-cta-inner {
    max-width: 800px;
    margin: 0 auto;
  }

  .final-cta-title {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 0.97;
    letter-spacing: -0.04em;
    color: var(--white);
    margin-bottom: 2rem;
  }

  .final-cta-title em {
    font-style: italic;
    color: rgba(255,255,255,0.6);
  }

  .final-cta-sub {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    margin-bottom: 3.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .footer-logo img {
    display: block;
    height: 18px;
    width: auto;
    opacity: 0.6;
  }

  .footer-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }

  .footer-links a {
    text-decoration: none;
    font-size: 14px;
    color: var(--gray-600);
    letter-spacing: 0.03em;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: rgba(255,255,255,0.7); }

  .footer-copy {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.03em;
  }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 0 1.5rem; }
    .nav-links { display: none; }
    .hero { padding: 11rem 1.5rem 4rem; }
    .hero-bottom { flex-direction: column; align-items: flex-start; }
    .hero-actions { align-items: flex-start; }
    .manifesto, .capabilities, .industries, .why, .audit, .challenge { padding-left: 1.5rem; padding-right: 1.5rem; }
    .manifesto-inner, .challenge-inner, .why-inner, .audit-inner { grid-template-columns: 1fr; gap: 3rem; }
    .cap-item { grid-template-columns: 40px 1fr; gap: 1rem; }
    .cap-desc, .cap-arrow { display: none; }
    .industries-grid { grid-template-columns: 1fr 1fr; }
    .industries-header { flex-direction: column; gap: 1.5rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .final-cta { padding: 6rem 1.5rem; }
    footer { padding: 2rem 1.5rem; grid-template-columns: 1fr; justify-items: start; }
  }

  /* ── WHO SECTION ── */
  .who-section {
    padding: 7rem 3rem;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .who-section-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .who-section-header {
    margin-bottom: 3rem;
  }

  .who-section .section-label {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
  }

  .who-list-new {
    list-style: none;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .who-list-new li {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: padding-left 0.3s ease;
    cursor: default;
  }

  .who-list-new li:hover {
    padding-left: 0.75rem;
  }

  .who-num {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.08em;
    flex-shrink: 0;
    width: 28px;
  }

  .who-list-new li span:last-child {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    line-height: 1.3;
    letter-spacing: -0.02em;
  }

  .who-list-new li:hover span:last-child {
    color: rgba(255,255,255,1);
  }

  .who-list-new li:hover .who-num {
    color: rgba(255,255,255,0.5);
  }


/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 3rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.footer-logo img {
  display: block;
  height: 18px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-logo:hover img { opacity: 1; }

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.03em;
  white-space: nowrap;
}


  /* ── CLIENTS ── */
  .clients {
    padding: 5rem 3rem;
    border-bottom: 1px solid var(--border);
    background: var(--off-white);
  }

  .clients-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .clients-label {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-600);
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
  }

  .clients-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
  }

  .client-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
    text-decoration: none;
  }

  .client-item:nth-child(6n) {
    border-right: none;
  }

  .client-item:hover {
    background: var(--white);
  }

  .client-name {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-500);
    letter-spacing: 0.02em;
    transition: color 0.2s;
    white-space: nowrap;
  }

  .client-item:hover .client-name {
    color: var(--black);
  }

  /* ── TESTIMONIALS ── */
  .testimonials {
    padding: 8rem 3rem;
    background: var(--black);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .testimonials-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    margin-bottom: 0.75rem;
  }

  .testimonials-title {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--white);
  }

  .testimonials-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    max-width: 320px;
    line-height: 1.65;
    text-align: right;
  }

  /* Carousel */
  .testi-carousel {
    position: relative;
    overflow: hidden;
  }

  .testi-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .testi-card {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .testi-card-left {
    padding: 3.5rem 4rem 3.5rem 0;
    border-right: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .testi-quote-mark {
    font-family: Georgia, serif;
    font-size: 5rem;
    color: rgba(255,255,255,0.08);
    line-height: 1;
    margin-bottom: 1.5rem;
  }

  .testi-text {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
    letter-spacing: -0.01em;
    flex: 1;
  }

  .testi-card-right {
    padding: 3.5rem 0 3.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .testi-author {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: auto;
  }

  .testi-name {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
    letter-spacing: -0.01em;
  }

  .testi-role {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
  }

  .testi-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .testi-dots {
    display: flex;
    gap: 0.5rem;
    flex: 1;
  }

  .testi-dot {
    width: 24px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
    padding: 0;
  }

  .testi-dot.active {
    background: var(--white);
    width: 48px;
  }

  .testi-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: rgba(255,255,255,0.6);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    border-radius: 2px;
    font-family: 'Archivo', sans-serif;
  }

  .testi-btn:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255,255,255,0.05);
  }

  .testi-counter {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  @media (max-width: 900px) {
    .clients { padding: 4rem 1.5rem; }
    .client-item { padding: 1rem 1.5rem; }
    .client-item:nth-child(6n) { border-right: 1px solid var(--border); }
    .client-item:nth-child(3n) { border-right: none; }
    .testimonials { padding: 5rem 1.5rem; }
    .testimonials-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .testimonials-subtitle { text-align: left; max-width: 100%; }
    .testi-card { grid-template-columns: 1fr; }
    .testi-card-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 2rem 0; }
    .testi-card-right { padding: 2rem 0; }
  }

  .testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

