/* ============================================================
   UZAPOINT SME EMPOWERMENT FUND — Design System v4
   Single source of truth for ALL styles
   Colors: #2ceabb (turquoise) + #434858 (dark gray)
   Font: Poppins
   ============================================================ */

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

/* ── CSS CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  /* Primary brand */
  --c-brand: #2ceabb;
  --c-brand-dark: #1fb896;
  --c-brand-light: #6af0d2;
  --c-brand-ghost: rgba(44, 234, 187, 0.08);
  --c-brand-ghost-md: rgba(44, 234, 187, 0.15);

  /* Dark gray */
  --c-dark: #434858;
  --c-dark-deep: #2c2f3a;
  --c-dark-mid: #5a5f73;
  --c-dark-soft: #8a8d9b;

  /* Surfaces — Light mode */
  --c-bg: #f7f8fa;
  --c-bg-card: #ffffff;
  --c-bg-section: #ffffff;
  --c-bg-alt: #f0f2f5;
  --c-text: #1a1d2e;
  --c-text-secondary: #5a5f73;
  --c-text-muted: #8a8d9b;
  --c-border: #e2e4ea;

  /* Accent — brand turquoise */
  --c-accent: #2ceabb;
  --c-accent-light: rgba(44, 234, 187, 0.12);
  --c-danger: #f56565;
  --c-info: #4da6ff;
  --c-warning: #ed8936;
  --c-success: #38a169;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(67, 72, 88, 0.1);
  --shadow-md: 0 4px 12px rgba(67, 72, 88, 0.1);
  --shadow-lg: 0 8px 24px rgba(67, 72, 88, 0.12);
  --shadow-xl: 0 16px 48px rgba(67, 72, 88, 0.16);
  --shadow-brand: 0 4px 14px rgba(44, 234, 187, 0.25);

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;

  /* Spacing — compact & balanced */
  --s-section: 28px;
  --s-container: 1140px;
  --s-gap: 14px;

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-base: 0.25s ease;
  --t-slow: 0.4s ease;

  /* Hero background — simple original */
  --hero-bg: #0d1017;
}

/* ── DARK MODE — auto from system, balanced & readable ── */
.dark-mode {
  --c-bg: #252a3a;
  --c-bg-card: #2e3448;
  --c-bg-section: #2a303f;
  --c-bg-alt: #323849;
  --c-text: #e8eaf0;
  --c-text-secondary: #b8bdd4;
  --c-text-muted: #8a90aa;
  --c-border: #3e4560;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.18);
  --hero-bg: #0d1017;
}

@media (prefers-color-scheme: dark) {
  #app {
    --c-bg: #252a3a;
    --c-bg-card: #2e3448;
    --c-bg-section: #2a303f;
    --c-bg-alt: #323849;
    --c-text: #e8eaf0;
    --c-text-secondary: #b8bdd4;
    --c-text-muted: #8a90aa;
    --c-border: #3e4560;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.18);
    --hero-bg: #0d1017;
  }
}

/* ── BASE TYPOGRAPHY ───────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Scope color/bg to the fund app wrapper so the main site footer/nav are unaffected */
#app {
  color: var(--c-text);
  background: var(--c-bg);
  min-height: 60vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

#app h1, #app h2, #app h3, #app h4, #app h5, #app h6 {
  color: var(--c-text);
}

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

img {
  max-width: 100%;
  height: auto;
}

/* ── LAYOUT ────────────────────────────────────────────────── */
/* All layout helpers scoped to #app so Bootstrap/.container/main-site classes are not overridden */
#app .section {
  padding: var(--s-section) 0;
}

#app .container {
  max-width: var(--s-container);
  margin: 0 auto;
  padding: 0 20px;
}

#app .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-brand);
  margin-bottom: 8px;
}

#app .section-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--c-brand);
  border-radius: 1px;
}

#app .section-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--c-text);
}

#app .section-desc {
  font-size: 0.88rem;
  color: var(--c-text-secondary);
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.text-brand {
  color: var(--c-brand);
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-base);
  outline: none;
  line-height: 1.4;
}

.btn--primary {
  background: var(--c-brand);
  color: var(--c-dark-deep);
  border-color: var(--c-brand);
}

.btn--primary:hover {
  background: var(--c-brand-dark);
  border-color: var(--c-brand-dark);
  box-shadow: var(--shadow-brand);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--c-brand);
  border-color: var(--c-brand);
}

.btn--outline:hover {
  background: var(--c-brand-ghost-md);
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--c-dark);
  color: #fff;
  border-color: var(--c-dark);
}

.btn--dark:hover {
  background: var(--c-dark-deep);
  transform: translateY(-1px);
}

/* ── CARDS ─────────────────────────────────────────────────── */
.card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 20px;
  transition: all var(--t-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--c-brand);
  transform: translateY(-2px);
}

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--c-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--c-brand);
  border-radius: 3px;
}

