/* Self-hosted fonts — Inter and Sora */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/sora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/sora-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

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

:root {
  --navy: #0F0F0F;
  --navy-deep: #000000;
  --navy-light: #1A1A1A;
  --teal: #10B981;
  --teal-dark: #059669;
  --teal-light: #ECFDF5;
  --charcoal: #111111;
  --gray-bg: #F5F5F5;
  --gray-text: #555555;
  --gray-muted: #888888;
  --gray-mid: #6B7280;
  --gray-border: #E0E0E0;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1A1A1A;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Sora', sans-serif; line-height: 1.2; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
}

.nav.scrolled .nav-logo { color: var(--navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.3s;
}

.nav-links a:hover::after { width: 100%; }
.nav.scrolled .nav-links a { color: var(--navy); }
.nav.scrolled .nav-links a:hover { color: var(--teal); }

.nav-links a.active { color: var(--teal); }
.nav-links a.active::after { width: 100%; }

.nav-cta,
.nav.scrolled .nav-cta {
  background: var(--teal);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover,
.nav.scrolled .nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }
.nav-cta::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: background 0.3s, transform 0.3s;
  display: block;
}

.nav.scrolled .hamburger span { background: var(--navy); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

.mobile-menu .btn-primary {
  margin-top: 16px;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16,185,129,0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

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

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid var(--teal);
  color: var(--teal);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-cta-inline {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
}

.btn-cta-inline:hover { background: var(--teal-dark); transform: translateY(-1px); }

.section { padding: 80px 0; }
.section-gray { background: var(--gray-bg); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.7;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 0.9rem;
}

/* Shared hero gradient background — reused across all page heroes */
.hero::before,
.reviews-hero::before,
.services-hero::before,
.fg-hero::before,
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(16,185,129,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(16,185,129,0.05) 0%, transparent 50%);
}

/* Shared diagonal stripe texture — reused across page heroes */
.reviews-hero::after,
.services-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
  pointer-events: none;
}

.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 160px 0 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(30deg, var(--white) 12%, transparent 12.5%, transparent 87%, var(--white) 87.5%, var(--white)),
    linear-gradient(150deg, var(--white) 12%, transparent 12.5%, transparent 87%, var(--white) 87.5%, var(--white)),
    linear-gradient(30deg, var(--white) 12%, transparent 12.5%, transparent 87%, var(--white) 87.5%, var(--white)),
    linear-gradient(150deg, var(--white) 12%, transparent 12.5%, transparent 87%, var(--white) 87.5%, var(--white));
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-text h1 .accent { color: var(--teal); }

.hero-text p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.hero-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-ring {
  position: absolute;
  border: 1px solid rgba(16,185,129,0.12);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-ring-1 { width: 320px; height: 320px; }
.hero-ring-2 { width: 420px; height: 420px; border-style: dashed; opacity: 0.5; }

.hero-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  position: absolute;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.hero-card-main {
  position: relative;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  padding: 24px 28px;
  border-radius: var(--radius);
  z-index: 3;
}

.hero-card-num {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-card-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.hero-card-float {
  animation: floatCard 6s ease-in-out infinite;
}

.hero-card-1 { top: 5%; right: 0; animation-delay: 0s; }
.hero-card-2 { bottom: 20%; left: -5%; animation-delay: 1.5s; }
.hero-card-3 { bottom: 5%; right: -5%; animation-delay: 3s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Funding Explorer */

.explorer-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.explorer-display {
  text-align: center;
  margin-bottom: 40px;
}

.explorer-amount {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.explorer-bar-wrap {
  position: relative;
  height: 8px;
  background: var(--gray-border);
  border-radius: 8px;
  margin-bottom: 8px;
}

.explorer-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), #34d399);
  border-radius: 8px;
  transition: width 0.15s ease;
  pointer-events: none;
}

.explorer-slider {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 28px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.explorer-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  background: var(--teal);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: grab;
}

.explorer-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  background: var(--teal);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: grab;
}

.explorer-slider:active::-webkit-slider-thumb { cursor: grabbing; transform: scale(1.15); }

.explorer-range {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray-muted);
  font-weight: 500;
}

.explorer-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.explorer-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.explorer-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(16,185,129,0.12);
  transform: translateY(-2px);
}

.explorer-card i {
  color: var(--teal);
  margin-bottom: 12px;
}

.explorer-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  min-height: 1.2em;
  transition: color 0.2s;
}

.explorer-card p {
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.5;
}

.explorer-cta {
  text-align: center;
}

