 
 :root {
      --primary: #4b6fff;
      --primary-dark: #3249b3;
      --accent: #8b5cf6;
      --bg: #f5f7fb;
      --bg-dark: #0f172a;
      --text-main: #0f172a;
      --text-muted: #6b7280;
      --white: #ffffff;
      --border: #e5e7eb;
      --radius-lg: 16px;
      --radius-md: 10px;
      --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
      --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.08);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--text-main);
      line-height: 1.6;
    }

    @keyframes fadeAnimation {
  0% { opacity: 0; }
  100% { opacity: 1; }
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* Layout */
    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .container {
      width: 100%;
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* Sticky Header */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
}

/* Layout */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* Desktop Nav */
.nav-links {
  display: flex;
  gap: 1.8rem;
}

.nav-links a {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a.active,
.nav-links a:hover {
  color: #3249b3;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #4b6fff, #8b5cf6);
  border-radius: 2px;
}

/* CTA Button */
.btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.6rem 1.2rem;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 0.9rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.18s ease;
      white-space: nowrap;
    }

.btn-primary {
  background: linear-gradient(135deg, #4b6fff, #8b5cf6);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}
    
.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--primary-dark);
  border-color: rgba(148, 163, 184, 0.7);
}

.btn-ghost:hover {
  background: rgba(148, 163, 184, 0.08);
}

/* Mobile Menu Button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-menu a {
  padding: 0.8rem 0;
  color: #374151;
  text-decoration: none;
  font-size: 1rem;
}

.mobile-cta {
  margin-top: 1rem;
  width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-menu.show {
    display: flex;
  }
}


    /* Hero */
    .hero {
      padding: 3.5rem 0 3rem;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 3rem;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.15rem 0.7rem;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.08);
      color: var(--primary-dark);
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 0.9rem;
    }

    .eyebrow-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, var(--accent), var(--primary));
    }

    .hero h1 {
      font-size: clamp(2.2rem, 3vw, 2.8rem);
      line-height: 1.1;
      margin-bottom: 1rem;
      color: var(--bg-dark);
      animation: fadeIn 1.2s ease-in-out;
    }

    .hero h1 span {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-sub {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 32rem;
      margin-bottom: 1.6rem;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 1.4rem;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .hero-meta span {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .hero-meta-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.9);
    }

    .hero-visual {
      background: radial-gradient(circle at 0% 0%, rgba(79, 70, 229, 0.18), transparent 55%),
                  radial-gradient(circle at 100% 100%, rgba(236, 72, 153, 0.16), transparent 55%);
      border-radius: var(--radius-lg);
      padding: 1.8rem;
      box-shadow: var(--shadow-soft);
      background-color: var(--bg-dark);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .hero-visual-title {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: rgba(226, 232, 240, 0.8);
      margin-bottom: 0.6rem;
    }

    .hero-visual-main {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 1.2rem;
    }

    .hero-visual-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.75rem;
      margin-bottom: 1.4rem;
    }

    .hero-chip {
      border-radius: 999px;
      padding: 0.35rem 0.7rem;
      font-size: 0.7rem;
      background: rgba(15, 23, 42, 0.7);
      border: 1px solid rgba(148, 163, 184, 0.4);
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      justify-content: center;
    }

    .hero-chip-dot {
      width: 5px;
      height: 6px;
      border-radius: 700px;
      background: radial-gradient(circle at 30% 30%, #22c55e, #16a34a);
    }

    .hero-visual-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.75rem;
      color: rgba(209, 213, 219, 0.9);
    }

    .hero-pill {
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      background: rgba(15, 23, 42, 0.7);
    }

    /* Sections */
    section {
      padding: 2.5rem 0;
    }

    .section-header {
      margin-bottom: 1.8rem;
    }

    .section-eyebrow {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
      margin-bottom: 0.4rem;
    }

    .section-title {
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--bg-dark);
      margin-bottom: 0.4rem;
    }

    .section-sub {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 32rem;
    }

    /* Leakage section */
    .leakage-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.4rem;
    }

    .card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 1.3rem;
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(226, 232, 240, 0.9);
      animation-name: fadeAnimation;
      animation-duration: 1s;
      animation-timing-function: ease;
      animation-delay: 0.1s;
      animation-iteration-count: 1;
      animation-direction: normal;
      animation-fill-mode: backwards;

    }
   



    .card-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 0.6rem;
      color: var(--text-muted);
    }

    .tag-dot-red {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, #f97373, #ef4444);
    }

    .tag-dot-amber {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, #facc15, #eab308);
    }

    .tag-dot-yellow {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, #fbbf24, #f59e0b);
    }

    .card-title {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .card-sub {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 0.7rem;
    }

    .card-list {
      list-style: none;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .card-list li {
      display: flex;
      gap: 0.4rem;
      margin-bottom: 0.25rem;
    }

    .card-bullet {
      margin-top: 0.3rem;
      width: 4px;
      height: 4px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.9);
      flex-shrink: 0;
    } 

    /* Execution architecture */
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.2rem;
    }

    .pillar-card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 1.1rem;
      border: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: var(--shadow-card);
      animation-name: fadeAnimation;
      animation-duration: 1.5s;
      animation-timing-function: ease;
      animation-delay: 0.3s;
      animation-iteration-count: 1;
      animation-direction: normal;
      animation-fill-mode: forwards;
    }

    .pillar-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
      margin-bottom: 0.3rem;
    }

    .pillar-title {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.2rem;
    }

    .pillar-sub {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 0.6rem;
    }

    .pillar-list {
      list-style: none;
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-bottom: 0.7rem;
    }

    .pillar-list li {
      display: flex;
      gap: 0.4rem;
      margin-bottom: 0.25rem;
    }

    .pillar-cta {
      font-size: 0.8rem;
      color: var(--primary-dark);
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      cursor: pointer;
    }

    /* CEO/COO section */
    .two-col {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.4rem;
    }

    .role-card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 1.3rem;
      border: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: var(--shadow-card);
    }

    .role-title {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
      margin-bottom: 0.4rem;
    }

    .role-heading {
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 0.6rem;
    }

    .role-list {
      list-style: none;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .role-list li {
      display: flex;
      gap: 0.4rem;
      margin-bottom: 0.25rem;
    }

    /* Impact section */
    .impact-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.2rem;
    }

    .impact-card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 1.1rem;
      border: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: var(--shadow-card);
    }

    .impact-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
      margin-bottom: 0.3rem;
    }

    .impact-metric {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .impact-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* Insights */
    .insights-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.2rem;
    }

    .insight-card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 1.1rem;
      border: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: var(--shadow-card);
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .insight-tag {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
    }

    .insight-title {
      font-size: 0.95rem;
      font-weight: 600;
    }

    .insight-sub {
      font-size: 0.85rem;
      color: var(--text-muted);
      flex: 1;
    }

    .insight-link {
      font-size: 0.8rem;
      color: var(--primary-dark);
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
    }

    /* CTA strip */
    .cta-strip {
      margin-top: 1.5rem;
      padding: 1.8rem 1.5rem;
      border-radius: var(--radius-lg);
      background: radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.18), transparent 55%),
                  radial-gradient(circle at 100% 100%, rgba(236, 72, 153, 0.18), transparent 55%),
                  var(--bg-dark);
      color: var(--white);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      box-shadow: var(--shadow-soft);
    }

    .cta-strip-text {
      max-width: 32rem;
    }

    .cta-strip-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .cta-strip-sub {
      font-size: 0.9rem;
      color: rgba(226, 232, 240, 0.9);
    }

    .cta-button {
    background: linear-gradient(135deg, #4b6fff, #8b5cf6);
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
  }

  .cta-button:hover {
    background: linear-gradient(135deg, #FFD7E8, #f6665c);
    filter: brightness(1.05);
    transform: translateY(-2px);
  }
    /* Footer */
    footer {
      margin-top: 2.5rem;
      padding: 2rem 0 1.5rem;
      border-top: 1px solid rgba(226, 232, 240, 0.9);
      background: #f9fafb;
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .footer-links {
      display: flex;
      gap: 1.2rem;
    }

    .footer-cta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    /* Responsive */
    @media (max-width: 960px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero-visual {
        order: -1;
      }
      .leakage-grid,
      .pillars-grid,
      .two-col,
      .impact-grid,
      .insights-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .nav-links {
        display: none;
      }
    }

    @media (max-width: 640px) {
      .hero {
        padding-top: 2.5rem;
      }
      .cta-strip {
        padding: 1.4rem 1.1rem;
      }
      .nav-cta .btn-ghost {
        display: none;
      }
    }

     /* HERO */
    .services-hero {
      text-align: center;
      padding: 4rem 0 2rem;
    }

    .services-title {
      font-size: 2.4rem;
      font-weight: 700;
    }

    .services-subtitle {
      font-size: 1.2rem;
      color: var(--muted);
      margin-top: 0.5rem;
    }

    .services-description {
      font-size: 1rem;
      color: var(--muted);
      max-width: 600px;
      margin: 1rem auto 0;
    }

    /* GRID */
    .services-grid-section {
      padding: 2rem 0 3rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .service-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 1.8rem;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
    }

    .service-icon {
      font-size: 2rem;
      margin-bottom: 0.8rem;
    }

    .service-title {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 0.2rem;
    }

    .service-subtitle {
      font-size: 1rem;
      color: var(--muted);
      margin-bottom: 0.8rem;
    }

    .service-description {
      font-size: 0.95rem;
      color: var(--muted);
      margin-bottom: 1rem;
    }

    .service-list {
      list-style: none;
      padding: 0;
      margin-bottom: 1.2rem;
    }

    .service-list li {
      display: flex;
      gap: 0.4rem;
      margin-bottom: 0.4rem;
      font-size: 0.9rem;
      color: var(--muted);
    }

    .bullet {
      width: 6px;
      height: 6px;
      background: #9ca3af;
      border-radius: 50%;
      margin-top: 0.4rem;
    }

    .service-cta {
      margin-top: auto;
      background: none;
      border: none;
      color: #3249b3;
      font-size: 0.9rem;
      cursor: pointer;
      padding: 0;
      text-align: left;
    }

    .service-cta:hover {
      text-decoration: underline;
    }

    /* CTA BANNER */
    .services-cta {
      margin-top: 2rem;
      padding: 2.5rem 0;
      background: radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.18), transparent 55%),
                  radial-gradient(circle at 100% 100%, rgba(236, 72, 153, 0.18), transparent 55%),
                  var(--dark);
      color: var(--white);
    }

    .cta-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      align-items: center;
    }

    .cta-title {
      font-size: 1.5rem;
      font-weight: 600;
    }

    .cta-sub {
      font-size: 1rem;
      color: #e2e8f0;
      max-width: 500px;
    }

    .cta-button {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: var(--white);
      border: none;
      padding: 0.9rem 1.6rem;
      border-radius: 999px;
      font-size: 0.95rem;
      cursor: pointer;
      box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
    }

    .cta-button:hover {
      filter: brightness(1.05);
      transform: translateY(-2px);
    }


  /* .leakage-section {
    padding: 3rem 0;
    background-color: #f5f7fb;
  }

  .section-header {
    margin-bottom: 2rem;
    text-align: center;
  }

  .section-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b7280;
  }

  .section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0.5rem 0;
  }

  .section-sub {
    font-size: 1rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
  }

  
  .execution-section {
    padding: 3rem 0;
    background: #ffffff;
  }

  .section-header {
    margin-bottom: 2rem;
    text-align: center;
  }

  .section-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b7280;
  }

  .section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0.5rem 0;
  }

  .section-sub {
    font-size: 1rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
  }

  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .pillar-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
  }

  .pillar-number {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6b7280;
    margin-bottom: 0.4rem;
  }

  .pillar-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
  }

  .pillar-sub {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 0.8rem;
  }

  .pillar-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
  }

  .pillar-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: #6b7280;
  }

  .pillar-bullet {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #9ca3af;
    margin-top: 0.4rem;
  }

  .pillar-cta {
    margin-top: auto;
    background: none;
    border: none;
    color: #3249b3;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    text-align: left;
  }

  .pillar-cta:hover {
    text-decoration: underline;
  }

  .leadership-section {
    padding: 3rem 0;
    background: #f5f7fb;
  }

  .section-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .section-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: 0.12em;
  }

  .section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0.5rem 0;
  }

  .section-sub {
    font-size: 1rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
  }

  .leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .leader-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  }

  .leader-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: 0.16em;
    margin-bottom: 0.4rem;
  }

  .leader-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
  }

  .leader-list {
    list-style: none;
    padding: 0;
    font-size: 0.95rem;
    color: #6b7280;
  }

  .leader-list li {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
  }

  .bullet {
    width: 5px;
    height: 5px;
    background: #9ca3af;
    border-radius: 50%;
    margin-top: 0.4rem;
  }
  .impact-section {
    padding: 3rem 0;
    background: #ffffff;
  }

  .impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .impact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  }

  .impact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: 0.16em;
    margin-bottom: 0.4rem;
  }

  .impact-metric {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
  }

  .impact-desc {
    font-size: 0.95rem;
    color: #6b7280;
  }
  .cta-strip {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 16px;
    background: radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.18), transparent 55%),
                radial-gradient(circle at 100% 100%, rgba(236, 72, 153, 0.18), transparent 55%),
                #0f172a;
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  }

  .cta-content {
    max-width: 500px;
  }

  .cta-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .cta-sub {
    font-size: 1rem;
    color: #e2e8f0;
  }

   */
