/* ═══════════════════════════════════════════════════════════════
   VALOR PERKS — css/aboutus.css
   FULLY SELF-CONTAINED — no design-system.css dependency
   Theme: clean white/light — photo grid hero — stats strip
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --font-display: 'Syne', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Light theme colours */
  --body-bg:    #f8faff;
  --white:      #ffffff;
  --surface:    #f1f5fb;
  --surface-2:  #e8eef8;

  /* Accents */
  --blue:       #1a56db;
  --blue-light: #eff4ff;
  --blue-mid:   #3b82f6;
  --blue-soft:  rgba(59,130,246,0.10);
  --emerald:    #10b981;
  --emerald-light: #ecfdf5;
  --pink:       #ec4899;
  --pink-light: #fdf2f8;
  --amber:      #f59e0b;
  --amber-light:#fffbeb;
  --purple:     #7c3aed;
  --purple-light:#f5f3ff;

  /* Text */
  --text-900:  #0d1117;
  --text-700:  #1f2937;
  --text-500:  #6b7280;
  --text-400:  #9ca3af;
  --text-300:  #d1d5db;

  /* Borders */
  --border:      #e5e7eb;
  --border-light:#f3f4f6;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.09);

  /* Radii */
  --r-sm: 8px; --r-md: 12px; --r-lg: 18px; --r-xl: 24px;
  --r-2xl: 32px; --r-pill: 999px;

  /* Spacing */
  --s-4:4px; --s-6:6px; --s-8:8px; --s-10:10px; --s-12:12px;
  --s-14:14px; --s-16:16px; --s-20:20px; --s-24:24px; --s-28:28px;
  --s-32:32px; --s-40:40px; --s-48:48px; --s-56:56px; --s-64:64px;
  --s-80:80px; --s-96:96px; --s-120:120px;

  --nav-h: 64px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--body-bg);
  color: var(--text-900);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

/* ══════════════════════════════════════════════════════════════
   NAVBAR — light, sticky
   ══════════════════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--s-16);
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-24);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--s-8);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img { height: 28px; width: auto; object-fit: contain; }

.nav-logo-wordmark {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-900);
  letter-spacing: -0.02em;
}

.nav-logo-wordmark span { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin: 0 auto;
  list-style: none;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-500);
  padding: 7px 14px;
  border-radius: var(--r-sm);
  transition: color 0.14s, background 0.14s;
}

.nav-link:hover { color: var(--text-900); background: var(--surface); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s-10);
  margin-left: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-6);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all 0.15s;
  white-space: nowrap;
}

.btn-primary { background: var(--blue); color: #fff; padding: 10px 20px; }
.btn-primary:hover { background: #1244bf; box-shadow: 0 4px 16px rgba(26,86,219,0.28); }

.btn-ghost {
  background: transparent;
  color: var(--text-700);
  border-color: var(--border);
  padding: 10px 18px;
}
.btn-ghost:hover { background: var(--surface); }

.btn-sm   { font-size: 13px; padding: 7px 14px; }
.btn-lg   { font-size: 15px; padding: 13px 26px; }
.btn-xl   { font-size: 16px; padding: 16px 32px; }
.btn-full { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text-500);
  border-radius: 2px;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--white);
  padding: 80px var(--s-24) var(--s-32);
  flex-direction: column;
  gap: var(--s-24);
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.mobile-nav.open { transform: translateX(0); display: flex; }
.mobile-nav-links { display: flex; flex-direction: column; gap: var(--s-4); }
.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-700);
  border-radius: var(--r-md);
  transition: background 0.12s;
}
.mobile-nav-link:hover { background: var(--surface); }
.mobile-nav-actions { display: flex; flex-direction: column; gap: var(--s-10); margin-top: auto; padding-top: var(--s-20); border-top: 1px solid var(--border-light); }

/* Section label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-6);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(26,86,219,0.15);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-24);
}

.container--narrow { max-width: 720px; }

/* ══════════════════════════════════════════════════════════════
   HERO — light, photo grid, Hyre-inspired
   ══════════════════════════════════════════════════════════════ */
.about-hero {
  padding: var(--s-80) 0 var(--s-64);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(59,130,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-64);
  align-items: center;
}

.about-hero-text {}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-900);
  line-height: 1.05;
  margin-bottom: var(--s-20);
}

.about-hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero > .container > p,
.about-hero-text > p {
  font-size: 17px;
  color: var(--text-500);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: var(--s-32);
}

/* Photo grid (Hyre-style) */
.about-hero-photos {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.about-photo-main {
  grid-row: 1 / 3;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r-xl);
  width: 100%;
}

.about-photo-sm {
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-lg);
  width: 100%;
}

/* Partner strip */
.about-partners {
  padding: var(--s-40) 0;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.about-partners-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--s-24);
}

.about-partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-40);
  flex-wrap: wrap;
}

.about-partner-logo {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-400);
  display: flex;
  align-items: center;
  gap: var(--s-6);
  transition: color 0.14s;
}

.about-partner-logo:hover { color: var(--text-700); }

/* ══════════════════════════════════════════════════════════════
   STATS STRIP — colourful numbers
   ══════════════════════════════════════════════════════════════ */
.about-stats {
  padding: var(--s-56) 0;
  background: var(--white);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.about-stat-box {
  padding: var(--s-32) var(--s-28);
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.18s;
}

.about-stat-box:last-child { border-right: none; }

.about-stat-box::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
}