/* ── PAGE TRANSITION ───────────────────────────────────────── */
.page-fade-enter-active, .page-fade-leave-active {
  transition: opacity 0.25s ease;
}

.page-fade-enter, .page-fade-leave-to {
  opacity: 0;
}

/* ── REVEAL ANIMATIONS ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal--fade-left {
  transform: translateX(-20px);
}

.reveal--fade-right {
  transform: translateX(20px);
}

.reveal--scale {
  transform: scale(0.95);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ── SKELETON ──────────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--c-bg-alt) 25%, var(--c-border) 50%, var(--c-bg-alt) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--r-sm);
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* ── LOADING PLACEHOLDER ───────────────────────────────────── */
.loading-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── SECTION TABS (replaces Navbar — static, glassmorphism on scroll) */
.section-tabs {
  position: relative;
  z-index: 100;
  background: var(--hero-bg);
  border-bottom: 1px solid rgba(44, 234, 187, 0.08);
  transition: all var(--t-base);
}

.section-tabs--scrolled {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(13, 16, 23, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(44, 234, 187, 0.08);
  border-bottom: 1px solid rgba(44, 234, 187, 0.1);
}

.dark-mode .section-tabs {
  background: #252a3a;
  border-bottom-color: var(--c-border);
}

.dark-mode .section-tabs--scrolled {
  background: rgba(37, 42, 58, 0.5);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(44, 234, 187, 0.1);
  border-bottom-color: rgba(44, 234, 187, 0.12);
}

.section-tabs__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 12px;
}

.section-tabs__scroll {
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  padding: 4px 0;
}

.section-tabs__scroll::-webkit-scrollbar {
  display: none;
}

.section-tabs__tab {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  border-radius: var(--r-full);
  transition: all var(--t-fast);
  white-space: nowrap;
  border: 1px solid transparent;
}

.section-tabs__tab:hover {
  color: var(--c-brand);
  background: rgba(44, 234, 187, 0.06);
}

.section-tabs__tab--active {
  color: #fff;
  background: rgba(44, 234, 187, 0.12);
  border-color: rgba(44, 234, 187, 0.25);
}

.dark-mode .section-tabs__tab {
  color: rgba(255, 255, 255, 0.5);
}

.dark-mode .section-tabs__tab--active {
  color: var(--c-brand);
  background: rgba(44, 234, 187, 0.1);
  border-color: rgba(44, 234, 187, 0.3);
}

.section-tabs__tab-icon {
  font-size: 0.68rem;
}

/* ── Tab-link style for Apply/Partner route links in tabs ── */
.section-tabs__tab--cta {
  background: var(--c-brand) !important;
  color: var(--c-dark-deep) !important;
  font-weight: 600;
}

.section-tabs__tab--cta:hover {
  background: var(--c-brand-dark) !important;
  box-shadow: var(--shadow-brand);
  transform: translateY(-1px);
}

.section-tabs__tab--cta.section-tabs__tab--active {
  background: var(--c-brand-dark) !important;
  box-shadow: var(--shadow-brand);
}

.section-tabs__sep {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.25);
  margin: auto 10px;
  flex-shrink: 0;
}

.dark-mode .section-tabs__sep { background: rgba(255,255,255,0.15); }

.form-page__gform {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  margin-top: 24px;
}

.form-page__gform iframe {
  display: block;
  width: 100%;
  min-height: 900px;
  border: none;
}

.dark-mode .form-page__gform { background: #1e2130; }

/* ── FORM FIELDS (shared by Apply & Partner pages) ─────────── */
.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 5px;
}

.field__input-wrap {
  position: relative;
}

.field__valid-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-success);
  font-size: 0.82rem;
}

.field__valid-icon--textarea {
  top: 14px;
  transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 9px 13px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 0.86rem;
  font-family: 'Poppins', sans-serif;
  color: var(--c-text);
  background: var(--c-bg-card);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-brand);
  box-shadow: 0 0 0 3px var(--c-brand-ghost);
}

.field--valid input,
.field--valid select,
.field--valid textarea {
  border-color: var(--c-success);
}

.field--error input,
.field--error select,
.field--error textarea {
  border-color: var(--c-danger);
}

.field textarea {
  resize: vertical;
}

.field__error {
  display: block;
  font-size: 0.73rem;
  color: var(--c-danger);
  margin-top: 4px;
  font-weight: 500;
}

/* ── FORM SUBMIT BUTTON ────────────────────────────────────── */
.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: var(--c-brand);
  color: var(--c-dark-deep);
  font-size: 0.92rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--t-base);
}

