/* Financial Education Academy — professional UI, all viewports */
:root {
  --fea-font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --fea-font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --fea-bg: #07090e;
  --fea-bg-alt: #0a0d12;
  --fea-surface: #11161f;
  --fea-surface-hover: #161c27;
  --fea-border: #2a3140;
  --fea-muted: #8b95a8;
  --fea-text: #e4e8ee;
  --fea-text-strong: #f6f8fc;
  /* Cyan: links, focus, icon strokes — use sparingly */
  --fea-accent: #0ea5e9;
  --fea-accent-soft: rgba(14, 165, 233, 0.12);
  --fea-accent-glow: rgba(14, 165, 233, 0.22);
  /* Gold: primary actions only */
  --fea-gold: #c9a432;
  --fea-gold-bright: #d4af37;
  --fea-gold-soft: rgba(201, 164, 50, 0.14);
  --fea-gold-glow: rgba(201, 164, 50, 0.28);
  --fea-success: #10b981;
  --fea-radius: 14px;
  --fea-radius-sm: 10px;
  --fea-radius-xs: 6px;
  --fea-shadow: 0 8px 32px rgba(0,0,0,0.4);
  --fea-shadow-lg: 0 16px 48px rgba(0,0,0,0.5);
  --fea-btn-h: 48px;
  --fea-input-h: 48px;
  --fea-section-pad: clamp(1.5rem, 4vw, 2.5rem);
  --fea-wrap-pad: clamp(1rem, 4vw, 2rem);
  --fea-read-max: 65ch;
}
@media (max-width: 480px) {
  :root { --fea-btn-h: 44px; --fea-input-h: 44px; --fea-wrap-pad: 0.75rem; --fea-section-pad: clamp(1.25rem, 4vw, 2rem); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; width: 100%; overflow-x: hidden; font-size: 93.75%; }
body {
  font-family: var(--fea-font);
  font-size: 1rem;
  background: var(--fea-bg);
  color: var(--fea-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
body.lang-kinya {
  font-size: 0.94rem;
  letter-spacing: -0.01em;
}

/* Nav — professional e-learning header */
.fea-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 14, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--fea-border);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 1px 3px rgba(0,0,0,0.2);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

/* Unified academic chrome — fixed stack (utility + main row stay visible; avoids sticky broken by body overflow-x) */
:root {
  --fea-nav-utility-h: 36px;
  --fea-nav-sticky-stack-h: 92px;
}
body:has(> nav.fea-nav.fea-nav-unified) {
  padding-top: var(--fea-nav-sticky-stack-h, 92px);
}
/* Auth shells: no body padding — main.fea-auth-main supplies offset for fixed nav */
body.fea-auth-page:has(> nav.fea-nav.fea-nav-unified) {
  padding-top: 0;
}
.fea-nav.fea-nav-unified {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: env(safe-area-inset-top, 0px);
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
}
.fea-nav.fea-nav-unified.scrolled .fea-nav-inner {
  background: rgba(10, 15, 30, 0.94);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05), 0 6px 24px rgba(0, 0, 0, 0.35);
}
.fea-nav.fea-nav-unified,
.fea-nav.fea-nav-unified .fea-nav-inner,
.fea-nav.fea-nav-unified .fea-nav-links a,
.fea-nav.fea-nav-unified .fea-nav-actions {
  font-family: var(--fea-font);
}

/* Thin utility strip: trust line + language (above main nav row) */
.fea-nav.fea-nav-unified .fea-nav-utility {
  position: relative;
  z-index: 102;
  flex-shrink: 0;
  background: rgb(10, 15, 30);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.fea-nav-utility-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 32px;
  padding: 0.25rem 1rem;
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
}
.fea-nav-trust {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(228, 232, 238, 0.82);
  line-height: 1.3;
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Small screens: two lines (line break after bullet via .fea-nav-trust-break) */
.fea-nav-trust-break {
  display: none;
}
@media (max-width: 768px) {
  .fea-nav-utility-inner {
    padding-left: max(0.75rem, env(safe-area-inset-left));
    padding-right: max(0.75rem, env(safe-area-inset-right));
    align-items: flex-start;
  }
  .fea-nav-trust {
    font-size: 10px;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    display: block;
    line-height: 1.35;
    max-width: calc(100% - 4.5rem);
  }
  .fea-nav-trust-break {
    display: block;
  }
}
.fea-nav.fea-nav-unified .fea-nav-inner {
  position: relative;
  z-index: 101;
  flex-shrink: 0;
  align-items: center;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
  background: rgba(10, 15, 30, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}
.fea-lang-toggle--compact {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}
.fea-lang-toggle--compact .fea-lang-sep {
  display: inline-block;
  width: 1px;
  height: 0.75rem;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}
.fea-lang-toggle--compact .fea-lang-flag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-width: 2.35rem;
  min-height: 2rem;
  padding: 0.2rem 0.4rem;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  border-radius: 0;
  transition: background 0.15s ease, opacity 0.15s ease;
}
.fea-lang-toggle--compact .fea-lang-flag-btn:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--fea-accent-soft);
}
.fea-lang-toggle--compact .fea-lang-flag {
  width: 22px;
  height: auto;
  max-height: 16px;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}
.fea-lang-toggle--compact .fea-lang-flag-btn:not(.active) .fea-lang-flag {
  opacity: 0.4;
  filter: grayscale(0.4);
}
.fea-lang-toggle--compact .fea-lang-flag-btn.active {
  background: rgba(14, 165, 233, 0.18);
}
.fea-lang-toggle--compact .fea-lang-flag-btn.active .fea-lang-flag {
  opacity: 1;
  filter: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}
.fea-nav.scrolled:not(.fea-nav-unified) {
  background: rgba(7, 9, 14, 0.98);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 4px 24px rgba(0,0,0,0.35);
}
.fea-nav-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0.75rem clamp(1.25rem, 4vw, 2rem);
  padding-left: max(clamp(1.25rem, 4vw, 2rem), env(safe-area-inset-left));
  padding-right: max(clamp(1.25rem, 4vw, 2rem), env(safe-area-inset-right));
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  min-width: 0;
}
.fea-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
  transition: opacity 0.2s;
}
.fea-logo:hover { opacity: 0.9; }
.fea-logo:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--fea-accent-soft); border-radius: var(--fea-radius-xs); }
.fea-logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(220px, 42vw);
  flex-shrink: 0;
  object-fit: contain;
  object-position: center left;
  border-radius: 8px;
}
.fea-logo-with-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex: 1 1 auto;
  max-width: calc(100% - 3.25rem);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .fea-logo-img {
    height: 32px;
    max-width: min(180px, 40vw);
  }
}
@media (max-width: 992px) {
  .fea-nav-unified .fea-logo-with-wordmark {
    flex-shrink: 1;
  }
}
@media (min-width: 993px) {
  .fea-logo-with-wordmark { flex: 0 0 auto; max-width: none; flex-shrink: 0; }
  body.lang-kinya .fea-nav .fea-logo-with-wordmark {
    flex-shrink: 0;
  }
}
.fea-logo-text {
  font-weight: 700;
  font-size: clamp(0.625rem, 1.1vw + 0.5rem, 0.9375rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fea-text-strong);
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 480px) {
  .fea-nav-unified .fea-nav-inner {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.35rem 0.45rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: max(0.5rem, env(safe-area-inset-left));
    padding-right: max(0.5rem, env(safe-area-inset-right));
  }
  .fea-nav-unified .fea-logo-with-wordmark {
    min-width: 0;
    flex: 1 1 auto;
    max-width: calc(100% - 48px - 0.45rem);
    align-items: center;
  }
  .fea-nav-unified .fea-logo-text {
    font-size: clamp(0.48rem, 2.65vw + 0.22rem, 0.78rem);
    line-height: 1.12;
  }
  .fea-nav-unified .fea-logo-img {
    height: 32px;
    width: auto;
    max-width: min(150px, 34vw);
  }
}
@media (max-width: 380px) {
  .fea-logo-with-wordmark { gap: 0.35rem; }
  .fea-nav-unified .fea-logo-with-wordmark {
    max-width: calc(100% - 48px - 0.35rem);
  }
  .fea-nav-unified .fea-logo-text {
    font-size: clamp(0.45rem, 2.5vw + 0.2rem, 0.72rem);
  }
}
@media (max-width: 320px) {
  .fea-nav-unified .fea-logo-with-wordmark {
    max-width: calc(100% - 48px - 0.25rem);
  }
  .fea-nav-unified .fea-logo-text {
    font-size: clamp(0.42rem, 2.2vw + 0.18rem, 0.68rem);
  }
  .fea-nav-unified .fea-logo-img {
    height: 32px;
    width: auto;
    max-width: min(140px, 32vw);
  }
}
/* Fallback when logo image fails to load (wrong path, missing file, etc.) */
.fea-logo-using-fallback {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--fea-text-strong);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.fea-logo-fallback-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.fea-logo-fallback-text { white-space: nowrap; }
.fea-logo-icon {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 8px;
}
@media (max-width: 480px) {
  .fea-logo-fallback-icon { width: 32px; height: 32px; }
  .fea-logo-fallback-text { font-size: 0.875rem; }
  .fea-logo-icon { width: 32px; height: 32px; }
}
.fea-nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 1rem;
  min-width: 0;
}
/* Drawer-only chrome (logo row + footer) — hidden on desktop */
.fea-nav-menu-head,
.fea-nav-menu-footer {
  display: none;
}
@media (min-width: 993px) {
  .fea-nav .fea-nav-menu,
  .fea-nav .fea-nav-center,
  .fea-nav .fea-nav-links {
    overflow: visible;
  }
}
.fea-nav-center {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.fea-nav-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(0.5rem, 1.2vw, 1.5rem);
  min-width: 0;
}
.fea-nav-links a {
  color: var(--fea-muted);
  text-decoration: none;
  font-size: clamp(0.8125rem, 1.6vw, 0.9375rem);
  font-weight: 500;
  padding: 0.4rem 0.5rem;
  border-radius: var(--fea-radius-xs);
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
  position: relative;
  white-space: nowrap;
}
.fea-nav-links a:hover { color: var(--fea-text); background: rgba(255,255,255,0.05); }
.fea-nav-links a[aria-current="page"] {
  color: var(--fea-accent);
  font-weight: 600;
}
.fea-nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--fea-accent);
  border-radius: 1px;
  opacity: 0.85;
}
.fea-nav-links a:focus-visible,
.fea-nav-cta:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--fea-accent-soft); border-radius: var(--fea-radius-xs); }
.fea-nav-dropdown-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--fea-accent-soft);
  border-radius: var(--fea-radius-xs);
}

/* Tumenye — grouped About / Contact / Services / Legal / Refund */
.fea-nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.fea-nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0;
  padding: 0.4rem 0.5rem;
  border: none;
  border-radius: var(--fea-radius-xs);
  background: transparent;
  color: var(--fea-muted);
  font-family: inherit;
  font-size: clamp(0.8125rem, 1.6vw, 0.9375rem);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.fea-nav-dropdown-toggle:hover {
  color: var(--fea-text);
  background: rgba(255, 255, 255, 0.05);
}
.fea-nav-dropdown-label {
  pointer-events: none;
}
.fea-nav-dropdown-chevron {
  flex-shrink: 0;
  opacity: 0.88;
  transition: transform 0.2s ease;
}
.fea-nav-dropdown-panel {
  list-style: none;
  margin: 0;
  padding: 0.45rem 0;
  min-width: 13.5rem;
  border-radius: var(--fea-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  background: rgba(10, 15, 30, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.fea-nav-dropdown-panel a {
  display: block;
  padding: 0.5rem 1.05rem;
  color: var(--fea-muted);
  text-decoration: none;
  font-size: clamp(0.78rem, 1.35vw, 0.875rem);
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.fea-nav-dropdown-panel a:hover,
.fea-nav-dropdown-panel a:focus-visible {
  color: var(--fea-text);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}
.fea-nav-dropdown-panel a[aria-current="page"] {
  color: var(--fea-accent);
  font-weight: 600;
  background: rgba(14, 165, 233, 0.1);
}
.fea-nav-dropdown--active > .fea-nav-dropdown-toggle {
  color: var(--fea-accent);
  font-weight: 600;
}
@media (min-width: 993px) {
  .fea-nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s, transform 0.2s ease;
    z-index: 120;
    max-width: min(18rem, calc(100vw - 2rem));
    box-sizing: border-box;
  }
  .fea-nav-dropdown:hover .fea-nav-dropdown-panel,
  .fea-nav-dropdown:focus-within .fea-nav-dropdown-panel,
  .fea-nav-dropdown.fea-nav-dropdown--open .fea-nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .fea-nav-dropdown:hover .fea-nav-dropdown-chevron,
  .fea-nav-dropdown:focus-within .fea-nav-dropdown-chevron,
  .fea-nav-dropdown.fea-nav-dropdown--open .fea-nav-dropdown-chevron {
    transform: rotate(180deg);
  }
}
@media (max-width: 992px) {
  .fea-nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-width: 0;
  }
  /* Accordion trigger: reads clearly as tappable, distinct from plain links */
  .fea-nav-dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    min-height: 38px;
    padding: 0.45rem 0.8rem;
    font-size: 1rem;
    border-radius: var(--fea-radius-sm);
    text-align: left;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    -webkit-tap-highlight-color: rgba(14, 165, 233, 0.15);
  }
  .fea-nav-dropdown-toggle:active {
    background: rgba(255, 255, 255, 0.07);
  }
  .fea-nav-dropdown.fea-nav-dropdown--open .fea-nav-dropdown-toggle {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.28);
    color: var(--fea-text);
  }
  .fea-nav-dropdown--active > .fea-nav-dropdown-toggle {
    color: var(--fea-accent);
  }
  /* Full-width inset panel — no floating “card” clipping content */
  .fea-nav-dropdown-panel {
    display: none;
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin: 0.35rem 0 0.65rem;
    padding: 0.4rem 0;
    min-width: 0;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--fea-accent);
    border-radius: var(--fea-radius-sm);
    background: rgba(12, 16, 26, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    max-height: min(52vh, 320px);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 164, 50, 0.35) rgba(255, 255, 255, 0.04);
  }
  .fea-nav-dropdown-panel::-webkit-scrollbar {
    width: 5px;
  }
  .fea-nav-dropdown-panel::-webkit-scrollbar-thumb {
    background: rgba(201, 164, 50, 0.4);
    border-radius: 100px;
  }
  .fea-nav-dropdown.fea-nav-dropdown--open .fea-nav-dropdown-panel {
    display: block;
  }
  .fea-nav-dropdown--open .fea-nav-dropdown-chevron {
    transform: rotate(180deg);
  }
  .fea-nav-dropdown-panel a {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 0.4rem 0.75rem;
    margin: 0.12rem 0.45rem;
    font-size: 0.95rem;
    white-space: normal;
    line-height: 1.4;
    border-radius: var(--fea-radius-xs);
    -webkit-tap-highlight-color: rgba(201, 164, 50, 0.12);
  }
  .fea-nav-dropdown-panel a:active {
    background: rgba(255, 255, 255, 0.06);
  }
  .fea-nav-dropdown-panel a[aria-current="page"] {
    background: rgba(14, 165, 233, 0.14);
    border-left: 3px solid var(--fea-gold-bright);
    padding-left: calc(1rem - 3px);
    margin-left: 0.45rem;
    margin-right: 0.45rem;
    color: var(--fea-accent);
    font-weight: 600;
  }
  body.lang-kinya .fea-nav .fea-nav-dropdown-panel a {
    font-size: 0.93rem;
    letter-spacing: -0.02em;
    line-height: 1.4;
  }
}

/* Extra-small phones: comfortable reading, no cramped submenu */
@media (max-width: 380px) {
  .fea-nav-dropdown-toggle {
    padding: 0.8rem 0.85rem;
    font-size: 0.95rem;
  }
  .fea-nav-dropdown-panel a {
    font-size: 0.9rem;
    padding: 0.7rem 0.85rem;
    margin-left: 0.35rem;
    margin-right: 0.35rem;
  }
  body.lang-kinya .fea-nav .fea-nav-dropdown-panel a {
    font-size: 0.88rem;
  }
}