.about-stat-box:nth-child(1)::before { background: var(--blue); }
.about-stat-box:nth-child(2)::before { background: var(--pink); }
.about-stat-box:nth-child(3)::before { background: var(--emerald); }
.about-stat-box:nth-child(4)::before { background: var(--amber); }

.about-stat-box:hover { background: var(--surface); }

.about-stat-num {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-900);
  line-height: 1;
  margin-bottom: var(--s-6);
}

.about-stat-lbl {
  font-size: 12px;
  color: var(--text-400);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════════
   MISSION SECTION
   ══════════════════════════════════════════════════════════════ */
.about-section {
  padding: var(--s-80) 0;
}

.about-section--surface { background: var(--surface); }
.about-section--white   { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-64);
  align-items: center;
}

.about-grid--reverse .about-text   { order: 2; }
.about-grid--reverse .about-visual { order: 1; }

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-900);
  margin: var(--s-16) 0;
  line-height: 1.15;
}

.about-text p {
  font-size: 15px;
  color: var(--text-500);
  line-height: 1.85;
  margin-bottom: var(--s-20);
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

/* ══════════════════════════════════════════════════════════════
   VALUES / TEAM CARDS
   ══════════════════════════════════════════════════════════════ */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-20);
  margin-top: var(--s-48);
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-32);
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.value-card:nth-child(1)::before { background: var(--blue); }
.value-card:nth-child(2)::before { background: var(--emerald); }
.value-card:nth-child(3)::before { background: var(--amber); }

.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.value-icon {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  margin-bottom: var(--s-16);
}

.value-icon--blue    { background: var(--blue-soft); color: var(--blue); }
.value-icon--emerald { background: var(--emerald-light); color: var(--emerald); }
.value-icon--amber   { background: var(--amber-light); color: var(--amber); }

.value-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-900);
  letter-spacing: -0.02em;
  margin-bottom: var(--s-10);
}

.value-card p {
  font-size: 14px;
  color: var(--text-500);
  line-height: 1.75;
}

/* Team cards (Figma member cards) */
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-20);
  margin-top: var(--s-40);
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s;
}

.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.team-card-photo-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.team-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-blob {
  position: absolute;
  top: -10px; right: -10px;
  width: 70px; height: 70px;
  border-radius: 50% 30% 50% 20%;
  opacity: 0.7;
}

.team-card:nth-child(1) .team-card-blob { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.team-card:nth-child(2) .team-card-blob { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.team-card:nth-child(3) .team-card-blob { background: linear-gradient(135deg, #f472b6, #ec4899); }

.team-card-body {
  padding: var(--s-16) var(--s-20);
  border-top: 1px solid var(--border-light);
}

.team-card-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-900);
  margin-bottom: 2px;
}

.team-card-role {
  font-size: 12px;
  color: var(--text-400);
  margin-bottom: var(--s-12);
}

.team-card-socials {
  display: flex;
  gap: var(--s-10);
}

.team-social-link {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--surface);
  display: grid;
  place-items: center;
  font-size: 10px;
  color: var(--text-400);
  transition: background 0.12s, color 0.12s;
}

.team-social-link:hover { background: var(--blue-light); color: var(--blue); }

/* ══════════════════════════════════════════════════════════════
   CTA SECTION — light with gradient accent
   ══════════════════════════════════════════════════════════════ */
.about-cta {
  padding: var(--s-80) 0;
  background: linear-gradient(135deg, #eff4ff 0%, #f0fdf4 100%);
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.about-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text-900);
  margin-bottom: var(--s-16);
  line-height: 1.1;
}

.about-cta p {
  font-size: 16px;
  color: var(--text-500);
  margin-bottom: var(--s-40);
  line-height: 1.75;
  max-width: 520px;
  margin-inline: auto;
}

.about-cta-btns {
  display: flex;
  gap: var(--s-16);
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: var(--s-24) 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-16);
  flex-wrap: wrap;
}

.footer-bottom-left p {
  font-size: 12px;
  color: var(--text-400);
  line-height: 1.6;
}

.footer-disclaimer {
  font-size: 11px;
  color: var(--text-300);
  margin-top: var(--s-4);
  max-width: 560px;
}

.footer-agency {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  font-size: 12px;
  color: var(--text-400);
  text-decoration: none;
  transition: color 0.12s;
}

.footer-agency:hover { color: var(--blue); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero-photos { max-width: 500px; margin-inline: auto; }
  .about-grid { grid-template-columns: 1fr; gap: var(--s-40); }
  .about-grid--reverse .about-text { order: 1; }
  .about-grid--reverse .about-visual { order: 2; }
  .about-values { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: repeat(2,1fr); }
  .about-stat-box:nth-child(2) { border-right: none; }
  .about-stat-box:nth-child(3) { border-right: 1px solid var(--border); }
  .about-team-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 600px) {
  .container { padding: 0 var(--s-16); }
  .about-hero { padding: var(--s-48) 0 var(--s-40); }
  .about-section { padding: var(--s-48) 0; }
  .about-hero-photos { grid-template-columns: 1fr; }
  .about-photo-main { grid-row: auto; aspect-ratio: 16/9; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .about-team-grid { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }
  .about-partners-logos { gap: var(--s-20); }
  .about-cta-btns { flex-direction: column; align-items: center; }
}