.form-submit:hover:not(:disabled) {
  background: var(--c-brand-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-brand);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── FORM SUCCESS STATE ────────────────────────────────────── */
.form-success {
  text-align: center;
  padding: 48px 24px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
}

.form-success__icon {
  width: 56px;
  height: 56px;
  background: var(--c-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.form-success__icon i {
  font-size: 1.8rem;
  color: var(--c-dark-deep);
}

.form-success h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--c-text-secondary);
  margin-bottom: 5px;
  line-height: 1.6;
}

.form-success strong {
  color: var(--c-brand);
  font-family: monospace;
  font-size: 1rem;
}

/* ── FORM PAGE LAYOUT (shared by Apply & Partner) ──────────── */
.form-page {
  min-height: 100vh;
  padding: 70px 0 48px;
  background: var(--c-bg);
}

.form-page__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

.form-page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--c-brand);
  font-weight: 500;
  margin-bottom: 16px;
  transition: gap var(--t-fast);
}

.form-page__back:hover {
  gap: 12px;
}

.form-page__header {
  margin-bottom: 24px;
}

.form-page__title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 8px;
  line-height: 1.2;
}

.form-page__subtitle {
  font-size: 0.9rem;
  color: var(--c-text-secondary);
  line-height: 1.7;
}

.form-page__form {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 24px;
}

.form-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-page__section h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-border);
}

.form-page__section h3 i {
  color: var(--c-brand);
}

.form-page__section--full {
  margin-bottom: 20px;
}

/* ── CHECKBOX GRID (Partner page) ──────────────────────────── */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  background: var(--c-bg);
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--c-text-secondary);
  transition: all var(--t-fast);
}

.checkbox-item:hover {
  background: var(--c-brand-ghost);
}

.checkbox-item input[type="checkbox"] {
  accent-color: var(--c-brand);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

/* ── DARK SECTION ──────────────────────────────────────────── */
.section-dark {
  background: #1a1e28;
  color: rgba(255, 255, 255, 0.85);
}

.dark-mode .section-dark {
  background: #2e3448;
}

/* ── ICON CIRCLE ───────────────────────────────────────────── */
.icon-circle {
  width: 44px;
  height: 44px;
  background: var(--c-brand-ghost);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base);
}

.icon-circle i {
  font-size: 1.05rem;
  color: var(--c-brand);
  transition: color var(--t-base);
}

.icon-circle--sm {
  width: 36px;
  height: 36px;
}

.icon-circle--sm i {
  font-size: 0.88rem;
}

/* ── PILL ──────────────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--c-text-secondary);
  transition: all var(--t-fast);
}

.pill:hover {
  border-color: var(--c-brand);
  background: var(--c-brand-ghost);
}

.pill i {
  color: var(--c-brand);
  font-size: 0.68rem;
}

/* ── DARK CTA BLOCK ────────────────────────────────────────── */
.dark-cta {
  text-align: center;
  padding: 28px 20px;
  background: #1a1e28;
  border-radius: var(--r-lg);
}

.dark-cta__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.dark-cta__text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

/* ── BRAND CARD (left border accent) ───────────────────────── */
.brand-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-brand);
  border-radius: var(--r-lg);
  padding: 20px;
  transition: all var(--t-base);
}

.brand-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--c-brand);
}

/* ── BRAND HIGHLIGHT ───────────────────────────────────────── */
.brand-highlight {
  display: flex;
  gap: 10px;
  padding: 14px;
  background: var(--c-brand-ghost);
  border: 1px solid rgba(44, 234, 187, 0.15);
  border-radius: var(--r-md);
}

.brand-highlight i {
  color: var(--c-brand);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.brand-highlight p {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--c-text-secondary);
}

/* ── GOOD NEWS BLOCK ───────────────────────────────────────── */
.good-news {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding: 12px;
  background: var(--c-brand-ghost);
  border-left: 3px solid var(--c-brand);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.good-news i {
  color: var(--c-brand);
  font-size: 0.92rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.good-news p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--c-text);
}

.dark-mode .good-news p {
  color: var(--c-text-secondary);
}

/* ── STAT BAR ──────────────────────────────────────────────── */
.stat-bar {
  height: 5px;
  background: var(--c-bg-alt);
  border-radius: 3px;
  overflow: hidden;
}

.stat-bar__fill {
  height: 100%;
  background: var(--c-brand);
  border-radius: 3px;
  transition: width 1s ease;
}

.stat-bar__fill--warn {
  background: var(--c-warning);
}

/* ── ACCORDION TRANSITION ──────────────────────────────────── */
.accordion-enter-active,
.accordion-leave-active {
  transition: all 0.3s ease;
  max-height: 400px;
  overflow: hidden;
}

.accordion-enter,
.accordion-leave-to {
  max-height: 0;
  opacity: 0;
}

/* ── FLOAT CTA TRANSITION ──────────────────────────────────── */
.float-btn-enter-active,
.float-btn-leave-active {
  transition: all 0.35s ease;
}

.float-btn-enter,
.float-btn-leave-to {
  opacity: 0;
  transform: translateY(14px);
}

