/* ============================================================
   BioInsyte — Global Stylesheet
   Fonts: Playfair Display (headings) + Lato (body)
   ============================================================ */

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

:root {
  --blue:       #2563eb;
  --blue-dark:  #1e40af;
  --blue-light: #dbeafe;
  --blue-bg:    #eff6ff;
  --red:        #dc2626;
  --dark:       #0f172a;
  --text:       #333;
  --text-muted: #555;
  --text-light: #666;
  --text-slate: #94a3b8;
  --white:      #ffffff;
  --bg-alt:     rgba(37,99,235,0.05);
  --shadow-sm:  0 4px 20px rgba(0,0,0,0.06);
  --shadow-md:  0 10px 30px rgba(0,0,0,0.1);
  --shadow-lg:  0 8px 24px rgba(255,255,255,0.2);
  --radius:     12px;
  --radius-sm:  6px;
  --radius-pill:25px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ── Typography helpers ───────────────────────────────────── */
.serif { font-family: 'Playfair Display', serif; }

/* ── Navigation ───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links > li { position: relative; }

.nav-links a {
  color: #444;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

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

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  padding: 1rem 0;
  margin-top: 1rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.dropdown-menu a:hover { background: #f5f5f5; }

/* Nav CTA button */
.btn-nav {
  background: var(--blue);
  color: var(--white) !important;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.btn-nav:hover { background: var(--blue-dark); }

/* ── Hero ─────────────────────────────────────────────────── */
        .hero {
            margin-top: 80px; height: 75vh;
            background: 
                linear-gradient(135deg, rgba(37, 99, 235, 0.85) 0%, rgba(30, 58, 138, 0.75) 100%),
                repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 4px),
                linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
            display: flex; align-items: center; position: relative;
        }
        .hero::before {
            content: ''; position: absolute; inset: 0;
            background: radial-gradient(circle at 70% 30%, rgba(220, 38, 38, 0.2) 0%, transparent 50%);
        }
        .hero-content {
            position: relative; z-index: 2; max-width: 1400px;
            margin: 0 auto; padding: 0 4rem; color: white;
        }
        .hero-badge {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white; padding: 0.6rem 1.5rem;
            border-radius: 25px; font-size: 0.85rem;
            font-weight: 600; letter-spacing: 0.05em;
            text-transform: uppercase; display: inline-block;
            margin-bottom: 1.5rem;
        }
        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem; font-weight: 600; line-height: 1.1; margin-bottom: 1.5rem;
        }
        .hero p {
            font-size: 1.3rem; line-height: 1.7; max-width: 700px; opacity: 0.95;
        }


.hero-buttons { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.btn-hero-primary {
  background: var(--white);
  color: var(--blue);
  padding: 1.25rem 3rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: var(--shadow-lg);
  display: inline-block;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,255,255,0.3);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  padding: 1.25rem 3rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  display: inline-block;
}

.btn-hero-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* ── Section Commons ──────────────────────────────────────── */
section { padding: 6rem 4rem; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
}

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