.explorer-note {
  display: block;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--gray-muted);
}

/* ROI Calculator */

.roi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.roi-input-side h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.roi-input-side p {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.roi-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.roi-input-wrap {
  display: flex;
  align-items: center;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s;
}

.roi-input-wrap:focus-within {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
}

.roi-prefix {
  padding: 14px 0 14px 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-muted);
}

.roi-input-wrap input {
  flex: 1;
  border: none;
  padding: 14px 16px 14px 4px;
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  background: transparent;
  outline: none;
}

.roi-input-wrap input::placeholder {
  color: var(--gray-border);
  font-weight: 500;
}

.roi-result-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 36px 32px;
  color: var(--white);
}

.roi-result-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.roi-result-num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  transition: all 0.3s;
}

.roi-result-bar {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  margin-bottom: 24px;
  overflow: hidden;
}

.roi-result-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), #34d399);
  border-radius: 6px;
  transition: width 0.4s ease;
}

.roi-result-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.roi-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.roi-detail-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.roi-detail-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.roi-disclaimer {
  font-size: 0.78rem;
  color: var(--gray-muted);
  margin-top: 16px;
  line-height: 1.5;
}

/* Impact Story Section */

.impact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.impact-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.impact-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.impact-text h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.impact-text p {
  font-size: 1.02rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 16px;
}

.impact-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.impact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--teal);
}

.impact-link:hover { text-decoration: underline; text-underline-offset: 3px; }


.stats {
  background: var(--navy);
  padding: 48px 0;
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 24px;
}

.stat-item {
  position: relative;
  padding: 0 24px;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.stats-band {
  background: var(--navy);
  padding: 48px 0;
}

.stats-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
  display: block;
}

.how-it-works {
  background: var(--gray-bg);
  padding: 100px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(16,185,129,0.3));
  z-index: 0;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 auto 24px;
  box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.65;
}

.why-us {
  background: var(--white);
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.65;
}

.services-preview {
  background: var(--gray-bg);
  padding: 100px 0;
}

.services-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.services-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.services-text p {
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 28px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-weight: 500;
  font-size: 1rem;
  color: var(--navy);
  transition: transform 0.2s, box-shadow 0.2s;
}

.services-list li:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.services-list li i { color: var(--teal); flex-shrink: 0; }

.testimonials {
  background: var(--navy);
  padding: 100px 0;
}