/* ── TOAST SYSTEM ──────────────────────────────────────────── */
.toast-container {
  position: fixed;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  max-width: 360px;
  width: 100%;
}

.toast-container--top-right {
  top: 60px;
  right: 16px;
}

.toast-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  pointer-events: all;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, opacity 0.2s;
  min-height: 44px;
}

.toast-item:hover {
  transform: translateX(-4px);
}

.dark-mode .toast-item {
  background: #343a50;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.dark-mode .toast__message {
  color: #e8eaf0;
}

.dark-mode .toast__close {
  color: #8a90aa;
}

.toast--success {
  border-left: 4px solid #2ceabb;
}

.toast--success .toast__icon {
  color: #2ceabb;
}

.toast--success .toast__progress {
  background: #2ceabb;
}

.toast--error {
  border-left: 4px solid #f56565;
}

.toast--error .toast__icon {
  color: #f56565;
}

.toast--error .toast__progress {
  background: #f56565;
}

.toast--info {
  border-left: 4px solid #4da6ff;
}

.toast--info .toast__icon {
  color: #4da6ff;
}

.toast--info .toast__progress {
  background: #4da6ff;
}

.toast--warning {
  border-left: 4px solid #ed8936;
}

.toast--warning .toast__icon {
  color: #ed8936;
}

.toast--warning .toast__progress {
  background: #ed8936;
}

.toast__icon {
  font-size: 1.05rem;
  flex-shrink: 0;
}

.toast__body {
  flex: 1;
  min-width: 0;
}

.toast__message {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #1a1d2e;
  line-height: 1.4;
}

.toast__close {
  background: none;
  border: none;
  color: #a0a3b1;
  cursor: pointer;
  padding: 4px;
  font-size: 0.72rem;
  flex-shrink: 0;
  transition: color 0.2s;
}

.toast__close:hover {
  color: #434858;
}

.toast__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 0 0 0 10px;
  animation: toast-progress linear forwards;
}

@keyframes toast-progress {
  from {
    width: 100%;
  }

  to {
    width: 0%;
  }
}

.toast-slide-enter-active {
  transition: all 0.35s cubic-bezier(0.21, 1.02, 0.73, 1);
}

.toast-slide-leave-active {
  transition: all 0.25s ease-in;
}

.toast-slide-enter {
  opacity: 0;
  transform: translateX(80px);
}

.toast-slide-leave-to {
  opacity: 0;
  transform: translateX(80px) scale(0.95);
}

/* ── HERO — Simple Original Background ─────────────────────── */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0 40px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--hero-bg);
  z-index: 0;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero__dot {
  position: absolute;
  border-radius: 50%;
  background: var(--c-brand);
  opacity: 0;
  animation: dotFloat 8s ease-in-out infinite;
}

@keyframes dotFloat {
  0%, 100% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }

  50% {
    opacity: 0.3;
    transform: translateY(-18px) scale(1.2);
  }
}

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__content {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(44, 234, 187, 0.08);
  border: 1px solid rgba(44, 234, 187, 0.2);
  border-radius: var(--r-full);
  color: var(--c-brand);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 18px;
}

.hero__badge-dot {
  width: 5px;
  height: 5px;
  background: var(--c-brand);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.6);
  }
}

.hero__title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.hero__title-line {
  display: block;
}

.hero__title-line--brand {
  background: linear-gradient(135deg, #2ceabb 0%, #6af0d2 50%, #2ceabb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 22px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero__ctas .btn--primary {
  background: linear-gradient(135deg, #2ceabb 0%, #1fb896 100%);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(44, 234, 187, 0.3);
}

.hero__ctas .btn--primary:hover {
  background: linear-gradient(135deg, #26d4a8 0%, #1aa882 100%);
  box-shadow: 0 6px 28px rgba(44, 234, 187, 0.4);
  transform: translateY(-2px);
}

.hero__ctas .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.hero__ctas .btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 660px;
  margin: 0 auto;
  padding: 18px;
  background: rgba(44, 234, 187, 0.25);
  border: 1px solid rgba(44, 234, 187, 0.1);
  border-radius: var(--r-lg);
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.hero__stat-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-mouse {
  width: 18px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  position: relative;
}

.hero__scroll-wheel {
  width: 2px;
  height: 5px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 1px;
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 0.2;
    transform: translateX(-50%) translateY(8px);
  }
}

.hero__loading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── SECTION-SPECIFIC: WHY FUND ────────────────────────────── */
.why-fund {
  background: var(--c-bg-section);
}

.why-fund__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 36px;
  align-items: start;
}

.why-fund__text .section-label {
  margin-bottom: 6px;
}

.why-fund__para {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--c-text);
  margin-bottom: 14px;
}

.dark-mode .why-fund__para {
  color: var(--c-text-secondary);
}