/* Alternate section backgrounds */
.bg-white  { background: var(--white); }
.bg-light  { background: linear-gradient(135deg, var(--bg-alt) 0%, rgba(239,246,255,0.8) 100%); }
.bg-dark   { background: var(--dark); color: var(--white); }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.35rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.card p { color: var(--text-light); line-height: 1.7; }

 /* ── MVV Block ── */
    .mvv-section {
      background: #f8f9fb;
      padding: 5rem 2rem;
    }
    .mvv-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .mvv-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 2.5rem;
      margin-top: 3rem;
    }
    @media (max-width: 768px) {
      .mvv-grid { grid-template-columns: 1fr; }
    }
    .mvv-card {
      background: #fff;
      border-radius: 12px;
      padding: 2.5rem 2rem;
      box-shadow: 0 4px 24px rgba(0,0,0,0.07);
      border-top: 4px solid transparent;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .mvv-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    }
    .mvv-card.mission { border-top-color: #c0392b; }
    .mvv-card.vision  { border-top-color: #1b3a5c; }
    .mvv-card.values  { border-top-color: #e8c97a; }
    .mvv-label {
      font-family: 'Lato', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .mvv-card.mission .mvv-label { color: #c0392b; }
    .mvv-card.vision  .mvv-label { color: #1b3a5c; }
    .mvv-card.values  .mvv-label { color: #b5991f; }
    .mvv-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      line-height: 1.55;
      color: #0a1f3c;
      margin-bottom: 1.2rem;
    }
    .mvv-card p {
      font-family: 'Lato', sans-serif;
      font-size: 0.95rem;
      line-height: 1.75;
      color: #555;
      margin: 0;
    }
    .values-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .values-list li {
      font-family: 'Lato', sans-serif;
      font-size: 0.95rem;
      color: #555;
      padding: 0.5rem 0;
      border-bottom: 1px solid #f0f0f0;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .values-list li:last-child { border-bottom: none; }
    .values-list li span.dot {
      width: 8px; height: 8px;
      background: #e8c97a;
      border-radius: 50%;
      flex-shrink: 0;
    }

/* ── 3-col & 2-col grids ──────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* ── Two-column split (text + image) ─────────────────────── */
.split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.split-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.img-placeholder {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-bg) 100%);
  border-radius: var(--radius);
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
}

 /* ── Founder Voice ── */
    .founder-voice {
      background: linear-gradient(135deg, #0a1f3c 0%, #1b3a5c 100%);
      color: #fff;
      padding: 5rem 2rem;
      position: relative;
      overflow: hidden;
    }
    .founder-voice::before {
      content: '\201C';
      position: absolute;
      top: -1rem;
      left: 2rem;
      font-family: 'Playfair Display', serif;
      font-size: 14rem;
      color: rgba(255,255,255,0.06);
      line-height: 1;
      pointer-events: none;
    }
    .founder-voice-inner {
      max-width: 820px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .founder-voice-inner p {
      font-family: 'Playfair Display', serif;
      font-size: 1.45rem;
      line-height: 1.85;
      color: rgba(255,255,255,0.92);
      margin-bottom: 1.5rem;
    }
    .founder-voice-inner .attribution {
      font-family: 'Lato', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #e8c97a;
    }


/* Page Hero-Contact */
        .page-hero {
            margin-top: 80px; padding: 6rem 4rem 4rem;
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            text-align: center;
        }
        .page-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem; color: #1a1a1a; margin-bottom: 1.5rem;
        }
        .page-hero h1 .highlight {
            background: linear-gradient(135deg, #2563eb 0%, #dc2626 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .page-hero p {
            font-size: 1.3rem; color: #555;
            max-width: 700px; margin: 0 auto; line-height: 1.7;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 4rem; background: white;
        }
        .contact-container {
            max-width: 1200px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 6rem; align-items: start;
        }

        /* Form */
        .contact-form {
            background: white; padding: 3rem;
            border-radius: 12px; border: 2px solid #e5e7eb;
        }
        .contact-form h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem; color: #1a1a1a; margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block; font-weight: 600;
            color: #333; margin-bottom: 0.5rem;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%; padding: 1rem;
            border: 2px solid #e5e7eb; border-radius: 6px;
            font-family: 'Lato', sans-serif; font-size: 1rem;
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none; border-color: #2563eb;
        }
        .form-group textarea {
            resize: vertical; min-height: 150px;
        }
        .btn-submit {
            background: #2563eb; color: white;
            padding: 1.25rem 3rem; border-radius: 6px;
            border: none; font-weight: 700; font-size: 1rem;
            cursor: pointer; transition: all 0.3s; width: 100%;
        }
        .btn-submit:hover {
            background: #1e40af;
        }

        /* Contact Info */
        .contact-info {
            padding-top: 2rem;
        }
        .contact-info h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem; color: #1a1a1a; margin-bottom: 2rem;
        }
        .info-item {
            background: white; padding: 2rem;
            border-radius: 12px; margin-bottom: 2rem;
            border: 2px solid #e5e7eb;
        }
        .info-icon {
            width: 50px; height: 50px;
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            color: white; border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem; margin-bottom: 1rem;
        }
        .info-item h3 {
            font-size: 1.2rem; color: #1a1a1a;
            margin-bottom: 0.75rem; font-weight: 600;
        }
        .info-item p {
            color: #666; line-height: 1.7;
        }
        .info-item a {
            color: #2563eb; text-decoration: none;
        }
        .info-item a:hover {
            text-decoration: underline;
        }

        /* Map */
        .map-section {
            padding: 0 4rem 6rem;
        }
        .map-container {
            max-width: 1200px; margin: 0 auto;
            background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
            border-radius: 12px; height: 400px;
            display: flex; align-items: center; justify-content: center;
            color: #64748b; font-size: 0.9rem; text-align: center;
        }


/* ── Support Section────────────────────────────────────── */
  .support-strip {
    background: #1a3f7a;
    padding: 100px 5rem 2rem 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .support-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
      radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 60%);
    pointer-events: none;
  }
  .support-strip-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .support-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.85rem;
  }
  .support-strip h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    color: #fff;
    margin-bottom: 1rem;
	margin-top: 2.5rem;
    line-height: 1.35;
    font-weight: 700;
  }
  .support-strip p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }
  .support-btn {
    display: inline-block;
    background: #fff;
    color: #1a3f7a;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    padding: 0.9rem 2.4rem;
    border-radius: 4px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    margin-bottom: 1.5rem;
    display: inline-block;
  }
  .support-btn:hover {
    background: #f0f5ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  }
  .support-strip p.support-disclaimer {
    margin-top: 1.25rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 0;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }


/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  background:
    linear-gradient(135deg, rgba(37,99,235,0.9) 0%, rgba(30,58,138,0.85) 100%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 4px),
    linear-gradient(135deg, #1e40af 0%, var(--blue) 100%);
  text-align: center;
  color: var(--white);
  padding: 6rem 4rem;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-white {
  background: var(--white);
  color: var(--blue);
  padding: 1.25rem 3rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  transition: all 0.3s;
}

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

.btn-outline-light {
    border-radius: 50px;
    padding: 12px 24px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: white;
    color: #1e3a8a;
}

/* ── Bullet list in cards ─────────────────────────────────── */
.check-list { list-style: none; }

.check-list li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.check-list li::before {
  content: '•';
  color: var(--blue);
  font-weight: bold;
  margin-right: 0.75rem;
}


/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: var(--text-slate);
  padding: 4rem 4rem 2rem;
}

.footer-container { max-width: 1400px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand { max-width: 350px; }

.footer-brand .logo {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links { display: flex; gap: 1rem; }

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-slate);
  transition: all 0.3s;
  font-size: 0.8rem;
  font-weight: 700;
}

.social-link:hover { background: var(--blue); color: var(--white); }

.footer-section h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-section ul li { margin-bottom: 0.75rem; }

.footer-section a {
  color: var(--text-slate);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-section a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

/* ── Page Header (interior pages) ────────────────────────── */
.page-header {
  margin-top: 80px;
  padding: 5rem 4rem;
  background:
    linear-gradient(135deg, rgba(37,99,235,0.85) 0%, rgba(30,58,138,0.75) 100%),
    linear-gradient(135deg, #1e40af 0%, var(--blue) 100%);
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* ── Legal / Policy pages ─────────────────────────────────── */
.legal-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 4rem;
}

.legal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: #1a1a1a;
  margin: 2.5rem 0 1rem;
}

.legal-body h3 {
  font-size: 1.25rem;
  color: #1a1a1a;
  margin: 1.75rem 0 0.75rem;
}

.legal-body p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-body ul li {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.legal-meta {
  color: var(--text-slate);
  font-size: 0.9rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

/* ── Stats bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--blue);
  color: var(--white);
  padding: 3rem 4rem;
}

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

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ── Timeline ────────────────────────────── */
.timeline {
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: center;
}

.timeline-item:nth-child(even) {
  direction: rtl;
}

.timeline-item:nth-child(even) > * {
  direction: ltr;
}

.timeline-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.timeline-content h3 {
  font-size: 1.75rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.timeline-content p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

.timeline-image {
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
  border-radius: 12px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
}

/* ── Border-left feature cards ────────────────────────────── */
.feature-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--blue);
  margin-bottom: 1.5rem;
}

.feature-card:nth-child(even) { border-left-color: var(--red); }

.feature-card h3 {
  font-size: 1.35rem;
  color: #1e3a5f;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Index Features */
.features {
  padding: 6rem 4rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(239, 246, 255, 0.8) 100%);
}

.features-grid {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.35rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
}

/* ── Step numbers ─────────────────────────────────────────── */
.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* ── Mobile hamburger (simple toggle) ────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

/* ── Pilot Page ───────────────────────────────────────────── */

.about-pilot {
    padding: 6rem 4rem;
    background: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    border-radius: 12px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.9rem;
    text-align: center;
    overflow: hidden;
}

.eligibility {
    padding: 6rem 4rem;
    background: linear-gradient(135deg, rgba(37,99,235,0.05) 0%, rgba(239,246,255,0.8) 100%);
}

.eligibility-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.eligibility-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.eligibility-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.eligibility-card h3 {
    font-size: 1.35rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.eligibility-card ul { list-style: none; }

.eligibility-card ul li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.eligibility-card ul li::before {
    content: '•';
    color: #2563eb;
    font-weight: bold;
    margin-right: 0.75rem;
}

.expect {
    padding: 6rem 4rem;
    background: white;
}

.expect-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
}

.expect-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
    align-items: center;
}

.expect-row:nth-child(even) { direction: rtl; }
.expect-row:nth-child(even) > * { direction: ltr; }

.expect-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.expect-content h3 {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.expect-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.expect-image {
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    border-radius: 12px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

.benefits {
    padding: 6rem 4rem;
    background: linear-gradient(135deg, rgba(37,99,235,0.05) 0%, rgba(239,246,255,0.8) 100%);
}

.benefits-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.35rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.contact-info p {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 968px) {
  section { padding: 4rem 2rem; }
  .cta-section { padding: 4rem 2rem; }

  .nav-container { padding: 1.25rem 2rem; }
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 2rem; display: block; }

  .hero h1 { font-size: 2.75rem; }
  .hero-content { padding: 4rem 2rem; }

  .split,
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }

  .section-header h2 { font-size: 2.2rem; }

  .legal-body { padding: 3rem 2rem; }

  .page-header { padding: 4rem 2rem; }
  .page-header h1 { font-size: 2.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  footer { padding: 3rem 2rem 2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
	
	
	/* Features grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem auto 0;
  }

  /* Features section padding */
  .features {
    padding: 3rem 1.5rem;
  }

  /* Timeline stacking */
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .timeline-item:nth-child(even) {
    direction: ltr;
  }

  .timeline-image {
    height: 220px;
  }

  /* Contact page */
  .contact {
    padding: 3rem 1.5rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  /* Page hero */
  .page-hero {
    padding: 3rem 1.5rem 2rem;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

  /* Hero buttons stack vertically */
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
  }

  /* Stats bar */
  .stats-bar {
    padding: 2rem 1.5rem;
  }

  /* Support strip */
  .support-strip {
    padding: 3rem 1.5rem;
  }

  /* MVV grid already handled inline but add padding */
  .mvv-section {
    padding: 3rem 1.5rem;
  }

  /* Founder voice */
  .founder-voice {
    padding: 3rem 1.5rem;
  }

  .founder-voice-inner p {
    font-size: 1.1rem;
  }

  /* Images inside split not getting cut off */
  .split img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
  }

  /* Feature cards full width */
  .feature-card {
    width: 100%;
  }

  /* Nav hamburger toggle */
  .nav-toggle {
    display: flex;
  }
	
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .section-header h2 { font-size: 1.9rem; }
  .cta-section h2 { font-size: 2rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
	
  .page-hero h1 { font-size: 1.8rem; }
  .contact-form { padding: 1rem; }
  .btn-submit { padding: 1rem; }
  .features-grid { gap: 1rem; }
  .timeline-image { height: 180px; }
  .stat-number { font-size: 2rem; }
  .support-strip h2 { font-size: 1.6rem; }
	
	
	/* Pilot page mobile */
  .about-pilot { padding: 3rem 1.5rem; }
  .about-container { grid-template-columns: 1fr; gap: 2rem; }
  .about-content h2 { font-size: 1.8rem; }
  .about-image { height: 250px; }
  .eligibility { padding: 3rem 1.5rem; }
  .eligibility-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .expect { padding: 3rem 1.5rem; }
  .expect-row { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
  .expect-row:nth-child(even) { direction: ltr; }
  .expect-image { height: 200px; }
  .benefits { padding: 3rem 1.5rem; }
  .benefits-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
