/* ═══════════════════════════════════════════════════════════════
   WAG Corporate — Shared Design System
   Palette: Deep charcoal + desert gold + clean whites
   Tone: Institutional authority with Middle Eastern refinement
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --coal: #0B1215;
  --coal-90: #141D22;
  --coal-80: #1C2830;
  --slate: #2A3640;
  --mist: #8B9DAF;
  --silver: #C4CDD6;
  --pearl: #E8ECF0;
  --white: #F7F8FA;
  --gold: #C09A53;
  --gold-light: #D4B577;
  --gold-dark: #A07D3A;
  --accent: #3A7CA5;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--coal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--white); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ═══════ UTILITY ═══════ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 64px); }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 64px); }
.section-pad { padding: clamp(80px, 12vh, 160px) 0; }
.section-pad-sm { padding: clamp(48px, 8vh, 96px) 0; }

.gold-line { width: 48px; height: 2px; background: var(--gold); margin-bottom: 20px; }

.label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.section-subhead {
  font-size: 18px;
  color: var(--slate);
  max-width: 640px;
  line-height: 1.7;
  font-weight: 300;
}

.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.bg-coal { background: var(--coal); }
.bg-pearl { background: var(--pearl); }
.bg-white { background: var(--white); }

/* ═══════ REVEAL ANIMATIONS ═══════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Fade in from left/right */
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Scale in */
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ═══════ BUTTONS ═══════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--coal);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 154, 83, 0.25);
}
.btn-primary.btn-arrow { color: var(--coal); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border: 1px solid rgba(192, 154, 83, 0.3);
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
  background: transparent;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid var(--pearl);
  color: var(--coal);
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
  background: transparent;
  cursor: pointer;
}
.btn-outline-dark:hover {
  border-color: var(--gold);
  background: rgba(192, 154, 83, 0.05);
  transform: translateY(-2px);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  transition: gap 0.3s, color 0.3s;
}
.btn-arrow:hover { gap: 14px; color: var(--gold-light); }
.btn-arrow svg { transition: transform 0.3s; }
.btn-arrow:hover svg { transform: translateX(4px); }

/* ═══════ NAVIGATION ═══════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 clamp(24px, 5vw, 64px);
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(11, 18, 21, 0.97);
  box-shadow: 0 1px 0 rgba(192, 154, 83, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: height 0.4s;
}
.nav.scrolled .nav-inner { height: 60px; }

.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo-img {
  height: 32px;
  width: auto;
  color: var(--white);
  transition: opacity 0.3s;
}
.nav.scrolled .nav-logo-img { height: 28px; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-top: 3px;
  display: block;
}
.footer-logo-img {
  height: 24px;
  width: auto;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links a {
  font-size: 14.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  padding: 8px 14px;
  transition: color 0.3s;
  letter-spacing: 0.01em;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px; right: 12px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  margin-left: 12px;
  padding: 10px 22px !important;
  background: var(--gold);
  color: var(--coal) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border-radius: 4px;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-overlay.open { display: block; opacity: 1; }

@media (max-width: 1100px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(360px, 85vw);
    height: 100vh;
    background: var(--coal);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 64px 48px;
    transition: right 0.5s var(--ease-out);
    border-left: 1px solid rgba(192, 154, 83, 0.15);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 18px; padding: 12px 0; color: rgba(255,255,255,0.6); }
  .nav-cta { margin-left: 0 !important; margin-top: 16px; text-align: center; display: block; }
}

/* ═══════ SCROLL PROGRESS ═══════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 1001;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
}

/* ═══════ PAGE HERO (reusable) ═══════ */
.page-hero {
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  background: var(--coal);
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(192, 154, 83, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(58, 124, 165, 0.04) 0%, transparent 70%);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192, 154, 83, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 154, 83, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 60% 50%, black, transparent);
}
.page-hero .container { position: relative; z-index: 1; padding-bottom: 64px; }
.page-hero .label { color: var(--gold); }
.page-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 60px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 800px;
}
.page-hero-heading em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--silver);
  line-height: 1.7;
  max-width: 600px;
  font-weight: 300;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 12px;
  color: var(--mist);
}
.page-hero-breadcrumb a { color: var(--gold); transition: color 0.3s; }
.page-hero-breadcrumb a:hover { color: var(--gold-light); }
.page-hero-breadcrumb span { opacity: 0.4; }

/* ═══════ STAT GRID ═══════ */
.stat-grid {
  display: grid;
  gap: 1px;
  background: rgba(192, 154, 83, 0.1);
  border: 1px solid rgba(192, 154, 83, 0.1);
}
.stat-grid-4 { grid-template-columns: repeat(4, 1fr); }
.stat-grid-3 { grid-template-columns: repeat(3, 1fr); }
.stat-grid-5 { grid-template-columns: repeat(5, 1fr); }

.stat-cell { padding: 32px; background: var(--coal); }
.stat-cell.light { background: var(--white); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: var(--mist); font-weight: 400; line-height: 1.4; }
.stat-cell.light .stat-label { color: var(--slate); }

@media (max-width: 768px) {
  .stat-grid-4, .stat-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .stat-grid-3 { grid-template-columns: 1fr; }
}

/* ═══════ CARDS ═══════ */
.card {
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--pearl);
  border-radius: 8px;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.card:hover::before { transform: scaleX(1); }

