/* ============================================================
   Drive Financial — Design System
   Modern fintech aesthetic: Stripe / Brex / Ramp / Mercury
   ============================================================ */

:root {
  --blue-900: #06255B;
  --blue-800: #0A2F6E;
  --blue-700: #0E3A85;
  --blue-600: #1249A5;
  --blue-500: #1857C4;
  --blue-400: #3B78E7;
  --blue-100: #E3ECFB;
  --blue-50: #EFF4FC;
  --ink: #0B1B33;
  --slate-700: #3D4C63;
  --slate-500: #5B6B84;
  --slate-400: #7C8AA0;
  --gray-100: #F5F7FA;
  --gray-150: #EEF1F6;
  --gray-200: #E4E9F0;
  --white: #FFFFFF;
  --green-600: #0E8A4D;
  --green-100: #E2F5EB;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-card: 0 2px 6px rgba(11, 27, 51, 0.05), 0 12px 32px rgba(11, 27, 51, 0.07);
  --shadow-card-hover: 0 6px 16px rgba(11, 27, 51, 0.08), 0 24px 48px rgba(11, 27, 51, 0.12);
  --shadow-nav: 0 1px 0 rgba(11, 27, 51, 0.06), 0 8px 24px rgba(11, 27, 51, 0.06);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--blue-600); text-decoration: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ------------------------------------------------------------
   Typography
------------------------------------------------------------ */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
  color: var(--ink);
}

.section-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--slate-500);
  max-width: 720px;
  margin: 0 auto;
}

.center { text-align: center; }

/* ------------------------------------------------------------
   Buttons
------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all .22s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-600);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(18, 73, 165, 0.32);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-600);
  border-color: var(--blue-600);
}
.btn-secondary:hover {
  background: var(--blue-50);
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--blue-700);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.22); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.65);
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color:#fff; transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: 14.5px; }

.link-arrow {
  font-weight: 600;
  color: var(--blue-600);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s ease;
}
.link-arrow:hover { gap: 10px; }

/* ------------------------------------------------------------
   Navigation
------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .3s ease, box-shadow .3s ease;
  background: transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-nav);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  transition: color .3s ease;
}
.nav-logo .logo-mark { width: 34px; height: 34px; flex: none; }
.nav.scrolled .nav-logo, .nav.solid .nav-logo { color: var(--blue-800); }
.nav-logo span em { font-style: normal; font-weight: 400; opacity: .85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  transition: color .25s ease;
}
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a, .nav.solid .nav-links a { color: var(--slate-700); }
.nav.scrolled .nav-links a:hover, .nav.solid .nav-links a:hover { color: var(--blue-600); }
.nav-links a.active { color: #fff; font-weight: 700; }
.nav.scrolled .nav-links a.active, .nav.solid .nav-links a.active { color: var(--blue-600); }

.nav-cta { margin-left: 6px; }
.nav .btn-nav {
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  background: #fff;
  color: var(--blue-700);
  transition: all .22s ease;
}
.nav.scrolled .btn-nav, .nav.solid .btn-nav { background: var(--blue-600); color: #fff; }
.nav .btn-nav:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(11,27,51,.18); }

/* Nav over light pages */
.nav.solid { background: rgba(255,255,255,.94); backdrop-filter: blur(14px); box-shadow: var(--shadow-nav); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 1002;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block;
  width: 24px; height: 2.5px;
  background: #fff;
  border-radius: 3px;
  position: relative;
  transition: all .3s ease;
  content: "";
}
.nav-toggle span::before { position: absolute; top: -8px; }
.nav-toggle span::after { position: absolute; top: 8px; }
.nav.scrolled .nav-toggle span, .nav.scrolled .nav-toggle span::before, .nav.scrolled .nav-toggle span::after,
.nav.solid .nav-toggle span, .nav.solid .nav-toggle span::before, .nav.solid .nav-toggle span::after { background: var(--blue-800); }
.nav-toggle.open span { background: transparent !important; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); background: var(--blue-800); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); background: var(--blue-800); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
body:has(.mobile-menu.open) .nav { background: rgba(255,255,255,.94); }
.mobile-menu a {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  padding: 12px;
}
.mobile-menu a.active { color: var(--blue-600); }
.mobile-menu .btn { margin-top: 18px; }

/* ------------------------------------------------------------
   Hero
------------------------------------------------------------ */
.hero {
  position: relative;
  background: linear-gradient(150deg, var(--blue-900) 0%, var(--blue-700) 55%, var(--blue-600) 100%);
  color: #fff;
  overflow: hidden;
  padding: 160px 0 96px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,120,231,.35) 0%, transparent 65%);
  top: -420px; right: -260px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 26px;
}
.hero-tagline .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; }
.hero h1 {
  font-size: clamp(36px, 5.4vw, 60px);
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}
.hero p.sub {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255,255,255,.82);
  max-width: 540px;
  margin-bottom: 34px;
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-page {
  padding: 150px 0 80px;
  text-align: center;
}
.hero-page h1 { font-size: clamp(34px, 5vw, 54px); margin-bottom: 18px; }
.hero-page p { font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,.82); max-width: 680px; margin: 0 auto; }