.why-fund__para:last-child {
  font-weight: 600;
  color: #fff;
  padding: 16px;
  background: linear-gradient(135deg, rgba(44, 234, 187, 0.12) 0%, rgba(44, 234, 187, 0.06) 100%);
  border-left: 3px solid var(--c-brand);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-bottom: 0;
}

.dark-mode .why-fund__para:last-child {
  color: #fff;
  background: linear-gradient(135deg, rgba(44, 234, 187, 0.15) 0%, rgba(44, 234, 187, 0.05) 100%);
}

.why-fund__accent {
  position: sticky;
  top: 66px;
}

.why-fund__card {
  background: linear-gradient(145deg, #1a1e28 0%, #232838 100%);
  border: 1px solid rgba(44, 234, 187, 0.15);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-md), 0 0 40px rgba(44, 234, 187, 0.06);
  transition: all var(--t-base);
  color: #fff;
}

.dark-mode .why-fund__card {
  background: linear-gradient(145deg, #2a303f 0%, #343b50 100%);
  border-color: rgba(44, 234, 187, 0.2);
}

.why-fund__card:hover {
  box-shadow: var(--shadow-lg), 0 0 60px rgba(44, 234, 187, 0.1);
  border-color: rgba(44, 234, 187, 0.3);
  transform: translateY(-3px);
}

.why-fund__card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2ceabb 0%, #1fb896 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(44, 234, 187, 0.25);
}

.why-fund__card-icon i {
  font-size: 1.25rem;
  color: var(--c-dark-deep);
}

.why-fund__card-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.why-fund__card-text {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.65;
}

.why-fund__card-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
}

.why-fund__card-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

.why-fund__card-stat+.why-fund__card-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.why-fund__card-stat-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--c-brand);
  margin-bottom: 2px;
}

.why-fund__card-stat-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ── SECTION-SPECIFIC: WHY SOFTWARE ────────────────────────── */
.why-sw {
  background: #1a1e28;
}

.dark-mode .why-sw {
  background: #2e3448;
}

.why-sw .section-title {
  color: #fff;
}

.why-sw .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.why-sw__header {
  text-align: center;
  margin-bottom: 28px;
}

.why-sw__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.why-sw__challenges-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.why-sw__pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.why-sw__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--t-fast);
}

.why-sw__pill:hover {
  border-color: var(--c-brand);
  background: var(--c-brand-ghost);
}

.why-sw__pill i {
  color: var(--c-warning);
  font-size: 0.68rem;
}

.why-sw__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-sw__desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
}

.dark-mode .why-sw__desc {
  color: rgba(255, 255, 255, 0.75);
}

.why-sw__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
}

.why-sw__highlight {
  display: flex;
  gap: 10px;
  padding: 14px;
  background: var(--c-brand-ghost);
  border-left: 3px solid var(--c-brand);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.why-sw__highlight i {
  color: var(--c-brand);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.why-sw__highlight p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.dark-mode .why-sw__highlight p {
  color: rgba(255, 255, 255, 0.8);
}

.why-sw__bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 6px;
}

.why-sw__bar-fill {
  height: 100%;
  background: var(--c-brand);
  border-radius: 3px;
  transition: width 1s ease;
}

.why-sw__bar-fill--warn {
  background: var(--c-warning);
}

.why-sw__stat-head {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.why-sw__stat-value {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--c-brand);
}

.why-sw__stat-label {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── SECTION-SPECIFIC: BENEFITS ────────────────────────────── */
.benefits {
  background: var(--c-bg-section);
}

.benefits__header {
  text-align: center;
  margin-bottom: 24px;
}

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

.benefits__card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 18px;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefits__card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c-brand);
  transform: scaleX(0);
  transition: transform var(--t-base);
}

.benefits__card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--c-brand);
  transform: translateY(-2px);
}

.benefits__card:hover .benefits__card-bar {
  transform: scaleX(1);
}

.benefits__card-icon {
  width: 44px;
  height: 44px;
  background: var(--c-brand-ghost);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.benefits__card-icon i {
  font-size: 1.1rem;
  color: var(--c-brand);
}

.benefits__card-text {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--c-text-secondary);
  font-weight: 500;
}

/* ── SECTION-SPECIFIC: FEATURES ────────────────────────────── */
.features {
  background: #1a1e28;
  position: relative;
  overflow: hidden;
}

.dark-mode .features {
  background: #2e3448;
}

.features__header {
  text-align: center;
  margin-bottom: 28px;
}

.features .section-title {
  color: #fff;
}

.features .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.features__header .section-label {
  color: var(--c-brand);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.features__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-md);
  text-align: center;
  transition: all var(--t-base);
}

.features__item:hover {
  background: rgba(44, 234, 187, 0.06);
  border-color: rgba(44, 234, 187, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(44, 234, 187, 0.1);
}

.features__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(44, 234, 187, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base);
}