.card-dark {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(192, 154, 83, 0.12);
}
.card-dark:hover {
  border-color: rgba(192, 154, 83, 0.3);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.card-icon {
  width: 52px; height: 52px;
  background: var(--coal);
  color: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.card-icon.gold-bg { background: rgba(192, 154, 83, 0.1); }

/* ═══════ DECORATIVE ELEMENTS ═══════ */
.deco-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.2;
}

.deco-dots {
  display: grid;
  grid-template-columns: repeat(6, 4px);
  gap: 12px;
  opacity: 0.15;
}
.deco-dots span {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.deco-corner {
  position: absolute;
  width: 60px; height: 60px;
  border: 1px solid rgba(192, 154, 83, 0.15);
}
.deco-corner-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.deco-corner-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.deco-corner-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.deco-corner-br { bottom: 0; right: 0; border-left: none; border-top: none; }

.deco-glow {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 154, 83, 0.08), transparent 70%);
  pointer-events: none;
}

/* Geometric pattern overlay */
.geo-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, rgba(192, 154, 83, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(192, 154, 83, 0.03) 87.5%),
    linear-gradient(150deg, rgba(192, 154, 83, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(192, 154, 83, 0.03) 87.5%),
    linear-gradient(30deg, rgba(192, 154, 83, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(192, 154, 83, 0.03) 87.5%),
    linear-gradient(150deg, rgba(192, 154, 83, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(192, 154, 83, 0.03) 87.5%);
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px;
  pointer-events: none;
}

/* ═══════ LEADER CARDS ═══════ */
.leader-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid var(--pearl);
  border-radius: 8px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.leader-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}
.leader-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
  border: 2px solid var(--pearl);
  transition: border-color 0.3s;
  background: var(--pearl);
}
.leader-card:hover .leader-photo { border-color: var(--gold); }
.leader-name { font-family: var(--font-display); font-size: 24px; font-weight: 500; color: var(--coal); margin-bottom: 6px; }
.leader-title { font-size: 15px; color: var(--gold-dark); font-weight: 600; margin-bottom: 14px; letter-spacing: 0.01em; }
.leader-bio { font-size: 13px; color: var(--slate); font-weight: 300; line-height: 1.6; }

/* ═══════ FOOTER ═══════ */
.footer {
  background: var(--coal);
  border-top: 1px solid rgba(192, 154, 83, 0.08);
  padding: 56px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-brand-desc { font-size: 13px; color: var(--mist); font-weight: 300; line-height: 1.7; max-width: 320px; }
.footer-col-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--mist);
  font-weight: 300;
  padding: 3px 0;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--white); }
.footer-address {
  font-size: 13px;
  color: var(--mist);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-address a {
  color: var(--mist);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}
.footer-address a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-copy { font-size: 11px; color: var(--mist); font-weight: 300; opacity: 0.6; }
.footer-legal { font-size: 11px; color: var(--mist); font-weight: 300; opacity: 0.4; }
.footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal-links a { font-size: 11px; color: var(--mist); text-decoration: none; opacity: 0.5; transition: all 0.3s; }
.footer-legal-links a:hover { color: var(--gold); opacity: 1; }

/* ═══════ MISC ═══════ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Vertical cards */
.vertical-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--pearl);
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  color: inherit;
}
.vertical-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.vertical-icon {
  width: 48px; height: 48px;
  background: var(--coal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.vertical-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--coal);
  margin-bottom: 12px;
}
.vertical-desc {
  font-size: 14px;
  color: var(--slate);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.vertical-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.vertical-tags .tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--coal);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 20px;
  text-transform: uppercase;
}
.vertical-tags .tag-badge.tag-gold {
  background: rgba(192, 154, 83, 0.12);
  color: var(--gold-dark);
}
.vertical-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  opacity: 0.65;
  transition: opacity 0.3s;
}
.vertical-card:hover .vertical-logos { opacity: 1; }

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .four-col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .four-col { grid-template-columns: 1fr; }
}

/* Number counter animation */
.counter { display: inline-block; }

/* Divider with label */
.labeled-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 48px 0;
}
.labeled-divider::before, .labeled-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(192, 154, 83, 0.15);
}
.labeled-divider span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}

/* Icon list */
.icon-list { display: flex; flex-direction: column; gap: 16px; }
.icon-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--slate);
  font-weight: 300;
  line-height: 1.6;
}
.icon-list-item .il-icon {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: rgba(192, 154, 83, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Tags */
.tag {
  display: inline-block;
  font-size: 12px;
  padding: 5px 14px;
  background: var(--pearl);
  border-radius: 100px;
  color: var(--slate);
  font-weight: 500;
}
.tag-dark {
  background: rgba(192, 154, 83, 0.1);
  color: var(--gold-light);
}

/* Proof strip */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--gold);
  border-radius: 6px;
  overflow: hidden;
}
.proof-item { background: var(--coal); padding: 32px 24px; text-align: center; }
.proof-num { font-family: var(--font-display); font-size: 36px; font-weight: 400; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.proof-label { font-size: 12px; color: var(--mist); font-weight: 400; line-height: 1.4; }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 768px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  transition: background 0.3s;
}
.feature-item:hover { background: rgba(192, 154, 83, 0.03); }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon.dark { background: rgba(255, 255, 255, 0.05); }
.feature-icon.light { background: rgba(192, 154, 83, 0.08); }
.feature-title { font-size: 15px; font-weight: 600; color: var(--coal); margin-bottom: 4px; }
.feature-desc { font-size: 14px; color: var(--slate); font-weight: 300; line-height: 1.6; }
