@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f8faff;
  --surface: #ffffff;
  --text: #0b1a48;
  --text-muted: #64748b;
  --accent: #ff7a00;
  --accent-dark: #1a3d8f;
  --accent-darker: #0f2a5f;
  --border: rgba(11, 26, 72, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: 1150px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}


.btn-finder,
.btn-expert,
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  padding: 12px 24px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-finder,
.hero-btn-secondary {
  background: rgba(26, 61, 143, 0.08);
  color: var(--accent-darker);
  border: 1px solid rgba(26, 61, 143, 0.15);
}

.btn-expert,
.hero-btn-primary {
  background: var(--accent);
  color: white;
}

.btn-finder:hover,
.btn-expert:hover,
.hero-btn:hover {
  transform: translateY(-1px);
}

.about-hero {
  background: linear-gradient(135deg, var(--accent-darker), var(--accent-dark));
  color: white;
  padding: 100px 0 80px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.about-hero h1 {
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 22px;
}

.about-hero p {
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.9);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 32px;
  padding: 36px;
  width: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

.hero-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(255,255,255,0.2);
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.5rem;
}

.hero-card h2 {
  margin: 0;
  font-size: 1.9rem;
}

.hero-card p {
  margin: 0;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
}

.about-highlights {
  margin-top: -40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 20px;
}

.highlight-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(11, 26, 72, 0.05);
}

.highlight-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-darker);
  margin-bottom: 14px;
}

.about-story,
.about-values,
.about-team,
.about-partners,
.about-cta {
  margin-top: 80px;
}

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

.story-image img {
  border-radius: 40px;
  box-shadow: 0 30px 80px rgba(11, 26, 72, 0.08);
}

.story-copy h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin: 0 0 24px;
  line-height: 1.05;
}

.story-copy p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 28px;
}

.story-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.story-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-weight: 600;
  color: var(--text);
}

.story-list li i {
  color: var(--accent);
  margin-top: 5px;
}

.section-header {
  max-width: 690px;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  margin: 14px 0 0;
  line-height: 1.08;
}

.about-values .values-grid,
.about-team .team-grid,
.about-partners .partner-logos {
  display: grid;
  gap: 24px;
}

.values-grid {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.value-card {
  background: white;
  border-radius: 30px;
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(11, 26, 72, 0.05);
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(255,122,0,0.12);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.value-card h3 {
  margin: 0 0 16px;
  font-size: 1.4rem;
}

.value-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.team-grid {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.team-card {
  background: white;
  border-radius: 30px;
  padding: 28px;
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: 0 18px 40px rgba(11, 26, 72, 0.06);
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 28px;
  margin-bottom: 22px;
}

.team-card h3 {
  margin: 0 0 10px;
}

.team-card p {
  margin: 0;
  color: var(--text-muted);
}

/* ==============================
   IMPACT SECTION
============================== */
.about-impact {
  margin-top: 80px;
  padding-bottom: 20px;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Eyebrow with accent */
.eyebrow-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 122, 0, 0.1);
  color: var(--accent);
  border: 1px solid rgba(255, 122, 0, 0.2);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.impact-narrative h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text);
  margin: 0 0 18px;
  letter-spacing: -0.5px;
}

.narrative-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 36px;
  max-width: 520px;
}

/* Feature list */
.impact-features-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.impact-feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.impact-feature-item:hover .feature-icon-box {
  transform: scale(1.12);
}