/* Hero flow graphic */
.hero-visual { position: relative; z-index: 2; }
.flow-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.flow-title { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 16px; }
.flow-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.flow-item {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  transition: background .25s ease, transform .25s ease;
}
.flow-item:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.flow-item svg { width: 22px; height: 22px; }
.flow-arrow {
  display: flex;
  justify-content: center;
  padding: 12px 0;
}
.flow-arrow svg { width: 26px; height: 26px; opacity: .85; }
.flow-stage {
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
}
.flow-stage.approve {
  background: linear-gradient(90deg, rgba(14,138,77,.28), rgba(74,222,128,.22));
  border: 1px solid rgba(74,222,128,.45);
  color: #C9F5DC;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.flow-stage.approve svg { width: 20px; height: 20px; }
.flow-stage.growth {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.flow-stage.growth svg { width: 20px; height: 20px; }

/* ------------------------------------------------------------
   Sections
------------------------------------------------------------ */
.section { padding: 96px 0; }
.section-gray { background: var(--gray-100); }
.section-blue-tint { background: var(--blue-50); }
.section-head { text-align: center; margin-bottom: 56px; }

/* ------------------------------------------------------------
   Cards & grids
------------------------------------------------------------ */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-200);
  transition: transform .28s ease, box-shadow .28s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.card h3 { font-size: 20px; margin: 18px 0 10px; }
.card p { color: var(--slate-500); font-size: 15.5px; flex-grow: 0; }
.card ul {
  list-style: none;
  margin: 14px 0 20px;
  flex-grow: 1;
}
.card ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  color: var(--slate-700);
  font-size: 15px;
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--blue-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231249A5' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/9px no-repeat;
}
.card .link-arrow { margin-top: auto; }

.icon-tile {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.icon-tile svg { width: 27px; height: 27px; stroke: var(--blue-600); }
.icon-tile.green { background: linear-gradient(135deg, var(--green-100), #D2F0E0); }
.icon-tile.green svg { stroke: var(--green-600); }

/* Feature (why) items */
.feature {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  padding: 28px 24px;
  transition: transform .28s ease, box-shadow .28s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.feature h3 { font-size: 17.5px; margin: 16px 0 8px; }
.feature p { color: var(--slate-500); font-size: 14.5px; }
.feature .icon-tile { width: 48px; height: 48px; border-radius: 13px; }
.feature .icon-tile svg { width: 23px; height: 23px; }

/* Serve chips */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.serve-chip {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: var(--shadow-card);
}
.serve-chip:hover { transform: translateY(-4px); border-color: var(--blue-400); box-shadow: var(--shadow-card-hover); }
.serve-chip svg { width: 26px; height: 26px; stroke: var(--blue-600); }

/* Partner tiles */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.partner-tile {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}
.partner-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.partner-tile svg { width: 30px; height: 30px; stroke: var(--blue-600); margin: 0 auto 12px; }
.partner-tile h4 { font-size: 15.5px; font-weight: 700; }
.partner-tile p { font-size: 13.5px; color: var(--slate-500); margin-top: 6px; }

.disclaimer {
  text-align: center;
  font-size: 13.5px;
  color: var(--slate-400);
  margin-top: 28px;
  font-style: italic;
}

/* Program cards */
.program-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.program-card h3 { font-size: 17px; margin: 14px 0 7px; }
.program-card p { font-size: 14px; color: var(--slate-500); }
.program-card .badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-100);
  border-radius: 100px;
  padding: 3px 10px;
  margin-top: 12px;
}
.program-card .icon-tile { width: 46px; height: 46px; border-radius: 12px; }
.program-card .icon-tile svg { width: 22px; height: 22px; }

/* ------------------------------------------------------------
   Ecosystem diagram
------------------------------------------------------------ */
.eco-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.eco-svg { width: 100%; height: auto; }

.eco-grid-mobile { display: none; }

/* ------------------------------------------------------------
   Stats / counters
------------------------------------------------------------ */
.stats-band {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-num { font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -0.02em; }
.stat-num .unit { font-size: .6em; font-weight: 700; }
.stat-label { font-size: 14px; color: rgba(255,255,255,.75); margin-top: 6px; font-weight: 500; }

/* ------------------------------------------------------------
   Checklist (why finance through)
------------------------------------------------------------ */
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.check-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease;
}
.check-item:hover { transform: translateY(-3px); }
.check-item .check-ic {
  width: 34px; height: 34px; flex: none;
  border-radius: 50%;
  background: var(--green-100);
  display: flex; align-items: center; justify-content: center;
}
.check-item .check-ic svg { width: 17px; height: 17px; stroke: var(--green-600); }
.check-item h4 { font-size: 16px; margin-bottom: 4px; }
.check-item p { font-size: 14px; color: var(--slate-500); }

/* ------------------------------------------------------------
   FAQ
------------------------------------------------------------ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 22px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .chev { flex: none; width: 22px; height: 22px; transition: transform .3s ease; stroke: var(--blue-600); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--slate-500);
  font-size: 15.5px;
}

/* ------------------------------------------------------------
   CTA band
------------------------------------------------------------ */
.cta-band {
  background: linear-gradient(140deg, var(--blue-900), var(--blue-600));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,120,231,.4) 0%, transparent 65%);
  bottom: -320px; left: -180px;
}
.cta-band h2 { font-size: clamp(26px, 3.6vw, 40px); margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,.8); font-size: 17px; max-width: 620px; margin: 0 auto 34px; position: relative; }
.cta-band .hero-ctas { justify-content: center; position: relative; }

