/**
 * Astra-style landing skin — restyles existing index.php content only.
 * Typography matched to https://agenticlab.uplearn.ai/ (Figtree, Astra nav + CTA).
 * Preview: default on index.php (opt out: ?landing=classic)
 */

.upl-landing-astra {
  /* agenticlab.uplearn.ai tokens — https://agenticlab.uplearn.ai/ */
  --astra-header-x: 16px;
  --astra-header-x-wide: 20px;
  --astra-header-y: 10px;
  --astra-brand-dark: #1f1f1f;
  --astra-brand-green: #d8f382;
  --astra-brand-green-hover: #b8d690;
  --astra-forest: #122b23;
  --astra-forest-mid: #17352b;
  --astra-forest-light: #5b8c5d;
  --astra-lime: #d8f382;
  --astra-lime-hover: #b8d690;
  --astra-hero-sky-top: #b1d0de;
  --astra-hero-sky-mid: #d6effb;
  --astra-ink: #171717;
  --astra-muted: #626262;
  --astra-muted-light: #8a8a8a;
  --astra-border: #e5e7eb;
  --astra-mint: #eef6e8;
  --astra-surface: #f9fafb;
  --astra-white: #ffffff;
  --astra-max: 1120px;
  --astra-section-y: clamp(40px, 5vw, 64px);
  --astra-section-gap: clamp(18px, 2.5vw, 32px);
  --astra-band-gradient: linear-gradient(180deg, #5b8c5d 0%, #122b23 100%);

  /* Buttons — agenticlab pill system */
  --astra-btn-font: 'Figtree', system-ui, -apple-system, sans-serif;
  --astra-btn-radius: 9999px;
  --astra-btn-lg-x: 2.5rem;
  --astra-btn-lg-y: 1.125rem;
  --astra-btn-md-x: 1.75rem;
  --astra-btn-md-y: 1rem;
  --astra-btn-sm-x: 1.25rem;
  --astra-btn-sm-y: 0.75rem;

  --upl-cta-bg: var(--astra-brand-green);
  --upl-cta-bg-hover: var(--astra-brand-green-hover);
  --upl-cta-text: var(--astra-ink);

  font-family: var(--astra-btn-font) !important;
  font-size: 16px;
  line-height: 1.6;
  background: var(--astra-white);
  color: var(--astra-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.upl-landing-astra {
  margin: 0;
}

/* ═══ Agenticlab buttons + typography (page-wide) ═══ */
.upl-landing-astra :is(
  .upl-hero-astra__cta,
  .upl-hero-slide__cta,
  .upl-topbar__signup,
  .upl-techx__viewall,
  .upl-final-cta__btn,
  .upl-login-btn,
  .upl-fab
) {
  font-family: var(--astra-btn-font) !important;
  border-radius: var(--astra-btn-radius) !important;
  letter-spacing: normal !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: opacity 0.15s ease, background-color 0.15s ease, border-color 0.15s ease !important;
}

.upl-landing-astra :is(
  .upl-techx__title,
  .upl-techx__subtitle,
  .upl-techx__viewall,
  .upl-techx__card-name,
  .upl-promo__card-label,
  .upl-promo__card h3,
  .upl-promo__card-desc,
  .upl-catalog-hero__title,
  .upl-catalog-hero__sub,
  .upl-filter-panel,
  .upl-search-panel
) {
  font-family: var(--astra-btn-font) !important;
}

.upl-landing-astra .upl-hero-astra__cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
  min-height: 0 !important;
  padding: var(--astra-btn-lg-y) var(--astra-btn-lg-x) !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
  white-space: nowrap;
  border: none !important;
  cursor: pointer;
}

.upl-landing-astra .upl-hero-astra__cta--primary {
  background: var(--astra-brand-dark) !important;
  color: var(--astra-white) !important;
  font-weight: 500 !important;
}

.upl-landing-astra .upl-hero-astra__cta--primary:hover {
  opacity: 0.9;
  transform: none !important;
  background: var(--astra-brand-dark) !important;
  color: var(--astra-white) !important;
}

.upl-landing-astra .upl-hero-astra__cta--secondary {
  background: var(--astra-brand-green) !important;
  color: var(--astra-ink) !important;
  font-weight: 600 !important;
}

.upl-landing-astra .upl-hero-astra__cta--secondary:hover {
  opacity: 0.9;
  transform: none !important;
  background: var(--astra-brand-green-hover) !important;
  color: var(--astra-ink) !important;
}

.upl-landing-astra .upl-topbar__signup {
  padding: var(--astra-btn-sm-y) var(--astra-btn-sm-x) !important;
  background: var(--astra-brand-green) !important;
  border: none !important;
  color: var(--astra-ink) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

.upl-landing-astra .upl-topbar__signup:hover {
  background: var(--astra-brand-green-hover) !important;
  color: var(--astra-ink) !important;
  transform: none !important;
}

.upl-landing-astra .upl-techx__viewall {
  background: var(--astra-brand-green) !important;
  color: var(--astra-ink) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  padding: var(--astra-btn-sm-y) 1rem !important;
  border: none !important;
}

.upl-landing-astra .upl-techx__viewall:hover {
  background: var(--astra-brand-green-hover) !important;
  color: var(--astra-ink) !important;
  opacity: 1;
  box-shadow: none !important;
}

.upl-landing-astra .upl-final-cta__btn {
  background: var(--astra-brand-green) !important;
  border: none !important;
  color: var(--astra-ink) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  padding: 0.75rem 1.5rem !important;
}

.upl-landing-astra .upl-final-cta__btn:hover {
  background: var(--astra-brand-green-hover) !important;
  color: var(--astra-ink) !important;
  opacity: 1;
  box-shadow: none !important;
}

.upl-landing-astra .upl-final-cta__btn svg {
  stroke: var(--astra-ink) !important;
}

.upl-landing-astra .upl-login-btn:not(:disabled) {
  background: var(--astra-brand-green) !important;
  color: var(--astra-ink) !important;
  border: none !important;
  font-family: var(--astra-btn-font) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border-radius: var(--astra-btn-radius) !important;
  padding: var(--astra-btn-sm-y) 1rem !important;
}

.upl-landing-astra .upl-login-btn:not(:disabled):hover {
  background: var(--astra-brand-green-hover) !important;
  color: var(--astra-ink) !important;
}

.upl-landing-astra .upl-fab {
  background: var(--astra-brand-green) !important;
  color: var(--astra-ink) !important;
  border-color: transparent !important;
}

.upl-landing-astra .upl-fab:hover {
  background: var(--astra-brand-green-hover) !important;
  transform: scale(1.06);
}

.upl-landing-astra .upl-hero-astra__title {
  font-weight: 700 !important;
  color: var(--astra-ink) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
}

.upl-landing-astra .upl-hero-astra__desc {
  font-weight: 500 !important;
  color: var(--astra-ink) !important;
  font-size: clamp(16px, 1.7vw, 18px) !important;
  line-height: 1.5 !important;
}

.upl-landing-astra .upl-hero-astra__tagline {
  color: var(--astra-muted) !important;
}

.upl-landing-astra .upl-techx__title {
  font-weight: 600 !important;
  color: var(--astra-ink) !important;
}

.upl-landing-astra .upl-techx__subtitle {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: var(--astra-muted) !important;
  line-height: 1.55 !important;
}

.upl-landing-astra .upl-catalog-hero__title {
  font-weight: 600 !important;
  color: var(--astra-ink) !important;
}

.upl-landing-astra .upl-catalog-hero__sub {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: var(--astra-muted) !important;
}

.upl-landing-astra #search_btn,
.upl-landing-astra #view-courses.upl-catalog .btn#search_btn {
  font-family: var(--astra-btn-font) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  padding: var(--astra-btn-sm-y) 1rem !important;
  border-radius: var(--astra-btn-radius) !important;
  border: none !important;
  background: var(--astra-brand-green) !important;
  color: var(--astra-ink) !important;
  box-shadow: none !important;
}

.upl-landing-astra #search_btn:hover,
.upl-landing-astra #view-courses.upl-catalog .btn#search_btn:hover {
  background: var(--astra-brand-green-hover) !important;
  color: var(--astra-ink) !important;
  opacity: 1;
}

.upl-landing-astra header.upl-topbar.upl-topbar--astra,
.upl-landing-astra header.upl-topbar.upl-topbar--astra.upl-topbar--detached {
  width: 100%;
}

.upl-landing-astra :where(
  .upl-topbar,
  .upl-topbar__link,
  .upl-hero-slide__title,
  .upl-hero-slide__desc,
  .upl-hero-slide__badge,
  .upl-hero-slide__tagline,
  .upl-hero-slide__pill,
  .upl-hero-slide__cta,
  .upl-hero-slide__highlight-num,
  .upl-hero-slide__highlight-label,
  .upl-hero-astra__title,
  .upl-hero-astra__tagline,
  .upl-hero-astra__desc,
  .upl-hero-astra__cta,
  .upl-hero-feature__text strong,
  .upl-hero-feature__text span,
  .upl-techx__title,
  .upl-techx__subtitle,
  .upl-techx__card-name,
  .upl-techx__card-code,
  .upl-techx__card-type,
  .upl-techx__viewall,
  .upl-promo__card-label,
  .upl-promo__card h3,
  .upl-promo__card-desc,
  .upl-catalog-hero__title,
  .upl-catalog-hero__sub,
  .upl-final-cta__quote,
  .upl-final-cta__body,
  .upl-final-cta__btn,
  .upl-final-footer,
  .form-control,
  input,
  button
) {
  font-family: 'Figtree', system-ui, sans-serif !important;
}

/* ─── Hero: sky gradient (agenticlab) — not dark green ─── */
.upl-landing-astra .upl-hero-shell--v2 {
  --upl-brand: var(--astra-forest-light);
  --upl-brand-rgb: 91, 140, 93;
  --upl-brand-light: #7aad7c;
  --upl-brand-deep: var(--astra-forest);
  --upl-brand-glow-rgb: 214, 239, 251;
  --upl-surface-a: var(--astra-hero-sky-mid);
  --upl-surface-b: #e8f6fc;
  --upl-surface-c: var(--astra-white);
  --upl-surface-overlay-1: 214, 239, 251;
  --upl-surface-overlay-2: 232, 246, 252;
  --upl-surface-overlay-3: 255, 255, 255;
  min-height: 0;
  height: auto;
  background: linear-gradient(
    180deg,
    var(--astra-hero-sky-top) 0%,
    var(--astra-hero-sky-mid) 22%,
    var(--astra-white) 72%
  ) !important;
}

.upl-landing-astra .upl-hero-shell--astra {
  overflow: visible;
  position: relative;
  z-index: 1;
  isolation: isolate;
}

/* Soft sky glow on hero shell */
.upl-landing-astra .upl-hero-shell--astra::before {
  display: none;
}

.upl-landing-astra .upl-hero-shell--astra::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.5) 0%, transparent 48%),
    radial-gradient(circle at 18% 82%, rgba(214, 239, 251, 0.35) 0%, transparent 42%);
}