.fea-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  min-width: max-content;
}
.fea-nav-actions .fea-nav-link {
  color: var(--fea-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  min-height: 44px;
  min-width: max(44px, max-content);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--fea-radius-xs);
  transition: color 0.2s, background 0.2s;
  box-sizing: border-box;
  white-space: nowrap;
  position: relative;
  z-index: 3;
}
.fea-nav-actions .fea-nav-link:hover { color: var(--fea-text); background: rgba(255,255,255,0.05); }
.fea-nav-actions .fea-nav-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--fea-accent-soft);
}
.fea-lang-toggle:not(.fea-lang-toggle--compact) {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem;
  background: var(--fea-surface);
  border-radius: var(--fea-radius-xs);
  border: 1px solid var(--fea-border);
}
.fea-lang-toggle:not(.fea-lang-toggle--compact) button {
  background: none;
  border: none;
  color: var(--fea-muted);
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(0.75rem, 1.6vw, 0.8125rem);
  font-weight: 600;
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.fea-lang-toggle:not(.fea-lang-toggle--compact) button:hover { color: var(--fea-text); }
.fea-lang-toggle:not(.fea-lang-toggle--compact) button.active { color: var(--fea-accent); background: var(--fea-accent-soft); }
.fea-lang-toggle:not(.fea-lang-toggle--compact) button:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--fea-accent-soft); }
.fea-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: max-content;
  padding: 0 1.35rem;
  background: linear-gradient(135deg, var(--fea-gold-bright) 0%, var(--fea-gold) 55%, #9a7b1a 100%);
  color: #0a0c10 !important;
  border-radius: var(--fea-radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: filter 0.2s, box-shadow 0.2s, transform 0.15s ease;
  box-shadow: 0 2px 10px var(--fea-gold-glow);
  position: relative;
  z-index: 3;
  white-space: nowrap;
}
.fea-nav-cta:hover, .fea-nav-cta:visited { color: #0a0c10 !important; filter: brightness(1.06); box-shadow: 0 4px 22px var(--fea-gold-glow); transform: translateY(-1px); }
.fea-nav-cta:active { transform: translateY(0); }
body.lang-kinya .fea-nav-cta {
  white-space: nowrap;
  padding-left: 12px;
  padding-right: 12px;
}

/*
 * body.lang-kinya — set by fea-nav.js when localStorage fea-lang is kinya (syncs with fea-i18n.js).
 * Tighter nav typography (~10–15%) so longer Kinyarwanda strings stay readable without overlap.
 */
@media (min-width: 993px) {
  body.lang-kinya .fea-nav .fea-nav-center {
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    row-gap: 0.2rem;
    max-width: 100%;
    overflow: visible;
  }
  body.lang-kinya .fea-nav .fea-nav-links {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.1rem;
    max-width: 100%;
  }
  body.lang-kinya .fea-nav .fea-nav-links a {
    font-size: clamp(0.69rem, 1.28vw, 0.8rem);
    letter-spacing: -0.035em;
    padding: 0.32rem 0.42rem;
    line-height: 1.25;
  }
  body.lang-kinya .fea-nav .fea-nav-dropdown-toggle {
    font-size: clamp(0.69rem, 1.28vw, 0.8rem);
    letter-spacing: -0.035em;
    padding: 0.32rem 0.42rem;
    line-height: 1.25;
  }
  body.lang-kinya .fea-nav .fea-logo-text {
    font-size: clamp(0.53rem, 0.9vw + 0.42rem, 0.8rem);
    letter-spacing: -0.04em;
  }
  body.lang-kinya .fea-nav .fea-nav-actions .fea-nav-link {
    font-size: clamp(0.78rem, 1.22vw, 0.85rem);
    letter-spacing: -0.025em;
  }
  body.lang-kinya .fea-nav .fea-nav-cta {
    font-size: clamp(0.74rem, 1.15vw, 0.8rem);
    padding: 0 1.05rem;
    letter-spacing: 0;
  }
}

@media (min-width: 993px) and (max-width: 1160px) {
  body.lang-kinya .fea-nav .fea-nav-inner {
    flex-wrap: wrap;
    row-gap: 0.45rem;
  }
  body.lang-kinya .fea-nav .fea-nav-menu {
    flex: 1 1 100%;
    justify-content: space-between;
    gap: 0.65rem;
    min-width: 0;
  }
}

/* From 993px down: show hamburger so nav links never wrap awkwardly (e.g. Legal under Home) */
@media (max-width: 992px) {
  .fea-nav-menu { flex: 1 1 100%; }
  .fea-nav-center { width: 100%; justify-content: flex-start; }
  .fea-nav-actions { margin-left: auto; }
}

/* Mobile: hamburger + full-screen menu */
.fea-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  background: var(--fea-surface);
  border: 2px solid var(--fea-border);
  border-radius: var(--fea-radius-xs);
  color: var(--fea-text-strong);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  position: relative;
  z-index: 102;
}
.fea-nav.fea-nav-open .fea-nav-toggle {
  z-index: 210;
}
.fea-nav-toggle:hover { background: var(--fea-surface-hover); border-color: rgba(201, 164, 50, 0.45); color: var(--fea-gold-bright); }
.fea-nav-toggle:focus,
.fea-nav-toggle:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--fea-accent-soft); }
.fea-nav-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 22px;
  height: 18px;
  justify-content: center;
  align-items: center;
}
.fea-nav-toggle-icon span {
  display: block;
  width: 100%;
  height: 3px;
  min-height: 3px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.fea-nav.fea-nav-open .fea-nav-toggle-icon span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.fea-nav.fea-nav-open .fea-nav-toggle-icon span:nth-child(2) { opacity: 0; }
.fea-nav.fea-nav-open .fea-nav-toggle-icon span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 992px) {
  .fea-nav-inner { flex-wrap: nowrap; }
  .fea-nav-toggle { display: inline-flex; flex-shrink: 0; }
  .fea-logo { min-width: 0; }
  .fea-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: rgba(7, 9, 14, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 200;
    padding: calc(var(--fea-nav-sticky-stack-h, 92px) + 0.15rem) max(0.85rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(0.85rem, env(safe-area-inset-left));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: visibility 0.25s, opacity 0.25s;
    margin: 0;
    border: none;
  }
  .fea-nav.fea-nav-open .fea-nav-menu { visibility: visible; opacity: 1; pointer-events: auto; }

  /* Logo only (no duplicate close — hamburger is the X) */
  .fea-nav-menu-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    padding: 0 0 0.2rem;
    margin: 0;
  }
  .fea-nav-menu-head__brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border-radius: var(--fea-radius-sm);
    transition: opacity 0.2s, background 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .fea-nav-menu-head__brand:hover {
    opacity: 0.92;
    background: rgba(255, 255, 255, 0.05);
  }
  .fea-nav-menu-head__logo {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
  }

  /* Natural height — whole drawer scrolls (.fea-nav-menu) if needed; no nested scrollbar */
  .fea-nav-center {
    order: unset;
    width: 100%;
    justify-content: flex-start;
    align-items: stretch;
    min-width: 0;
    flex: 0 0 auto;
    overflow: visible;
  }

  .fea-nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .fea-nav-links a {
    padding: 0.28rem 0.75rem 0.28rem 1.35rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--fea-radius-sm);
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    position: relative;
  }
  .fea-nav-links a[aria-current="page"]::after {
    display: none;
  }
  .fea-nav-links a[aria-current="page"] {
    border-left: none;
    padding: 0.22rem 0.75rem 0.22rem 1.3rem;
    min-height: 34px;
    background: rgba(79, 70, 229, 0.14);
    color: var(--fea-text-strong);
    font-weight: 600;
  }
  .fea-nav-links a[aria-current="page"]::before {
    content: "";
    position: absolute;
    left: 0.55rem;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #818cf8;
    box-shadow: 0 0 0 2px rgba(129, 140, 248, 0.25);
  }
  body.lang-kinya .fea-nav .fea-nav-links a {
    font-size: 0.95rem;
    letter-spacing: -0.02em;
    line-height: 1.35;
    white-space: normal;
  }
  .fea-nav-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    margin-left: 0;
    margin-top: 0;
    border-top: 1px solid var(--fea-border);
    padding-top: 0.45rem;
    gap: 0.4rem 0.5rem;
    flex-shrink: 0;
    z-index: auto;
    position: relative;
  }
  .fea-nav-actions .fea-nav-link,
  .fea-nav-actions .fea-nav-cta {
    z-index: auto;
    width: auto;
    min-width: 0;
    flex: 0 0 auto;
  }
  /* Dashboard / Account share .fea-nav-link-signin with Sign In — pin those left */
  .fea-nav-actions .fea-nav-link-signin[href="/dashboard.php"],
  .fea-nav-actions .fea-nav-link-signin[href="/profile.php"] {
    order: 0;
    margin-right: auto;
  }
  .fea-nav-actions .fea-nav-link-signin[href="/login.php"] {
    order: 1;
  }
  .fea-nav-actions .fea-nav-cta {
    order: 2;
    justify-content: center;
    min-height: 34px;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    max-width: none;
    border-radius: 999px;
    background: linear-gradient(180deg, #6366f1 0%, #4f46e5 100%);
    color: #fff !important;
    box-shadow: 0 4px 12px -2px rgba(79, 70, 229, 0.35);
    border: none;
    filter: none;
  }
  .fea-nav-actions .fea-nav-cta:hover,
  .fea-nav-actions .fea-nav-cta:visited {
    color: #fff !important;
    filter: brightness(1.05);
    box-shadow: 0 6px 14px -3px rgba(79, 70, 229, 0.4);
    transform: translateY(-1px);
  }
  .fea-nav-actions .fea-nav-link-signin {
    order: 1;
    justify-content: center;
    min-height: 34px;
    font-size: 0.8125rem;
    padding: 0.28rem 0.65rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: var(--fea-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s, border-color 0.2s, background 0.2s, text-decoration-color 0.2s;
  }
  .fea-nav-actions .fea-nav-link-signin:hover {
    color: var(--fea-text);
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.04);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(255, 255, 255, 0.45);
  }
  .fea-nav-actions .fea-nav-link-signout {
    order: 3;
  }
  .fea-nav-actions__learner-desktop-extras-wrap {
    flex: 1 0 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.35rem;
    margin: 0 0 0.15rem;
  }

  .fea-nav-menu-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0;
    padding-top: 0.55rem;
    flex-shrink: 0;
  }
  .fea-nav-menu-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
  }
  .fea-nav-menu-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    border-radius: 999px;
    color: var(--fea-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.15s ease;
  }
  .fea-nav-menu-social-link:hover {
    color: var(--fea-text);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
  }
  .fea-nav-menu-social-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--fea-accent-soft);
  }
  .fea-nav-menu-social-link svg {
    width: 16px;
    height: 16px;
  }
  .fea-nav-menu-watermark {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.22);
    user-select: none;
  }
  .fea-nav-menu-copy {
    margin: 0;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.38);
    text-align: center;
    line-height: 1.4;
  }

  /* Staggered entrance (slide + fade); --fea-stagger set by fea-nav.js */
  .fea-nav:not(.fea-nav-open) .fea-nav-menu [data-fe-nav-stagger] {
    opacity: 0;
    transform: translateX(14px) scale(0.98);
    transition: none;
  }
  .fea-nav.fea-nav-open .fea-nav-menu [data-fe-nav-stagger] {
    opacity: 1;
    transform: translateX(0) scale(1);
    transition: opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1), transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(0.035s + var(--fea-stagger, 0) * 0.055s);
  }
}

/* Medium-small: single-column cards, full text, fluid type */
@media (max-width: 600px) {
  .fea-section h1 { font-size: 1.05rem; line-height: 1.3; }
  .fea-section h2 { font-size: 1rem; line-height: 1.35; margin-bottom: 0.4rem; }
  .fea-section h3 { font-size: 0.9rem; line-height: 1.35; }
  .fea-section p { font-size: 0.85rem; line-height: 1.45; }
  .fea-section ul:not([class]) li,
  .fea-section ol:not([class]) li { font-size: 0.8rem; line-height: 1.4; padding-left: 0.7rem; }
  .fea-stats { gap: 0.55rem; margin: 0.85rem 0; }
  .fea-stat { padding: 0.95rem 0.55rem; min-height: 7.25rem; }
  .fea-stat-num { font-size: 1.15rem; line-height: 1.25; }
  .fea-stat-label { font-size: 0.7rem; line-height: 1.25; margin-top: 0.15rem; }
  .fea-stat-icon { width: 26px; height: 26px; margin-bottom: 0.25rem; }
  .fea-cards { grid-template-columns: 1fr; gap: 0.75rem; margin-top: 0.65rem; }
  .fea-card { padding: 1rem 0.85rem; min-width: 0; overflow: visible; border-radius: var(--fea-radius-sm); }
  .fea-card h4 { font-size: clamp(0.78rem, 2.4vw, 0.9rem); line-height: 1.35; margin-bottom: 0.3rem; font-weight: 600; overflow: visible; text-overflow: unset; white-space: normal; }
  .fea-card p { font-size: clamp(0.74rem, 2.2vw, 0.88rem); line-height: 1.45; overflow: visible; display: block; -webkit-line-clamp: unset; line-clamp: unset; }
  .fea-card-icon { width: 26px; height: 26px; margin-bottom: 0.35rem; }
  .fea-card ul { font-size: clamp(0.7rem, 2vw, 0.82rem); line-height: 1.4; margin: 0.25rem 0; padding-left: 0; max-height: none; overflow: visible; }
  .fea-card ul li { padding-left: 0; margin-bottom: 0.12rem; }
  .fea-card .fea-card-meta { font-size: 0.65rem; line-height: 1.25; margin-top: 0.25rem; }
  .fea-card .fea-btn { font-size: clamp(0.74rem, 2vw, 0.85rem); line-height: 1.3; padding: 0.4rem 0.6rem; min-height: 2.5rem; }
  .fea-card.fea-testimonial p { font-size: 0.74rem; line-height: 1.45; overflow: visible; -webkit-line-clamp: unset; line-clamp: unset; }
  .fea-btn { min-height: 42px; padding: 0 1.125rem; font-size: 0.875rem; }
}

/* Small screen: balanced small fonts throughout; cards and stats compact */
@media (max-width: 480px) {
  body { font-size: 14px; }
  .fea-nav-utility-inner { padding-left: max(0.75rem, env(safe-area-inset-left)); padding-right: max(0.75rem, env(safe-area-inset-right)); }
  .fea-nav-inner { padding: 0.625rem max(0.75rem, env(safe-area-inset-left)) 0.625rem max(0.75rem, env(safe-area-inset-right)); gap: 0.5rem; }
  .fea-logo-img { height: 32px; width: auto; max-width: min(160px, 36vw); }
  .fea-nav-toggle { width: 44px; height: 44px; min-width: 44px; min-height: 44px; }
  .fea-hero { padding-left: max(var(--fea-wrap-pad), env(safe-area-inset-left)); padding-right: max(var(--fea-wrap-pad), env(safe-area-inset-right)); }
  .fea-hero h1 { font-size: 1.15rem; line-height: 1.25; }
  .fea-hero .fea-hero-sub { font-size: 0.8125rem; line-height: 1.4; }
  .fea-hero-badge { font-size: 0.65rem; padding: 0.3rem 0.6rem; }
  .fea-hero-trust { font-size: 0.65rem; line-height: 1.25; gap: 0.3rem 0.5rem; }
  .fea-section h1 { font-size: 0.95rem; line-height: 1.25; margin-bottom: 0.35rem; }
  .fea-section h2 { font-size: 0.9rem; line-height: 1.3; margin-bottom: 0.3rem; }
  .fea-section h3 { font-size: 0.85rem; line-height: 1.3; }
  .fea-section p { font-size: 0.8rem; line-height: 1.4; max-width: none; }
  .fea-section ul:not([class]) li,
  .fea-section ol:not([class]) li,
  .fea-list li { font-size: 0.75rem; line-height: 1.35; padding-left: 0.75rem; }
  .fea-stats { gap: 0.45rem; margin: 0.65rem 0; }
  .fea-stat { padding: 0.9rem 0.5rem; min-height: 6.85rem; border-radius: var(--fea-radius-sm); }
  .fea-stat-num { font-size: 1.05rem; line-height: 1.25; }
  .fea-stat-label { font-size: 0.6875rem; line-height: 1.25; margin-top: 0.1rem; }
  .fea-stat-icon { width: 22px; height: 22px; margin-bottom: 0.2rem; }
  .fea-cards { grid-template-columns: 1fr; gap: 0.7rem; margin-top: 0.55rem; }
  .fea-card { padding: 0.95rem 0.8rem; border-radius: var(--fea-radius-sm); min-width: 0; overflow: visible; }
  .fea-card h4 { font-size: clamp(0.76rem, 2.6vw, 0.88rem); line-height: 1.35; margin-bottom: 0.25rem; font-weight: 600; overflow: visible; text-overflow: unset; white-space: normal; }
  .fea-card p { font-size: clamp(0.72rem, 2.4vw, 0.85rem); line-height: 1.45; overflow: visible; display: block; -webkit-line-clamp: unset; line-clamp: unset; }
  .fea-card-icon { width: 24px; height: 24px; margin-bottom: 0.3rem; }
  .fea-card ul { font-size: clamp(0.68rem, 2.2vw, 0.8rem); line-height: 1.4; margin: 0.2rem 0; padding-left: 0; max-height: none; overflow: visible; }
  .fea-card ul li { padding-left: 0; margin-bottom: 0.1rem; }
  .fea-card .fea-card-meta { font-size: 0.6875rem; line-height: 1.25; margin-top: 0.2rem; }
  .fea-card .fea-btn { font-size: clamp(0.72rem, 2.2vw, 0.82rem); line-height: 1.3; padding: 0.4rem 0.55rem; min-height: 2.5rem; }
  .fea-card.fea-testimonial { padding: 0.95rem 0.8rem; }
  .fea-card.fea-testimonial::before { font-size: 1rem; }
  .fea-card.fea-testimonial p { font-size: clamp(0.72rem, 2.4vw, 0.85rem); line-height: 1.45; overflow: visible; -webkit-line-clamp: unset; line-clamp: unset; }
  .fea-card:hover { transform: none; }
  .fea-footer:not(.fea-footer--pro) { font-size: 0.75rem; line-height: 1.4; padding: 1.25rem max(var(--fea-wrap-pad), env(safe-area-inset-right)) max(1.25rem, env(safe-area-inset-bottom)) max(var(--fea-wrap-pad), env(safe-area-inset-left)); }
  .fea-footer-links a { min-height: 44px; padding: 0.5rem 0.75rem; font-size: 0.75rem; }
  .fea-btn { font-size: 0.8125rem; min-height: 42px; padding: 0 1rem; }
  .fea-nav-actions .fea-nav-cta { min-height: 38px; padding: 0 0.9rem; font-size: 0.875rem; }
  .fea-nav-menu {
    padding: calc(var(--fea-nav-sticky-stack-h, 88px) + 0.12rem) max(0.65rem, env(safe-area-inset-right)) max(1.1rem, env(safe-area-inset-bottom)) max(0.65rem, env(safe-area-inset-left));
  }
}

/* Hero — e-learning platform hero */
.fea-hero {
  padding: clamp(2.25rem, 6vw, 4.5rem) var(--fea-wrap-pad) clamp(2.25rem, 5vw, 3.5rem);
  text-align: center;
  background: linear-gradient(180deg, rgba(7,9,14,0.94) 0%, var(--fea-bg-alt) 50%, var(--fea-bg) 100%),
    url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1200&q=80') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
@media (min-width: 900px) {
  .fea-hero { padding-top: clamp(3rem, 7vw, 4.5rem); padding-bottom: clamp(2.5rem, 6vw, 3.5rem); }
}
.fea-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 140%;
  height: 75%;
  background: radial-gradient(ellipse 55% 45% at 50% 0%, var(--fea-accent-soft) 0%, transparent 65%);
  pointer-events: none;
}
.fea-hero-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  margin-bottom: 1rem;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fea-accent);
  letter-spacing: 0.02em;
}
.fea-hero .fea-hero-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  display: block;
  position: relative;
  z-index: 1;
}
.fea-hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.5rem, 4.2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fea-text-strong);
  margin-bottom: 0.875rem;
  line-height: 1.22;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.fea-hero .fea-hero-sub {
  position: relative;
  z-index: 1;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--fea-muted);
  max-width: 640px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}
.fea-hero .fea-cta-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.25rem;
}
@media (max-width: 480px) {
  .fea-hero .fea-cta-row { gap: 0.5rem; }
  .fea-hero .fea-cta-row .fea-btn { width: 100%; max-width: 280px; }
}
.fea-hero-trust {
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: var(--fea-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
}
.fea-hero-trust span { display: inline-flex; align-items: center; gap: 0.35rem; }
.fea-hero-trust .fea-hero-trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--fea-muted); opacity: 0.7; }