.features__item:hover .features__icon {
  background: var(--c-brand);
}

.features__icon i {
  font-size: 0.92rem;
  color: var(--c-brand);
  transition: color var(--t-base);
}

.features__item:hover .features__icon i {
  color: var(--c-dark-deep);
}

.features__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

/* ── SECTION-SPECIFIC: SERVICES ────────────────────────────── */
.services {
  background: var(--c-bg);
}

.services__header {
  text-align: center;
  margin-bottom: 24px;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.services__card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 22px;
  transition: all var(--t-base);
}

.services__card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--c-brand);
  transform: translateY(-2px);
}

.services__card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.services__card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services__card-icon--green {
  background: rgba(44, 234, 187, 0.1);
}

.services__card-icon--green i {
  color: var(--c-brand);
  font-size: 0.92rem;
}

.services__card-icon--orange {
  background: rgba(237, 137, 54, 0.1);
}

.services__card-icon--orange i {
  color: var(--c-warning);
  font-size: 0.92rem;
}

.services__card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
}

.services__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services__list li {
  display: flex;
  gap: 8px;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--c-text);
}

.dark-mode .services__list li {
  color: var(--c-text-secondary);
}

.services__list li i {
  margin-top: 3px;
  color: var(--c-brand);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.services__list--excluded li i {
  color: var(--c-warning);
}

/* ── SECTION-SPECIFIC: ELIGIBLE ────────────────────────────── */
.eligible {
  background: #1a1e28;
}

.dark-mode .eligible {
  background: #2e3448;
}

.eligible .section-title {
  color: #fff;
}

.eligible .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.eligible__header {
  text-align: center;
  margin-bottom: 22px;
}

.eligible__reasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.eligible__reason {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px;
  background: rgba(44, 234, 187, 0.06);
  border-radius: var(--r-md);
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.eligible__reason i {
  margin-top: 3px;
  color: var(--c-brand);
  font-size: 0.72rem;
  flex-shrink: 0;
}

.eligible__closing {
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 28px;
}

.eligible__sectors-title {
  text-align: center;
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.eligible__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.eligible__sector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  text-align: center;
  transition: all var(--t-base);
  cursor: default;
}

.eligible__sector:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(44, 234, 187, 0.08);
  border-color: var(--c-brand);
}

.eligible__sector-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-brand-ghost);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base);
}

.eligible__sector:hover .eligible__sector-icon {
  background: var(--c-brand);
}

.eligible__sector-icon i {
  font-size: 1.05rem;
  color: var(--c-brand);
  transition: color var(--t-base);
}

.eligible__sector:hover .eligible__sector-icon i {
  color: var(--c-dark-deep);
}

.eligible__sector-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

/* ── SECTION-SPECIFIC: COUNTRIES ───────────────────────────── */
.countries {
  background: var(--c-bg);
}

.countries__header {
  text-align: center;
  margin-bottom: 16px;
}

.countries__desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--c-text-secondary);
}

.countries__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.countries__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--c-text-secondary);
}

.countries__pill i {
  color: var(--c-brand);
  font-size: 0.68rem;
}

.countries__subtitle {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 16px;
}

.countries__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.countries__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 14px 10px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  text-align: center;
  transition: all var(--t-base);
}

.countries__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-brand);
}

.countries__flag {
  font-size: 1.8rem;
  line-height: 1;
}

.countries__name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-text);
}

.countries__badge {
  font-size: 0.66rem;
  color: var(--c-brand);
  font-weight: 600;
  padding: 2px 8px;
  background: var(--c-brand-ghost);
  border-radius: var(--r-full);
}

.countries__closing {
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--c-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* ── SECTION-SPECIFIC: HOW IT WORKS ────────────────────────── */
.how {
  background: #1a1e28;
}

.dark-mode .how {
  background: #2e3448;
}

.how .section-title {
  color: #fff;
}

.how .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.how__header {
  text-align: center;
  margin-bottom: 28px;
}

.how__stepper {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.how__step {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px 8px;
  position: relative;
  transition: all var(--t-base);
}

.how__connector {
  position: absolute;
  top: 26px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.how__connector--active {
  background: var(--c-brand);
}

.how__step-num {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  transition: all var(--t-base);
}

.how__step--active .how__step-num {
  background: var(--c-brand);
  border-color: var(--c-brand);
  color: var(--c-dark-deep);
  box-shadow: var(--shadow-brand);
}

.how__step-icon {
  width: 40px;
  height: 40px;
  background: var(--c-brand-ghost);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: all var(--t-base);
}

.how__step-icon i {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--t-base);
}

.how__step--active .how__step-icon {
  background: var(--c-brand-ghost-md);
}

.how__step--active .how__step-icon i {
  color: var(--c-brand);
}

.how__step-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3px;
}

.how__step-desc {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.how__timeline {
  display: none;
}

.how__tl-step {
  display: flex;
  gap: 12px;
  padding: 12px 12px 12px 18px;
  position: relative;
  cursor: pointer;
  transition: background var(--t-fast);
}

.how__tl-step--active {
  background: var(--c-brand-ghost);
}

.how__tl-marker {
  position: absolute;
  left: -14px;
  top: 14px;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base);
}

.how__tl-step--active .how__tl-marker {
  background: var(--c-brand);
  border-color: var(--c-brand);
}

.how__tl-num {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.how__tl-step--active .how__tl-num {
  color: var(--c-dark-deep);
}

.how__tl-content {
  flex: 1;
}

.how__tl-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--c-brand-ghost);
  border-radius: 6px;
  margin-bottom: 5px;
}

