:root {
    --blue:      #1B3268;
    --blue-dk:   #112050;
    --blue-lt:   #2A4A90;
    --blue-pale: #EEF2FA;
    --green:     #2D6B40;
    --green-dk:  #1E4D2D;
    --green-lt:  #3D8A54;
    --green-pale:#EDF5EF;
    --red:       #e82128;
    --red-dk:    #C01820;
    --white:     #FFFFFF;
    --offwhite:  #F7F8FC;
    --text:      #1A1A2E;
    --muted:     #6B7280;
    --border:    #DDE1EC;
    --nav-h:     72px;
  }

  * { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior:smooth; }

  body {
    background: var(--white);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* TOP FUNDING BANNER */
  .top-banner {
    background: var(--blue);
    color: rgba(255,255,255,0.85);
    text-align: center;
    padding: 10px 24px;
    font-size: 0.72rem;
    letter-spacing: 0.07em;
    font-weight: 500;
  }
  .top-banner span { color: rgba(255,255,255,0.5); margin: 0 10px; }

  /* NAV */
  #nav {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 0 48px;
    box-shadow: 0 2px 12px rgba(27,50,104,0.06);
  }

  .nav-logo {
    display: inline-flex;
    align-items: center;
  }
  .nav-logo img { height: 48px; width: auto; }

  .nav-brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--blue-dk);
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;
    margin-left: 2px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin-left: auto;
  }
  .nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--white);
    color: var(--blue);
    font-size: 1.1rem;
    cursor: pointer;
  }
  .nav-links a {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 4px;
    transition: all 0.2s;
  }
  .nav-links a:hover { color: var(--blue); background: var(--blue-pale); }
  .nav-links a.active { color: var(--blue); background: var(--blue-pale); }
  .nav-links .nav-apply {
    background: var(--red);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    padding: 9px 20px;
  }
  .nav-links .nav-apply:hover { background: var(--red-dk); }

  /* CAROUSEL / HERO */
  .carousel-wrapper {
    position: relative;
    height: 88vh;
    min-height: 560px;
    overflow: hidden;
  }

  .carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
  }
  .carousel-slide.active { opacity: 1; }

  .carousel-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
  }

  .carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      120deg,
      rgba(27,50,104,0.82) 0%,
      rgba(27,50,104,0.4) 50%,
      transparent 100%
    );
  }

  .carousel-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 0 72px 72px;
    max-width: 800px;
  }

  .carousel-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 22px;
  }

  .carousel-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
  }
  .carousel-content h1 em {
    font-style: italic;
    color: #A8C4FF;
  }

  .carousel-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 32px;
    font-weight: 300;
  }

  .carousel-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid var(--red);
    cursor: pointer;
  }
  .btn-primary:hover { background: var(--red-dk); border-color: var(--red-dk); transform: translateY(-1px); }

  .btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 0.83rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
  }
  .btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

  /* Carousel controls */
  .carousel-dots {
    position: absolute;
    bottom: 28px;
    right: 72px;
    display: flex;
    gap: 8px;
  }
  .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
  }
  .dot.active { background: var(--white); width: 24px; border-radius: 4px; }

  .carousel-counter {
    position: absolute;
    top: 32px;
    right: 72px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.12em;
  }

  /* STATS STRIP */
  .stats-strip {
    background: var(--blue);
    display: flex;
    align-items: stretch;
  }
  .stat-item {
    flex: 1;
    padding: 28px 32px;
    border-right: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--white);
    font-weight: 700;
  }
  .stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
  }

  /* SECTIONS */
  section { padding: 88px 72px; }

  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 18px;
  }
  .section-tag::before {
    content: '';
    display: block;
    width: 24px; height: 2px;
    background: var(--green);
  }

  h2.s-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3.5vw, 50px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--blue);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }
  h2.s-title em { font-style: italic; color: var(--green); }

  .s-body {
    font-size: 0.97rem;
    color: var(--muted);
    line-height: 1.85;
    max-width: 620px;
  }
  .mb-24 { margin-bottom: 24px; }
  .mb-36 { margin-bottom: 36px; }
  .mb-32 { margin-bottom: 32px; }
  .mb-0 { margin-bottom: 0; }

  /* ABOUT */
  #about { background: var(--white); }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    margin-top: 52px;
  }

  .about-img-wrap {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 480px;
  }
  .about-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .about-img-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--blue);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
  }

  .stat-callout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
  }
  .sc-item {
    background: var(--blue-pale);
    border-left: 3px solid var(--blue);
    padding: 18px 20px;
    border-radius: 0 4px 4px 0;
  }
  .sc-item.green { background: var(--green-pale); border-color: var(--green); }
  .sc-item.red { background: #FFF0F0; border-color: var(--red); }
  .sc-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 4px;
  }
  .sc-item.green .sc-num { color: var(--green); }
  .sc-item.red .sc-num { color: var(--red); }
  .sc-label { font-size: 0.75rem; color: var(--muted); line-height: 1.4; }

  /* SECTORS */
  #sectors { background: var(--offwhite); }

  .sectors-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 52px;
  }

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

  .sector-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .sector-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(27,50,104,0.1); }

  .sector-img {
    width: 100%; height: 200px;
    object-fit: cover;
  }

  .sector-body { padding: 28px; }

  .sector-icon {
    width: 44px; height: 44px;
    background: var(--blue-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
  }
  .sector-icon-green { background: var(--green-pale); }
  .sector-icon-red { background: #FFF0F0; }

  .sector-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--blue);
    margin-bottom: 10px;
  }

  .sector-card p {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .sector-sub {
    font-size: 0.72rem;
    color: var(--green);
    font-weight: 600;
    letter-spacing: 0.06em;
  }

  /* WHAT WE FUND */
  #whatwefund { background: var(--white); }

  .fund-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    margin-top: 52px;
    align-items: start;
  }

  .fund-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    counter-reset: fund-step;
  }

  .fund-row {
    display: flex;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
    counter-increment: fund-step;
  }
  .fund-row:last-child { border-bottom: none; }

  .fund-dot {
    width: 26px;
    height: 26px;
    background: var(--blue-pale);
    color: var(--blue);
    border: 1px solid #C9D6F2;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
  }
  .fund-dot::before {
    content: counter(fund-step);
  }

  .fund-row h4 {
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 5px;
  }
  .fund-row p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

  /* Co-invest panel */
  .coinvest {
    background: var(--blue);
    border-radius: 6px;
    padding: 40px;
    color: var(--white);
  }
  .coinvest h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--white);
  }
  .coinvest > p {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    margin-bottom: 24px;
  }
  .coinvest-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 14px;
    font-weight: 600;
  }
  .coinvest-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .coinvest-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    padding: 10px 14px;
    background: rgba(255,255,255,0.07);
    border-radius: 4px;
  }
  .coinvest-list li::before { content: '✓'; color: #A8C4FF; font-weight: 700; font-size: 0.75rem; }

  /* FUNDING MODELS */
  #models {
    background: var(--offwhite);
    text-align: center;
  }

  #models .section-tag {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  #models .s-body {
    margin-left: auto;
    margin-right: auto;
  }

  .models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
  }

  .model-card {
    background: var(--white);
    border-radius: 6px;
    border: 1px solid var(--border);
    padding: 36px 30px;
    transition: border-color 0.25s, transform 0.25s;
  }
  .model-card:hover { border-color: var(--blue); transform: translateY(-3px); }

  .model-tag {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 18px;
  }
  .model-tag.green { background: var(--green); }
  .model-tag.red { background: var(--red); }

  .model-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--blue);
    margin-bottom: 12px;
  }
  .model-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.7; }

  /* ELIGIBILITY */
  #eligibility { background: var(--white); }

  .elig-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 72px;
    margin-top: 52px;
    align-items: start;
  }

  .elig-list { display: flex; flex-direction: column; gap: 0; }

  .elig-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
  }
  .elig-item:last-child { border-bottom: none; }

  .elig-check {
    width: 22px; height: 22px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .elig-item p { font-size: 0.9rem; color: var(--text); line-height: 1.65; }

  /* Placement box */
  .placement-box {
    background: var(--blue-pale);
    border: 1px solid rgba(27,50,104,0.15);
    border-radius: 6px;
    padding: 36px;
  }
  .placement-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--blue);
    margin-bottom: 18px;
  }
  .placement-note {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .ptable { width: 100%; border-collapse: collapse; }
  .ptable tr { border-bottom: 1px solid rgba(27,50,104,0.1); }
  .ptable tr:last-child { border-bottom: none; }
  .ptable td { padding: 11px 0; font-size: 0.82rem; vertical-align: top; }
  .ptable td:first-child {
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    width: 42%;
    padding-right: 14px;
    padding-top: 13px;
  }
  .ptable td:last-child { color: var(--text); }

  /* GIVEBACK */
  #giveback { background: var(--offwhite); }

  .giveback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    margin-top: 52px;
    align-items: start;
  }

  .gb-text p { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
  .giveback-note {
    font-size: 0.83rem;
    color: var(--blue);
    font-weight: 500;
  }

  .gb-activities { display: flex; flex-direction: column; gap: 16px; }

  .gb-item {
    display: flex;
    gap: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--green);
    border-radius: 0 6px 6px 0;
    padding: 20px 22px;
    transition: border-color 0.2s;
  }
  .gb-item:hover { border-left-color: var(--blue); }

  .gb-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--green);
    font-weight: 700;
    min-width: 22px;
    margin-top: 2px;
  }

  .gb-item h4 { font-size: 0.9rem; font-weight: 600; color: var(--blue); margin-bottom: 5px; }
  .gb-item p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

  /* APPLY */
  #apply { background: var(--white); }

  .apply-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 72px;
    margin-top: 52px;
    align-items: start;
  }

  .apply-steps { display: flex; flex-direction: column; gap: 0; }

  .apply-step {
    display: flex;
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
  }
  .apply-step:last-child { border-bottom: none; }

  .step-n {
    width: 32px; height: 32px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .apply-step h4 { font-size: 0.93rem; font-weight: 600; color: var(--blue); margin-bottom: 5px; }
  .apply-step p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }
  .deadline-text { color: var(--red); }

  /* CTA sticky panel */
  .cta-sticky {
    background: var(--blue);
    border-radius: 6px;
    padding: 36px;
    position: sticky;
    top: calc(var(--nav-h) + 16px);
    color: var(--white);
  }

  .cta-open-tag {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 16px;
  }

  .cta-sticky h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 10px;
  }
  .cta-sticky p { font-size: 0.84rem; color: rgba(255,255,255,0.68); margin-bottom: 24px; line-height: 1.7; }

  .cta-btns { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }

  .btn-white {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white);
    color: var(--blue);
    padding: 13px 20px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid var(--white);
    cursor: pointer;
    width: 100%;
  }
  .btn-white:hover { background: rgba(255,255,255,0.9); }

  .btn-red-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    padding: 13px 20px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid var(--red);
    cursor: pointer;
    width: 100%;
  }
  .btn-red-outline:hover { background: var(--red-dk); border-color: var(--red-dk); }

  .submit-app-form {
    display: grid;
    gap: 8px;
    margin-bottom: 24px;
  }

  .js .submit-app-form.is-hidden {
    display: none;
  }

  #showSubmitFormButton {
    display: none;
  }

  .js #showSubmitFormButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .form-label {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.62);
    margin-top: 4px;
  }

  .submit-app-form input[type="text"],
  .submit-app-form input[type="email"],
  .submit-app-form input[type="file"] {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .submit-app-form input::file-selector-button {
    border: none;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border-radius: 3px;
    padding: 6px 10px;
    margin-right: 10px;
    cursor: pointer;
  }

  .submit-app-form .btn-red-outline { margin-top: 8px; }

  .recaptcha-wrap {
    margin-top: 6px;
    margin-bottom: 2px;
  }

  .hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  /* Info sessions */
  .info-sessions {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
  }
  .info-sessions h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 12px;
  }
  .info-note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 14px;
    line-height: 1.6;
  }
  .session-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.8);
  }
  .session-row:last-child { border-bottom: none; }
  .session-tag {
    font-size: 0.65rem;
    background: rgba(255,255,255,0.1);
    padding: 3px 8px;
    border-radius: 10px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.06em;
  }

  /* FAQ */
  #faq { background: var(--offwhite); }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 52px;
  }

  details.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 24px 28px;
    cursor: pointer;
    transition: border-color 0.2s;
  }
  details.faq-item[open] { border-color: var(--blue); }
  details.faq-item:hover { border-color: rgba(27,50,104,0.3); }

  summary.faq-q {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--blue);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
  }
  summary.faq-q::after {
    content: '+';
    color: var(--red);
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.2s;
  }
  details[open] summary.faq-q::after { transform: rotate(45deg); }

  .faq-a {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.75;
  }

  /* CONTACT / FOOTER */
  #contact { background: var(--blue); color: var(--white); padding: 80px 72px 60px; }

  .contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 72px;
    margin-bottom: 52px;
  }

  #contact .section-tag { color: #A8C4FF; }
  #contact .section-tag::before { background: #A8C4FF; }

  #contact h2.s-title { color: var(--white); }
  #contact h2.s-title em { color: #A8C4FF; }

  #contact p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 28px; }

  .ctable { width: 100%; border-collapse: collapse; }
  .ctable tr { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .ctable tr:last-child { border-bottom: none; }
  .ctable td { padding: 12px 0; font-size: 0.85rem; vertical-align: top; }
  .ctable td:first-child {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    width: 38%;
    padding-right: 14px;
    padding-top: 14px;
  }
  .ctable td:last-child { color: rgba(255,255,255,0.85); }
  .ctable a { color: #A8C4FF; text-decoration: none; }

  .social-icons-cell { vertical-align: middle; }
  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    margin-right: 8px;
    transition: background 0.2s, color 0.2s;
  }
  .social-icon:hover { background: var(--blue); color: var(--white); }

  .partner-logos {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 32px;
  }
  .partner-logos h4 {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
  }
  .logo-boxes { display: flex; flex-direction: column; gap: 10px; }
  .partner-logos-row {
    flex-direction: row;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
  }
  .partner-logo {
    width: auto;
    object-fit: contain;
  }
  .partner-logo-ukng { height: 52px; }
  .partner-logo-ukint {
    height: 52px;
    background: var(--white);
    padding: 6px;
    border-radius: 4px;
  }
  .partner-logo-tech4dev {
    height: 48px;
    background: var(--white);
    padding: 4px;
    border-radius: 4px;
  }
  .logo-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 12px 18px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.04em;
  }

  footer {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 16px;
  }

  .footer-partners {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }
  .footer-partner-logo {
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.75;
  }
  .footer-partner-ukng {
    height: 44px;
    filter: none;
    opacity: 1;
    background: var(--white);
    padding: 4px 6px;
    border-radius: 4px;
  }
  .footer-partner-ukint {
    height: 44px;
    filter: none;
    opacity: 1;
    background: var(--white);
    padding: 4px 6px;
    border-radius: 4px;
  }
  .footer-partner-tech4dev { height: 40px; }

  .footer-logo img { height: 40px; filter: brightness(0) invert(1); opacity: 0.7; }

  .footer-dap {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin: 0 0 12px;
    width: 100%;
  }

  .footer-left {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.9;
    text-align: left;
    white-space: nowrap;
  }

  .footer-copy {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.9;
    text-align: right;
    white-space: nowrap;
    margin-left: auto;
  }

  /* SCROLL REVEAL */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* RESPONSIVE */
  @media (max-width: 960px) {
    section { padding: 64px 28px; }
    #nav { padding: 0 24px; position: relative; }
    .nav-brand-text { font-size: 0.92rem; }
    .nav-toggle { display: inline-flex; margin-left: auto; }
    .nav-links {
      display: none;
      position: absolute;
      top: var(--nav-h);
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 8px;
      padding: 14px 24px 16px;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 10px 24px rgba(27,50,104,0.08);
      z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links a { display: block; }
    .nav-links .nav-apply { text-align: center; }
    .carousel-content { padding: 0 32px 56px; }
    .about-grid, .fund-layout, .elig-layout, .giveback-grid,
    .apply-grid, .contact-grid, .sectors-intro { grid-template-columns: 1fr; gap: 36px; }
    .sectors-grid, .models-grid, .faq-grid { grid-template-columns: 1fr; }
    .stats-strip { flex-wrap: wrap; }
    .stat-item { flex: 1 1 50%; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .cta-sticky { position: static; }
    #contact { padding: 64px 28px 48px; }
    .footer-left,
    .footer-copy {
      font-size: 0.64rem;
      line-height: 1.7;
    }
  }
