/* ═══════════════════════════════════════════
   AURELIUM — Global Stylesheet
   Brand Primary: #5f0909
   ═══════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  /* Brand core */
  --brand: #5F0909;
  --brand-light: #7A1A1A;
  --brand-dark: #470606;
  --brand-subtle: #8B2D2D;
  --brand-shadow: rgba(95, 9, 9, 0.25);
  --brand-shadow-light: rgba(95, 9, 9, 0.08);
  --brand-overlay: rgba(95, 9, 9, 0.12);
  --brand-border: rgba(95, 9, 9, 0.4);

  /* Complementary palette */
  --gold: #C4975A;
  --gold-light: #D4AA6E;
  --gold-muted: rgba(196, 151, 90, 0.12);
  --gold-bg: rgba(196, 151, 90, 0.1);
  --gold-bg-mid: rgba(196, 151, 90, 0.15);
  --gold-bg-strong: rgba(196, 151, 90, 0.2);
  --gold-border: rgba(196, 151, 90, 0.3);
  --gold-shadow: rgba(196, 151, 90, 0.3);
  --gold-glow: rgba(196, 151, 90, 0.06);
  --gold-glow-mid: rgba(196, 151, 90, 0.1);

  /* Neutrals */
  --dark: #1A1714;
  --dark-warm: #2A2320;
  --dark-bg: rgba(26, 23, 20, 0.95);
  --dark-bg-solid: rgba(26, 23, 20, 0.98);
  --cream: #FAF7F2;
  --warm-white: #FFFDF9;
  --stone: #E8E2D8;
  --stone-dark: #D1C8BA;

  /* White overlays (for dark backgrounds) */
  --white-03: rgba(255, 255, 255, 0.03);
  --white-04: rgba(255, 255, 255, 0.04);
  --white-06: rgba(255, 255, 255, 0.06);
  --white-07: rgba(255, 255, 255, 0.07);
  --white-08: rgba(255, 255, 255, 0.08);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-12: rgba(255, 255, 255, 0.12);
  --white-25: rgba(255, 255, 255, 0.25);

  /* Text */
  --text: #2A2A28;
  --text-light: #6B6B68;
  --text-on-dark: rgba(255, 255, 255, 0.7);
  --text-on-dark-soft: rgba(255, 255, 255, 0.65);
  --text-on-dark-mid: rgba(255, 255, 255, 0.55);
  --text-on-dark-muted: rgba(255, 255, 255, 0.45);
  --text-on-dark-faint: rgba(255, 255, 255, 0.4);
  --text-on-dark-subtle: rgba(255, 255, 255, 0.35);
  --text-on-dark-ghost: rgba(255, 255, 255, 0.3);
  --text-on-dark-75: rgba(255, 255, 255, 0.75);
  --text-on-dark-60: rgba(255, 255, 255, 0.6);

  /* Spacing */
  --section-pad: 100px 6%;
  --container-max: 1200px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}


/* ── RESET & BASE ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}


/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brand-subtle);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.7;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
}

section {
  padding: var(--section-pad);
}


/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--brand-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--brand-shadow);
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--white-25);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  background: transparent;
}

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

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 0.8rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease);
}

.btn-gold:hover {
  background: var(--gold-light);
}


/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Scroll-triggered animation classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--dark-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0 4%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gold-muted);
  transition: background 0.3s var(--ease);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  text-decoration: none;
}

.logo-image {
  height: 32px;
  width: auto;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  color: var(--cream);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-logo:hover {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-on-dark-soft);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--brand) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.3s !important;
}

.nav-cta:hover {
  background: var(--brand-light) !important;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-on-dark);
  margin: 5px 0;
  transition: all 0.3s;
}


/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 6% 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.25;
}

.hero-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-bg);
  border: 1px solid var(--gold-shadow);
  border-radius: 40px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s var(--ease);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-on-dark-60);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}

/* Hero visual card */
.hero-visual {
  position: relative;
  animation: fadeUp 1s var(--ease) 0.4s both;
}

.hero-card {
  background: var(--white-07);
  border: 1px solid var(--white-12);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  text-align: center;
}

.hero-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-card-divider {
  height: 1px;
  background: var(--white-12);
  margin: 1.5rem 0;
}

.hero-card-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-card-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-on-dark);
  font-size: 0.88rem;
}

.hero-card-item .icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--gold-bg-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}


/* Hero-specific button override for dark-on-dark contrast */
.hero .btn-primary {
  background: var(--gold);
  color: var(--dark);
}

.hero .btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 24px var(--gold-shadow);
}


/* ═══════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════ */
.trust-bar {
  background: var(--brand-dark);
  padding: 2.5rem 6%;
  text-align: center;
}