/* Buttons — ensure text visible on blue (override section link color) */
.fea-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--fea-btn-h);
  padding: 0 1.5rem;
  background: linear-gradient(135deg, var(--fea-gold-bright) 0%, var(--fea-gold) 50%, #9a7b1a 100%);
  color: #0a0c10 !important;
  border: none;
  border-radius: var(--fea-radius-sm);
  font-family: inherit;
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.2s, box-shadow 0.2s, transform 0.1s;
}
.fea-btn:hover, .fea-btn:visited { color: #0a0c10 !important; filter: brightness(1.06); box-shadow: 0 0 22px var(--fea-gold-glow); }
.fea-btn:active { transform: scale(0.98); }
body.lang-kinya .fea-btn:not(.fea-btn-outline) {
  white-space: nowrap;
  padding-left: 12px;
  padding-right: 12px;
}
.fea-btn:focus-visible,
.fea-btn-outline:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--fea-accent-soft); }
.fea-btn-outline {
  background: transparent;
  color: var(--fea-gold-bright) !important;
  border: 2px solid rgba(201, 164, 50, 0.65);
}
.fea-btn-outline:hover, .fea-btn-outline:visited { color: var(--fea-text-strong) !important; background: var(--fea-gold-soft); border-color: var(--fea-gold-bright); }

/* Main content */
.fea-wrap {
  max-width: min(1180px, calc(100% - 2 * var(--fea-wrap-pad)));
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--fea-wrap-pad);
  padding-left: max(var(--fea-wrap-pad), env(safe-area-inset-left));
  padding-right: max(var(--fea-wrap-pad), env(safe-area-inset-right));
  padding-bottom: 3rem;
  box-sizing: border-box;
}
@media (min-width: 1400px) {
  .fea-wrap { max-width: 1180px; }
}
.fea-section {
  padding: var(--fea-section-pad) 0;
}
.fea-section:first-of-type { padding-top: clamp(1rem, 3vw, 1.5rem); }
.fea-section h1 {
  font-size: clamp(1.35rem, 3.2vw, 1.75rem);
  font-weight: 700;
  color: var(--fea-text-strong);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.fea-section h2 {
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  font-weight: 700;
  color: var(--fea-text-strong);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 0.5rem;
  line-height: 1.28;
}
.fea-section h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5rem;
  height: 3px;
  background: linear-gradient(90deg, var(--fea-gold-bright), transparent);
  border-radius: 2px;
}
.fea-section.fea-section-center h2::after { left: 50%; transform: translateX(-50%); }
.fea-section h3 {
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 600;
  color: var(--fea-text-strong);
  margin: 1.25rem 0 0.5rem;
  line-height: 1.35;
}
.fea-section h3:first-of-type { margin-top: 0; }
.fea-section p {
  margin-bottom: 0.875rem;
  color: var(--fea-text);
  font-size: clamp(0.9375rem, 1.9vw, 1rem);
  max-width: var(--fea-read-max);
  line-height: 1.65;
}
.fea-section.fea-section-center p,
.fea-section p.fea-read-full { max-width: none; }
.fea-section a { color: var(--fea-accent); text-decoration: none; font-weight: 500; }
.fea-section a:hover { text-decoration: underline; }
.fea-section a:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--fea-accent-soft); border-radius: 2px; }
/* Section lists */
.fea-section ul:not([class]),
.fea-section ol:not([class]),
.fea-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem;
  font-size: 0.9375rem;
  color: var(--fea-muted);
  line-height: 1.6;
}
.fea-section ul:not([class]) li,
.fea-section ol:not([class]) li,
.fea-list li {
  margin-bottom: 0.4rem;
  padding-left: 1.25rem;
  position: relative;
}
/* Only add bullet for top-level section lists; cards often have • in content */
.fea-section > ul:not([class]) li::before,
.fea-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--fea-accent);
  font-weight: 700;
}
.fea-card ul li::before { content: none; }
.fea-card ul li { padding-left: 0; }
.fea-section ol:not([class]) { list-style: decimal; padding-left: 1.5rem; }
.fea-section ol:not([class]) li { padding-left: 0.25rem; }
.fea-section ol:not([class]) li::before { display: none; }

/* Stats */
.fea-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0;
  text-align: center;
}
@media (max-width: 768px) {
  .fea-stats { grid-template-columns: repeat(3, 1fr); gap: 0.65rem; margin: 1rem 0; }
  .fea-stat { padding: 1.05rem 0.55rem; min-width: 0; min-height: 7.5rem; }
  .fea-stat-num { font-size: 1.25rem; }
  .fea-stat-label { font-size: 0.7rem; }
  .fea-stat-icon { width: 28px; height: 28px; margin-bottom: 0.25rem; }
}
@media (max-width: 480px) {
  .fea-stats { grid-template-columns: repeat(3, 1fr); gap: 0.45rem; margin: 0.5rem 0; }
  .fea-stat { min-width: 0; min-height: 6.85rem; }
  .fea-stat-label { word-break: break-word; line-height: 1.2; }
}
.fea-stat {
  padding: 1.65rem 1.15rem;
  min-height: 8.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--fea-surface);
  border: 1px solid var(--fea-border);
  border-radius: var(--fea-radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fea-stat:hover { border-color: rgba(201, 164, 50, 0.35); box-shadow: var(--fea-shadow); }
.fea-stat-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.5rem;
  display: block;
  color: var(--fea-accent);
}
.fea-stat-num { font-size: 1.75rem; font-weight: 700; color: var(--fea-text-strong); display: block; line-height: 1.2; }
.fea-stat-label { font-size: 0.8125rem; color: var(--fea-muted); margin-top: 0.25rem; }

/* Cards */
.fea-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.fea-cards-features,
.fea-cards-programs {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
@media (min-width: 900px) {
  .fea-cards { gap: 1.5rem; }
  .fea-cards-features { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .fea-cards-programs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.fea-card-feature,
.fea-card-program {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100%;
  overflow: visible;
}
.fea-card-feature h4,
.fea-card-program h4 {
  overflow: visible;
  text-overflow: unset;
  white-space: normal;
}
.fea-card-feature p,
.fea-card-program p {
  overflow: visible;
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}
.fea-card-program .fea-program-bullets {
  flex: 1 1 auto;
  max-height: none;
  overflow: visible;
}
.fea-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  width: 100%;
}
.fea-card-footer .fea-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}
.fea-program-bullets {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  font-size: clamp(0.75rem, 1.65vw, 0.875rem);
  color: var(--fea-muted);
  line-height: 1.45;
}
.fea-program-bullets li { margin-bottom: 0.4rem; }
@media (max-width: 768px) {
  .fea-section h1 { font-size: 1.15rem; line-height: 1.3; }
  .fea-section h2 { font-size: 1.05rem; line-height: 1.35; margin-bottom: 0.45rem; }
  .fea-section h3 { font-size: 0.95rem; line-height: 1.35; }
  .fea-section p { font-size: 0.9rem; line-height: 1.5; }
  .fea-section ul:not([class]) li,
  .fea-section ol:not([class]) li { font-size: 0.85rem; line-height: 1.45; padding-left: 0.75rem; }
  .fea-cards { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 0.85rem; margin-top: 0.85rem; }
  .fea-card { min-width: 0; padding: 1rem 0.85rem; overflow: visible; border-radius: var(--fea-radius-sm); }
  .fea-card h4 { font-size: clamp(0.8rem, 2vw, 0.95rem); line-height: 1.35; margin-bottom: 0.35rem; font-weight: 600; overflow: visible; text-overflow: unset; white-space: normal; }
  .fea-card p { font-size: clamp(0.78rem, 1.9vw, 0.9rem); line-height: 1.45; overflow: visible; display: block; -webkit-line-clamp: unset; line-clamp: unset; }
  .fea-card-icon { width: 28px; height: 28px; margin-bottom: 0.4rem; }
  .fea-card ul { font-size: clamp(0.72rem, 1.8vw, 0.85rem); line-height: 1.4; margin: 0.35rem 0; padding-left: 0; max-height: none; overflow: visible; }
  .fea-card ul li { padding-left: 0; margin-bottom: 0.15rem; }
  .fea-card .fea-card-meta { font-size: 0.7rem; line-height: 1.3; margin-top: 0.3rem; }
  .fea-card .fea-btn { font-size: clamp(0.75rem, 1.8vw, 0.875rem); line-height: 1.3; padding: 0.45rem 0.65rem; min-height: 2.5rem; }
  .fea-card.fea-testimonial p { font-size: 0.8rem; line-height: 1.45; overflow: visible; -webkit-line-clamp: unset; line-clamp: unset; }
}
.fea-card {
  background: var(--fea-surface);
  border: 1px solid var(--fea-border);
  border-radius: var(--fea-radius);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  min-height: 0;
}
.fea-card:hover {
  border-color: rgba(201, 164, 50, 0.3);
  box-shadow: var(--fea-shadow);
  transform: translateY(-2px);
}
.fea-card a { display: inline-block; margin-top: 0.25rem; }
.fea-card-footer .fea-btn { margin-top: 0; }
.fea-card:focus-within { border-color: rgba(14, 165, 233, 0.4); }
.fea-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--fea-accent);
  flex-shrink: 0;
}
.fea-card h4 { font-size: 1.05rem; color: var(--fea-text-strong); margin-bottom: 0.5rem; font-weight: 600; line-height: 1.3; }
.fea-card p { margin: 0; font-size: 0.9375rem; color: var(--fea-muted); line-height: 1.55; max-width: none; }
.fea-card p + p { margin-top: 0.5rem; }
.fea-card .fea-card-meta { margin-top: 0.5rem; font-size: 0.75rem; color: var(--fea-muted); }

/* Testimonial cards */
.fea-card.fea-testimonial { padding: 1.5rem; }
.fea-card.fea-testimonial::before {
  content: '"';
  font-size: 2rem;
  color: var(--fea-gold);
  opacity: 0.45;
  line-height: 1;
}

/* Footer */
.fea-footer {
  margin-top: 3rem;
  padding: 2rem var(--fea-wrap-pad);
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
  border-top: 1px solid var(--fea-border);
  text-align: center;
  font-size: clamp(0.8125rem, 1.8vw, 0.9375rem);
  color: var(--fea-muted);
  background: var(--fea-bg-alt);
}
.fea-footer a {
  color: var(--fea-muted);
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  margin: -0.35rem -0.5rem;
  border-radius: var(--fea-radius-xs);
  transition: color 0.2s, background 0.2s;
}
.fea-footer a:hover { color: var(--fea-text); background: rgba(255,255,255,0.04); }
.fea-footer a:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--fea-accent-soft); }
.fea-footer-links { margin-top: 0.75rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; justify-content: center; }
.fea-footer-links a { font-weight: 500; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }

/* Professional full-width footer (marketing / smart pages) */
.fea-footer--pro {
  text-align: left;
  margin-top: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #0b1220 0%, #070b12 100%);
  color: rgba(226, 232, 240, 0.88);
  font-size: 0.8125rem;
}

.fea-footer--pro .fea-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.5rem) max(var(--fea-wrap-pad), env(safe-area-inset-right)) clamp(1.5rem, 3.5vw, 2rem) max(var(--fea-wrap-pad), env(safe-area-inset-left));
  box-sizing: border-box;
}

.fea-footer--pro .fea-footer__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem 1rem;
  align-items: start;
}

/* Brand full width; Explore | Connect / Phone & email | Legal in 2×2 below */
.fea-footer--pro .fea-footer__brand {
  grid-column: 1 / -1;
}

@media (min-width: 480px) {
  .fea-footer--pro .fea-footer__grid {
    gap: 1.5rem 1.35rem;
  }
}

@media (min-width: 640px) {
  .fea-footer--pro .fea-footer__grid {
    gap: 1.65rem 1.5rem;
  }
}

@media (min-width: 900px) {
  .fea-footer--pro .fea-footer__grid {
    grid-template-columns: minmax(0, 1.15fr) repeat(5, minmax(0, 1fr));
    gap: 1.5rem 1.65rem;
  }

  .fea-footer--pro .fea-footer__brand {
    grid-column: auto;
  }
}

@media (min-width: 1100px) {
  .fea-footer--pro .fea-footer__grid {
    grid-template-columns: minmax(0, 1.35fr) repeat(5, minmax(0, 1fr));
    gap: 1.5rem 2.25rem;
  }
}

.fea-footer--pro .fea-footer__tagline {
  margin: 0;
  max-width: 28rem;
  line-height: 1.55;
  color: rgba(248, 250, 252, 0.92);
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
}

/* Phones: hide marketing tagline + Explore / Connect; 3 tight columns: Phone | Email | Legal */
@media (max-width: 767px) {
  .fea-footer--pro .fea-footer__grid > .fea-footer__brand,
  .fea-footer--pro .fea-footer__grid > nav:nth-of-type(1),
  .fea-footer--pro .fea-footer__grid > nav:nth-of-type(2) {
    display: none !important;
  }

  .fea-footer--pro .fea-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem 0.3rem;
    align-items: start;
  }

  .fea-footer--pro .fea-footer__inner {
    padding-top: 0.65rem;
    padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
    padding-left: max(0.55rem, env(safe-area-inset-left));
    padding-right: max(0.55rem, env(safe-area-inset-right));
  }

  .fea-footer--pro {
    font-size: 0.5625rem;
  }

  .fea-footer--pro .fea-footer__heading {
    font-size: 0.4375rem;
    margin-bottom: 0.2rem;
    letter-spacing: 0.06em;
    line-height: 1.15;
  }

  .fea-footer--pro .fea-footer__list {
    gap: 0.08rem;
  }

  .fea-footer--pro .fea-footer__list a {
    font-size: 0.5625rem;
    line-height: 1.15;
    padding: 0.04rem 0;
    word-break: break-word;
  }

  .fea-footer--pro .fea-footer__col--phones .fea-footer__list a,
  .fea-footer--pro .fea-footer__col--emails .fea-footer__list a,
  .fea-footer--pro .fea-footer__col--reach .fea-footer__list a {
    font-size: 0.5rem;
    line-height: 1.12;
    padding: 0.02rem 0;
    margin: 0;
    font-weight: 500;
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 100%;
  }

  .fea-footer--pro .fea-footer__bar {
    margin-top: 0.55rem;
    padding-top: 0.5rem;
  }

  .fea-footer--pro .fea-footer__rights {
    font-size: 0.5rem;
    line-height: 1.25;
  }
}

/* Extra-narrow phones: smallest footer type */
@media (max-width: 400px) {
  .fea-footer--pro .fea-footer__grid {
    gap: 0.35rem 0.22rem;
  }

  .fea-footer--pro .fea-footer__inner {
    padding-top: 0.5rem;
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
    padding-left: max(0.4rem, env(safe-area-inset-left));
    padding-right: max(0.4rem, env(safe-area-inset-right));
  }

  .fea-footer--pro {
    font-size: 0.5rem;
  }

  .fea-footer--pro .fea-footer__heading {
    font-size: 0.40625rem;
    margin-bottom: 0.15rem;
    letter-spacing: 0.05em;
  }

  .fea-footer--pro .fea-footer__list {
    gap: 0.05rem;
  }

  .fea-footer--pro .fea-footer__list a {
    font-size: 0.5rem;
    line-height: 1.12;
    padding: 0.02rem 0;
  }

  .fea-footer--pro .fea-footer__col--phones .fea-footer__list a,
  .fea-footer--pro .fea-footer__col--emails .fea-footer__list a,
  .fea-footer--pro .fea-footer__col--reach .fea-footer__list a {
    font-size: 0.4375rem;
    line-height: 1.1;
    padding: 0.02rem 0;
    overflow-wrap: anywhere;
  }

  .fea-footer--pro .fea-footer__bar {
    margin-top: 0.45rem;
    padding-top: 0.4rem;
  }

  .fea-footer--pro .fea-footer__rights {
    font-size: 0.4375rem;
  }
}

.fea-footer--pro .fea-footer__heading {
  margin: 0 0 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.95);
}

.fea-footer--pro .fea-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fea-footer--pro .fea-footer__list a {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  margin: 0;
  font-weight: 500;
  color: rgba(226, 232, 240, 0.9);
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.15s ease, background 0.15s ease;
}

.fea-footer--pro .fea-footer__list a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
  .fea-footer--pro .fea-footer__list {
    gap: 0.4rem;
  }

  .fea-footer--pro .fea-footer__list a {
    padding: 0.2rem 0;
    font-size: 0.8125rem;
  }

  .fea-footer--pro .fea-footer__col--phones .fea-footer__list,
  .fea-footer--pro .fea-footer__col--emails .fea-footer__list,
  .fea-footer--pro .fea-footer__col--reach .fea-footer__list {
    gap: 0.35rem;
  }

  /* Legacy combined Phone & email column */
  .fea-footer--pro .fea-footer__col--reach .fea-footer__list li:nth-child(3) {
    margin-top: 0.45rem;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
  }

  .fea-footer--pro .fea-footer__col--phones .fea-footer__list a,
  .fea-footer--pro .fea-footer__col--emails .fea-footer__list a,
  .fea-footer--pro .fea-footer__col--reach .fea-footer__list a {
    word-break: break-word;
    padding: 0.28rem 0.35rem;
    margin: 0 -0.35rem;
    border-radius: 6px;
    font-size: 0.84375rem;
    line-height: 1.35;
    transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  }
}

.fea-footer--pro .fea-footer__col--phones .fea-footer__list a[href^="tel:"],
.fea-footer--pro .fea-footer__col--reach .fea-footer__list a[href^="tel:"] {
  color: rgba(147, 197, 253, 0.96);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.fea-footer--pro .fea-footer__col--phones .fea-footer__list a[href^="tel:"]:hover,
.fea-footer--pro .fea-footer__col--reach .fea-footer__list a[href^="tel:"]:hover {
  color: #e0f2fe;
  background: rgba(56, 189, 248, 0.12);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.18);
}

.fea-footer--pro .fea-footer__col--emails .fea-footer__list a[href^="mailto:"],
.fea-footer--pro .fea-footer__col--reach .fea-footer__list a[href^="mailto:"] {
  color: rgba(196, 181, 253, 0.95);
  font-weight: 500;
}