.how__tl-icon i {
  font-size: 0.78rem;
  color: var(--c-brand);
}

.how__tl-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2px;
}

.how__tl-desc {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ── SECTION-SPECIFIC: IMPACT ──────────────────────────────── */
.impact {
  background: var(--c-bg);
}

.impact__header {
  text-align: center;
  margin-bottom: 24px;
}

.impact__goals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.impact__goal {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-base);
}

.impact__goal:hover {
  border-color: var(--c-brand);
}

.impact__goal--open {
  border-color: var(--c-brand);
  box-shadow: var(--shadow-md);
}

.impact__goal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  cursor: pointer;
  transition: background var(--t-fast);
}

.impact__goal-header:hover {
  background: var(--c-brand-ghost);
}

.impact__goal-num {
  width: 30px;
  height: 30px;
  min-width: 30px;
  background: var(--c-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-dark-deep);
  font-weight: 700;
  font-size: 0.76rem;
}

.impact__goal-icon-wrap {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--c-brand-ghost);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact__goal-icon-wrap i {
  font-size: 0.92rem;
  color: var(--c-brand);
}

.impact__goal-info {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.impact__goal-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-text);
  flex: 1;
  min-width: 150px;
}

.impact__goal-stat {
  padding: 2px 10px;
  background: var(--c-brand);
  color: var(--c-dark-deep);
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}

.impact__goal-chevron {
  color: var(--c-text-muted);
  transition: transform var(--t-base);
  font-size: 0.76rem;
}

.impact__goal-chevron--open {
  transform: rotate(180deg);
}

.impact__goal-body {
  padding: 0 18px 18px 100px;
}

.impact__goal-desc {
  font-size: 0.86rem;
  line-height: 1.75;
  color: var(--c-text-secondary);
  margin-bottom: 12px;
}

.impact__goal-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 8px;
}

.impact__goal-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--c-text-secondary);
  padding: 5px 10px;
  background: var(--c-brand-ghost);
  border-radius: var(--r-sm);
}

.impact__goal-bullets li i {
  color: var(--c-brand);
  font-size: 0.58rem;
}

.impact__summary {
  text-align: center;
  padding: 28px 20px;
  background: #1a1e28;
  border-radius: var(--r-lg);
}

.dark-mode .impact__summary {
  background: #2e3448;
}

.impact__summary-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.impact__summary-text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.impact__summary-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.impact__summary-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(44, 234, 187, 0.08);
  border: 1px solid rgba(44, 234, 187, 0.15);
  border-radius: var(--r-full);
  color: var(--c-brand);
  font-size: 0.8rem;
  font-weight: 500;
}

.impact__summary-item i {
  font-size: 0.68rem;
}

.impact__summary-closing {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

/* ── SECTION-SPECIFIC: PARTNERS ────────────────────────────── */
.partners {
  background: var(--c-bg-section);
}

.partners__header {
  text-align: center;
  margin-bottom: 14px;
}

.partners__desc {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--c-text);
}

.dark-mode .partners__desc {
  color: var(--c-text-secondary);
}

.partners__subtitle {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 16px;
}

.partners__type-icon {
  width: 36px;
  height: 36px;
  background: var(--c-brand-ghost);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base);
}

.partners__type-icon i {
  font-size: 0.92rem;
  color: var(--c-brand);
}

.partners__type:hover .partners__type-icon {
  background: var(--c-brand);
}

.partners__type:hover .partners__type-icon i {
  color: var(--c-dark-deep);
}

.partners__cta {
  text-align: center;
  padding: 28px 20px;
  background: linear-gradient(145deg, #1a1e28 0%, #232838 100%);
  border-radius: var(--r-lg);
  margin-top: 20px;
}

.dark-mode .partners__cta {
  background: linear-gradient(145deg, #2a303f 0%, #343b50 100%);
}

.partners__cta-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.partners__cta-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 20px;
}

.dark-mode .partners__cta-text {
  color: rgba(255, 255, 255, 0.7);
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.partners__type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 8px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  text-align: center;
  transition: all var(--t-base);
}

.partners__type:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-brand);
}

.partners__type-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.4;
}