.trust-bar p {
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.trust-logo {
  color: var(--warm-white);
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}


/* ═══════════════════════════════════════════
   PROBLEM SECTION
   ═══════════════════════════════════════════ */
.problem {
  background: var(--cream);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 3rem;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.problem-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.problem-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.problem-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.problem-quote {
  background: var(--brand);
  border-radius: 16px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.problem-quote blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

.problem-quote cite {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  font-style: normal;
}


/* ═══════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════ */
.services {
  background: var(--warm-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px var(--brand-shadow-light);
}

.service-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--stone-dark);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════
   CASE STUDIES
   ═══════════════════════════════════════════ */
.cases {
  background: var(--dark);
  color: #fff;
}

.cases .section-title {
  color: #fff;
}

.cases .section-desc {
  color: var(--text-on-dark-muted);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.case-card {
  background: var(--white-04);
  border: 1px solid var(--white-08);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease);
  position: relative;
}

.case-card:hover {
  border-color: var(--brand-border);
  background: var(--white-06);
  transform: translateY(-3px);
}

.case-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-muted);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

.case-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.case-card p {
  font-size: 0.88rem;
  color: var(--text-on-dark-mid);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.case-metric {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--white-08);
}

.case-metric strong {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  min-width: 80px;
  color: var(--gold-light);
}

.case-metric span {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
}


/* ═══════════════════════════════════════════
   APPROACH
   ═══════════════════════════════════════════ */
.approach {
  background: var(--cream);
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.approach-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  margin: 0 auto 1.25rem;
}

.approach-step h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.approach-step p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.step-connector {
  position: absolute;
  top: 46px;
  right: -0.75rem;
  width: 1.5rem;
  height: 2px;
  background: var(--stone-dark);
}

.approach-step:last-child .step-connector {
  display: none;
}


/* ═══════════════════════════════════════════
   PRODUCT SPOTLIGHT (AURA HR)
   ═══════════════════════════════════════════ */
.spotlight {
  background: var(--warm-white);
}

.spotlight-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--brand);
  border-radius: 20px;
  padding: 3.5rem 4rem;
  margin-top: 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.spotlight-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse, var(--gold-bg) 0%, transparent 70%);
  pointer-events: none;
}

.spotlight-content {
  position: relative;
  z-index: 1;
}

.spotlight-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spotlight-logo span {
  font-size: 0.65rem;
  background: var(--gold-bg-strong);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  vertical-align: middle;
}

.spotlight-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.spotlight-content p {
  color: var(--text-on-dark-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.spotlight-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.spotlight-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-on-dark-75);
}

.spotlight-feature::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
}

.spotlight-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spotlight-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.spotlight-stat {
  background: var(--white-08);
  border: 1px solid var(--white-12);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.spotlight-stat strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.spotlight-stat span {
  font-size: 0.75rem;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.04em;
}


/* ═══════════════════════════════════════════
   FOUNDERS
   ═══════════════════════════════════════════ */
.founders {
  background: var(--cream);
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
  max-width: 900px;
}

.founder-card {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 14px;
  padding: 2.5rem 2rem;
}

.founder-initials {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--gold);
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.founder-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.founder-card .role {
  font-size: 0.82rem;
  color: var(--brand);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.founder-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta {
  background: var(--dark);
  text-align: center;
  padding: 100px 6%;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, var(--brand-overlay) 0%, transparent 60%);
  pointer-events: none;
}

.cta .section-label {
  position: relative;
  color: var(--gold);
}

.cta .section-title {
  color: #fff;
  position: relative;
}

.cta .section-desc {
  color: var(--text-on-dark-mid);
  margin: 0 auto 2.5rem;
  position: relative;
}

.cta .btn-primary {
  position: relative;
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-on-dark-subtle);
  position: relative;
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
  background: var(--dark);
  border-top: 1px solid var(--white-06);
  padding: 3rem 6% 2rem;
  color: var(--text-on-dark-faint);
}

.footer-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-brand .logo-container {
  margin-bottom: 0.75rem;
}

.footer-address {
  margin-top: 0.75rem;
  font-size: 0.8rem;
}

footer h5 {
  color: var(--text-on-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 0.5rem;
}

footer a {
  color: var(--text-on-dark-faint);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--white-06);
  font-size: 0.8rem;
}


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-grid,
  .problem-grid,
  .spotlight-card {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }

  .approach-steps {
    grid-template-columns: 1fr 1fr;
  }

  .step-connector {
    display: none !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .spotlight-card {
    padding: 2.5rem 2rem;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  :root {
    --section-pad: 60px 5%;
  }

  .hero {
    padding: 100px 5% 60px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .approach-steps {
    grid-template-columns: 1fr;
  }

  .founders-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-stat-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}