.fea-footer--pro .fea-footer__col--emails .fea-footer__list a[href^="mailto:"]:hover,
.fea-footer--pro .fea-footer__col--reach .fea-footer__list a[href^="mailto:"]:hover {
  color: #ede9fe;
  background: rgba(139, 92, 246, 0.14);
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.22);
}

.fea-footer--pro .fea-footer__col--phones .fea-footer__list a:focus-visible,
.fea-footer--pro .fea-footer__col--emails .fea-footer__list a:focus-visible,
.fea-footer--pro .fea-footer__col--reach .fea-footer__list a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(129, 140, 248, 0.55), 0 0 0 4px rgba(15, 23, 42, 0.9);
}

.fea-footer--pro .fea-footer__bar {
  margin-top: clamp(1.35rem, 3vw, 1.85rem);
  padding-top: 1.1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  text-align: center;
}

.fea-footer--pro .fea-footer__rights {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(148, 163, 184, 0.85);
}

/* Form */
.fea-input, .fea-select, .fea-textarea {
  width: 100%;
  min-height: var(--fea-input-h);
  padding: 0 1rem;
  background: var(--fea-surface);
  border: 1px solid var(--fea-border);
  border-radius: var(--fea-radius-sm);
  color: var(--fea-text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.fea-textarea { min-height: 140px; padding: 1rem; resize: vertical; }
.fea-input:focus, .fea-select:focus, .fea-textarea:focus {
  outline: none;
  border-color: var(--fea-accent);
  box-shadow: 0 0 0 3px var(--fea-accent-soft);
}
.fea-input:focus-visible, .fea-select:focus-visible, .fea-textarea:focus-visible {
  outline: none;
  border-color: var(--fea-accent);
  box-shadow: 0 0 0 3px var(--fea-accent-soft);
}
.fea-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--fea-muted); margin-bottom: 0.4rem; }
.fea-field { margin-bottom: 1.25rem; }

/* Legal / Refund */
.fea-legal-h2 {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 600;
  color: var(--fea-text-strong);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.35rem;
}
.fea-legal-h2:first-of-type { margin-top: 0; }
.fea-legal-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.5rem 0 1rem;
  color: var(--fea-text);
  font-size: clamp(0.9375rem, 1.9vw, 1rem);
  line-height: 1.65;
}
.fea-legal-list li { margin-bottom: 0.5rem; }
.fea-legal-ol { list-style: decimal; padding-left: 1.5rem; }
@media (max-width: 480px) {
  .fea-legal-h2 { font-size: 1rem; margin-top: 1.5rem; }
  .fea-legal-list { font-size: 0.9375rem; padding-left: 1.25rem; }
}
.fea-cert-box {
  background: var(--fea-surface);
  border: 1px solid var(--fea-border);
  border-radius: var(--fea-radius);
  padding: 1.5rem;
  margin: 1rem 0;
  text-align: center;
}
.fea-cert-heading {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--fea-text-strong);
}
.fea-cert-line { margin: 0.25rem 0; letter-spacing: 0.1em; }

/* Legal / Refund — viewport lock (internal scroll; no page bounce on mobile) */
html:has(body.fea-legal-viewport-lock),
html:has(body.fea-refund-viewport-lock) {
  height: 100%;
  height: 100dvh;
  overflow: hidden;
  overscroll-behavior: none;
}
body.fea-legal-viewport-lock,
body.fea-refund-viewport-lock {
  height: 100vh;
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  overflow: hidden !important;
  overscroll-behavior: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
body.fea-legal-viewport-lock .fea-nav,
body.fea-refund-viewport-lock .fea-nav {
  flex-shrink: 0;
}
body.fea-legal-viewport-lock .fea-nav.fea-nav-unified,
body.fea-refund-viewport-lock .fea-nav.fea-nav-unified {
  position: relative;
  top: auto;
}
body.fea-legal-viewport-lock main.fea-legal-main.fea-wrap,
body.fea-refund-viewport-lock main.fea-refund-main.fea-wrap {
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: min(1260px, calc(100% - 2 * var(--fea-wrap-pad)));
  padding-top: 0;
  padding-bottom: 0;
  padding-left: max(var(--fea-wrap-pad), env(safe-area-inset-left));
  padding-right: max(var(--fea-wrap-pad), env(safe-area-inset-right));
  box-sizing: border-box;
}
body.fea-legal-viewport-lock .fea-legal-scroll,
body.fea-refund-viewport-lock .fea-refund-scroll {
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scroll-padding-top: 0.75rem;
  padding-top: clamp(0.5rem, 1.5vw, 0.85rem);
  padding-bottom: clamp(0.75rem, 2vw, 1.25rem);
  outline: none;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 164, 50, 0.42) rgba(255, 255, 255, 0.05);
}
body.fea-legal-viewport-lock .fea-legal-scroll::-webkit-scrollbar,
body.fea-refund-viewport-lock .fea-refund-scroll::-webkit-scrollbar {
  width: 7px;
}
body.fea-legal-viewport-lock .fea-legal-scroll::-webkit-scrollbar-track,
body.fea-refund-viewport-lock .fea-refund-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 100px;
}
body.fea-legal-viewport-lock .fea-legal-scroll::-webkit-scrollbar-thumb,
body.fea-refund-viewport-lock .fea-refund-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.5), rgba(201, 164, 50, 0.35));
  border-radius: 100px;
  border: 2px solid rgba(7, 9, 14, 0.4);
  background-clip: padding-box;
}
body.fea-legal-viewport-lock .fea-legal-scroll::-webkit-scrollbar-thumb:hover,
body.fea-refund-viewport-lock .fea-refund-scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.65), rgba(201, 164, 50, 0.5));
}
body.fea-legal-viewport-lock .fea-legal-footer,
body.fea-refund-viewport-lock .fea-refund-footer {
  flex-shrink: 0;
  margin-top: 0;
  padding-top: 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
}

/* Refund policy — trust strip + masonry cards (reuses institutional glass) */
body.fea-refund-page .fea-refund-page-title {
  font-size: clamp(1.12rem, calc(2.2vw + 0.5rem), 1.58rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fea-text-strong);
  margin: 0 0 0.35rem;
  line-height: 1.22;
}
body.lang-kinya .fea-refund-page .fea-refund-page-title {
  letter-spacing: 0.02em;
  text-transform: none;
}
body.fea-refund-page .fea-refund-doc-title {
  display: block;
  font-size: clamp(0.72rem, 1.2vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fea-gold-bright);
  margin-bottom: 0.65rem;
  line-height: 1.35;
}
body.lang-kinya .fea-refund-page .fea-refund-doc-title {
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: clamp(0.78rem, 1.4vw, 0.88rem);
}
body.fea-refund-page .fea-refund-trust-box {
  margin-bottom: clamp(1rem, 2.5vw, 1.35rem);
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border-radius: var(--fea-radius);
  border: 1px solid rgba(201, 164, 50, 0.42);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 4px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(201, 164, 50, 0.12);
}
body.fea-refund-page .fea-refund-trust-tagline {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fea-gold);
  margin: 0 0 0.5rem;
}
body.lang-kinya .fea-refund-page .fea-refund-trust-tagline {
  letter-spacing: 0.05em;
  text-transform: none;
  font-size: 0.85rem;
}
body.fea-refund-page .fea-refund-trust-box p {
  margin: 0;
  font-size: clamp(0.9rem, calc(0.35vw + 0.85rem), 0.97rem);
  line-height: 1.62;
  color: var(--fea-text);
}
body.fea-refund-page .fea-refund-masonry {
  column-count: 1;
  column-gap: clamp(0.85rem, 2vw, 1.2rem);
}
@media (min-width: 900px) {
  body.fea-refund-page .fea-refund-masonry {
    column-count: 2;
  }
}
body.fea-refund-page .fea-refund-card {
  break-inside: avoid;
  margin-bottom: clamp(0.85rem, 2vw, 1.15rem);
  display: inline-block;
  width: 100%;
  vertical-align: top;
}
body.fea-refund-page .fea-refund-cta {
  margin-top: 0.35rem;
  text-align: center;
}
body.fea-refund-page .fea-refund-cta .fea-btn {
  display: inline-flex;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: anywhere;
  justify-content: center;
}
body.fea-refund-page .fea-legal-card-title-text {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
body.lang-kinya .fea-refund-page .fea-legal-card-title-text {
  text-transform: none;
  letter-spacing: 0.02em;
}

/* Legal — full document scroll (no body.fea-legal-viewport-lock) */
html:has(body.fea-legal-institutional:not(.fea-legal-viewport-lock)) {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(4.5rem, 12vh, 6.75rem);
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 164, 50, 0.42) rgba(255, 255, 255, 0.05);
}
html:has(body.fea-legal-institutional:not(.fea-legal-viewport-lock))::-webkit-scrollbar {
  width: 7px;
}
html:has(body.fea-legal-institutional:not(.fea-legal-viewport-lock))::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 100px;
}
html:has(body.fea-legal-institutional:not(.fea-legal-viewport-lock))::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.5), rgba(201, 164, 50, 0.35));
  border-radius: 100px;
  border: 2px solid rgba(7, 9, 14, 0.4);
  background-clip: padding-box;
}
html:has(body.fea-legal-institutional:not(.fea-legal-viewport-lock))::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.65), rgba(201, 164, 50, 0.5));
}
body.fea-legal-institutional:not(.fea-legal-viewport-lock) main.fea-legal-main.fea-wrap {
  max-width: min(1260px, calc(100% - 2 * var(--fea-wrap-pad)));
}
body.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-scroll {
  padding-top: clamp(0.5rem, 1.5vw, 0.85rem);
  padding-bottom: clamp(1.25rem, 3.5vw, 2.75rem);
}
body.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-toc--mobile {
  top: clamp(4.25rem, 11vh, 6.25rem);
}
body.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-toc--desktop {
  top: clamp(4.25rem, 11vh, 6.25rem);
}
/* Refund — full document scroll (same html scrollbar as legal via .fea-legal-institutional) */
body.fea-refund-page:not(.fea-refund-viewport-lock) main.fea-refund-main.fea-wrap {
  max-width: min(1260px, calc(100% - 2 * var(--fea-wrap-pad)));
}
body.fea-refund-page:not(.fea-refund-viewport-lock) .fea-refund-scroll {
  padding-top: clamp(0.5rem, 1.5vw, 0.85rem);
  padding-bottom: clamp(1.25rem, 3.5vw, 2.75rem);
}

.fea-legal-intro.fea-section {
  padding-top: 0.2rem;
  padding-bottom: clamp(0.65rem, 2vw, 1rem);
  margin-bottom: 0.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.fea-legal-page-title {
  font-size: clamp(1.12rem, calc(2.2vw + 0.5rem), 1.58rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fea-text-strong);
  margin: 0 0 0.45rem;
  line-height: 1.22;
}
body.lang-kinya .fea-legal-page-title {
  letter-spacing: 0.02em;
  text-transform: none;
}
.fea-legal-lede {
  margin: 0;
  max-width: 62ch;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--fea-muted);
}

/* Quick links — mobile: sticky bar; desktop: sidebar */
.fea-legal-toc {
  min-width: 0;
}
.fea-legal-toc-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fea-muted);
  margin: 0 0 0.5rem;
}
body.lang-kinya .fea-legal-toc-label {
  letter-spacing: 0.06em;
  text-transform: none;
  font-size: 0.78rem;
}
.fea-legal-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
}
.fea-legal-toc--desktop .fea-legal-toc-list {
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.2rem;
}
.fea-legal-toc-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fea-text);
  text-decoration: none;
  border-radius: var(--fea-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: center;
}
.fea-legal-toc-link:hover {
  color: var(--fea-gold-bright);
  border-color: rgba(201, 164, 50, 0.4);
  background: rgba(201, 164, 50, 0.1);
  box-shadow: 0 2px 12px rgba(201, 164, 50, 0.12);
}
.fea-legal-toc-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--fea-accent-soft);
}
.fea-legal-toc--mobile {
  display: none;
  position: sticky;
  top: 0;
  z-index: 55;
  margin-bottom: 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--fea-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 9, 14, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
.fea-legal-toc--desktop {
  display: none;
}
.fea-legal-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  min-width: 0;
}
.fea-legal-primary {
  min-width: 0;
}
@media (min-width: 993px) {
  .fea-legal-toc--mobile {
    display: none !important;
  }
  .fea-legal-toc--desktop {
    display: block;
    position: sticky;
    top: 0.75rem;
    align-self: start;
    padding: 1rem 0.85rem;
    border-radius: var(--fea-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  }
  .fea-legal-shell {
    grid-template-columns: minmax(0, 10.5rem) minmax(0, 1fr);
    gap: clamp(1rem, 2.2vw, 1.65rem);
  }
}
/* Small / mid desktop: full-width horizontal TOC so the grid has more room */
@media (min-width: 993px) and (max-width: 1160px) {
  .fea-legal-shell {
    grid-template-columns: 1fr;
  }
  .fea-legal-toc--desktop {
    position: static;
    top: auto;
    margin-bottom: clamp(0.85rem, 2vw, 1.2rem);
    padding: 0.85rem 1rem;
  }
  .fea-legal-toc--desktop .fea-legal-toc-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.45rem 0.55rem;
  }
  .fea-legal-toc--desktop .fea-legal-toc-link {
    min-height: 38px;
    flex: 1 1 auto;
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .fea-legal-toc--mobile {
    display: block;
  }
  .fea-legal-toc--desktop {
    display: none !important;
  }
}

/* Two-column card grid — stacks earlier on small tablets for balance */
.fea-legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.8vw, 1.25rem);
  min-width: 0;
}
.fea-legal-card--span-2 {
  grid-column: 1 / -1;
}
@media (max-width: 880px) {
  .fea-legal-grid {
    grid-template-columns: 1fr;
  }
  .fea-legal-card--span-2 {
    grid-column: auto;
  }
}

/* Glass cards — institutional spec + flexible polish */
body.fea-legal-institutional .fea-legal-card {
  margin-bottom: 0;
  padding: clamp(1.05rem, calc(2.2vw + 0.25rem), 1.45rem);
  border-radius: var(--fea-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.045) 0%,
    rgba(255, 255, 255, 0.025) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 4px 32px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  min-width: 0;
  overflow: visible;
  overflow-wrap: anywhere;
  word-break: break-word;
  scroll-margin-top: 1rem;
}
@media (hover: hover) and (pointer: fine) {
  @media (prefers-reduced-motion: no-preference) {
    body.fea-legal-institutional .fea-legal-card {
      transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
    }
    body.fea-legal-institutional .fea-legal-card:hover {
      border-color: rgba(255, 255, 255, 0.14);
      box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
      transform: translateY(-2px);
    }
    body.fea-legal-institutional .fea-legal-card--cert:hover {
      border-color: rgba(201, 164, 50, 0.32);
      box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.38),
        0 0 0 1px rgba(201, 164, 50, 0.12),
        inset 0 1px 0 rgba(201, 164, 50, 0.12);
    }
  }
}
.fea-legal-card--cert {
  border-color: rgba(201, 164, 50, 0.22);
  box-shadow:
    0 4px 32px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(201, 164, 50, 0.1);
}
.fea-legal-card-title {
  margin: 0 0 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}
.fea-legal-card-title-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  min-width: 0;
}
.fea-legal-card-num {
  flex-shrink: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  font-variant-numeric: tabular-nums;
  color: var(--fea-gold);
}
.fea-legal-card-icon {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.12rem;
  color: var(--fea-gold);
}
.fea-legal-card-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.fea-legal-card-title-text {
  flex: 1;
  min-width: 0;
  font-size: clamp(0.8rem, 1.35vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--fea-text-strong);
}
body.lang-kinya .fea-legal-card-title-text {
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: clamp(0.88rem, 1.65vw, 0.98rem);
}

.fea-legal-card-body,
.fea-legal-card-body .fea-legal-list {
  font-size: clamp(0.9rem, calc(0.35vw + 0.85rem), 0.97rem);
  line-height: 1.62;
  color: var(--fea-text);
}
.fea-legal-card-body p {
  margin-bottom: 0.65rem;
  font-size: clamp(0.9rem, calc(0.35vw + 0.85rem), 0.97rem);
  line-height: 1.62;
}
.fea-legal-card-body p:last-child {
  margin-bottom: 0;
}
.fea-legal-card-body .fea-legal-list {
  margin-top: 0.25rem;
  margin-bottom: 0.45rem;
  padding-left: clamp(1.1rem, 3vw, 1.35rem);
  font-size: clamp(0.9rem, calc(0.35vw + 0.85rem), 0.97rem);
  line-height: 1.62;
}
.fea-legal-card-body .fea-legal-list li {
  margin-bottom: 0.4rem;
}