/* ═══ Header — match agenticlab.uplearn.ai ═══ */
.upl-landing-astra header.upl-topbar.upl-topbar--astra {
  display: block !important;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 !important;
  min-height: 0;
  height: auto !important;
  box-sizing: border-box;
  background: transparent !important;
  border-bottom: none !important;
  position: relative;
  z-index: 3;
  font-family: 'Figtree', system-ui, -apple-system, sans-serif !important;
}

.upl-landing-astra header.upl-topbar.upl-topbar--astra.upl-topbar--detached {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #ffffff !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-bottom: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.upl-landing-astra .upl-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: var(--astra-header-y) var(--astra-header-x);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .upl-landing-astra .upl-topbar__inner {
    padding-left: var(--astra-header-x-wide);
    padding-right: var(--astra-header-x-wide);
  }
}

.upl-landing-astra .upl-topbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.upl-landing-astra .upl-topbar__logo img {
  display: block;
  width: 130px !important;
  height: 41px !important;
  max-width: 130px !important;
  max-height: 41px !important;
  object-fit: contain;
  object-position: left center;
}

.upl-landing-astra .upl-topbar__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 20px;
  flex-wrap: nowrap;
  min-width: 0;
  padding: 0 8px;
}

.upl-landing-astra .upl-topbar__link {
  font-family: 'Figtree', system-ui, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  letter-spacing: normal !important;
  color: #171717 !important;
  text-shadow: none !important;
  text-decoration: none !important;
  padding: 8px !important;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}

.upl-landing-astra .upl-topbar__link:hover {
  color: #171717 !important;
  background: rgba(0, 0, 0, 0.04);
  text-decoration: none !important;
}

.upl-landing-astra .upl-topbar__link--muted {
  color: #171717 !important;
}

.upl-landing-astra .upl-topbar__right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 12px !important;
  flex-shrink: 0;
}

.upl-landing-astra .upl-topbar__auth {
  display: flex;
  align-items: center;
  gap: 12px !important;
  flex-shrink: 0;
}

.upl-landing-astra .upl-topbar__divider {
  display: none !important;
}

.upl-landing-astra .upl-topbar__login,
.upl-landing-astra a.upl-topbar__user-login.upl-topbar__login {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 8px !important;
  font-family: 'Figtree', system-ui, sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  letter-spacing: normal !important;
  color: #737373 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  text-decoration: none !important;
  text-shadow: none !important;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}

.upl-landing-astra .upl-topbar__login:hover,
.upl-landing-astra a.upl-topbar__user-login.upl-topbar__login:hover {
  color: #171717 !important;
  background: rgba(0, 0, 0, 0.04) !important;
  border: none !important;
}

.upl-landing-astra .upl-topbar__signup {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 0;
  white-space: nowrap;
}

.upl-landing-astra .upl-topbar__dashboard,
.upl-landing-astra .upl-topbar__logout {
  font-family: 'Figtree', system-ui, sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #171717 !important;
  text-shadow: none !important;
  border: 1px solid var(--astra-border) !important;
  border-radius: 999px !important;
  background: #fff !important;
  padding: 8px 14px !important;
}

.upl-landing-astra .upl-topbar__dashboard:hover,
.upl-landing-astra .upl-topbar__logout:hover {
  color: var(--astra-forest) !important;
  border-color: rgba(18, 43, 35, 0.2) !important;
  background: rgba(18, 43, 35, 0.04) !important;
  text-decoration: none !important;
}

@media (max-width: 1024px) {
  .upl-landing-astra .upl-topbar__nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .upl-landing-astra header.upl-topbar.upl-topbar--astra,
  .upl-landing-astra header.upl-topbar.upl-topbar--astra.upl-topbar--detached {
    height: auto !important;
    padding: 0 !important;
  }

  .upl-landing-astra .upl-topbar__inner {
    padding: var(--astra-header-y) var(--astra-header-x) !important;
  }

  .upl-landing-astra .upl-topbar__logo img {
    width: 112px !important;
    height: 35px !important;
    max-width: 112px !important;
    max-height: 35px !important;
  }

  .upl-landing-astra .upl-topbar__right {
    gap: 8px !important;
  }

  .upl-landing-astra .upl-topbar__auth {
    gap: 8px !important;
  }

  .upl-landing-astra .upl-topbar__signup {
    padding: 10px 14px !important;
    font-size: 13px !important;
  }

  .upl-landing-astra .upl-topbar__login,
  .upl-landing-astra a.upl-topbar__user-login.upl-topbar__login {
    padding: 6px 8px !important;
    font-size: 13px !important;
  }
}