.partners__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.partners__benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--c-brand-ghost);
  border: 1px solid rgba(44, 234, 187, 0.12);
  border-radius: var(--r-md);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--c-text);
}

.partners__benefit i {
  color: var(--c-brand);
  font-size: 0.78rem;
}

/* ── SECTION-SPECIFIC: CEO MESSAGE ─────────────────────────── */
.ceo {
  background: #1a1e28;
  padding: var(--s-section) 0;
}

.dark-mode .ceo {
  background: #2e3448;
}

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

.ceo__quote-icon {
  font-size: 2.2rem;
  color: var(--c-brand);
  margin-bottom: 16px;
  opacity: 0.4;
}

.ceo__text {
  font-size: 1.12rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
  margin: 0 auto 28px;
  font-style: italic;
  border: none;
  padding: 0;
}

.ceo__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.ceo__avatar {
  width: 44px;
  height: 44px;
  background: var(--c-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ceo__avatar i {
  font-size: 1.1rem;
  color: var(--c-dark-deep);
}

.ceo__info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.ceo__name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.ceo__company {
  font-size: 0.78rem;
  color: var(--c-brand);
  font-weight: 500;
}

/* ── FOOTER — removed (existing site has its own) ── */

/* ── SECTION-SPECIFIC: LANDING / FLOATING CTA ──────────────── */
.landing {
  overflow-x: hidden;
}

.floating-cta {
  position: fixed;
  bottom: 160px;
  right: 24px;
  z-index: 900;
}

.floating-cta__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--c-brand);
  color: var(--c-dark-deep);
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-brand);
  transition: all var(--t-base);
}

.services__good-news {
  display: flex;
  gap: 10px;
  padding: 14px;
  background: var(--c-brand-ghost);
  border-left: 3px solid var(--c-brand);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.services__good-news i {
  color: var(--c-brand);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.services__good-news p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.dark-mode .services__good-news p {
  color: rgba(255, 255, 255, 0.8);
}

.floating-cta__btn:hover {
  background: var(--c-brand-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(44, 234, 187, 0.35);
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .section-tabs__tab span {
    display: none;
  }

  .section-tabs__tab-icon {
    font-size: 0.82rem;
  }

  .section-tabs__tab {
    padding: 6px 10px;
  }
}

@media (max-width: 768px) {
  :root {
    --s-section: 28px;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .section-desc {
    font-size: 0.84rem;
  }

  .btn {
    padding: 9px 18px;
    font-size: 0.78rem;
  }

  /* Tabs */
  .section-tabs__tab span {
    display: none;
  }

  .section-tabs__tab--cta span {
    display: none;
  }

  /* Hero responsive */
  .hero {
    min-height: 70vh;
    padding: 36px 0 24px;
  }

  .hero__title {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }

  .hero__subtitle {
    font-size: 0.88rem;
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 14px;
  }

  .hero__stat-value {
    font-size: 1.2rem;
  }

  /* Why fund */
  .why-fund__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-fund__accent {
    position: static;
  }

  /* Why software */
  .why-sw__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-sw__stats {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  /* Benefits */
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .benefits__card {
    padding: 14px;
  }

  /* Features */
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .features__item {
    padding: 14px 10px;
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
  }

  .services__card {
    padding: 18px;
  }

  /* Eligible */
  .eligible__reasons {
    grid-template-columns: 1fr;
  }

  .eligible__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .eligible__sector {
    padding: 14px 8px;
  }

  /* Countries */
  .countries__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .countries__pills {
    flex-direction: column;
    align-items: center;
  }

  /* How it works */
  .how__stepper {
    display: none;
  }

  .how__timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    margin-left: 14px;
  }

  /* Impact */
  .impact__goal-header {
    padding: 12px 14px;
  }

  .impact__goal-body {
    padding-left: 14px;
  }

  .impact__summary {
    padding: 24px 16px;
  }

  .impact__goal-bullets {
    grid-template-columns: 1fr;
  }

  /* Partners */
  .partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners__benefits {
    grid-template-columns: 1fr;
  }

  .partners__cta, .dark-cta {
    padding: 24px 16px;
  }

  /* CEO */
  .ceo__text {
    font-size: 0.95rem;
  }

  /* Footer — removed */

  /* Forms */
  .form-page {
    padding: 60px 0 40px;
  }

  .form-page__title {
    font-size: 1.35rem;
  }

  .form-page__form {
    padding: 16px;
  }

  .form-page__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  /* Floating CTA */
  .floating-cta {
    bottom: 120px;
    right: 14px;
  }

  .floating-cta__btn {
    padding: 9px 18px;
    font-size: 0.78rem;
  }

  .floating-cta__btn span {
    display: none;
  }

  .floating-cta__btn i {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.8rem;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .countries__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners__grid {
    grid-template-columns: 1fr 1fr;
  }

  .toast-container {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}