/* ------------------------------------------------------------
   Footer
------------------------------------------------------------ */
.footer {
  background: var(--blue-900);
  color: rgba(255,255,255,.75);
  padding: 64px 0 32px;
  font-size: 14.5px;
}
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
  padding-bottom: 40px;
  margin-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.trust-item svg { width: 17px; height: 17px; stroke: #7BB4FF; flex: none; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-brand .nav-logo { color: #fff; margin-bottom: 14px; font-size: 19px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 300px; }
.footer-brand .holdings {
  display: inline-block;
  margin-top: 16px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7BB4FF;
}
.footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,.7); transition: color .2s ease; font-size: 14.5px; }
.footer ul a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.65); margin-left: 20px; }
.footer-bottom a:hover { color: #fff; }

/* ------------------------------------------------------------
   Page helpers
------------------------------------------------------------ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.two-col h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 16px; }
.two-col p { color: var(--slate-500); font-size: 16.5px; margin-bottom: 14px; }

.value-panel {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 44px 38px;
}
.value-panel h3 { font-size: 24px; margin-bottom: 12px; }
.value-panel p { color: rgba(255,255,255,.8); font-size: 15.5px; margin-bottom: 0; }
.value-panel ul { list-style: none; margin-top: 18px; }
.value-panel ul li {
  padding-left: 30px;
  margin-bottom: 12px;
  position: relative;
  font-size: 15.5px;
  color: rgba(255,255,255,.9);
}
.value-panel ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(74,222,128,.25) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ADE80' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/10px no-repeat;
}

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.steps.steps-3 { grid-template-columns: repeat(3, 1fr); }
.step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-600);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step h4 { font-size: 16.5px; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--slate-500); }

/* Contact page */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; max-width: 900px; margin: 0 auto; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-card);
  padding: 44px 36px;
  text-align: center;
  transition: transform .28s ease, box-shadow .28s ease;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.contact-card .icon-tile { margin: 0 auto 20px; width: 64px; height: 64px; border-radius: 18px; }
.contact-card .icon-tile svg { width: 30px; height: 30px; }
.contact-card h3 { font-size: 22px; margin-bottom: 10px; }
.contact-card p { color: var(--slate-500); font-size: 15.5px; margin-bottom: 24px; }
.contact-card .btn { white-space: normal; word-break: break-word; font-size: 15px; padding: 14px 16px; }

/* ------------------------------------------------------------
   Reveal animations
------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------
   Responsive
------------------------------------------------------------ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .serve-grid, .partner-grid { grid-template-columns: repeat(3, 1fr); }
  .check-grid { grid-template-columns: repeat(2, 1fr); }
  .steps, .steps.steps-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding: 132px 0 72px; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .check-grid { grid-template-columns: 1fr; }
  .steps, .steps.steps-3 { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); padding: 40px 24px; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .flow-items { grid-template-columns: repeat(3, 1fr); }
  .hero-ctas .btn { width: 100%; }
  .cta-band { padding: 56px 26px; }
  .eco-svg-wrap { display: none; }
  .eco-grid-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .eco-grid-mobile .eco-center-chip {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
    color: #fff;
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    font-weight: 800;
    font-size: 17px;
  }
  .eco-grid-mobile .eco-chip {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 14px 10px;
    text-align: center;
    font-weight: 600;
    font-size: 13.5px;
    color: var(--slate-700);
    box-shadow: var(--shadow-card);
  }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom a { margin: 0 10px; }
}