.orange-tint { background: rgba(255, 122, 0, 0.12); color: #ff7a00; }
.blue-tint   { background: rgba(30, 91, 255, 0.1);  color: #1e5bff; }
.purple-tint { background: rgba(124, 58, 237, 0.12); color: #7c3aed; }

.feature-info h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 5px;
}

.feature-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ── Bento Grid ── */
.impact-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.bento-card {
  position: relative;
  border-radius: 26px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s ease;
}

.bento-card:hover {
  transform: translateY(-8px);
}

.bento-num {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
}

.bento-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.8;
}

/* Bento glow blobs */
.bento-glow {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  bottom: -30px;
  right: -30px;
  filter: blur(40px);
  pointer-events: none;
  transition: transform 0.4s ease;
}

.bento-card:hover .bento-glow {
  transform: scale(1.3);
}

/* Card colour variants */
.card-orange {
  background: linear-gradient(135deg, #fff4e6 0%, #ffe6c8 100%);
  border-color: rgba(255, 122, 0, 0.15);
  color: #b44a00;
  box-shadow: 0 20px 50px rgba(255, 122, 0, 0.1);
}
.card-orange .bento-num  { color: #ff7a00; }
.card-orange .bento-glow { background: #ff7a00; opacity: 0.3; }

.card-blue {
  background: linear-gradient(135deg, #e9f0ff 0%, #d4e3ff 100%);
  border-color: rgba(30, 91, 255, 0.15);
  color: #0a2d8f;
  box-shadow: 0 20px 50px rgba(30, 91, 255, 0.1);
}
.card-blue .bento-num  { color: #1e5bff; }
.card-blue .bento-glow { background: #1e5bff; opacity: 0.3; }

.card-purple {
  background: linear-gradient(135deg, #f3e8ff 0%, #e6d0ff 100%);
  border-color: rgba(124, 58, 237, 0.15);
  color: #5b1fa8;
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.1);
}
.card-purple .bento-num  { color: #7c3aed; }
.card-purple .bento-glow { background: #7c3aed; opacity: 0.3; }

.card-teal {
  background: linear-gradient(135deg, #d8fdf4 0%, #b2f5e5 100%);
  border-color: rgba(16, 185, 129, 0.15);
  color: #065f46;
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.1);
}
.card-teal .bento-num  { color: #10b981; }
.card-teal .bento-glow { background: #10b981; opacity: 0.3; }

/* ── CTA section ── */
.about-cta .cta-card {
  background: linear-gradient(135deg, rgba(26,61,143,0.95), rgba(11,42,95,0.95));
  padding: 42px 36px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: white;
}

.about-cta .cta-card h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.1;
}

  @media (max-width: 980px) {
    .hero-content {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .about-highlights {
      grid-template-columns: 1fr;
    }

    .story-grid,
    .about-values .values-grid,
    .about-team .team-grid,
    .about-partners .partner-logos {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .hero-btn,
    .hero-buttons {
      width: 100%;
    }

    .hero-buttons {
      justify-content: flex-start;
      gap: 14px;
    }

    .hero-card {
      min-height: auto;
      padding: 30px;
    }

    .highlight-item,
    .value-card,
    .team-card,
    .partner-logo {
      padding: 26px;
    }

    .story-image img,
    .team-card img {
      width: 100%;
      height: auto;
    }

    .partner-logos {
      grid-template-columns: repeat(2, minmax(180px, 1fr));
    }

    .about-cta .cta-card {
      flex-direction: column;
      align-items: stretch;
      gap: 18px;
    }

    .about-partners .section-header {
      text-align: left;
      margin-bottom: 28px;
    }

    /* Impact section – tablet */
    .impact-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .impact-bento-grid {
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .narrative-desc {
      max-width: 100%;
    }
  }

  @media (max-width: 720px) {
    .about-hero {
      padding: 70px 0 50px;
    }

    .hero-content {
      gap: 24px;
    }

    .hero-buttons {
      gap: 12px;
      flex-direction: column;
    }

    .hero-buttons a {
      width: 100%;
    }

    .about-highlights {
      gap: 16px;
    }

    .story-grid,
    .about-values .values-grid,
    .about-team .team-grid {
      grid-template-columns: 1fr;
    }

    .about-cta .cta-card {
      padding: 26px 22px;
    }

    .about-cta .cta-card h2 {
      font-size: 2rem;
    }

    /* Impact section – mobile */
    .impact-grid {
      gap: 28px;
    }

    .impact-bento-grid {
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .bento-card {
      padding: 22px 18px;
      border-radius: 20px;
    }

    .bento-num {
      font-size: 1.8rem;
    }

    .impact-features-list {
      gap: 18px;
    }

    .feature-icon-box {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }

    .impact-narrative h2 {
      font-size: 1.7rem;
    }
  }