/* Beat legacy inline topbar rules from index.php */
@media (max-width: 768px) {
  body.upl-landing-astra .upl-topbar,
  body.upl-landing-astra header.upl-topbar.upl-topbar--astra {
    padding: 0 !important;
    height: auto !important;
  }

  body.upl-landing-astra .upl-topbar__link,
  body.upl-landing-astra .upl-topbar__login,
  body.upl-landing-astra .upl-topbar__user-login {
    font-size: 13px !important;
    text-shadow: none !important;
  }
}

.upl-landing-astra .upl-hero-shell--v2 .upl-topbar:not(.upl-topbar--detached) {
  position: relative;
  top: auto;
}

.upl-landing-astra .upl-hero-shell--v2:not(.upl-hero-shell--astra)::before {
  content: '';
  position: absolute;
  top: -12%;
  right: -6%;
  width: min(480px, 50vw);
  height: min(480px, 50vw);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.55) 0%, transparent 55%);
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-shell__bg {
  opacity: 0 !important;
  display: none !important;
}

.upl-landing-astra .upl-topbar__link[href="index_v1.php"] {
  display: none !important;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide {
  min-height: 0;
  padding-top: clamp(24px, 3.5vw, 40px);
  padding-bottom: clamp(24px, 3.5vw, 40px);
}

.upl-landing-astra .upl-hero-shell--astra .upl-hero-slider {
  overflow: visible;
  position: relative;
  z-index: 1;
}

.upl-landing-astra .upl-hero-shell--astra .upl-hero-slide {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  align-items: stretch;
}

.upl-landing-astra .upl-hero-shell--astra .upl-hero-slide__highlight {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.upl-landing-astra .upl-hero-shell--astra .upl-hero-slide__highlights {
  animation: none !important;
  transform: none !important;
  opacity: 1 !important;
}

.upl-landing-astra .upl-fab {
  position: fixed;
  top: auto;
  bottom: 20px;
  right: 20px;
  transform: none;
  z-index: 210;
}

.upl-landing-astra .upl-fab:hover {
  transform: scale(1.06);
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__badge {
  background: rgba(255, 255, 255, 0.72);
  color: var(--astra-forest-light);
  border: 1px solid rgba(91, 140, 93, 0.2);
  border-radius: 999px;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 16px;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__title {
  font-weight: 600 !important;
  font-size: clamp(2rem, 4.8vw, 3.25rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.035em !important;
  color: var(--astra-ink) !important;
  max-width: min(680px, 100%);
  margin-left: 0;
  margin-right: 0;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__title .upl-accent {
  color: var(--astra-forest-light);
  font-weight: 700 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__tagline {
  color: var(--astra-muted);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 20px;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__panel {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
  max-width: 540px;
  margin: 0 0 24px;
  text-align: left;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__panel::before {
  display: none;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__desc {
  color: var(--astra-muted);
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  margin-bottom: 20px;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__desc .upl-hero-slide__em {
  color: var(--astra-forest-light);
  font-weight: 600;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__pills {
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 28px;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__pill {
  background: var(--astra-white);
  color: var(--astra-muted);
  border: 1px solid var(--astra-border);
  border-radius: 999px;
  font-weight: 500;
  font-size: 12px;
  padding: 7px 14px;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__actions {
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__cta {
  border-radius: var(--astra-btn-radius);
  font-size: 14px !important;
  line-height: 1.25 !important;
  padding: var(--astra-btn-lg-y) var(--astra-btn-lg-x) !important;
  min-height: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__cta:not(.upl-hero-slide__cta--ghost) {
  background: var(--astra-brand-dark) !important;
  color: var(--astra-white) !important;
  font-weight: 500 !important;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__cta:not(.upl-hero-slide__cta--ghost):hover {
  opacity: 0.9;
  background: var(--astra-brand-dark) !important;
  color: var(--astra-white) !important;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__cta--ghost {
  background: var(--astra-brand-green) !important;
  color: var(--astra-ink) !important;
  font-weight: 600 !important;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide--light .upl-hero-slide__cta--ghost:hover {
  opacity: 0.9;
  background: var(--astra-brand-green-hover) !important;
  color: var(--astra-ink) !important;
  border: none !important;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__highlights {
  gap: 12px;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__highlight {
  background: var(--astra-white);
  border: 1px solid var(--astra-border);
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: 0 2px 8px rgba(15, 41, 34, 0.05);
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__highlight-num {
  color: var(--astra-forest);
  font-weight: 700;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__highlight-label {
  color: var(--astra-muted);
  font-weight: 500;
}

/* Classic hero fallback (hero_classic=1) */
.upl-landing-astra .upl-hero-shell:not(.upl-hero-shell--v2),
.upl-landing-astra .upl-hero-shell:not(.upl-hero-shell--v2) .upl-hero-shell__bg {
  background-color: var(--astra-forest-mid);
}

/* ─── Exam catalog rows (upl-techx) ─── */
.upl-landing-astra .upl-techx {
  padding: var(--astra-section-y) clamp(20px, 4vw, 48px) var(--astra-section-gap);
  max-width: calc(var(--astra-max) + 96px);
  margin-left: auto;
  margin-right: auto;
  background: var(--astra-white) !important;
}

.upl-landing-astra .upl-techx + .upl-techx {
  padding-top: var(--astra-section-gap);
}

.upl-landing-astra .upl-techx__header {
  margin-bottom: 20px;
  max-width: var(--astra-max);
  margin-left: auto;
  margin-right: auto;
}

.upl-landing-astra .upl-techx__title {
  font-weight: 600 !important;
  font-size: clamp(1.5rem, 2.4vw, 2rem) !important;
  letter-spacing: -0.03em !important;
  line-height: 1.2 !important;
  color: var(--astra-ink) !important;
  margin-bottom: 8px;
}

.upl-landing-astra .upl-techx__subtitle {
  color: var(--astra-muted) !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
  max-width: 52ch;
}

.upl-landing-astra .upl-techx__tags {
  max-width: var(--astra-max);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.upl-landing-astra .upl-techx__cards-wrap {
  max-width: calc(var(--astra-max) + 96px);
  margin-left: auto;
  margin-right: auto;
}

.upl-landing-astra .upl-techx__cards {
  max-width: var(--astra-max);
}

.upl-landing-astra .upl-techx__tag {
  border-radius: 999px;
  font-weight: 500;
  font-size: 13px;
  padding: 8px 16px;
  border-color: var(--astra-border);
  color: var(--astra-ink);
}

.upl-landing-astra .upl-techx__tag:hover {
  border-color: var(--astra-forest-light);
  color: var(--astra-forest-light);
  background: rgba(214, 239, 251, 0.5);
}

.upl-landing-astra .upl-techx__tag.active {
  background: var(--astra-forest);
  border-color: var(--astra-forest);
  color: var(--astra-white);
}

.upl-landing-astra .upl-techx__card {
  border-radius: 16px;
  border-color: var(--astra-border);
  box-shadow: 0 1px 2px rgba(14, 5, 27, 0.04);
}

.upl-landing-astra .upl-techx__card:hover {
  border-color: rgba(27, 67, 50, 0.2);
  box-shadow: 0 12px 32px rgba(15, 41, 34, 0.08);
  transform: translateY(-3px);
}

.upl-landing-astra .upl-techx__card-body {
  padding: 16px 18px 20px;
}

.upl-landing-astra .upl-techx__card-name {
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  color: var(--astra-ink) !important;
}

.upl-landing-astra .upl-techx__card-code {
  font-size: 12px !important;
  font-weight: 600 !important;
}

.upl-landing-astra .upl-techx__card-type {
  font-size: 12px !important;
  color: var(--astra-muted-light) !important;
}

.upl-landing-astra .upl-techx__viewall:hover {
  background: var(--astra-brand-green-hover) !important;
  color: var(--astra-ink) !important;
}

.upl-landing-astra .upl-techx--alt {
  background: var(--astra-surface) !important;
}

.upl-landing-astra .upl-techx__card-badge,
.upl-landing-astra .upl-techx__card-code {
  color: var(--astra-forest-light) !important;
}

.upl-landing-astra .upl-techx__card-badge {
  background: rgba(214, 239, 251, 0.65) !important;
}

/* ─── Promo carousel ─── */
.upl-landing-astra .upl-promo {
  background: var(--astra-white) !important;
  padding: var(--astra-section-y) 0 var(--astra-section-gap);
}

.upl-landing-astra .upl-techx + .upl-promo {
  padding-top: var(--astra-section-gap);
}

.upl-landing-astra .upl-promo__track-wrap {
  padding-left: clamp(20px, 4vw, 56px);
  padding-right: clamp(20px, 4vw, 56px);
}

.upl-landing-astra .upl-promo__card {
  border-radius: 20px;
  min-height: 260px;
  padding: 32px 28px;
  box-shadow: 0 1px 3px rgba(14, 5, 27, 0.06);
}

.upl-landing-astra .upl-promo__card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.upl-landing-astra .upl-promo__card h3 {
  font-size: clamp(1.15rem, 2vw, 1.375rem) !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.02em !important;
  max-width: 280px;
}

.upl-landing-astra .upl-promo__card-desc {
  font-size: 14px !important;
  line-height: 1.55 !important;
  font-weight: 400 !important;
  opacity: 0.88;
  max-width: 300px;
}

/* Promo cards — all light (like agenticlab "learning needs" section) */
.upl-landing-astra .upl-promo__card--light,
.upl-landing-astra .upl-promo__card--dark,
.upl-landing-astra .upl-promo__card--blue,
.upl-landing-astra .upl-promo__card--teal {
  background: var(--astra-white) !important;
  border: 1px solid var(--astra-border) !important;
  box-shadow: 0 4px 24px rgba(18, 43, 35, 0.06) !important;
}

.upl-landing-astra .upl-promo__card--dark h3,
.upl-landing-astra .upl-promo__card--blue h3,
.upl-landing-astra .upl-promo__card--teal h3,
.upl-landing-astra .upl-promo__card--light h3 {
  color: var(--astra-ink) !important;
}

.upl-landing-astra .upl-promo__card--dark .upl-promo__card-desc,
.upl-landing-astra .upl-promo__card--blue .upl-promo__card-desc,
.upl-landing-astra .upl-promo__card--teal .upl-promo__card-desc,
.upl-landing-astra .upl-promo__card--light .upl-promo__card-desc {
  color: var(--astra-muted) !important;
  opacity: 1 !important;
}

.upl-landing-astra .upl-promo__card--dark .upl-promo__card-label,
.upl-landing-astra .upl-promo__card--blue .upl-promo__card-label,
.upl-landing-astra .upl-promo__card--teal .upl-promo__card-label,
.upl-landing-astra .upl-promo__card--light .upl-promo__card-label {
  color: var(--astra-forest-light) !important;
}

.upl-landing-astra .upl-promo__card--dark .upl-promo__card-img-wrap::before,
.upl-landing-astra .upl-promo__card--blue .upl-promo__card-img-wrap::before,
.upl-landing-astra .upl-promo__card--teal .upl-promo__card-img-wrap::before,
.upl-landing-astra .upl-promo__card--light .upl-promo__card-img-wrap::before {
  background: linear-gradient(to right, var(--astra-white), transparent) !important;
}

.upl-landing-astra .upl-promo__dot.active {
  background: var(--astra-forest-light);
}

.upl-landing-astra .upl-promo__arrow {
  border-color: var(--astra-border);
  background: var(--astra-white);
}

/* ─── Full catalog (#viewcourses) ─── */
.upl-landing-astra .upl-catalog-wrap {
  background: var(--astra-white);
}

.upl-landing-astra .upl-catalog-hero {
  background: linear-gradient(180deg, var(--astra-white) 0%, var(--astra-surface) 100%);
  padding: var(--astra-section-gap) clamp(20px, 4vw, 48px) clamp(24px, 3.5vw, 40px);
}

.upl-landing-astra .upl-promo + .upl-catalog-wrap .upl-catalog-hero {
  padding-top: var(--astra-section-gap);
}

.upl-landing-astra .upl-catalog-hero__badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 14px;
  color: var(--astra-forest-light) !important;
  background: var(--astra-white);
  border: 1px solid var(--astra-border);
}

.upl-landing-astra .upl-catalog-hero__badge svg {
  fill: var(--astra-forest-light);
}

.upl-landing-astra .upl-catalog-hero__title span {
  color: var(--astra-forest-light);
}

.upl-landing-astra .upl-catalog-hero__title {
  color: var(--astra-ink);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.upl-landing-astra .upl-filter-panel .upl-filter-option input[type="checkbox"]:checked {
  background-color: var(--astra-forest-mid) !important;
  border-color: var(--astra-forest-mid) !important;
}

.upl-landing-astra #view-courses.upl-catalog {
  background: var(--astra-white) !important;
}

/* ─── Tenant CTA — dark band only here (agenticlab pattern) ─── */
.upl-landing-astra .upl-final-cta {
  background: var(--astra-white) !important;
}

.upl-landing-astra .upl-final-cta__shell {
  background: var(--astra-band-gradient) !important;
  box-shadow: 0 20px 50px rgba(18, 43, 35, 0.18) !important;
}

.upl-landing-astra .upl-final-cta__panel {
  background: transparent !important;
  border-left: none !important;
  color: #fff !important;
}

.upl-landing-astra .upl-final-cta__foot-meta {
  background: transparent !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.upl-landing-astra .upl-final-cta__foot-logo {
  background: transparent !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.upl-landing-astra .upl-final-cta__meta-name {
  color: #fff !important;
}

.upl-landing-astra .upl-final-cta__meta-role {
  color: rgba(255, 255, 255, 0.72) !important;
}

.upl-landing-astra .upl-final-cta__quote {
  color: #fff !important;
}

.upl-landing-astra .upl-final-cta__quote em {
  color: #fff !important;
}

.upl-landing-astra .upl-final-cta__dot {
  background: rgba(255, 255, 255, 0.35) !important;
}

.upl-landing-astra .upl-final-cta__visual {
  background: var(--astra-band-gradient);
}

.upl-landing-astra .upl-final-cta__quote {
  font-size: clamp(1.5rem, 2.8vw, 2.125rem) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.03em !important;
}

.upl-landing-astra .upl-final-cta__body {
  font-size: 16px !important;
  line-height: 1.65 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  max-width: 480px;
}

.upl-landing-astra .upl-final-cta__dot.is-active {
  background: var(--astra-brand-green);
}

.upl-landing-astra .upl-final-footer {
  background: var(--astra-forest);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.upl-landing-astra .upl-final-footer__tag {
  color: rgba(255, 255, 255, 0.45);
}

/* ─── Site footer (agenticlab-style) ─── */
.upl-landing-astra .upl-final-footer {
  display: none !important;
}

.upl-astra-footer {
  --astra-footer-bg: #171717;
  --astra-footer-border: #262626;
  --astra-footer-muted: #a3a3a3;
  background: var(--astra-footer-bg);
  color: #fff;
  font-family: var(--astra-btn-font);
  padding: 48px 16px 40px;
}

@media (min-width: 768px) {
  .upl-astra-footer {
    padding: 48px 40px 40px;
  }
}

@media (min-width: 1024px) {
  .upl-astra-footer {
    padding: 48px clamp(40px, 8vw, 160px) 40px;
  }
}

.upl-astra-footer__inner {
  max-width: 120rem;
  margin: 0 auto;
}

.upl-astra-footer__top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .upl-astra-footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 60px;
  }
}

.upl-astra-footer__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 32px;
  flex: 1 1 auto;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .upl-astra-footer__cols {
    flex-wrap: nowrap;
    gap: 48px;
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .upl-astra-footer__cols {
    gap: 7.5rem;
  }
}

.upl-astra-footer__col {
  min-width: 120px;
}

.upl-astra-footer__heading {
  margin: 0 0 28px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  letter-spacing: normal;
}

.upl-astra-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.upl-astra-footer__nav a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--astra-footer-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.upl-astra-footer__nav a:hover {
  color: #fff;
  text-decoration: none;
}

.upl-astra-footer__newsletter {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .upl-astra-footer__newsletter {
    flex: 0 0 21.875rem;
    max-width: 21.875rem;
  }
}

.upl-astra-footer__newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.upl-astra-footer__newsletter-input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 20px;
  border: none;
  border-radius: 9999px;
  background: var(--astra-footer-border);
  color: #fff;
  font-family: var(--astra-btn-font);
  font-size: 14px;
  line-height: 1.4;
  outline: none;
  transition: box-shadow 0.15s ease;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .upl-astra-footer__newsletter-input {
    max-width: 50%;
  }
}

.upl-astra-footer__newsletter-input::placeholder {
  color: var(--astra-footer-muted);
  opacity: 1;
}

.upl-astra-footer__newsletter-input:focus {
  box-shadow: 0 0 0 2px var(--astra-brand-green);
}

.upl-astra-footer__newsletter-btn {
  align-self: flex-start;
  min-width: 8rem;
  padding: 12px 16px;
  border: none;
  border-radius: 9999px;
  background: var(--astra-brand-green);
  color: var(--astra-ink);
  font-family: var(--astra-btn-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.upl-astra-footer__newsletter-btn:hover {
  opacity: 0.9;
}

.upl-astra-footer__rule {
  height: 0;
  border: none;
  border-top: 2px solid var(--astra-footer-border);
  margin: 0 0 40px;
}

.upl-astra-footer__rule--thin {
  margin-bottom: 24px;
}

.upl-astra-footer__help {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .upl-astra-footer__help {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.upl-astra-footer__help-text {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
}

.upl-astra-footer__help-link {
  color: var(--astra-brand-green) !important;
  font-style: italic;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.upl-astra-footer__help-link:hover {
  opacity: 0.88;
  color: var(--astra-brand-green) !important;
}

.upl-astra-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.upl-astra-footer__social a {
  display: inline-flex;
  color: #fff;
  transition: color 0.15s ease;
}

.upl-astra-footer__social a:hover {
  color: var(--astra-brand-green);
}

.upl-astra-footer__social svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.upl-astra-footer__wordmark {
  margin: 40px 0 56px;
  font-size: clamp(4rem, 17vw, 17rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
  user-select: none;
  pointer-events: none;
}

.upl-astra-footer__bottom {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .upl-astra-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.upl-astra-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .upl-astra-footer__legal {
    justify-content: flex-start;
  }
}

.upl-astra-footer__legal a {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  transition: color 0.15s ease;
}

.upl-astra-footer__legal a:hover {
  color: #fff;
  opacity: 0.85;
}

.upl-astra-footer__legal-sep {
  font-size: 12px;
  color: var(--astra-footer-muted);
}

.upl-astra-footer__copy {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
}

/* Legacy footer fallback (non-Astra pages) */
.upl-landing-astra footer.footer-2 {
  background: #0a0a0a !important;
}

.upl-landing-astra footer.footer-2 .social-list a {
  border-color: rgba(255, 255, 255, 0.25) !important;
  color: rgba(255, 255, 255, 0.7);
}

/* ─── Login / lang / mobile menu ─── */
body.upl-landing-astra .upl-topbar .upl-lang,
body.upl-landing-astra header.upl-topbar .upl-lang {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
}

body.upl-landing-astra .upl-topbar .upl-lang.open,
body.upl-landing-astra header.upl-topbar .upl-lang.open {
  z-index: 10050;
}

body.upl-landing-astra .upl-topbar .upl-lang__btn,
body.upl-landing-astra header.upl-topbar .upl-lang__btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px !important;
  min-height: 36px;
  padding: 8px 12px !important;
  font-family: var(--astra-btn-font) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: normal !important;
  color: var(--astra-ink) !important;
  background: var(--astra-white) !important;
  border: 1px solid var(--astra-border) !important;
  border-radius: var(--astra-btn-radius) !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease !important;
}

body.upl-landing-astra .upl-topbar .upl-lang__btn:hover,
body.upl-landing-astra header.upl-topbar .upl-lang__btn:hover,
body.upl-landing-astra .upl-topbar .upl-lang.open .upl-lang__btn,
body.upl-landing-astra header.upl-topbar .upl-lang.open .upl-lang__btn {
  color: var(--astra-forest) !important;
  background: rgba(18, 43, 35, 0.04) !important;
  border-color: rgba(18, 43, 35, 0.18) !important;
}

body.upl-landing-astra .upl-topbar .upl-lang__flag-wrap,
body.upl-landing-astra header.upl-topbar .upl-lang__flag-wrap {
  width: 20px !important;
  height: 14px !important;
  border-radius: 3px !important;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  background: var(--astra-surface) !important;
  box-shadow: none !important;
}

body.upl-landing-astra .upl-topbar .upl-lang__flag-wrap img,
body.upl-landing-astra header.upl-topbar .upl-lang__flag-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

body.upl-landing-astra .upl-topbar .upl-lang__code,
body.upl-landing-astra header.upl-topbar .upl-lang__code {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  color: inherit !important;
}

body.upl-landing-astra .upl-topbar .upl-lang__arrow,
body.upl-landing-astra header.upl-topbar .upl-lang__arrow {
  width: 10px !important;
  height: 6px !important;
  opacity: 0.45 !important;
  flex-shrink: 0;
  color: var(--astra-muted-light) !important;
  fill: none !important;
  transition: transform 0.15s ease, opacity 0.15s ease !important;
}

body.upl-landing-astra .upl-topbar .upl-lang.open .upl-lang__arrow,
body.upl-landing-astra header.upl-topbar .upl-lang.open .upl-lang__arrow {
  transform: rotate(180deg);
  opacity: 0.75 !important;
  color: var(--astra-forest-light) !important;
}

body.upl-landing-astra .upl-topbar .upl-lang__menu,
body.upl-landing-astra header.upl-topbar .upl-lang__menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 196px;
  max-height: min(320px, calc(100vh - 88px));
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 6px !important;
  background: var(--astra-white) !important;
  border: 1px solid var(--astra-border) !important;
  border-radius: 14px !important;
  box-shadow:
    0 4px 6px -2px rgba(23, 23, 23, 0.04),
    0 16px 32px -12px rgba(18, 43, 35, 0.14) !important;
  z-index: 10051 !important;
  scrollbar-width: thin;
  scrollbar-color: rgba(98, 98, 98, 0.25) transparent;
}

body.upl-landing-astra .upl-topbar .upl-lang.open .upl-lang__menu,
body.upl-landing-astra header.upl-topbar .upl-lang.open .upl-lang__menu {
  display: block !important;
  animation: uplAstraLangMenuIn 0.18s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes uplAstraLangMenuIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.upl-landing-astra .upl-topbar .upl-lang__option,
body.upl-landing-astra header.upl-topbar .upl-lang__option {
  display: flex !important;
  align-items: center;
  gap: 10px !important;
  padding: 10px 12px !important;
  border-radius: 10px !important;
  font-family: var(--astra-btn-font) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  color: var(--astra-ink) !important;
  text-decoration: none !important;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.12s ease, color 0.12s ease !important;
}

body.upl-landing-astra .upl-topbar .upl-lang__option:hover,
body.upl-landing-astra header.upl-topbar .upl-lang__option:hover {
  background: var(--astra-mint) !important;
  color: var(--astra-forest) !important;
  text-decoration: none !important;
}

body.upl-landing-astra .upl-topbar .upl-lang__option.active,
body.upl-landing-astra header.upl-topbar .upl-lang__option.active {
  background: var(--astra-mint) !important;
  color: var(--astra-forest) !important;
  font-weight: 700 !important;
  box-shadow: inset 0 0 0 1px rgba(18, 43, 35, 0.08) !important;
}

body.upl-landing-astra .upl-topbar .upl-lang__option .upl-lang__flag-wrap,
body.upl-landing-astra header.upl-topbar .upl-lang__option .upl-lang__flag-wrap {
  width: 22px !important;
  height: 15px !important;
}

@media (max-width: 768px) {
  body.upl-landing-astra .upl-topbar .upl-lang__btn,
  body.upl-landing-astra header.upl-topbar .upl-lang__btn {
    min-height: 34px;
    padding: 6px 10px !important;
    font-size: 12px !important;
  }

  body.upl-landing-astra .upl-topbar .upl-lang__menu,
  body.upl-landing-astra header.upl-topbar .upl-lang__menu {
    right: 0;
    min-width: 180px;
  }
}

.upl-landing-astra .upl-login-panel__form input[type="text"]:focus,
.upl-landing-astra .upl-login-panel__form input[type="password"]:focus {
  border-color: var(--astra-forest-mid);
}

.upl-landing-astra .upl-forgot,
.upl-landing-astra .upl-forgot:hover,
.upl-landing-astra .upl-register-link a {
  color: var(--astra-forest-mid);
}

.upl-landing-astra .upl-slide-menu__link:hover {
  color: var(--astra-forest-mid);
}

/* ─── Astra image placeholders (missing / broken assets) ─── */
.upl-landing-astra .upl-img-ph {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(177, 208, 222, 0.55) 0%, transparent 42%),
    radial-gradient(circle at 18% 78%, rgba(214, 239, 251, 0.65) 0%, transparent 45%),
    linear-gradient(145deg, var(--astra-hero-sky-mid) 0%, var(--astra-white) 72%);
}

.upl-landing-astra .upl-img-ph::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: repeating-linear-gradient(
    -18deg,
    transparent,
    transparent 14px,
    rgba(91, 140, 93, 0.04) 14px,
    rgba(91, 140, 93, 0.04) 15px
  );
  pointer-events: none;
}

.upl-landing-astra .upl-techx__card-img-wrap.upl-img-ph {
  min-height: 130px;
}

.upl-landing-astra .upl-promo__card-img-wrap.upl-img-ph {
  background:
    radial-gradient(circle at 70% 30%, rgba(177, 208, 222, 0.45) 0%, transparent 50%),
    linear-gradient(160deg, var(--astra-hero-sky-mid) 0%, var(--astra-white) 100%);
}

.upl-landing-astra .upl-promo__card-img-wrap.upl-img-ph::before {
  display: none;
}

.upl-landing-astra .upl-final-cta__visual.upl-img-ph {
  min-height: 100%;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(212, 245, 78, 0.2) 0%, transparent 55%),
    linear-gradient(180deg, var(--astra-forest-light) 0%, var(--astra-forest) 100%);
}

.upl-landing-astra .upl-final-cta__visual.upl-img-ph::after {
  content: '';
  position: absolute;
  inset: 18% 14%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(212, 245, 78, 0.08);
}

/* ─── Hero: agenticlab centered stack (Astra) ─── */
.upl-landing-astra .upl-hero-shell--astra .upl-hero-slide__content {
  max-width: calc(var(--astra-max) + 96px);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px) !important;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.upl-hero-astra {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}

.upl-hero-astra__lines {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  top: 38%;
  height: 32%;
  overflow: hidden;
}

.upl-hero-astra__lines img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.upl-hero-astra__copy,
.upl-hero-collage,
.upl-hero-features {
  position: relative;
  z-index: 1;
}

.upl-hero-astra__copy {
  max-width: 820px;
  margin: 0 auto;
}

.upl-hero-astra__title {
  font-size: clamp(2.25rem, 5.2vw, 3.5rem);
  margin: 0 0 20px;
}

.upl-hero-astra__title .upl-accent {
  color: var(--astra-forest-light);
  font-weight: 700;
}

.upl-hero-astra__tagline {
  margin: 0 0 16px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.upl-hero-astra__desc {
  max-width: 640px;
  margin: 0 auto 32px;
}

.upl-hero-astra__desc .upl-hero-slide__em {
  color: var(--astra-forest-light);
  font-weight: 600;
}

.upl-hero-astra__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(24px, 3.5vw, 40px);
}

.upl-hero-collage {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 auto clamp(20px, 3vw, 32px);
  padding: 0 clamp(16px, 4vw, 24px);
}

.upl-hero-collage__stage {
  position: relative;
  max-width: 54.4375rem;
  margin: 0 auto;
  overflow: visible;
}

.upl-hero-collage__side {
  display: none;
}

.upl-hero-collage__center {
  position: relative;
  width: 100%;
  z-index: 2;
}

.upl-hero-collage__center-frame {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 53.42%;
  overflow: hidden;
}

.upl-hero-collage__product {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
  transform-origin: center center;
}

.upl-hero-collage__photo {
  position: absolute;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.upl-hero-collage__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upl-hero-collage__side--left {
  position: absolute;
  left: -10.5rem;
  top: 3rem;
  width: 16rem;
  height: 18rem;
}

.upl-hero-collage__side--right {
  position: absolute;
  right: -10.5rem;
  top: 3rem;
  width: 16rem;
  height: 18rem;
}

.upl-hero-collage__side--left .upl-hero-collage__photo--back {
  top: 3rem;
  right: 9rem;
  width: 9.625rem;
  height: 14.875rem;
}

.upl-hero-collage__side--left .upl-hero-collage__photo--front {
  top: 1rem;
  left: 6.5rem;
  width: 9.625rem;
  height: 18.875rem;
}

.upl-hero-collage__side--right .upl-hero-collage__photo--back {
  top: 3rem;
  left: 9rem;
  width: 9.625rem;
  height: 14.875rem;
}

.upl-hero-collage__side--right .upl-hero-collage__photo--front {
  top: 1rem;
  right: 6.5rem;
  width: 9.625rem;
  height: 18.875rem;
}

.upl-hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 32px);
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: left;
}

.upl-hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.upl-hero-feature__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--astra-border);
  color: var(--astra-forest-light);
}

.upl-hero-feature__icon svg {
  width: 22px;
  height: 22px;
}

.upl-hero-feature__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.upl-hero-feature__text strong {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--astra-ink);
}

.upl-hero-feature__stat {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--astra-forest);
}

.upl-hero-feature__text span {
  font-size: 13px;
  line-height: 1.45;
  color: var(--astra-muted);
}

@media (min-width: 768px) {
  .upl-hero-astra__lines {
    top: 28%;
    height: 50%;
  }
}

@media (min-width: 1024px) {
  .upl-hero-astra__lines {
    top: 4.25rem;
    height: 88%;
  }
}

@media (min-width: 1280px) {
  .upl-hero-collage__side {
    display: block;
  }
}

@media (max-width: 767px) {
  .upl-hero-astra__actions {
    flex-direction: column;
    width: 100%;
  }

  .upl-hero-astra__cta {
    width: 100%;
    max-width: 360px;
  }

  .upl-hero-features {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

/* ─── Hero layout: platform v2 split (non-Astra) ─── */
.upl-landing-astra .upl-hero-shell--v2:not(.upl-hero-shell--astra) .upl-hero-shell__bg {
  display: none !important;
}

.upl-landing-astra .upl-hero-shell--v2:not(.upl-hero-shell--astra) .upl-hero-slide__content {
  max-width: calc(var(--astra-max) + 96px);
  margin: 0 auto;
}

.upl-landing-astra .upl-hero-shell--v2:not(.upl-hero-shell--astra) .upl-hero-slide__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  grid-template-areas:
    "copy visual"
    "stats stats";
  gap: clamp(28px, 4vw, 56px) clamp(24px, 3vw, 48px);
  align-items: center;
  max-width: none;
  margin: 0;
  position: relative;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__main {
  grid-area: copy;
  width: 100%;
  text-align: left;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__visual {
  grid-area: visual;
  min-width: 0;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__headline::before,
.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__headline::after {
  display: none;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__headline {
  text-align: left;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__title {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__tagline {
  text-align: left;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__panel {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__pills {
  justify-content: flex-start;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__actions {
  justify-content: flex-start;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__layout::after {
  display: none;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__content::before {
  display: none;
}

.upl-hero-visual {
  position: relative;
  width: 100%;
  min-height: 0;
}

.upl-hero-visual__photos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.upl-hero-visual__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 24px rgba(18, 43, 35, 0.08);
}

.upl-hero-visual__panel {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  max-width: 340px;
  margin: 0 0 0 auto;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(177, 208, 222, 0.55);
  box-shadow: 0 20px 40px rgba(18, 43, 35, 0.1);
}

.upl-hero-visual__panel-img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 12px;
}

.upl-hero-visual__panel-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.upl-hero-visual__panel-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--astra-forest-light);
}

.upl-hero-visual__panel-copy strong {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--astra-ink);
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__highlights {
  grid-area: stats;
  order: unset;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  margin-top: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  animation: none;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__highlight {
  flex: 0 1 auto;
  min-width: 0;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  animation: none;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__highlight-num {
  font-size: 13px;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__highlight-label {
  font-size: 12px;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__main,
.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__visual,
.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__highlights {
  position: relative;
  z-index: 1;
}

@media (max-width: 960px) {
  .upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "stats";
    gap: 24px;
  }

  .upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__main,
  .upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__headline,
  .upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__title {
    text-align: center;
  }

  .upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__tagline,
  .upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__panel {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__pills,
  .upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__actions,
  .upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__highlights {
    justify-content: center;
  }

  .upl-hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .upl-hero-visual__photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .upl-hero-visual__panel {
    position: relative;
    width: 100%;
    margin-top: 12px;
  }
}

/* Legacy centered mock — disabled when real visual is present */
.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__layout:not(:has(.upl-hero-slide__visual)) {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__layout:not(:has(.upl-hero-slide__visual))::after {
  content: '';
  order: 2;
  display: block;
  width: min(400px, 100%);
  height: 168px;
  margin: 28px auto 4px;
  border-radius: 16px;
  border: 1px solid rgba(177, 208, 222, 0.45);
  box-shadow: 0 24px 48px rgba(18, 43, 35, 0.06);
  background-color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 768px) {
  .upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__layout:not(:has(.upl-hero-slide__visual))::after {
    height: 140px;
    margin-top: 20px;
  }
}

/* Decorative floating accents — disabled with real visual */
.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__content:has(.upl-hero-slide__visual)::before {
  display: none;
}

.upl-landing-astra .upl-hero-shell--v2 .upl-hero-slide__content:not(:has(.upl-hero-slide__visual))::before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  width: min(480px, 94vw);
  height: 220px;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 26px 34px, var(--astra-white) 0, var(--astra-white) 22px, transparent 23px),
    radial-gradient(circle at calc(100% - 26px) 26px, var(--astra-lime) 0, var(--astra-lime) 22px, transparent 23px),
    radial-gradient(circle at 26px calc(100% - 26px), var(--astra-hero-sky-mid) 0, #c5e4f2 22px, transparent 23px),
    radial-gradient(circle at calc(100% - 26px) calc(100% - 26px), var(--astra-white) 0, var(--astra-white) 22px, transparent 23px);
  border: none;
}

/* ─── Form / search input placeholders ─── */
.upl-landing-astra input::placeholder,
.upl-landing-astra textarea::placeholder,
.upl-landing-astra .form-control::placeholder,
.upl-landing-astra .upl-search-panel__input::placeholder {
  color: rgba(15, 41, 34, 0.42);
  font-weight: 400;
  opacity: 1;
}

.upl-landing-astra .upl-catalog-hero__stat {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--astra-border);
  border-radius: 999px;
}

/* Neat layout polish (Astra SaaS rhythm) */
@media (min-width: 900px) {
  .upl-landing-astra .upl-fab {
    display: none;
  }
}

.upl-landing-astra .upl-search-panel__input,
.upl-landing-astra .form-control {
  border-radius: 12px;
  border-color: var(--astra-border);
  font-size: 15px;
}

.upl-landing-astra .upl-filter-panel {
  border-radius: 16px;
  border-color: var(--astra-border);
}

/* Keep main sections below hero in normal document flow (exclude fixed overlays) */
.upl-landing-astra .upl-hero-shell--astra ~ *:not(.floater):not(.floater-backdrop):not(.floater-panel):not(.upl-search-backdrop):not(.upl-search-panel) {
  position: relative;
  z-index: 2;
}

/* Fixed UI must stay viewport-anchored on Astra landing */
.upl-landing-astra .floater,
.upl-landing-astra .floater-backdrop,
.upl-landing-astra .floater-panel,
.upl-landing-astra .upl-search-backdrop,
.upl-landing-astra .upl-search-panel {
  position: fixed !important;
}

.upl-landing-astra .upl-search-panel:not(.open) {
  visibility: hidden;
  pointer-events: none;
}

.upl-landing-astra .upl-search-panel.open {
  visibility: visible;
  pointer-events: auto;
}

.upl-landing-astra .floater {
  z-index: 9999;
}

.upl-landing-astra .floater-backdrop {
  z-index: 9998;
}

.upl-landing-astra .floater-panel {
  z-index: 10000 !important;
  top: auto !important;
  left: auto !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}

.upl-landing-astra .upl-search-backdrop {
  z-index: 99998;
}

.upl-landing-astra .upl-search-panel {
  z-index: 99999;
}

.upl-landing-astra .floater-toggle {
  border-color: var(--astra-white);
  background: var(--astra-brand-dark);
  box-shadow: 0 4px 24px rgba(31, 31, 31, 0.28);
}

.upl-landing-astra .floater-toggle:hover {
  box-shadow: 0 6px 32px rgba(31, 31, 31, 0.35);
}

/* ═══ Tail overrides — beat inline <style> blocks in index.php (loaded last) ═══ */

/* Figtree everywhere except icon fonts */
.upl-landing-astra :where(
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, label, small, strong, em,
  input, textarea, select, button,
  .form-control, .btn, .h5, .h6,
  .accordion__title, .accordion__content,
  .upl-filter-option__text,
  .upl-catalog-hero__stat-num,
  .upl-catalog-hero__stat-label,
  .upl-catalog__empty,
  .upl-catalog__empty h4,
  .upl-final-cta__meta-name,
  .upl-final-cta__meta-role,
  .floater-panel,
  .floater-group-label,
  .floater-item,
  .floater-next-btn,
  .upl-astra-footer,
  .upl-astra-footer__heading,
  .upl-astra-footer__nav a,
  .upl-astra-footer__help-text,
  .upl-astra-footer__copy,
  .upl-astra-footer__legal a,
  footer.footer-2,
  .upl-login-panel,
  .upl-slide-menu
) {
  font-family: var(--astra-btn-font) !important;
}

/* Section heading rhythm (agenticlab.uplearn.ai) */
.upl-landing-astra :where(h2, .upl-techx__title, .upl-catalog-hero__title) {
  font-weight: 600 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.2 !important;
  color: var(--astra-ink) !important;
}

.upl-landing-astra :where(.upl-techx__subtitle, .upl-catalog-hero__sub) {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: var(--astra-muted) !important;
}

.upl-landing-astra .upl-final-cta__body {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
  color: rgba(255, 255, 255, 0.72) !important;
}

.upl-landing-astra .upl-catalog-hero {
  background: linear-gradient(180deg, var(--astra-white) 0%, var(--astra-surface) 100%) !important;
}

.upl-landing-astra .upl-catalog-hero::before {
  background: rgba(177, 208, 222, 0.22) !important;
}

.upl-landing-astra .upl-catalog-hero::after {
  background: rgba(214, 239, 251, 0.3) !important;
}

.upl-landing-astra .upl-catalog-hero__badge {
  color: var(--astra-forest-light) !important;
  border-color: var(--astra-border) !important;
  font-family: var(--astra-btn-font) !important;
}

.upl-landing-astra .upl-catalog-hero__badge svg {
  fill: var(--astra-forest-light) !important;
}

.upl-landing-astra .upl-catalog-hero__title span {
  color: var(--astra-forest-light) !important;
}

.upl-landing-astra .upl-catalog-hero__stat-num {
  font-size: clamp(1.25rem, 2vw, 1.5rem) !important;
  font-weight: 700 !important;
  color: var(--astra-forest) !important;
  letter-spacing: -0.02em !important;
}

.upl-landing-astra .upl-catalog-hero__stat-label {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: var(--astra-muted-light) !important;
}

/* Catalog search — agenticlab pill input */
.upl-landing-astra .upl-catalog .input-group {
  border-radius: 999px !important;
  border-color: var(--astra-border) !important;
  box-shadow: 0 1px 2px rgba(14, 5, 27, 0.04) !important;
}

.upl-landing-astra .upl-catalog .input-group:focus-within {
  border-color: var(--astra-forest-light) !important;
  box-shadow: 0 0 0 3px rgba(91, 140, 93, 0.12) !important;
}

.upl-landing-astra .upl-catalog .input-group .form-control {
  font-family: var(--astra-btn-font) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  color: var(--astra-ink) !important;
  padding: 14px 20px !important;
  border-radius: 999px 0 0 999px !important;
}

.upl-landing-astra .upl-catalog .input-group-append .btn,
.upl-landing-astra .upl-catalog #search_btn {
  font-family: var(--astra-btn-font) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border-radius: 0 999px 999px 0 !important;
  padding: 12px 22px !important;
  letter-spacing: normal !important;
  background: var(--astra-brand-green) !important;
  color: var(--astra-ink) !important;
}

.upl-landing-astra .upl-catalog .input-group-append .btn:hover,
.upl-landing-astra .upl-catalog #search_btn:hover {
  background: var(--astra-brand-green-hover) !important;
  color: var(--astra-ink) !important;
}

/* Filter sidebar */
.upl-landing-astra .upl-filter-panel .accordion__title .h5,
.upl-landing-astra .upl-filter-panel .accordion__title span.h5,
.upl-landing-astra .upl-filter-panel #fliters_clear {
  font-family: var(--astra-btn-font) !important;
  font-weight: 600 !important;
  color: var(--astra-ink) !important;
}

.upl-landing-astra .upl-filter-panel #fliters_clear:hover {
  color: var(--astra-forest) !important;
}

.upl-landing-astra .upl-filter-panel .upl-filter-option__text {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--astra-ink) !important;
}

.upl-landing-astra .upl-filter-panel .upl-filter-option input[type="checkbox"]:focus-visible {
  outline-color: rgba(91, 140, 93, 0.35) !important;
}

/* Final CTA — agenticlab forest band + rounded shell */
.upl-landing-astra .upl-final-cta {
  font-family: var(--astra-btn-font) !important;
  background: var(--astra-white) !important;
  padding: var(--astra-section-y) clamp(20px, 4vw, 48px) var(--astra-section-gap) !important;
}

.upl-landing-astra .upl-catalog-wrap + .upl-final-cta {
  padding-top: var(--astra-section-gap) !important;
}

.upl-landing-astra .upl-final-cta__shell {
  border-radius: 24px !important;
  overflow: hidden !important;
}

.upl-landing-astra .upl-final-cta__quote {
  font-family: var(--astra-btn-font) !important;
  font-weight: 600 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.2 !important;
}

.upl-landing-astra .upl-final-cta__btn {
  font-family: var(--astra-btn-font) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: normal !important;
  border-radius: var(--astra-btn-radius) !important;
  border: none !important;
  padding: var(--astra-btn-md-y) var(--astra-btn-md-x) !important;
  background: var(--astra-brand-green) !important;
  color: var(--astra-ink) !important;
  box-shadow: none !important;
  transform: none !important;
}

.upl-landing-astra .upl-final-cta__btn:hover {
  background: var(--astra-brand-green-hover) !important;
  color: var(--astra-ink) !important;
  box-shadow: none !important;
  transform: none !important;
}

.upl-landing-astra .upl-final-cta__btn svg {
  stroke: var(--astra-ink) !important;
}

.upl-landing-astra .upl-final-cta__meta-name {
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}

.upl-landing-astra .upl-final-cta__meta-role {
  font-size: 14px !important;
  font-weight: 400 !important;
}

/* Floater + search overlay typography */
.upl-landing-astra .floater-panel,
.upl-landing-astra .floater-item,
.upl-landing-astra .floater-next-btn {
  font-family: var(--astra-btn-font) !important;
  font-size: 14px !important;
}

.upl-landing-astra .floater-next-btn {
  border-radius: var(--astra-btn-radius) !important;
  background: var(--astra-brand-green) !important;
  color: var(--astra-ink) !important;
  font-weight: 600 !important;
}

.upl-landing-astra .upl-search-panel,
.upl-landing-astra .upl-search-panel__input,
.upl-landing-astra .upl-search-chip {
  font-family: var(--astra-btn-font) !important;
}

.upl-landing-astra .upl-search-panel__input {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #fff !important;
}

/* Promo section label rhythm */
.upl-landing-astra .upl-promo__card-label {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.upl-landing-astra .upl-promo__card h3 {
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
}

.upl-landing-astra .upl-promo__card-desc {
  font-size: 14px !important;
  line-height: 1.55 !important;
}

/* Links — forest accent, not product blue (exclude footer) */
.upl-landing-astra a:not(.btn):not(.upl-hero-astra__cta):not(.upl-techx__viewall):not(.upl-final-cta__btn):not(.upl-topbar__signup):not(.floater-item):not(.upl-search-chip):not(.upl-astra-footer a):hover {
  color: var(--astra-forest);
}

/* Footer — isolate from page-wide ink/muted overrides */
.upl-landing-astra .upl-astra-footer {
  color: #fff !important;
}

.upl-landing-astra .upl-astra-footer h3,
.upl-landing-astra .upl-astra-footer .upl-astra-footer__heading {
  color: #fff !important;
}

.upl-landing-astra .upl-astra-footer p,
.upl-landing-astra .upl-astra-footer .upl-astra-footer__help-text,
.upl-landing-astra .upl-astra-footer .upl-astra-footer__copy {
  color: #fff !important;
}

.upl-landing-astra .upl-astra-footer .upl-astra-footer__nav a {
  color: var(--astra-footer-muted) !important;
}

.upl-landing-astra .upl-astra-footer .upl-astra-footer__nav a:hover {
  color: #fff !important;
}

.upl-landing-astra .upl-astra-footer .upl-astra-footer__help-link {
  color: var(--astra-brand-green) !important;
}

.upl-landing-astra .upl-astra-footer .upl-astra-footer__help-link:hover {
  color: var(--astra-brand-green-hover) !important;
  opacity: 1 !important;
}

.upl-landing-astra .upl-astra-footer .upl-astra-footer__legal a {
  color: #fff !important;
}

.upl-landing-astra .upl-astra-footer .upl-astra-footer__legal-sep {
  color: var(--astra-footer-muted) !important;
}

.upl-landing-astra .upl-astra-footer .upl-astra-footer__wordmark {
  color: #fff !important;
}

.upl-landing-astra .upl-astra-footer .upl-astra-footer__newsletter-input {
  color: #fff !important;
}

.upl-landing-astra .upl-astra-footer .upl-astra-footer__newsletter-input::placeholder {
  color: #d4d4d4 !important;
  opacity: 1 !important;
}

.upl-landing-astra .upl-astra-footer .upl-astra-footer__newsletter-btn {
  color: var(--astra-ink) !important;
}

.upl-landing-astra .upl-astra-footer .upl-astra-footer__social a {
  color: #fff !important;
}

.upl-landing-astra .upl-astra-footer .upl-astra-footer__social a:hover {
  color: var(--astra-brand-green) !important;
}