.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p { color: rgba(255,255,255,0.6); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars i { color: var(--teal); width: 20px; height: 20px; fill: var(--teal); }

.testimonial-card blockquote {
  font-size: 1rem;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.9rem;
  color: var(--gray-muted);
  font-weight: 600;
}

.review-badge {
  text-align: center;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.review-badge .stars { color: var(--teal); display: flex; gap: 2px; }

.partner-callout {
  background: var(--teal-light);
  padding: 100px 0;
}

.partner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.partner-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.partner-text p {
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 28px;
}

.partner-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--teal);
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  color: var(--teal);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.partner-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.partner-card p {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.65;
}

.cta-banner {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

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

.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-secondary {
  display: block;
  margin-top: 16px;
  color: var(--white);
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-secondary:hover { opacity: 0.85; }

.reviews-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.reviews-eyebrow {
  display: inline-block;
  background: rgba(16,185,129,0.15);
  color: var(--teal);
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.reviews-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.1rem;
  letter-spacing: -0.5px;
}

.reviews-hero h1 em {
  font-style: normal;
  color: var(--teal);
}

.reviews-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.rating-summary {
  background: var(--teal-light);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.rating-big { text-align: center; min-width: 80px; }

.rating-num {
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  display: block;
}

.rating-out {
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-top: 0.2rem;
}

.rating-detail { flex: 1; }

.rating-detail p {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.rating-detail strong { color: var(--navy); font-weight: 600; }

.rating-divider {
  width: 1px;
  height: 60px;
  background: rgba(16,185,129,0.2);
}

.stars-svg {
  display: flex;
  gap: 3px;
  margin-bottom: 0.9rem;
}

.star-icon {
  width: 18px;
  height: 18px;
  fill: var(--teal);
}

.platforms-section { padding: 80px 0; }
.platforms-container { max-width: 900px; margin: 0 auto; }

.platform-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-border);
}

.platform-block:last-child { border-bottom: none; }

.platform-logo-wrap {
  display: flex;
  align-items: center;
  padding-top: 0.5rem;
}

.platform-logo-box {
  width: 100%;
  max-width: 160px;
  padding: 1rem 1.25rem;
  background: var(--gray-bg);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-name {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}

.platform-name.google { color: #4285F4; }
.platform-name.bbb    { color: #003087; }
.platform-name.fb     { color: #1877F2; }

.platform-quote {
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 0.85rem;
  position: relative;
  padding-left: 1.2rem;
  border-left: 3px solid var(--teal);
}

.platform-attr {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.platform-link:hover { border-color: var(--teal); }

.platform-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.spotlight-text h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

.spotlight-text p {
  font-size: 0.97rem;
  color: var(--gray-mid);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.spotlight-attr {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.attr-avatar {
  width: 48px;
  height: 48px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.attr-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.attr-info span {
  font-size: 0.82rem;
  color: var(--gray-mid);
}

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

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(13,27,62,0.08);
}

.card-quote {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 1.25rem;
}

.card-attr {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-border);
}

.card-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.card-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
}

.card-biz {
  font-size: 0.78rem;
  color: var(--gray-mid);
}

.card-tag {
  margin-top: 1rem;
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

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

.story-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
  display: block;
}

.story-card-full {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--gray-border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.story-card-full:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.story-card-full h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px;
}

.story-card-full p {
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.story-result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
}

.story-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.spotlight-photo {
  border-radius: 14px;
  overflow: hidden;
}

.spotlight-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/9;
}

.about-team-photo {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  object-fit: cover;
}

.footer {
  background: var(--navy);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .footer-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand .footer-logo .logo-icon {
  width: 32px;
  height: 32px;
  background: var(--teal);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer h4 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact a, .footer-contact span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--teal); }
.footer-contact i { color: var(--teal); width: 18px; height: 18px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--teal); }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.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; }

.hero-text > * {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.7s ease forwards;
}

.hero-text > *:nth-child(1) { animation-delay: 0.2s; }
.hero-text > *:nth-child(2) { animation-delay: 0.35s; }
.hero-text > *:nth-child(3) { animation-delay: 0.5s; }

@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-graphic {
  opacity: 0;
  animation: heroFadeIn 0.8s ease forwards;
  animation-delay: 0.6s;
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-graphic { display: none; }
  .hero { min-height: auto; padding: 140px 0 80px; }
  .steps-grid::before { display: none; }
  .services-inner, .partner-inner { grid-template-columns: 1fr; gap: 40px; }
  .spotlight-grid { grid-template-columns: 1fr; }
  .explorer-cards { grid-template-columns: repeat(2, 1fr); }
  .impact-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* General spacing */
  .section { padding: 60px 0; }
  .how-it-works, .why-us, .services-preview, .testimonials, .partner-callout { padding: 60px 0; }
  .cta-banner { padding: 48px 0; }
  .cta-banner h2 { font-size: 1.5rem; }
  .cta-banner p { font-size: 0.95rem; }

  /* Homepage hero - keep as-is, no changes */

  /* Stats */
  .stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .stat-item::after { display: none; }
  .stats-inner { grid-template-columns: 1fr; gap: 1rem; }
  .stats-band .stat-item:not(:last-child)::after { display: none; }

  /* Homepage sections kept as-is per request */

  /* Steps / Features / Grid layouts */
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Homepage ROI calculator */
  .roi-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Reviews page */
  .reviews-hero { padding: 120px 0 60px; }
  .reviews-hero h1 { font-size: 2rem; }
  .rating-summary { flex-direction: column; text-align: center; gap: 1.5rem; padding: 1.5rem; }
  .rating-divider { display: none; }
  .rating-detail { text-align: center; }
  .cards-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-card-img { height: 160px; }
  .platform-block { grid-template-columns: 1fr; gap: 1.5rem; }
  .platform-logo-box { max-width: 140px; }
  .spotlight-grid { gap: 2rem; }
  .spotlight-text h3 { font-size: 1.2rem; }

  /* Services, Fund Guardian, About — media queries moved after their base CSS */

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .mobile-sticky-cta { display: block; }
  .footer { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .about-stats-grid { grid-template-columns: 1fr; }
  .svc-table-wrap { margin: 0 -16px; padding: 0 16px; }
  .container { padding: 0 16px; }
}

.services-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.services-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.1rem;
  letter-spacing: -0.5px;
}

.services-hero h1 em {
  font-style: normal;
  color: var(--teal);
}

.services-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.svc-intro {
  padding: 80px 0;
  overflow: hidden;
}

.svc-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.svc-intro-text h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.svc-intro-text p {
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.7;
}

.svc-req-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border-left: 4px solid var(--teal);
  box-shadow: var(--shadow-md);
}

.svc-req-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.svc-req-card > p {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 16px;
}

.svc-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.svc-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
}

.svc-checklist li i { color: var(--teal); flex-shrink: 0; }

.svc-disclaimer {
  font-size: 0.8rem;
  color: var(--gray-muted);
  line-height: 1.5;
}

.svc-category {
  padding: 80px 0;
}

.svc-white { background: var(--white); }
.svc-gray { background: var(--gray-bg); }

.svc-category-inner {
  max-width: 800px;
  margin: 0 auto;
}

.svc-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.svc-category-icon {
  width: 44px;
  height: 44px;
  color: var(--teal);
  flex-shrink: 0;
}

.svc-category-header h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.svc-category-inner > p {
  font-size: 1.02rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 24px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.svc-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--gray-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-border);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.svc-gray .svc-grid li {
  background: var(--white);
}

.svc-grid li:hover {
  border-color: var(--teal);
  box-shadow: 0 2px 8px rgba(16,185,129,0.1);
}

.svc-grid li i {
  color: var(--teal);
  flex-shrink: 0;
}

.svc-industries h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.svc-industries-intro {
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.svc-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.svc-pill {
  display: inline-block;
  padding: 10px 20px;
  border: 1.5px solid var(--navy);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: background 0.2s, color 0.2s;
}

.svc-pill:hover {
  background: var(--navy);
  color: var(--white);
}

.svc-compare h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.svc-compare-intro {
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.svc-table-wrap {
  overflow-x: auto;
}

.svc-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

.svc-table th {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
  padding: 12px 16px;
  border-bottom: 2px solid var(--gray-border);
}

.svc-table td {
  padding: 14px 16px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--gray-border);
}

.svc-table td strong {
  color: var(--navy);
  font-weight: 700;
}

.svc-table tbody tr:nth-child(even) {
  background: rgba(0,0,0,0.02);
}

.svc-faq h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--gray-border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-q h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.faq-q i {
  color: var(--teal);
  transition: transform 0.3s;
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-a p {
  font-size: 0.97rem;
  color: var(--gray-text);
  line-height: 1.75;
}


@media (max-width: 1024px) {
  .svc-intro-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .services-hero { padding: 120px 0 60px; }
  .services-hero h1 { font-size: 1.8rem; }
  .svc-intro { padding: 60px 0; }
  .svc-intro-inner { grid-template-columns: 1fr; gap: 24px; }
  .svc-req-card { padding: 24px 20px; }
  .svc-category { padding: 60px 0; }
  .svc-category-header { flex-direction: column; text-align: center; }
  .svc-category-icon { width: 36px; height: 36px; }
  .svc-category-header h3 { font-size: 1.3rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-pills { gap: 8px; }
  .svc-pill { padding: 8px 14px; font-size: 0.8rem; }
  .svc-table { font-size: 0.78rem; }
  .svc-table th, .svc-table td { padding: 8px 6px; }
  .faq-q h3 { font-size: 0.92rem; }
}

/* Fund Guardian Page */

.fg-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fg-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.fg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16,185,129,0.15);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.fg-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.fg-subtitle {
  font-size: 1.15rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 20px;
}

.fg-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.fg-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.fg-split-text h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.fg-split-text p {
  font-size: 1.02rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 16px;
}

.fg-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fg-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.fg-benefit i {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.fg-benefit h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.fg-benefit p {
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 1.6;
}


@media (max-width: 768px) {
  .fg-hero { padding: 120px 0 60px; }
  .fg-hero h1 { font-size: 2rem; }
  .fg-split { grid-template-columns: 1fr; gap: 40px; }
}

/* About Page */

.about-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.1rem;
}

.about-hero h1 em { font-style: normal; color: var(--teal); }

.about-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.about-story-text h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.about-story-text p {
  font-size: 1.02rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-founder-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--teal);
  text-align: center;
}

.about-founder-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.about-founder-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.about-founder-bio {
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 1.65;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.about-value {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-value:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-value-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 16px;
}

.about-value h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.about-value p {
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 1.65;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.about-stat {
  text-align: center;
}

.about-stat-num {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 0.9rem;
  color: var(--gray-text);
  font-weight: 500;
}

.about-sister-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-sister-text h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.about-sister-text p {
  font-size: 1.02rem;
  color: var(--gray-text);
  line-height: 1.75;
}


@media (max-width: 1024px) {
  .about-story-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .about-hero { padding: 120px 0 60px; }
  .about-hero h1 { font-size: 2rem; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about-stat-num { font-size: 1.6rem; }
  .about-founder-card { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .about-stats-grid { grid-template-columns: 1fr; }
}

/* Legal Pages (Privacy, Terms) */

.legal-page {
  padding: 140px 0 80px;
  background: var(--white);
}

.legal-container {
  max-width: 740px;
  margin: 0 auto;
}

.legal-updated {
  font-size: 0.82rem;
  color: var(--gray-muted);
  margin-bottom: 8px;
}

.legal-page h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-page h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.legal-page p {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-page ul {
  margin: 0.5rem 0 1rem 1.5rem;
  list-style: disc;
}

.legal-page ul li {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 0.25rem;
}

/* Trust Badges */

.trust-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.3px;
}

.trust-badge i {
  color: var(--teal);
}

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 12px 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 998;
}

.mobile-sticky-cta a {
  display: block;
  text-align: center;
  background: var(--teal);
  color: var(--white);
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
}


/* Survey / Application Page */

.nav-apply {
  background: var(--white);
  box-shadow: 0 1px 0 var(--gray-border);
  padding: 12px 0;
}

.nav-apply .nav-logo { color: var(--navy); }
.nav-apply .nav-links a { color: var(--navy); }
.nav-apply .nav-links a:hover { color: var(--teal); }
.nav-apply .hamburger span { background: var(--navy); }

.survey-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  background: var(--white);
}

.survey-container {
  width: 100%;
  max-width: 640px;
  position: relative;
}

.survey-progress {
  height: 4px;
  background: var(--gray-border);
  border-radius: 4px;
  margin-bottom: 48px;
  overflow: hidden;
}

.survey-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--teal);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.survey-slides {
  position: relative;
  min-height: 420px;
}

.survey-slide {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.survey-slide.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.survey-slide.exit {
  display: block;
  opacity: 0;
  transform: translateY(-20px);
}

.survey-slide-inner {
  max-width: 100%;
}

.survey-step-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.survey-slide h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}

.survey-slide h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.survey-slide > .survey-slide-inner > p {
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 32px;
}

.survey-field {
  margin-bottom: 20px;
}

.survey-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.survey-field input,
.survey-field select {
  width: 100%;
  padding: 16px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--navy);
  background: var(--gray-bg);
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.survey-field input:focus,
.survey-field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
}

.survey-field input::placeholder {
  color: var(--gray-muted);
}

.survey-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.survey-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.survey-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.survey-option {
  padding: 16px 20px;
  background: var(--gray-bg);
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  text-align: left;
}

.survey-option:hover {
  border-color: var(--teal);
  background: var(--teal-light);
}

.survey-option.selected {
  border-color: var(--teal);
  background: var(--teal-light);
  color: var(--teal);
  font-weight: 600;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
}

.survey-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  gap: 16px;
}

.survey-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-text);
  cursor: pointer;
  padding: 10px 0;
  transition: color 0.2s;
}

.survey-back:hover { color: var(--navy); }

.survey-consent {
  margin: 24px 0;
  padding: 20px;
  background: var(--gray-bg);
  border-radius: var(--radius-sm);
}

.survey-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.6;
}