/* HD certificate — scalable rigid component (container queries + aspect-ratio); sync with assets/fea-style.css */
/* cqw scaled vs 900px reference width (1cqw ≈ 9px at max-width) */
.fea-cert-preview--hd {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 1.414 / 1;
  container-type: inline-size;
  position: relative;
  margin: 0 auto;
  border-radius: 0.67cqw;
  background: #12100c;
  box-shadow:
    0 0.67cqw 4.44cqw rgba(0, 0, 0, 0.38),
    inset 0 0 0 max(1px, 0.11cqw) rgba(201, 164, 50, 0.22);
  overflow: hidden;
}
.fea-cert-bg-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
}
/* Legacy: static HTML legal samples that still use inline frame + CSS watermark */
.fea-cert-frame-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.fea-cert-preview-watermark {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%) rotate(-11deg);
  font-size: clamp(3.5rem, 16vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.26em;
  margin-left: 0.13em;
  color: rgba(201, 164, 50, 0.038);
  pointer-events: none;
  user-select: none;
  font-family: var(--fea-font-display);
  z-index: 0;
}
.fea-cert-preview--hd .fea-cert-preview-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 4cqw 3.2cqw 26cqw;
  display: flex;
  flex-direction: column;
  row-gap: 2.8cqw;
  text-align: center;
  box-sizing: border-box;
}
.fea-cert-hd-header {
  display: grid;
  grid-template-columns: 11.5cqw 1fr 11.5cqw;
  align-items: center;
  column-gap: 1.75cqw;
  margin-bottom: 0;
  padding-top: 2.6cqw;
  padding-inline: 2.25cqw;
  max-width: 100%;
  box-sizing: border-box;
}
.fea-cert-hd-logo {
  grid-column: 1;
  justify-self: center;
  width: 7.75cqw;
  height: 7.75cqw;
  object-fit: contain;
  filter: drop-shadow(0 0.32cqw 1.6cqw rgba(0, 0, 0, 0.45));
}
.fea-cert-hd-brand {
  grid-column: 2;
  text-align: center;
  min-width: 0;
  max-width: 35.56cqw;
  width: 100%;
  margin-inline: auto;
  justify-self: center;
}
.fea-cert-hd-brand-line {
  display: block;
  font-family: "Cinzel", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2.42cqw;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(252, 250, 245, 0.99);
  line-height: 1.35;
}
.fea-cert-hd-brand-sub {
  display: block;
  font-family: "Cinzel", "Cormorant Garamond", Georgia, serif;
  font-size: 1.29cqw;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 164, 50, 0.92);
  margin-top: 0.8cqw;
  line-height: 1.38;
}
body.lang-kinya .fea-cert-hd-brand-sub {
  letter-spacing: 0.04em;
  text-transform: none;
}
/* Seal — centered in right grid column */
.fea-cert-hd-seal {
  grid-column: 3;
  justify-self: center;
  width: 9.65cqw;
  background: transparent;
}
.fea-cert-hd-seal-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 817 / 523;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: drop-shadow(0 0.16cqw 0.8cqw rgba(0, 0, 0, 0.28));
}
.fea-cert-hd-ribbon {
  margin: 0 auto;
  font-size: 1.77cqw;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fea-gold-bright);
  line-height: 1.4;
  max-width: 92%;
}
body.lang-kinya .fea-cert-hd-ribbon {
  letter-spacing: 0.04em;
  text-transform: none;
}
.fea-cert-hd-intro {
  margin: 0 auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.09cqw;
  font-style: italic;
  color: rgba(228, 232, 238, 0.9);
  line-height: 1.45;
  max-width: 90%;
}
.fea-cert-hd-name {
  margin: 0 auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.22cqw;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.015em;
  line-height: 1.22;
  max-width: 92%;
}
.fea-cert-hd-program {
  margin: 0 auto;
  max-width: 57.78cqw;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.26cqw;
  font-weight: 600;
  color: rgba(248, 245, 238, 0.98);
  line-height: 1.4;
}
.fea-cert-hd-body {
  margin: 0 auto;
  max-width: 62.22cqw;
  font-size: 1.77cqw;
  line-height: 1.62;
  color: rgba(203, 210, 218, 0.9);
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.fea-cert-preview--hd .fea-cert-hd-footer {
  position: absolute;
  bottom: 9cqw;
  left: 9cqw;
  right: 9cqw;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0;
  padding: 0;
  width: auto;
  box-sizing: border-box;
  column-gap: 3.2cqw;
}
.fea-cert-hd-meta-block {
  flex: 1 1 0;
  min-width: 0;
  max-width: 48%;
  text-align: left;
  align-self: flex-end;
  padding-bottom: 0;
  overflow-wrap: anywhere;
}
.fea-cert-hd-meta {
  margin: 0 0 0.48cqw;
  font-size: 1.29cqw;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: rgba(176, 184, 196, 0.9);
  line-height: 1.32;
}
.fea-cert-hd-meta-block .fea-cert-hd-meta + .fea-cert-hd-meta {
  text-transform: none;
  letter-spacing: 0.03em;
}
body.lang-kinya .fea-cert-hd-meta {
  letter-spacing: 0.03em;
  text-transform: none;
}
.fea-cert-hd-sign-block {
  flex: 1 1 0;
  min-width: 0;
  max-width: 48%;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding-bottom: 0.32cqw;
}
.fea-cert-hd-sign-rule {
  display: block;
  height: max(1px, 0.16cqw);
  background: linear-gradient(90deg, rgba(201, 164, 50, 0.15), rgba(201, 164, 50, 0.75), rgba(201, 164, 50, 0.15));
  margin: 0 0 0.5cqw;
  width: 100%;
  max-width: 28.4cqw;
  align-self: flex-end;
}
.fea-cert-hd-sign-script {
  margin: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-family: "Great Vibes", cursive;
  font-size: 2.42cqw;
  line-height: 1.15;
  color: rgba(245, 232, 200, 0.98);
}
.fea-cert-hd-sign-title {
  margin: 0.48cqw 0 0;
  font-size: 1.29cqw;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(201, 164, 50, 0.88);
  line-height: 1.32;
}

.fea-legal-cta-wrap {
  padding-top: clamp(1rem, 2.5vw, 1.35rem);
  padding-bottom: 0.35rem;
  text-align: center;
}
.fea-legal-cta-wrap .fea-btn {
  display: inline-flex;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: center;
  justify-content: center;
}

/* Section with image */
.fea-section-with-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.fea-section-with-img > div:first-child { min-width: 0; }
.fea-section-with-img > div:first-child p { max-width: var(--fea-read-max); }
@media (max-width: 700px) {
  .fea-section-with-img { grid-template-columns: 1fr; gap: 1.5rem; }
  .fea-section-with-img .fea-section-img { order: -1; max-height: 220px; object-fit: cover; border-radius: var(--fea-radius); }
  .fea-section-with-img > div:first-child p { max-width: none; }
}
.fea-section-with-img .fea-section-img {
  width: 100%;
  height: auto;
  border-radius: var(--fea-radius);
  border: 1px solid var(--fea-border);
  box-shadow: var(--fea-shadow);
}
.fea-img-card {
  border-radius: var(--fea-radius);
  overflow: hidden;
  border: 1px solid var(--fea-border);
  box-shadow: var(--fea-shadow);
  background: var(--fea-surface);
  min-width: 0;
}
.fea-img-card img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
@media (max-width: 700px) {
  .fea-img-card img { aspect-ratio: 16 / 9; max-height: 220px; object-fit: cover; }
}
.fea-img-card + .fea-section { padding-top: 0; }

/* Smart mobile: tighter hero/sections, 44px touch targets (WCAG) */
@media (max-width: 480px) {
  .fea-hero {
    padding-top: clamp(1.1rem, 4vw, 1.75rem);
    padding-bottom: clamp(1.1rem, 3.5vw, 1.5rem);
    padding-left: max(var(--fea-wrap-pad), env(safe-area-inset-left));
    padding-right: max(var(--fea-wrap-pad), env(safe-area-inset-right));
  }
  .fea-hero .fea-hero-logo {
    width: clamp(52px, 14vw, 64px);
    height: clamp(52px, 14vw, 64px);
    margin-bottom: 0.65rem;
  }
  .fea-hero h1 { margin-bottom: 0.5rem; }
  .fea-hero .fea-hero-sub { margin-bottom: 1rem; line-height: 1.5; }
  .fea-hero-trust { margin-top: 1rem; }
  .fea-wrap { padding-top: clamp(0.85rem, 3vw, 1.25rem); padding-bottom: clamp(1rem, 4vw, 1.75rem); }
  .fea-section { padding: clamp(0.85rem, 3vw, 1.35rem) 0; }
  .fea-btn { min-height: 44px !important; }
  .fea-card .fea-btn {
    min-height: 44px !important;
    padding: 0 0.85rem;
    font-size: 0.8125rem;
  }
}

/* Dashboard shell: fixed sidebar clears unified fixed nav */
body.dash-with-fea-nav {
  --fea-unified-nav-h: 57px;
  font-family: var(--fea-font);
}
body.dash-with-fea-nav .dash-main,
body.dash-with-fea-nav .dash-sidebar,
body.dash-with-fea-nav .dash-topbar {
  font-family: var(--fea-font);
}
body.dash-with-fea-nav .dash-sidebar {
  top: var(--fea-unified-nav-h);
  bottom: 0;
  height: auto;
}
body.dash-with-fea-nav .fea-nav.fea-nav-unified {
  z-index: 1200;
}

@media (max-width: 900px) {
  body.dash-with-fea-nav {
    --fea-unified-nav-h: 48px;
  }
  body.dash-with-fea-nav .fea-nav.fea-nav-unified .fea-nav-inner {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: rgba(10, 15, 30, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.06);
  }
  body.dash-with-fea-nav .fea-nav-unified .fea-nav-inner {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    min-height: 48px;
  }
  /* Account lives in .dash-topbar on mobile — avoid duplicate control */
  body.dash-with-fea-nav .fea-nav-actions a.fea-nav-link-signin[href="/profile.php"] {
    display: none;
  }
}

/* Optional notifications control in unified nav (learner) */
.fea-nav-actions .fea-nav-bell {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 0.35rem;
  color: var(--fea-muted);
  text-decoration: none;
  border-radius: var(--fea-radius-xs);
  transition: color 0.2s, background 0.2s;
}
.fea-nav-actions .fea-nav-bell:hover {
  color: var(--fea-text);
  background: rgba(255, 255, 255, 0.06);
}
/* Learner dashboard: logo only + command-center links (no marketing nav) */
.fea-nav--learner .fea-logo--dashboard-only {
  border-radius: 8px;
  flex-shrink: 0;
}
.fea-nav--learner .fea-nav-links--learner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.2rem 0.85rem;
}
.fea-nav--learner .fea-nav-links--learner a {
  position: relative;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--fea-muted);
  text-decoration: none;
  padding: 0.35rem 0.4rem;
  border-radius: var(--fea-radius-xs);
  min-height: 44px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
}
.fea-nav--learner .fea-nav-links--learner a:hover {
  color: var(--fea-text);
  background: rgba(255, 255, 255, 0.05);
}
.fea-nav--learner .fea-nav-links--learner a.is-active {
  color: var(--fea-gold-bright, #d4af37);
}
.fea-nav--learner .fea-nav-links--learner a.is-active::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1.25rem;
  height: 2px;
  border-radius: 2px;
  background: var(--fea-gold-bright, #d4af37);
}
@media (max-width: 992px) {
  .fea-nav--learner .fea-nav-links--learner a.is-active::after {
    display: none;
  }
  .fea-nav--learner .fea-nav-links--learner a.is-active {
    border-left: none;
    background: rgba(79, 70, 229, 0.1);
    color: var(--fea-text-strong);
    padding: 0.28rem 0.85rem 0.28rem 1.4rem;
    min-height: 38px;
  }
  .fea-nav--learner .fea-nav-links--learner a.is-active::before {
    content: "";
    position: absolute;
    left: 0.55rem;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--fea-gold-bright, #d4af37);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.22);
  }
}

.fea-nav-actions .fea-nav-bell-badge {
  position: absolute;
  top: 6px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

body.fea-site {
  font-family: var(--fea-font);
}

/* -------------------------------------------------------------------------- */
/* Courses page — curriculum grid & module cards                              */
/* -------------------------------------------------------------------------- */
.fea-page-courses .fea-wrap {
  max-width: min(1280px, calc(100% - 2 * var(--fea-wrap-pad)));
}
.fea-page-courses .fea-section.fea-courses-hero h1 {
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1.2;
  margin-bottom: 0.65rem;
}
.fea-page-courses .fea-section.fea-courses-hero p.fea-read-full {
  max-width: min(72ch, 100%);
  font-size: clamp(0.9375rem, 2.2vw, 1.0625rem);
  line-height: 1.7;
}
.fea-page-courses .fea-courses-lead h2 {
  margin-bottom: 0.5rem;
}
.fea-page-courses .fea-curriculum-note {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  max-width: min(68ch, 100%);
  line-height: 1.65;
  color: var(--fea-muted);
}
.fea-curriculum-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  max-width: none;
  width: 100%;
}
@media (min-width: 700px) {
  .fea-curriculum-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.35rem);
  }
  .fea-curriculum-card--wide {
    grid-column: 1 / -1;
  }
}
.fea-curriculum-card {
  position: relative;
  margin: 0;
  padding: clamp(1.1rem, 2.5vw, 1.35rem) clamp(1rem, 2.5vw, 1.25rem) clamp(1.1rem, 2.5vw, 1.35rem) clamp(1.2rem, 2.8vw, 1.45rem);
  background: linear-gradient(152deg, var(--fea-surface) 0%, rgba(14, 21, 32, 0.55) 100%);
  border: 1px solid var(--fea-border);
  border-radius: var(--fea-radius);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.fea-curriculum-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--fea-gold-bright) 0%, var(--fea-gold) 40%, rgba(14, 165, 233, 0.5) 100%);
  box-shadow: 0 0 14px var(--fea-gold-glow);
}
.fea-curriculum-card:hover {
  border-color: rgba(201, 164, 50, 0.35);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 164, 50, 0.1);
  transform: translateY(-2px);
}
@media (prefers-reduced-motion: reduce) {
  .fea-curriculum-card { transition: none; }
  .fea-curriculum-card:hover { transform: none; }
}
.fea-curriculum-card__text {
  margin: 0;
  max-width: none !important;
  font-size: clamp(0.875rem, 2vw, 0.9375rem);
  line-height: 1.65;
  color: var(--fea-text);
}
.fea-curriculum-card__text strong {
  display: block;
  font-weight: 700;
  font-size: clamp(1rem, 2.4vw, 1.125rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201, 164, 50, 0.32);
  color: var(--fea-gold-bright);
}
.fea-curriculum-card__text strong + br {
  display: none;
}
.fea-page-courses .fea-section.fea-courses-cert {
  margin-top: clamp(0.35rem, 2vw, 0.75rem);
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1rem, 3vw, 1.5rem);
  background: linear-gradient(165deg, rgba(201, 164, 50, 0.07) 0%, rgba(7, 9, 14, 0.35) 45%, transparent 85%);
  border: 1px solid rgba(42, 49, 64, 0.95);
  border-radius: var(--fea-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.fea-page-courses .fea-section.fea-courses-cert h2 {
  max-width: min(40ch, 100%);
}
.fea-page-courses .fea-section.fea-courses-cert > p {
  max-width: min(62ch, 100%);
  color: var(--fea-muted);
}
@media (max-width: 600px) {
  .fea-page-courses .fea-curriculum-grid {
    gap: 0.75rem;
  }
  .fea-page-courses .fea-curriculum-card {
    padding: 1rem 1rem 1rem 1.15rem;
  }
}
@media (max-width: 480px) {
  .fea-page-courses .fea-courses-hero h1 {
    font-size: clamp(1.05rem, 5vw, 1.3rem);
    margin-bottom: 0.5rem;
  }
  .fea-page-courses .fea-courses-hero p.fea-read-full {
    font-size: 0.875rem;
    line-height: 1.65;
  }
  .fea-page-courses .fea-curriculum-card .fea-curriculum-card__text {
    font-size: 0.875rem;
    line-height: 1.55;
  }
  .fea-page-courses .fea-curriculum-card .fea-curriculum-card__text strong {
    font-size: 0.95rem;
  }
  .fea-page-courses .fea-section.fea-courses-cert {
    padding: 1.15rem 0.9rem;
  }
}

/* DB-driven course catalog (fea/courses.php) */
.fea-catalog-course {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  padding-bottom: clamp(1.25rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(42, 49, 64, 0.75);
}
.fea-catalog-course:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.fea-catalog-course__head {
  margin-bottom: clamp(1rem, 2.5vw, 1.35rem);
}
.fea-catalog-course__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem 1rem;
  margin-bottom: 0.5rem;
}
.fea-catalog-course__title {
  margin: 0;
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  font-weight: 700;
  color: var(--fea-text-strong);
  line-height: 1.25;
}
.fea-catalog-course__badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fea-accent);
  background: var(--fea-accent-soft);
  border: 1px solid rgba(14, 165, 233, 0.25);
  padding: 0.25rem 0.55rem;
  border-radius: var(--fea-radius-xs);
}
.fea-catalog-course__desc {
  margin: 0 0 0.85rem 0;
  max-width: min(72ch, 100%);
  line-height: 1.65;
}
.fea-catalog-course__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}
.fea-catalog-fallback {
  max-width: min(60ch, 100%);
  line-height: 1.6;
}
.fea-catalog-no-modules,
.fea-catalog-no-lessons {
  margin: 0.35rem 0 0 0;
  font-size: 0.875rem;
}
.fea-catalog-grid {
  margin-top: 0.25rem;
}
.fea-catalog-module-text strong {
  display: block;
  margin-bottom: 0.45rem;
}
.fea-catalog-lesson-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--fea-muted);
  font-size: 0.875rem;
  line-height: 1.55;
  list-style: disc;
}
.fea-catalog-lesson-list li {
  margin-bottom: 0.2rem;
}

/* ═══ Elite Smart light marketing (Pricing / About + shared pieces) ═══ */
body.fea-smart-light-surface.smart-landing-v2 {
  --smart-page: #f8fafc;
  color: #475569;
}

body.fea-smart-light-surface.smart-landing-v2 .fea-wrap,
body.fea-smart-light-surface.smart-landing-v2 .fea-elite-main {
  color: #475569;
}

/* Solid white nav row (overrides smart-ui glass on these pages) */
body.fea-smart-light-surface.smart-landing-v2 .fea-nav.fea-nav-unified .fea-nav-inner {
  background: #ffffff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

body.fea-smart-light-surface.smart-landing-v2 .fea-nav.fea-nav-unified.scrolled .fea-nav-inner {
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08), 0 8px 24px rgba(15, 23, 42, 0.06);
}

/* Beat .smart-landing-v2 footer (same base specificity; extra body class wins) */
body.fea-smart-light-surface.smart-landing-v2 .fea-footer--pro {
  margin-top: 0;
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(226, 232, 240, 0.9);
}

body.fea-smart-light-surface.smart-landing-v2 .fea-footer--pro .fea-footer__list a {
  color: rgba(226, 232, 240, 0.9);
}

body.fea-smart-light-surface.smart-landing-v2 .fea-footer--pro .fea-footer__list a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

body.fea-smart-light-surface.smart-landing-v2 .fea-footer--pro .fea-footer__col--phones .fea-footer__list a[href^="tel:"],
body.fea-smart-light-surface.smart-landing-v2 .fea-footer--pro .fea-footer__col--reach .fea-footer__list a[href^="tel:"] {
  color: rgba(147, 197, 253, 0.98);
}

body.fea-smart-light-surface.smart-landing-v2 .fea-footer--pro .fea-footer__col--phones .fea-footer__list a[href^="tel:"]:hover,
body.fea-smart-light-surface.smart-landing-v2 .fea-footer--pro .fea-footer__col--reach .fea-footer__list a[href^="tel:"]:hover {
  color: #f0f9ff;
  background: rgba(56, 189, 248, 0.14);
}

body.fea-smart-light-surface.smart-landing-v2 .fea-footer--pro .fea-footer__col--emails .fea-footer__list a[href^="mailto:"],
body.fea-smart-light-surface.smart-landing-v2 .fea-footer--pro .fea-footer__col--reach .fea-footer__list a[href^="mailto:"] {
  color: rgba(196, 181, 253, 0.97);
}

body.fea-smart-light-surface.smart-landing-v2 .fea-footer--pro .fea-footer__col--emails .fea-footer__list a[href^="mailto:"]:hover,
body.fea-smart-light-surface.smart-landing-v2 .fea-footer--pro .fea-footer__col--reach .fea-footer__list a[href^="mailto:"]:hover {
  color: #f5f3ff;
  background: rgba(139, 92, 246, 0.16);
}

body.fea-smart-light-surface.fea-page-pricing .fea-section:first-of-type {
  text-align: center;
}

body.fea-smart-light-surface.fea-page-pricing .fea-section:first-of-type h1 {
  color: #000000;
  position: relative;
  padding-bottom: 0.6rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 22ch;
}

body.fea-smart-light-surface.fea-page-pricing .fea-section:first-of-type h1::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 3rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #b8860b, #d4af37);
}

body.fea-smart-light-surface.fea-page-pricing .fea-section:first-of-type p {
  margin-left: auto;
  margin-right: auto;
  color: #475569;
  max-width: min(42rem, 100%);
}

body.fea-smart-light-surface .fea-section h2,
body.fea-smart-light-surface .fea-section h3 {
  color: #1e293b;
}

body.fea-smart-light-surface .fea-section h2::after {
  background: linear-gradient(90deg, #b8860b, #d4af37);
}

body.fea-smart-light-surface .fea-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

body.fea-smart-light-surface .fea-card:hover {
  border-color: rgba(79, 70, 229, 0.22);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

body.fea-smart-light-surface .fea-card h4 {
  color: #1e293b;
}

body.fea-smart-light-surface .fea-card p {
  color: #64748b;
}

body.fea-smart-light-surface .fea-stats .fea-stat {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

body.fea-smart-light-surface .fea-stat-num {
  color: #1e293b;
}

body.fea-smart-light-surface .fea-stat-label {
  color: #64748b;
}

body.fea-smart-light-surface .fea-stat-icon {
  color: #4f46e5;
}

body.fea-smart-light-surface.fea-page-about .fea-section-with-img > div:first-child {
  text-align: center;
}

body.fea-smart-light-surface.fea-page-about .fea-section-with-img > div:first-child h1 {
  color: #000000;
  position: relative;
  padding-bottom: 0.6rem;
  margin-left: auto;
  margin-right: auto;
}

body.fea-smart-light-surface.fea-page-about .fea-section-with-img > div:first-child h1::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 3rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #b8860b, #d4af37);
}

body.fea-smart-light-surface.fea-page-about .fea-section-with-img > div:first-child p {
  margin-left: auto;
  margin-right: auto;
  color: #475569;
  max-width: min(42rem, 100%);
}

body.fea-smart-light-surface.smart-landing-v2 .fea-img-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

body.fea-smart-light-surface.smart-landing-v2 .fea-img-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Homepage-style gradient CTA (works without .smart-landing-v2 on body) */
body.fea-smart-light-surface .smart-elite-cta {
  box-sizing: border-box;
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 0;
  padding: clamp(0.55rem, 1.6vw, 0.75rem) max(var(--fea-wrap-pad, 1.25rem), env(safe-area-inset-right)) clamp(0.6rem, 1.7vw, 0.85rem) max(var(--fea-wrap-pad, 1.25rem), env(safe-area-inset-left));
  background: linear-gradient(120deg, #0f172a 0%, #1e3a5f 38%, #4338ca 72%, #5b21b6 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: none;
}

body.fea-smart-light-surface .smart-elite-cta__inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

body.fea-smart-light-surface .smart-elite-cta__title {
  margin: 0 auto 0.15rem;
  max-width: 40rem;
  font-family: var(--smart-display, var(--fea-font-display));
  font-size: clamp(0.88rem, 1.85vw, 1.08rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  text-align: center;
  color: #ffffff;
  position: relative;
  padding-bottom: 0.3rem;
}

body.fea-smart-light-surface .smart-elite-cta h2.smart-elite-cta__title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 2rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(234, 179, 8, 0.95), rgba(250, 204, 21, 0.85));
}

body.fea-smart-light-surface .smart-elite-cta__sub {
  margin: 0 auto 0.45rem;
  font-size: clamp(0.68rem, 1.25vw, 0.78rem);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
  max-width: 40rem;
}

body.fea-smart-light-surface .smart-elite-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  justify-content: center;
  align-items: center;
}

body.fea-smart-light-surface .smart-elite-cta__btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 0.85rem;
  font-family: var(--smart-display, var(--fea-font-display));
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.fea-smart-light-surface .smart-elite-cta__btn--solid {
  background: #fff;
  color: #0f172a !important;
  border: 1px solid #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

body.fea-smart-light-surface .smart-elite-cta__btn--solid:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  color: #020617 !important;
}

body.fea-smart-light-surface .smart-elite-cta__btn--ghost {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.82);
}

body.fea-smart-light-surface .smart-elite-cta__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

body.fea-smart-light-surface .smart-elite-cta__btn:focus-visible {
  outline: 2px solid rgba(250, 204, 21, 0.9);
  outline-offset: 3px;
}

/* Legal + Refund: readable cards on light elite shell */
body.fea-elite-sync.fea-legal-institutional .fea-legal-card,
body.fea-elite-sync.fea-refund-page .fea-legal-card {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

body.fea-elite-sync.fea-legal-institutional .fea-legal-card:hover,
body.fea-elite-sync.fea-refund-page .fea-legal-card:hover {
  transform: none;
  border-color: rgba(79, 70, 229, 0.2) !important;
}

body.fea-elite-sync.fea-legal-institutional .fea-legal-card-title,
body.fea-elite-sync.fea-refund-page .fea-legal-card-title {
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

body.fea-elite-sync.fea-legal-institutional .fea-legal-card-title-text,
body.fea-elite-sync.fea-refund-page .fea-legal-card-title-text {
  color: #1e293b !important;
}

body.fea-elite-sync.fea-legal-institutional .fea-legal-card-body,
body.fea-elite-sync.fea-legal-institutional .fea-legal-card-body p,
body.fea-elite-sync.fea-legal-institutional .fea-legal-card-body .fea-legal-list,
body.fea-elite-sync.fea-refund-page .fea-legal-card-body,
body.fea-elite-sync.fea-refund-page .fea-legal-card-body p,
body.fea-elite-sync.fea-refund-page .fea-legal-card-body .fea-legal-list {
  color: #475569 !important;
}

body.fea-elite-sync.fea-legal-institutional .fea-legal-card-icon,
body.fea-elite-sync.fea-refund-page .fea-legal-card-icon {
  color: #4f46e5 !important;
}

body.fea-elite-sync.fea-legal-institutional .fea-legal-card-num,
body.fea-elite-sync.fea-refund-page .fea-legal-card-num {
  color: #4f46e5;
}

/* Legal — smart light: readable TOC, compact hero & cards */
html:has(body.fea-smart-light-surface.fea-legal-institutional:not(.fea-legal-viewport-lock)) {
  scrollbar-color: rgba(100, 116, 139, 0.55) rgba(241, 245, 249, 0.95);
}
html:has(body.fea-smart-light-surface.fea-legal-institutional:not(.fea-legal-viewport-lock))::-webkit-scrollbar-track {
  background: rgba(241, 245, 249, 0.95);
}
html:has(body.fea-smart-light-surface.fea-legal-institutional:not(.fea-legal-viewport-lock))::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(100, 116, 139, 0.5), rgba(71, 85, 105, 0.38));
  border: 2px solid rgba(241, 245, 249, 0.95);
  background-clip: padding-box;
}
html:has(body.fea-smart-light-surface.fea-legal-institutional:not(.fea-legal-viewport-lock))::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(71, 85, 105, 0.55), rgba(51, 65, 85, 0.45));
}
body.fea-smart-light-surface.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-hero.fea-elite-page-hero {
  padding: clamp(0.75rem, 2.2vw, 1.1rem) 0 clamp(0.5rem, 1.6vw, 0.85rem);
}
body.fea-smart-light-surface.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-hero .fea-elite-page-hero__title {
  margin-bottom: 0.4rem;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
}
body.fea-smart-light-surface.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-hero .fea-elite-page-hero__sub {
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  line-height: 1.5;
}
body.fea-smart-light-surface.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-scroll {
  padding-top: clamp(0.3rem, 1.2vw, 0.55rem);
  padding-bottom: clamp(0.9rem, 2.5vw, 1.75rem);
}
body.fea-smart-light-surface.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-toc-label {
  color: #64748b;
  margin-bottom: 0.4rem;
}
body.fea-smart-light-surface.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-toc-link {
  color: #1e293b;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #f8fafc;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  min-height: 36px;
  padding: 0.32rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: left;
  justify-content: flex-start;
}
body.fea-smart-light-surface.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-toc-link:hover {
  color: #4f46e5;
  border-color: rgba(79, 70, 229, 0.35);
  background: rgba(79, 70, 229, 0.06);
  box-shadow: none;
}
body.fea-smart-light-surface.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-toc-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.35);
}
body.fea-smart-light-surface.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-toc--mobile {
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.07);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0.55rem 0.65rem;
  margin-bottom: 0.65rem;
}
@media (min-width: 993px) {
  body.fea-smart-light-surface.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-toc--desktop {
    padding: 0.65rem 0.72rem;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  body.fea-smart-light-surface.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-toc--desktop .fea-legal-toc-list {
    gap: 0.35rem;
  }
  body.fea-smart-light-surface.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-shell {
    gap: clamp(0.7rem, 1.8vw, 1.1rem);
    grid-template-columns: minmax(0, 11.25rem) minmax(0, 1fr);
  }
}
@media (min-width: 1161px) {
  body.fea-smart-light-surface.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-toc--desktop .fea-legal-toc-link {
    width: 100%;
  }
}
@media (min-width: 993px) and (max-width: 1160px) {
  body.fea-smart-light-surface.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-toc--desktop {
    padding: 0.6rem 0.7rem;
  }
  body.fea-smart-light-surface.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-toc--desktop .fea-legal-toc-link {
    min-height: 36px;
    justify-content: center;
    text-align: center;
  }
}
body.fea-smart-light-surface.fea-elite-sync.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-grid {
  gap: clamp(0.5rem, 1.4vw, 0.85rem);
}
body.fea-smart-light-surface.fea-elite-sync.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-card {
  padding: clamp(0.72rem, 2vw, 1rem) clamp(0.78rem, 2vw, 1.05rem) !important;
  border-radius: 14px !important;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06) !important;
}
body.fea-smart-light-surface.fea-elite-sync.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-card:hover {
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08) !important;
}
body.fea-smart-light-surface.fea-elite-sync.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-card-title {
  margin-bottom: 0.5rem;
  padding-bottom: 0.42rem;
}
body.fea-smart-light-surface.fea-elite-sync.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-card-body p,
body.fea-smart-light-surface.fea-elite-sync.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-card-body .fea-legal-list,
body.fea-smart-light-surface.fea-elite-sync.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-card-body .fea-legal-list li {
  font-size: 0.8125rem !important;
  line-height: 1.58 !important;
}
body.fea-smart-light-surface.fea-elite-sync.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-card-body p {
  margin-bottom: 0.48rem;
}
body.fea-smart-light-surface.fea-elite-sync.fea-legal-institutional:not(.fea-legal-viewport-lock) .fea-legal-card-title-text {
  font-size: clamp(0.78rem, 1.25vw, 0.85rem) !important;
}

body.fea-elite-sync.fea-refund-page .fea-refund-trust-box {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  color: #475569;
}

body.fea-elite-sync.fea-refund-page .fea-refund-trust-tagline {
  color: #1e293b;
}

/* Trust box: base rule sets p to var(--fea-text) (light on dark pages) — force contrast on white card */
body.fea-elite-sync.fea-refund-page .fea-refund-trust-box p:not(.fea-refund-trust-tagline) {
  color: #475569 !important;
}
body.fea-elite-sync.fea-refund-page .fea-refund-trust-box strong {
  color: #1e293b !important;
  font-weight: 700;
}

/* Refund — smart light: compact hero, trust strip, masonry (footer supplies single CTA) */
body.fea-smart-light-surface.fea-refund-page:not(.fea-refund-viewport-lock) .fea-refund-hero.fea-elite-page-hero {
  padding: clamp(0.75rem, 2.2vw, 1.1rem) 0 clamp(0.5rem, 1.6vw, 0.85rem);
}
body.fea-smart-light-surface.fea-refund-page:not(.fea-refund-viewport-lock) .fea-refund-hero .fea-elite-page-hero__title {
  margin-bottom: 0.4rem;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
}
body.fea-smart-light-surface.fea-refund-page:not(.fea-refund-viewport-lock) .fea-refund-hero .fea-elite-page-hero__sub {
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  line-height: 1.5;
}
body.fea-smart-light-surface.fea-refund-page:not(.fea-refund-viewport-lock) .fea-refund-scroll {
  padding-top: clamp(0.3rem, 1.2vw, 0.55rem);
  padding-bottom: clamp(0.9rem, 2.5vw, 1.75rem);
}
body.fea-smart-light-surface.fea-elite-sync.fea-refund-page:not(.fea-refund-viewport-lock) .fea-refund-trust-box {
  margin-bottom: clamp(0.65rem, 1.8vw, 1rem);
  padding: clamp(0.75rem, 2vw, 1.05rem) clamp(0.8rem, 2vw, 1.1rem);
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
  border-color: rgba(201, 164, 50, 0.28);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
body.fea-smart-light-surface.fea-refund-page:not(.fea-refund-viewport-lock) .fea-refund-trust-tagline {
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
}
body.fea-smart-light-surface.fea-refund-page:not(.fea-refund-viewport-lock) .fea-refund-trust-box p:not(.fea-refund-trust-tagline) {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #475569 !important;
}
body.fea-smart-light-surface.fea-refund-page:not(.fea-refund-viewport-lock) .fea-refund-trust-box .fea-refund-trust-tagline {
  color: #0f172a !important;
}
body.fea-smart-light-surface.fea-refund-page:not(.fea-refund-viewport-lock) .fea-refund-trust-box strong {
  color: #0f172a !important;
}
body.fea-smart-light-surface.fea-refund-page:not(.fea-refund-viewport-lock) .fea-refund-trust-box p:not(:last-child) {
  margin-bottom: 0.45rem;
}
body.fea-smart-light-surface.fea-refund-page:not(.fea-refund-viewport-lock) .fea-refund-masonry {
  column-gap: clamp(0.5rem, 1.4vw, 0.85rem);
}
body.fea-smart-light-surface.fea-refund-page:not(.fea-refund-viewport-lock) .fea-refund-card {
  margin-bottom: clamp(0.5rem, 1.4vw, 0.75rem);
}
body.fea-smart-light-surface.fea-elite-sync.fea-refund-page:not(.fea-refund-viewport-lock) .fea-refund-masonry .fea-legal-card {
  padding: clamp(0.72rem, 2vw, 1rem) clamp(0.78rem, 2vw, 1.05rem) !important;
  border-radius: 14px !important;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06) !important;
}
body.fea-smart-light-surface.fea-elite-sync.fea-refund-page:not(.fea-refund-viewport-lock) .fea-refund-masonry .fea-legal-card:hover {
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08) !important;
}
body.fea-smart-light-surface.fea-elite-sync.fea-refund-page:not(.fea-refund-viewport-lock) .fea-refund-masonry .fea-legal-card-title {
  margin-bottom: 0.5rem;
  padding-bottom: 0.42rem;
}
body.fea-smart-light-surface.fea-elite-sync.fea-refund-page:not(.fea-refund-viewport-lock) .fea-refund-masonry .fea-legal-card-body p,
body.fea-smart-light-surface.fea-elite-sync.fea-refund-page:not(.fea-refund-viewport-lock) .fea-refund-masonry .fea-legal-card-body .fea-legal-list,
body.fea-smart-light-surface.fea-elite-sync.fea-refund-page:not(.fea-refund-viewport-lock) .fea-refund-masonry .fea-legal-card-body .fea-legal-list li {
  font-size: 0.8125rem !important;
  line-height: 1.58 !important;
}
body.fea-smart-light-surface.fea-elite-sync.fea-refund-page:not(.fea-refund-viewport-lock) .fea-refund-masonry .fea-legal-card-body p {
  margin-bottom: 0.48rem;
}
body.fea-smart-light-surface.fea-elite-sync.fea-refund-page:not(.fea-refund-viewport-lock) .fea-refund-masonry .fea-legal-card-title-text {
  font-size: clamp(0.78rem, 1.25vw, 0.85rem) !important;
}
body.fea-smart-light-surface.fea-elite-sync.fea-refund-page:not(.fea-refund-viewport-lock) .fea-refund-masonry .fea-legal-card-body a {
  color: #4f46e5;
  text-decoration: none;
  word-break: break-word;
}
body.fea-smart-light-surface.fea-elite-sync.fea-refund-page:not(.fea-refund-viewport-lock) .fea-refund-masonry .fea-legal-card-body a:hover {
  text-decoration: underline;
}