.survey-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: var(--teal);
  margin-top: 2px;
}

.survey-legal {
  font-size: 0.75rem;
  color: var(--gray-muted);
  line-height: 1.6;
  margin-top: 20px;
}

.survey-success {
  text-align: center;
  padding: 40px 0;
}

.survey-success-icon {
  color: var(--teal);
  margin-bottom: 24px;
}

.survey-success h2 {
  margin-bottom: 16px;
}

.survey-success p {
  max-width: 480px;
  margin: 0 auto 32px;
}

.survey-success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .survey-fields-row { grid-template-columns: 1fr; }
  .survey-options { grid-template-columns: 1fr; }
  .survey-page { padding: 90px 20px 40px; }
  .survey-nav { flex-direction: column-reverse; gap: 12px; }
  .survey-nav .btn-primary { width: 100%; justify-content: center; }
}

/* ========================================
   Accessibility
   ======================================== */

/* Focus-visible styles for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.nav-links a:focus-visible,
.btn-primary:focus-visible,
.btn-outline:focus-visible,
.btn-ghost:focus-visible,
.btn-white:focus-visible,
.btn-cta-inline:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.survey-field input:focus-visible,
.survey-field select:focus-visible {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
}

/* Skip-to-content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--teal);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

/* Reduced motion for users with vestibular disorders */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-text > * {
    opacity: 1;
    transform: none;
  }

  .hero-graphic {
    opacity: 1;
  }
}