/* ——— Pricing page (Elite Smart light — body.fea-smart-light-surface.fea-page-pricing) ——— */
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  max-width: 1040px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  body.fea-smart-light-surface.fea-page-pricing .fea-pricing-plans-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.25rem, 3vw, 1.65rem);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-card--featured {
  border-color: rgba(201, 164, 50, 0.35);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(201, 164, 50, 0.12);
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-eyebrow {
  margin: 0 0 0.35rem 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-card-title {
  margin: 0 0 0.5rem 0;
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-price {
  margin: 0 0 0.65rem 0;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-price strong {
  font-weight: 800;
  color: #4f46e5;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-card > p[data-i18n] {
  margin: 0 0 0.75rem 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-feature-list {
  list-style: none;
  margin: 0.35rem 0 0.85rem 0;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.55;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-feature-item {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-feature-item:last-child {
  margin-bottom: 0;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-check {
  flex-shrink: 0;
  margin-top: 0.12rem;
  color: #4f46e5;
}
body.fea-smart-light-surface.fea-page-pricing .fea-icon-check-circle {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-bestfor {
  margin: 0 0 1.1rem 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-card .fea-btn,
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-card .fea-btn-outline {
  margin-top: auto;
  align-self: flex-start;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 9999px;
  padding: 0.65rem 1.35rem;
  font-weight: 700;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-card .fea-btn {
  background: #4f46e5;
  color: #fff !important;
  border: 2px solid #4f46e5;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.25);
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-card .fea-btn:hover {
  background: #4338ca;
  border-color: #4338ca;
  color: #fff !important;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-card .fea-btn-outline {
  color: #4f46e5 !important;
  border: 2px solid rgba(79, 70, 229, 0.45);
  background: #fff;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-card .fea-btn-outline:hover {
  background: rgba(79, 70, 229, 0.06);
  color: #4338ca !important;
  border-color: rgba(79, 70, 229, 0.65);
}
body.fea-smart-light-surface.fea-page-pricing .fea-btn--pricing-enroll-full {
  white-space: nowrap;
  font-size: clamp(0.78rem, 2.2vw, 1rem);
  padding-left: clamp(0.65rem, 2vw, 1.1rem);
  padding-right: clamp(0.65rem, 2vw, 1.1rem);
}
@media (max-width: 480px) {
  body.fea-smart-light-surface.fea-page-pricing .fea-btn--pricing-enroll-full {
    font-size: 0.78rem;
    padding: 0.62rem 0.75rem;
  }
}
body.fea-smart-light-surface.fea-page-pricing .fea-faq {
  max-width: min(72ch, 100%);
  margin-top: 0.75rem;
}
body.fea-smart-light-surface.fea-page-pricing .fea-faq-item {
  margin-bottom: 0.65rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
body.fea-smart-light-surface.fea-page-pricing .fea-faq-item:last-child {
  margin-bottom: 0;
}
body.fea-smart-light-surface.fea-page-pricing .fea-faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  list-style: none;
  margin: 0;
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  line-height: 1.35;
  text-wrap: balance;
  color: #1e293b;
}
body.fea-smart-light-surface.fea-page-pricing .fea-faq-summary::-webkit-details-marker {
  display: none;
}
body.fea-smart-light-surface.fea-page-pricing .fea-faq-summary-text {
  flex: 1;
  min-width: 0;
  text-wrap: balance;
}
body.fea-smart-light-surface.fea-page-pricing .fea-faq-summary::after {
  content: '';
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.35rem;
  border-right: 2px solid #4f46e5;
  border-bottom: 2px solid #4f46e5;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
body.fea-smart-light-surface.fea-page-pricing .fea-faq-item[open] .fea-faq-summary::after {
  transform: rotate(-135deg);
  margin-top: 0.45rem;
}
body.fea-smart-light-surface.fea-page-pricing .fea-faq-body {
  padding: 0 1rem 0.9rem 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
body.fea-smart-light-surface.fea-page-pricing .fea-faq-body p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #475569;
}

/* Pricing: minimal layout — compact hero, stat chips, plans, included, FAQ */
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-hero {
  padding-top: clamp(0.65rem, 2vw, 1rem);
  padding-bottom: clamp(0.55rem, 1.8vw, 0.85rem);
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-hero h1 {
  max-width: 28ch;
  padding-bottom: 0.45rem;
  margin-bottom: 0.3rem;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-hero p {
  margin-bottom: 0.25rem;
  font-size: clamp(0.8125rem, 2.2vw, 0.9375rem);
  line-height: 1.5;
}
body.fea-smart-light-surface.fea-page-pricing .fea-stats--pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  margin: 0.55rem auto 0;
  max-width: 22rem;
  text-align: left;
}
@media (min-width: 540px) {
  body.fea-smart-light-surface.fea-page-pricing .fea-stats--pricing {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    gap: 0.5rem;
    margin-top: 0.65rem;
  }
}
body.fea-smart-light-surface.fea-page-pricing .fea-stats--pricing .fea-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 0.55rem;
  row-gap: 0;
  padding: 0.5rem 0.65rem;
  min-height: 0;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
body.fea-smart-light-surface.fea-page-pricing .fea-stats--pricing .fea-stat-icon {
  grid-row: 1 / span 2;
  grid-column: 1;
  width: 22px;
  height: 22px;
  margin: 0;
}
body.fea-smart-light-surface.fea-page-pricing .fea-stats--pricing .fea-stat-num {
  grid-column: 2;
  grid-row: 1;
  font-size: 0.9375rem;
  line-height: 1.15;
  margin: 0;
}
body.fea-smart-light-surface.fea-page-pricing .fea-stats--pricing .fea-stat-label {
  grid-column: 2;
  grid-row: 2;
  margin-top: 0.08rem;
  font-size: 0.6875rem;
  line-height: 1.25;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-plans {
  padding-top: clamp(0.45rem, 1.8vw, 0.75rem);
  padding-bottom: clamp(0.45rem, 1.8vw, 0.75rem);
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-plans-grid {
  gap: clamp(0.75rem, 2.5vw, 1.2rem);
  max-width: 960px;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-card {
  padding: clamp(0.85rem, 2.4vw, 1.15rem);
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-eyebrow {
  margin-bottom: 0.22rem;
  font-size: 0.625rem;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-card-title {
  margin-bottom: 0.3rem;
  font-size: clamp(1.05rem, 2.5vw, 1.22rem);
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-price {
  margin-bottom: 0.4rem;
  font-size: clamp(0.95rem, 2.2vw, 1.06rem);
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-card > p[data-i18n] {
  margin-bottom: 0.45rem;
  font-size: 0.8125rem;
  line-height: 1.5;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-feature-list {
  margin: 0.1rem 0 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.42;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-feature-item {
  margin-bottom: 0.32rem;
  gap: 0.42rem;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-check {
  margin-top: 0.06rem;
}
body.fea-smart-light-surface.fea-page-pricing .fea-icon-check-circle {
  width: 1rem;
  height: 1rem;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-bestfor {
  margin-bottom: 0.65rem;
  font-size: 0.75rem;
  line-height: 1.42;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-card .fea-btn,
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-card .fea-btn-outline {
  padding: 0.5rem 1rem;
  font-size: clamp(0.75rem, 1.8vw, 0.875rem);
  width: 100%;
  justify-content: center;
  align-self: stretch;
  text-align: center;
}
@media (min-width: 480px) {
  body.fea-smart-light-surface.fea-page-pricing .fea-pricing-card .fea-btn,
  body.fea-smart-light-surface.fea-page-pricing .fea-pricing-card .fea-btn-outline {
    width: auto;
    align-self: flex-start;
  }
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-included {
  padding-top: clamp(0.55rem, 1.8vw, 0.9rem);
  padding-bottom: clamp(0.55rem, 1.8vw, 0.9rem);
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-included h2 {
  margin-bottom: 0.3rem;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-included > p {
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
}
body.fea-smart-light-surface.fea-page-pricing .fea-cards--pricing-included {
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-top: 0.45rem;
}
@media (min-width: 640px) {
  body.fea-smart-light-surface.fea-page-pricing .fea-cards--pricing-included {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }
}
body.fea-smart-light-surface.fea-page-pricing .fea-cards--pricing-included .fea-card {
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
body.fea-smart-light-surface.fea-page-pricing .fea-cards--pricing-included .fea-card h4 {
  font-size: 0.8125rem;
  margin: 0 0 0.18rem;
}
body.fea-smart-light-surface.fea-page-pricing .fea-cards--pricing-included .fea-card p {
  font-size: 0.75rem;
  line-height: 1.4;
  margin: 0;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-faq {
  padding-top: clamp(0.55rem, 1.8vw, 0.9rem);
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-faq h2 {
  margin-bottom: 0.3rem;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-faq > p {
  font-size: 0.8125rem;
  margin-bottom: 0.4rem;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-faq .fea-faq {
  margin-top: 0.5rem;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-faq .fea-faq-item {
  margin-bottom: 0.45rem;
  border-radius: 10px;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-faq .fea-faq-summary {
  padding: 0.65rem 0.85rem;
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-faq .fea-faq-body {
  padding: 0 0.85rem 0.7rem;
}
body.fea-smart-light-surface.fea-page-pricing .fea-pricing-faq .fea-faq-body p {
  font-size: 0.8125rem;
  line-height: 1.55;
}

/* ——— About page ——— */
.fea-page-about .fea-about-stats .fea-stats {
  justify-items: stretch;
  text-align: center;
}
.fea-page-about .fea-about-stats .fea-stat {
  align-items: center;
  text-align: center;
}
.fea-page-about .fea-about-stats .fea-stat-num {
  color: var(--fea-gold);
}
.fea-page-about .fea-about-stats .fea-stat-label {
  color: var(--fea-muted);
}
/* Kinyarwanda: one line “Kuva mu 2020” without duplicating the year */
html:lang(rw) .fea-page-about .fea-about-stat-since .fea-about-stat-year {
  display: none;
}
html:lang(rw) .fea-page-about .fea-about-stat-since .fea-stat-label {
  margin-top: 0;
  font-size: clamp(1.05rem, 2.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fea-gold);
}
.fea-page-about .fea-about-contact {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--fea-radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 15, 30, 0.55);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}
.fea-page-about .fea-about-contact h2 {
  margin-top: 0;
}
.fea-page-about .fea-about-contact-cta {
  margin-bottom: 0;
}
.fea-page-about .fea-about-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 0.65rem 1.35rem;
  box-sizing: border-box;
}

body.fea-smart-light-surface.fea-page-about .fea-about-stats .fea-stat-num {
  color: #1e293b;
}

body.fea-smart-light-surface.fea-page-about .fea-about-stats .fea-stat-label {
  color: #64748b;
}

html:lang(rw) body.fea-smart-light-surface.fea-page-about .fea-about-stat-since .fea-stat-label {
  color: #1e293b;
}

body.fea-smart-light-surface.fea-page-about .fea-about-contact {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

body.fea-smart-light-surface.fea-page-about .fea-about-contact h2 {
  color: #1e293b;
}

body.fea-smart-light-surface.fea-page-about .fea-about-contact p {
  color: #475569;
}

body.fea-smart-light-surface.fea-page-about .fea-about-contact-btn {
  border-radius: 9999px;
  font-weight: 700;
}

/* About (elite light): minimal layout — compact hero, stat chips, value cards, contact */
body.fea-smart-light-surface.fea-page-about .fea-about-hero {
  padding-top: clamp(0.65rem, 2vw, 1rem);
  padding-bottom: clamp(0.55rem, 1.8vw, 0.85rem);
  gap: clamp(1rem, 3vw, 1.5rem);
}
@media (min-width: 701px) {
  body.fea-smart-light-surface.fea-page-about .fea-about-hero {
    gap: clamp(1.2rem, 2.8vw, 1.65rem);
  }
}
@media (max-width: 700px) {
  body.fea-smart-light-surface.fea-page-about .fea-about-hero {
    gap: 1rem;
  }
  body.fea-smart-light-surface.fea-page-about .fea-about-hero .fea-img-card {
    order: -1;
    max-height: min(220px, 52vw);
    overflow: hidden;
  }
  body.fea-smart-light-surface.fea-page-about .fea-about-hero .fea-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}
body.fea-smart-light-surface.fea-page-about .fea-about-hero > div:first-child h1 {
  padding-bottom: 0.45rem;
  margin-bottom: 0.3rem;
}
body.fea-smart-light-surface.fea-page-about .fea-about-hero > div:first-child p {
  font-size: clamp(0.8125rem, 2.2vw, 0.9375rem);
  line-height: 1.5;
  margin-bottom: 0;
}
body.fea-smart-light-surface.fea-page-about .fea-about-hero .fea-img-card {
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
body.fea-smart-light-surface.fea-page-about .fea-about-stats--wrap {
  padding-top: clamp(0.45rem, 1.8vw, 0.75rem);
  padding-bottom: clamp(0.45rem, 1.8vw, 0.75rem);
}
body.fea-smart-light-surface.fea-page-about .fea-about-stats .fea-stats--about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  margin: 0 auto;
  max-width: 22rem;
  text-align: left;
}
@media (min-width: 540px) {
  body.fea-smart-light-surface.fea-page-about .fea-about-stats .fea-stats--about {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    gap: 0.5rem;
  }
}
body.fea-smart-light-surface.fea-page-about .fea-about-stats .fea-stats--about .fea-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  justify-items: start;
  column-gap: 0.55rem;
  row-gap: 0;
  padding: 0.5rem 0.65rem;
  min-height: 0;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  text-align: left;
}
body.fea-smart-light-surface.fea-page-about .fea-about-stats .fea-stats--about .fea-stat-icon {
  grid-row: 1 / span 2;
  grid-column: 1;
  width: 22px;
  height: 22px;
  margin: 0;
}
body.fea-smart-light-surface.fea-page-about .fea-about-stats .fea-stats--about .fea-stat-num {
  grid-column: 2;
  grid-row: 1;
  font-size: 0.9375rem;
  line-height: 1.15;
  margin: 0;
}
body.fea-smart-light-surface.fea-page-about .fea-about-stats .fea-stats--about .fea-stat-label {
  grid-column: 2;
  grid-row: 2;
  margin-top: 0.08rem;
  font-size: 0.6875rem;
  line-height: 1.25;
}
html:lang(rw) body.fea-smart-light-surface.fea-page-about .fea-about-stats .fea-stats--about .fea-about-stat-since .fea-stat-label {
  grid-row: 1 / span 2;
  align-self: center;
  margin-top: 0;
  font-size: clamp(0.95rem, 2.5vw, 1.25rem);
  font-weight: 700;
  line-height: 1.2;
}
body.fea-smart-light-surface.fea-page-about .fea-about-values {
  padding-top: clamp(0.55rem, 1.8vw, 0.9rem);
  padding-bottom: clamp(0.55rem, 1.8vw, 0.9rem);
}
body.fea-smart-light-surface.fea-page-about .fea-about-values h2 {
  margin-bottom: 0.3rem;
}
body.fea-smart-light-surface.fea-page-about .fea-about-values > p {
  margin-bottom: 0.4rem;
  font-size: 0.8125rem;
  line-height: 1.5;
}
body.fea-smart-light-surface.fea-page-about .fea-cards--about-values {
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
@media (min-width: 600px) {
  body.fea-smart-light-surface.fea-page-about .fea-cards--about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }
}
@media (min-width: 1100px) {
  body.fea-smart-light-surface.fea-page-about .fea-cards--about-values {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.6rem;
  }
}
body.fea-smart-light-surface.fea-page-about .fea-cards--about-values .fea-card {
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
body.fea-smart-light-surface.fea-page-about .fea-cards--about-values .fea-card h4 {
  font-size: 0.8125rem;
  margin: 0 0 0.18rem;
}
body.fea-smart-light-surface.fea-page-about .fea-cards--about-values .fea-card p {
  font-size: 0.75rem;
  line-height: 1.4;
  margin: 0;
}
body.fea-smart-light-surface.fea-page-about .fea-about-contact {
  padding: clamp(0.85rem, 2.5vw, 1.25rem) clamp(0.85rem, 2.5vw, 1.35rem);
  border-radius: 14px;
}
body.fea-smart-light-surface.fea-page-about .fea-about-contact h2 {
  margin-bottom: 0.3rem;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
}
body.fea-smart-light-surface.fea-page-about .fea-about-contact p:not(.fea-about-contact-cta) {
  font-size: 0.8125rem;
  margin-bottom: 0.45rem;
}
body.fea-smart-light-surface.fea-page-about .fea-about-contact-cta {
  margin-top: 0.35rem;
  margin-bottom: 0;
}
body.fea-smart-light-surface.fea-page-about .fea-about-contact-btn {
  padding: 0.5rem 1.1rem;
  font-size: clamp(0.75rem, 1.8vw, 0.875rem);
  width: 100%;
  max-width: 22rem;
  justify-content: center;
}
@media (min-width: 480px) {
  body.fea-smart-light-surface.fea-page-about .fea-about-contact-btn {
    width: auto;
    max-width: none;
  }
}

/* ——— Contact page (precision lock layout + glass method cards) ——— */
body.fea-page-contact {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  overscroll-behavior-y: contain;
}
.fea-page-contact .fea-contact-main {
  flex: 1 0 auto;
  overscroll-behavior: contain;
}
.fea-page-contact .fea-contact-footer,
.fea-page-contact .fea-footer.fea-contact-footer {
  margin-top: auto;
  flex-shrink: 0;
}
.fea-page-contact .fea-wrap {
  padding-bottom: clamp(1.25rem, 4vw, 2rem);
}
/* Auth-style glass cards (contact does not load fea-auth.css) */
.fea-page-contact .fea-contact-method-card.fea-auth-card {
  background: rgba(17, 22, 31, 0.68);
  border: 1px solid var(--fea-border);
  border-radius: var(--fea-radius);
  padding: clamp(1.25rem, 3vw, 1.65rem);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.fea-page-contact .fea-contact-methods-section > h2 {
  margin-bottom: 1rem;
}
.fea-page-contact .fea-contact-methods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 3vw, 1.35rem);
  max-width: min(720px, 100%);
}
@media (min-width: 720px) {
  .fea-page-contact .fea-contact-methods-grid {
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }
}
.fea-page-contact .fea-contact-method-title {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  font-weight: 700;
  color: var(--fea-text-strong);
  margin: 0 0 0.85rem 0;
  line-height: 1.3;
}
.fea-page-contact .fea-contact-method-body {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--fea-text);
}
.fea-page-contact .fea-contact-method-body p {
  max-width: none;
}
.fea-page-contact .fea-contact-tap-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.fea-page-contact a.fea-contact-tap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.5rem 0.85rem;
  border-radius: var(--fea-radius-sm);
  color: var(--fea-accent);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.fea-page-contact a.fea-contact-tap--block {
  justify-content: flex-start;
  width: 100%;
  word-break: break-word;
}
.fea-page-contact a.fea-contact-tap:hover {
  background: var(--fea-accent-soft);
  color: var(--fea-text-strong);
  text-decoration: none;
}
.fea-page-contact a.fea-contact-tap:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--fea-accent-soft);
}
.fea-page-contact a.fea-contact-tap--wa {
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #6ee7a8;
}
.fea-page-contact a.fea-contact-tap--wa:hover {
  background: rgba(37, 211, 102, 0.12);
  color: #a7f3d0;
}
.fea-page-contact .fea-contact-meta {
  margin: 0;
  font-size: 0.875rem;
  color: var(--fea-muted);
}
.fea-page-contact .fea-contact-meta strong {
  color: var(--fea-text);
}
.fea-page-contact .fea-contact-channel-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fea-page-contact .fea-contact-channel-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.fea-page-contact .fea-contact-channel-row:last-child {
  margin-bottom: 0;
}
.fea-page-contact .fea-contact-channel-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fea-muted);
}
.fea-page-contact .fea-contact-channel-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.5rem;
}
.fea-page-contact .fea-contact-channel-actions .fea-contact-tap {
  flex: 1 1 auto;
  min-width: min(100%, 9rem);
}
@media (max-width: 480px) {
  .fea-page-contact .fea-contact-channel-actions {
    flex-direction: column;
  }
  .fea-page-contact .fea-contact-channel-actions .fea-contact-tap {
    width: 100%;
    min-width: 0;
  }
}
/* Quick Actions: single column on small viewports */
.fea-page-contact .fea-contact-quick-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.fea-page-contact .fea-contact-quick-actions .fea-card {
  min-width: 0;
}
@media (min-width: 768px) {
  .fea-page-contact .fea-contact-quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
.fea-page-contact .fea-contact-quick-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.35rem 0;
  box-sizing: border-box;
}

/* Contact public — elite light compact (pricing / services rhythm) */
body.fea-smart-light-surface.fea-page-contact .fea-contact-hero.fea-elite-page-hero {
  padding: clamp(0.75rem, 2.2vw, 1.15rem) 0 clamp(0.55rem, 1.8vw, 0.95rem);
}
body.fea-smart-light-surface.fea-page-contact .fea-contact-hero .fea-elite-page-hero__title {
  margin-bottom: 0.4rem;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
}
body.fea-smart-light-surface.fea-page-contact .fea-contact-hero .fea-elite-page-hero__sub {
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  line-height: 1.5;
}
body.fea-smart-light-surface.fea-page-contact .fea-stats--contact-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  margin: 0.55rem auto 0;
  max-width: 22rem;
  text-align: left;
}
@media (min-width: 540px) {
  body.fea-smart-light-surface.fea-page-contact .fea-stats--contact-hero {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    gap: 0.5rem;
    margin-top: 0.65rem;
  }
}
body.fea-smart-light-surface.fea-page-contact .fea-stats--contact-hero .fea-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem 0.65rem;
  min-height: 0;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  text-align: left;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}
body.fea-smart-light-surface.fea-page-contact .fea-stats--contact-hero .fea-stat-num {
  display: block;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.15;
  font-weight: 800;
  color: #4f46e5;
}
body.fea-smart-light-surface.fea-page-contact .fea-stats--contact-hero .fea-stat-label {
  margin-top: 0.08rem;
  font-size: 0.6875rem;
  line-height: 1.25;
  color: #64748b;
}
body.fea-smart-light-surface.fea-page-contact .fea-elite-main .fea-section.fea-contact-section {
  margin-top: clamp(0.35rem, 1.5vw, 0.65rem);
  padding-top: clamp(0.4rem, 1.5vw, 0.65rem);
  padding-bottom: clamp(0.4rem, 1.5vw, 0.65rem);
}
body.fea-smart-light-surface.fea-page-contact .fea-elite-contact-layout {
  gap: 0.75rem;
  margin-top: 0.35rem;
}
@media (min-width: 992px) {
  body.fea-smart-light-surface.fea-page-contact .fea-elite-contact-layout {
    gap: 0.85rem;
  }
}
body.fea-smart-light-surface.fea-page-contact .fea-elite-contact-layout > .fea-elite-card--pad-lg {
  padding: clamp(0.8rem, 2.4vw, 1.15rem) clamp(0.8rem, 2.4vw, 1.2rem);
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}
body.fea-smart-light-surface.fea-page-contact .fea-contact-form-title {
  font-family: var(--smart-display, var(--fea-font-display));
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #0f172a;
  margin: 0 0 0.65rem;
  text-align: left;
}
body.fea-smart-light-surface.fea-page-contact .fea-elite-contact-form .fea-elite-field {
  margin-bottom: 0.65rem;
}
body.fea-smart-light-surface.fea-page-contact .fea-elite-contact-form label {
  font-size: 0.8125rem;
  margin-bottom: 0.28rem;
}
body.fea-smart-light-surface.fea-page-contact .fea-elite-contact-form input,
body.fea-smart-light-surface.fea-page-contact .fea-elite-contact-form select,
body.fea-smart-light-surface.fea-page-contact .fea-elite-contact-form textarea {
  padding: 0.5rem 0.65rem;
  font-size: 0.9375rem;
  border-radius: 10px;
}
body.fea-smart-light-surface.fea-page-contact .fea-elite-contact-form textarea {
  min-height: 120px;
}
body.fea-smart-light-surface.fea-page-contact .fea-elite-contact-form .fea-btn {
  margin-top: 0.15rem;
  padding: 0.5rem 1.1rem;
  font-size: clamp(0.75rem, 1.8vw, 0.875rem);
  border-radius: 9999px;
  font-weight: 700;
}
body.fea-smart-light-surface.fea-page-contact #fea-elite-form-message {
  margin-top: 0.55rem;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  font-size: 0.8125rem;
}
body.fea-smart-light-surface.fea-page-contact .fea-contact-info-card {
  margin-bottom: 0.65rem;
}
body.fea-smart-light-surface.fea-page-contact .fea-contact-card-title {
  margin: 0 0 0.55rem;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  font-weight: 700;
  color: #0f172a;
}
body.fea-smart-light-surface.fea-page-contact .fea-contact-info-line {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #64748b;
}
body.fea-smart-light-surface.fea-page-contact .fea-contact-info-line a {
  color: #4f46e5;
  text-decoration: none;
  word-break: break-word;
}
body.fea-smart-light-surface.fea-page-contact .fea-contact-info-line a:hover {
  text-decoration: underline;
}
body.fea-smart-light-surface.fea-page-contact .fea-contact-info-meta {
  margin: 0.55rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
}
body.fea-smart-light-surface.fea-page-contact .fea-contact-quick-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
body.fea-smart-light-surface.fea-page-contact .fea-contact-quick-links .fea-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem 1rem;
  font-size: clamp(0.75rem, 1.8vw, 0.875rem);
  border-radius: 9999px;
  font-weight: 700;
}

/* ——— Services page (academic smart grid + disclaimer) ——— */
body.fea-page-services {
  min-height: 100vh;
  min-height: 100dvh;
}
.fea-page-services .fea-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.85rem, 2.5vw, 1.15rem);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 900px) {
  .fea-page-services .fea-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}
.fea-page-services article.fea-service-card {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--fea-gold);
  border-radius: var(--fea-radius);
  padding: clamp(1.1rem, 2.8vw, 1.35rem);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.22);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.fea-page-services article.fea-service-card:hover {
  border-color: rgba(201, 164, 50, 0.35);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
}
.fea-page-services .fea-service-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.65rem;
  color: var(--fea-gold-bright);
}
.fea-page-services .fea-service-card-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.fea-page-services .fea-service-card-title {
  margin: 0 0 0.45rem 0;
  font-size: clamp(1rem, 2.1vw, 1.08rem);
  font-weight: 700;
  color: var(--fea-text-strong);
  line-height: 1.3;
}
.fea-page-services .fea-service-card-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--fea-muted);
  max-width: none;
}
.fea-page-services .fea-services-disclaimer {
  margin: clamp(1.75rem, 4vw, 2.25rem) 0;
  padding: 1.15rem 1.15rem 1.15rem 1.2rem;
  border-radius: 0 var(--fea-radius-sm) var(--fea-radius-sm) 0;
  border: 1px solid rgba(234, 88, 12, 0.22);
  border-left: 4px solid #ea580c;
  background: rgba(234, 88, 12, 0.07);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  max-width: min(72ch, 100%);
}
.fea-page-services .fea-services-disclaimer-title {
  margin: 0 0 0.5rem 0;
  padding-bottom: 0;
  font-size: clamp(1.05rem, 2.3vw, 1.2rem);
  font-weight: 700;
  color: var(--fea-text-strong);
  letter-spacing: -0.02em;
}
.fea-page-services .fea-services-disclaimer-title::after {
  display: none;
}
.fea-page-services .fea-services-disclaimer-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--fea-text);
  max-width: none;
}
.fea-page-services .fea-services-cta-row {
  margin-top: 1.5rem;
}
.fea-page-services .fea-services-cta-row .fea-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Services — elite light compact (matches pricing / about rhythm) */
body.fea-smart-light-surface.fea-page-services .fea-services-section {
  padding-top: clamp(0.4rem, 1.5vw, 0.65rem);
  padding-bottom: clamp(0.4rem, 1.5vw, 0.65rem);
}
body.fea-smart-light-surface.fea-page-services .fea-services-hero.fea-elite-page-hero {
  padding: clamp(0.75rem, 2.2vw, 1.15rem) 0 clamp(0.55rem, 1.8vw, 0.95rem);
}
body.fea-smart-light-surface.fea-page-services .fea-services-hero .fea-elite-page-hero__title {
  margin-bottom: 0.4rem;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
}
body.fea-smart-light-surface.fea-page-services .fea-services-hero .fea-elite-page-hero__sub {
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  line-height: 1.5;
}
body.fea-smart-light-surface.fea-page-services .fea-elite-services-intro {
  margin-bottom: clamp(0.65rem, 2vw, 1rem);
}
body.fea-smart-light-surface.fea-page-services .fea-elite-services-intro.fea-elite-card--pad-lg,
body.fea-smart-light-surface.fea-page-services .fea-elite-services-meta.fea-elite-card--pad-lg {
  padding: clamp(0.8rem, 2.4vw, 1.15rem) clamp(0.8rem, 2.4vw, 1.2rem);
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}
body.fea-smart-light-surface.fea-page-services .fea-elite-services-intro p {
  margin: 0 0 0.45rem;
  font-size: 0.8125rem;
  line-height: 1.55;
}
body.fea-smart-light-surface.fea-page-services .fea-elite-services-intro h2 {
  margin: 0.55rem 0 0.35rem;
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  font-weight: 700;
  color: #0f172a;
}
body.fea-smart-light-surface.fea-page-services .fea-elite-service-grid--compact {
  gap: 0.5rem;
  margin-top: 0.45rem;
}
@media (min-width: 640px) {
  body.fea-smart-light-surface.fea-page-services .fea-elite-service-grid--compact {
    gap: 0.55rem;
  }
}
@media (min-width: 992px) {
  body.fea-smart-light-surface.fea-page-services .fea-elite-service-grid--compact {
    gap: 0.6rem;
  }
}
body.fea-smart-light-surface.fea-page-services.fea-elite-sync article.fea-service-card,
body.fea-smart-light-surface.fea-page-services article.fea-service-card {
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-left: 3px solid #b8860b;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
body.fea-smart-light-surface.fea-page-services article.fea-service-card:hover {
  border-color: rgba(79, 70, 229, 0.2);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}
body.fea-smart-light-surface.fea-page-services .fea-service-card-icon {
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: 0.3rem;
  color: #4f46e5;
}
body.fea-smart-light-surface.fea-page-services .fea-service-card-title {
  margin: 0 0 0.18rem;
  font-size: 0.8125rem;
  line-height: 1.3;
  color: #1e293b;
}
body.fea-smart-light-surface.fea-page-services .fea-service-card-desc {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #64748b;
}
body.fea-smart-light-surface.fea-page-services .fea-elite-services-meta {
  margin-top: clamp(0.55rem, 2vw, 1rem);
}
body.fea-smart-light-surface.fea-page-services .fea-elite-services-meta h2 {
  font-size: clamp(0.98rem, 2.2vw, 1.12rem);
  margin: 0 0 0.4rem;
}
body.fea-smart-light-surface.fea-page-services .fea-elite-services-meta h2:not(:first-child) {
  margin-top: 0.75rem;
}
body.fea-smart-light-surface.fea-page-services .fea-elite-services-meta .fea-elite-legal-list {
  font-size: 0.8125rem;
  line-height: 1.5;
  padding-left: 1.1rem;
  margin: 0 0 0.35rem;
}
body.fea-smart-light-surface.fea-page-services .fea-elite-disclaimer {
  margin-top: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(234, 88, 12, 0.2);
  border-left: 3px solid #ea580c;
  background: rgba(234, 88, 12, 0.06);
}
body.fea-smart-light-surface.fea-page-services .fea-elite-disclaimer h2 {
  font-size: 0.875rem;
  margin: 0 0 0.3rem;
}
body.fea-smart-light-surface.fea-page-services .fea-elite-disclaimer p {
  font-size: 0.8125rem;
  line-height: 1.5;
  margin: 0;
}
body.fea-smart-light-surface.fea-page-services .fea-elite-services-meta > p {
  font-size: 0.8125rem;
  line-height: 1.5;
  margin: 0 0 0.35rem;
  color: #475569;
}
body.fea-smart-light-surface.fea-page-services .fea-elite-services-meta > p a {
  word-break: break-word;
}
body.fea-smart-light-surface.fea-page-services .fea-elite-services-cta {
  margin-top: 0.75rem;
  gap: 0.45rem;
  justify-content: flex-start;
}
@media (max-width: 479px) {
  body.fea-smart-light-surface.fea-page-services .fea-elite-services-cta {
    flex-direction: column;
    align-items: stretch;
  }
  body.fea-smart-light-surface.fea-page-services .fea-elite-services-cta .fea-btn {
    justify-content: center;
  }
}
body.fea-smart-light-surface.fea-page-services .fea-elite-services-cta .fea-btn {
  padding: 0.5rem 1.1rem;
  font-size: clamp(0.75rem, 1.8vw, 0.875rem);
  border-radius: 9999px;
  font-weight: 700;
}

/* Landing (smart hero, compact stats, handbook pathway) */
.fea-landing-smart .fea-hero {
  padding: clamp(1.15rem, 3.8vw, 2.5rem) var(--fea-wrap-pad) clamp(1.35rem, 3.5vw, 2.25rem);
}
@media (min-width: 900px) {
  .fea-landing-smart .fea-hero {
    padding-top: clamp(1.5rem, 4vw, 3rem);
    padding-bottom: clamp(1.5rem, 3.5vw, 2.5rem);
  }
}
.fea-landing-smart .fea-hero-badge {
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.75rem;
  font-size: 0.65rem;
}
.fea-landing-smart .fea-hero .fea-hero-logo {
  width: 56px;
  height: 56px;
  margin-bottom: 0.65rem;
}
.fea-landing-smart .fea-hero h1 {
  font-size: clamp(1.15rem, 4.2vw, 2.1rem);
  margin-bottom: 0.5rem;
  line-height: 1.16;
}
.fea-landing-smart .fea-hero .fea-hero-sub {
  font-size: clamp(0.78rem, 2.1vw, 1rem);
  margin-bottom: 0.85rem;
  line-height: 1.52;
}
.fea-landing-smart .fea-hero .fea-cta-row--hero-inline {
  flex-wrap: nowrap;
  gap: 0.4rem 0.55rem;
  width: 100%;
  max-width: min(520px, 100%);
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.85rem;
}
.fea-landing-smart .fea-hero .fea-cta-row--hero-inline .fea-btn {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  max-width: none;
  padding-left: 0.55rem;
  padding-right: 0.55rem;
  font-size: clamp(0.68rem, 2.6vw, 0.875rem);
  min-height: 40px;
}
@media (max-width: 480px) {
  .fea-landing-smart .fea-hero .fea-cta-row--hero-inline .fea-btn {
    width: auto;
    max-width: none;
    min-height: 38px;
  }
}
.fea-landing-smart .fea-hero-trust {
  margin-top: 0.85rem;
  font-size: 0.72rem;
  gap: 0.3rem 0.55rem;
}
.fea-landing-smart .fea-count--hero {
  font-weight: 700;
  color: var(--fea-text-strong);
  font-variant-numeric: tabular-nums;
}
.fea-landing-smart .fea-stats {
  gap: 0.45rem;
  margin: 0.65rem 0;
}
.fea-landing-smart .fea-stat {
  padding: 0.45rem 0.3rem;
  border-radius: var(--fea-radius-sm);
}
.fea-landing-smart .fea-stat-icon {
  width: 20px;
  height: 20px;
  margin-bottom: 0.15rem;
}
.fea-landing-smart .fea-stat-num {
  font-size: 0.95rem;
}
.fea-landing-smart .fea-stat-label {
  font-size: 0.6rem;
  margin-top: 0.08rem;
  line-height: 1.2;
}

/* Handbook pathway (aligned with Courses catalog) */
.fea-curriculum-path .fea-pathway-lead {
  max-width: none;
  margin-bottom: 0.65rem;
}
.fea-curriculum-path .fea-pathway-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: center;
  margin: 0 0 0.75rem;
  padding: 0;
  list-style: none;
}
.fea-curriculum-path .fea-pathway-metrics li {
  font-size: 0.72rem;
  color: var(--fea-muted);
  padding: 0.22rem 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--fea-border);
  border-radius: 999px;
}
.fea-curriculum-path .fea-pathway-metrics strong {
  color: var(--fea-accent);
  font-weight: 700;
}
.fea-curriculum-path .fea-pathway-sync {
  font-size: 0.8125rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
  max-width: none;
  color: var(--fea-muted);
}
.fea-curriculum-path .fea-pathway-sync-link {
  font-weight: 600;
  color: var(--fea-accent);
  text-decoration: none;
}
.fea-curriculum-path .fea-pathway-sync-link:hover {
  text-decoration: underline;
}
.fea-pathway-grid {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .fea-pathway-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.fea-pathway-phase {
  background: var(--fea-surface);
  border: 1px solid var(--fea-border);
  border-radius: var(--fea-radius-sm);
  padding: 0.65rem 0.75rem;
  border-left: 3px solid var(--fea-accent);
}
.fea-pathway-phase__step {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fea-accent);
  margin: 0 0 0.2rem;
}
.fea-pathway-phase__title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fea-text-strong);
  margin: 0 0 0.3rem;
  line-height: 1.25;
  padding-bottom: 0;
}
.fea-pathway-phase__title::after {
  display: none;
}
.fea-pathway-phase__body {
  font-size: 0.78rem;
  color: var(--fea-muted);
  line-height: 1.5;
  margin: 0;
  max-width: none;
}
.fea-pathway-phase__body strong {
  color: var(--fea-text);
}
.fea-pathway-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  margin-top: 1rem;
  justify-content: flex-start;
}
.fea-pathway-actions .fea-btn {
  flex: 1 1 0;
  min-width: 0;
  font-size: 0.78rem;
  padding: 0 0.55rem;
  min-height: 40px;
}
@media (max-width: 480px) {
  .fea-pathway-actions .fea-btn {
    font-size: 0.68rem;
    padding: 0 0.4rem;
    min-height: 38px;
  }
}
