/* NPTC — Network Professional TC
   Custom refinements on top of Tailwind + Flowbite */

:root {
  --nptc-ink: #03122f;
  --nptc-ink-soft: #061b43;
  --nptc-navy: #07204c;
  --nptc-slate: #0b326e;
  --nptc-gold: #d90812;
  --nptc-gold-deep: #a90008;
  --nptc-mist: #f5f7fb;
  --nptc-muted: #61708a;
  --nptc-line: rgba(255, 255, 255, 0.14);
  --nptc-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: #13203a;
  background: #f5f7fb;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

/* Hero cinematic plane */
.hero-plane {
  position: relative;
  background: #03122f;
  color: #fff;
  overflow: hidden;
}

.hero-plane::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(to top, rgba(3, 18, 47, 0.85), transparent);
  pointer-events: none;
  z-index: 5;
}

/* Branded cutout artwork (person + icon collage on transparent PNG),
   sized to sit beside the copy without ever reaching the fixed nav —
   contain (not cover) keeps the full illustration intact. A soft
   bottom fade blends the base into the slide even when the image
   can't sit perfectly flush with the very bottom edge, so it never
   reads as "hanging" mid-air. */
.hero-subject {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(80vh, 760px);
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.3));
  mask-image: linear-gradient(to bottom, #000 58%, transparent 96%);
  -webkit-mask-image: linear-gradient(to bottom, #000 58%, transparent 96%);
}

/* ===== Hero Carousel (Flowbite-driven "slide" carousel) =====
   Flowbite positions each [data-carousel-item] absolutely inside
   this wrapper, so it needs an explicit height of its own — a
   generous viewport-based min-height keeps every slide's copy
   (even the longest) comfortably clear of any clipping. */
.hero-carousel {
  position: relative;
  min-height: 100vh;
}

.hero-slide {
  position: relative;
  overflow: hidden;
}

/* Background photo lives on its own scaled, blurred layer so the
   slide copy and gradient overlay above it stay perfectly crisp. */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center top;
  filter: blur(6px);
  transform: scale(1.08);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(3, 18, 47, 0.94) 0%, rgba(6, 27, 67, 0.82) 48%, rgba(7, 32, 76, 0.55) 100%);
  z-index: 1;
}

.hero-slide > .slide-inner {
  position: relative;
  z-index: 2;
}

.slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem 0.4rem 0.6rem;
  border-radius: 9999px;
  background: rgba(217, 8, 18, 0.14);
  border: 1px solid rgba(217, 8, 18, 0.35);
  color: var(--nptc-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Floating proof cards over the hero visual */
.float-card {
  position: absolute;
  z-index: 4;
  background: rgba(10, 14, 22, 0.72);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  padding: 0.85rem 1.05rem;
  animation: float-y 5s ease-in-out infinite;
}

.float-card.float-card--alt {
  animation-delay: 1.4s;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack img {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 2px solid rgba(10, 14, 22, 0.9);
  object-fit: cover;
  margin-left: -0.55rem;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

/* Carousel controls (prev/next) */
.carousel-ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.carousel-ctrl:hover {
  background: var(--nptc-gold);
  border-color: var(--nptc-gold);
  color: #111827;
  transform: translateY(-50%) scale(1.05);
}

/* Slide indicators */
.carousel-dots {
  position: absolute;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel-dots button {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.35);
  transition: width 0.25s ease, background 0.25s ease;
}

.carousel-dots button[aria-current="true"] {
  width: 1.75rem;
  background: var(--nptc-gold);
}

.slide-counter {
  position: absolute;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
}

.slide-counter .current {
  color: var(--nptc-gold);
  font-size: 1rem;
}

@media (max-width: 1023px) {
  .float-card {
    animation: none;
  }
}

/* CTA pair: pill + icon circle (Lurno pattern) */
.cta-pair {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.6rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.cta-pair:hover .cta-pill,
.cta-pair:hover .cta-icon {
  transform: translateY(-2px);
}

.cta-gold .cta-pill,
.cta-gold .cta-icon {
  background: var(--nptc-gold);
  color: #fff;
}

.cta-gold:hover .cta-pill,
.cta-gold:hover .cta-icon {
  background: #ff313a;
}

.cta-light .cta-pill,
.cta-light .cta-icon {
  background: #fff;
  color: #111827;
}

.cta-light:hover .cta-pill,
.cta-light:hover .cta-icon {
  background: #f3f4f6;
}

.cta-outline .cta-pill {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.cta-outline .cta-icon {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* Nav root: houses topbar + main nav so both can react to scroll together */
#nav-root {
  transition: filter 0.3s ease;
}

/* Top utility bar — collapses away once the visitor scrolls */
.topbar {
  overflow: hidden;
  max-height: 2.75rem;
  background: rgba(3, 18, 47, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: max-height 0.35s ease, opacity 0.3s ease, border-color 0.3s ease;
}

#nav-root.is-scrolled .topbar {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
}

.topbar-link {
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s ease;
}

.topbar-link:hover {
  color: var(--nptc-gold);
}

/* Nav */
.site-nav {
  position: relative;
  backdrop-filter: blur(14px);
  background: rgba(6, 27, 67, 0.38);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

#nav-root.is-scrolled .site-nav {
  background: rgba(6, 27, 67, 0.92);
  border-bottom-color: var(--nptc-line);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.nav-shell {
  transition: margin 0.35s ease, padding 0.35s ease;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--nptc-gold);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.nav-caret {
  transition: transform 0.2s ease;
}

.nav-link[aria-expanded="true"] .nav-caret {
  transform: rotate(180deg);
}

/* Dropdown menus (Flowbite-driven, restyled) */
.nav-dropdown {
  --tw-shadow: 0 24px 48px rgba(8, 12, 22, 0.28);
  margin-top: 0.85rem;
  min-width: 15rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--tw-shadow);
  padding: 0.6rem;
  z-index: 40;
}

.nav-dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0.7rem;
  border-radius: 0.7rem;
  color: #13203a;
  transition: background 0.15s ease;
}

.nav-dropdown-link:hover {
  background: rgba(217, 8, 18, 0.1);
}

.nav-dropdown-link .nav-dropdown-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 8, 18, 0.14);
  color: #a90008;
}

.nav-dropdown-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: #061b43;
}

.nav-dropdown-desc {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.1rem;
}

.nav-dropdown-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.35rem;
  padding: 0.65rem 0.7rem 0.2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.8rem;
  font-weight: 700;
  color: #a90008;
}

/* Brand logo: full color by default (light surfaces); auto-inverts to
   white on the surfaces that are always dark across this site (the
   fixed nav, mobile drawer, and footer) so it stays legible without
   needing a second exported asset. */
.brand-logo {
  display: block;
  height: 3.5rem;
  width: auto;
  filter: none;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.site-nav .brand-logo,
#mobile-drawer .brand-logo,
footer .brand-logo {
  filter: brightness(0) invert(1);
}

/* Icon utility button (student portal / phone) */
.icon-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.icon-link-btn:hover {
  background: rgba(217, 8, 18, 0.16);
  border-color: rgba(217, 8, 18, 0.4);
  transform: translateY(-2px);
}

/* Mobile drawer refinements */
.drawer-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.5rem;
  border-radius: 0.75rem;
  color: rgba(255, 255, 255, 0.88);
  transition: background 0.2s ease;
}

.drawer-link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.drawer-link svg {
  color: var(--nptc-gold);
  flex-shrink: 0;
}

/* Stats strip */
.stats-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--nptc-line);
  background: linear-gradient(to top, rgba(7, 11, 18, 0.55), rgba(7, 11, 18, 0.15));
  backdrop-filter: blur(8px);
}

.stats-item + .stats-item {
  border-left: 1px solid var(--nptc-line);
}

/* Surface sections */
.section-ink {
  background: var(--nptc-ink);
  color: #fff;
}

.section-soft {
  background:
    radial-gradient(900px 400px at 10% -10%, rgba(217, 8, 18, 0.08), transparent 60%),
    radial-gradient(700px 360px at 100% 0%, rgba(14, 95, 199, 0.08), transparent 55%),
    #f5f7fb;
}

.section-navy {
  background:
    linear-gradient(160deg, #061b43 0%, #07204c 55%, #03122f 100%);
  color: #fff;
}

/* ===== Unified card language =====
   One consistent, light, thin-border treatment used across every
   card family on the site (light and dark surfaces alike), so the
   whole page reads as a single, deliberate design system. */
:root {
  --card-border-light: rgba(15, 23, 42, 0.09);
  --card-border-light-hover: rgba(217, 8, 18, 0.4);
  --card-border-dark: rgba(255, 255, 255, 0.12);
  --card-border-dark-hover: rgba(217, 8, 18, 0.38);
  --card-radius: 1.25rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 1.3rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.55;
}

.feature-tile {
  position: relative;
  border: 1px solid var(--card-border-light);
  background: #fff;
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-tile::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--nptc-gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.feature-tile:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-light-hover);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
}

.feature-tile:hover::before {
  transform: scaleX(1);
}

.feature-num {
  position: absolute;
  top: 1.25rem;
  right: 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: rgba(15, 23, 42, 0.22);
  letter-spacing: 0.05em;
}

.icon-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 8, 18, 0.12);
  border: 1px solid rgba(217, 8, 18, 0.22);
  color: #a90008;
}

/* Dark-surface card family (Learning Approach, dark panels) */
.approach-card {
  position: relative;
  border-radius: var(--card-radius);
  border: 1px solid var(--card-border-dark);
  background: rgba(255, 255, 255, 0.035);
  padding: 1.4rem;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-3px);
  border-color: var(--card-border-dark-hover);
  background: rgba(255, 255, 255, 0.055);
}

.approach-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 8, 18, 0.12);
  border: 1px solid rgba(217, 8, 18, 0.22);
  color: var(--nptc-gold);
  margin-bottom: 0.9rem;
}

.quote-rail {
  position: relative;
  border: 1px solid var(--card-border-light);
  border-radius: var(--card-radius);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.quote-rail::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: var(--nptc-gold);
}

.quote-rail:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 8, 18, 0.3);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.07);
}

.quote-mark {
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(217, 8, 18, 0.14);
  pointer-events: none;
}

/* Testimonials — uniform thin-border cards with a quote badge,
   star rating, and a divided footer for the reviewer identity. */
.testimonial-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--card-border-light);
  border-radius: var(--card-radius);
  padding: 1.85rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-light-hover);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
}

.testimonial-quote-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 8, 18, 0.08);
  color: var(--nptc-gold);
  flex-shrink: 0;
}

.testimonial-stars {
  display: inline-flex;
  gap: 0.15rem;
  color: var(--nptc-gold);
}

.testimonial-stars svg {
  width: 0.8rem;
  height: 0.8rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--card-border-light);
}

.avatar-initial {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(217, 8, 18, 0.14);
  color: #8a0008;
  flex-shrink: 0;
}

.service-chip {
  position: relative;
  border: 1px solid var(--card-border-dark);
  background: rgba(255, 255, 255, 0.035);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.service-chip:hover {
  background: rgba(217, 8, 18, 0.08);
  border-color: var(--card-border-dark-hover);
  transform: translateY(-3px);
}

.service-chip .chip-arrow {
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.service-chip:hover .chip-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.blog-card {
  border: 1px solid var(--card-border-light);
  border-radius: var(--card-radius);
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-light-hover);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
}

.panel-ring {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.check-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 9999px;
  background: rgba(217, 8, 18, 0.16);
  color: #a90008;
  flex-shrink: 0;
}

.check-chip--on-dark {
  background: rgba(217, 8, 18, 0.18);
  color: var(--nptc-gold);
}

/* About section — image collage backdrop, overlapping proof bar,
   and a scannable 2-up grid of value tiles (replaces the plain
   checklist with the same card language used site-wide). */
.about-media {
  position: relative;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: -1.5rem auto auto -1.5rem;
  width: 8.5rem;
  height: 8.5rem;
  background-image: radial-gradient(circle, rgba(217, 8, 18, 0.45) 1.6px, transparent 1.6px);
  background-size: 14px 14px;
  z-index: 0;
}

.about-stat-bar {
  position: relative;
  z-index: 3;
  margin: -2.5rem 0.75rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border: 1px solid var(--card-border-light);
  border-radius: 1.1rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.about-stat-bar > div {
  padding: 1rem 0.5rem;
  text-align: center;
  border-left: 1px solid var(--card-border-light);
}

.about-stat-bar > div:first-child {
  border-left: none;
}

.about-stat-bar .stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--nptc-ink);
  line-height: 1.2;
}

.about-stat-bar .stat-label {
  font-size: 0.68rem;
  color: #64748b;
  margin-top: 0.15rem;
  font-weight: 600;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem;
  border: 1px solid var(--card-border-light);
  border-radius: 0.9rem;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.about-point:hover {
  border-color: var(--card-border-light-hover);
  background: rgba(217, 8, 18, 0.045);
  transform: translateY(-2px);
}

.about-point-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #13203a;
  line-height: 1.3;
}

.about-point-desc {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.15rem;
  line-height: 1.4;
}

/* FAQ — uniform thin-border accordion cards with a circular
   toggle badge that fills solid when the answer is expanded. */
.faq-item {
  border: 1px solid var(--card-border-light);
  border-radius: 1.1rem;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  border-color: var(--card-border-light-hover);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 1.35rem;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #13203a;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-toggle {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 8, 18, 0.08);
  color: var(--nptc-gold);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq-toggle svg {
  transition: transform 0.25s ease;
}

.faq-question[aria-expanded="true"] .faq-toggle {
  background: var(--nptc-gold);
  color: #fff;
}

.faq-answer {
  padding: 0 1.35rem 1.35rem;
  margin-top: -0.35rem;
  color: #61708a;
  line-height: 1.7;
  font-size: 0.95rem;
  border-top: 1px solid var(--card-border-light);
  padding-top: 1rem;
}

.faq-support-card {
  border: 1px solid var(--card-border-light);
  border-radius: var(--card-radius);
  background: #f5f7fb;
}

/* Apply modal — multi-step qualification quiz */
.quiz-option {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid var(--card-border-light);
  border-radius: 1rem;
  padding: 0.95rem 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.quiz-option:hover {
  border-color: var(--card-border-light-hover);
  background: rgba(217, 8, 18, 0.03);
}

.quiz-option:has(:checked) {
  border-color: var(--nptc-gold);
  background: rgba(217, 8, 18, 0.06);
  box-shadow: 0 0 0 1px rgba(217, 8, 18, 0.16) inset;
}

.quiz-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quiz-dot {
  position: relative;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  border: 2px solid #cbd5e1;
  transition: border-color 0.2s ease;
}

.quiz-option:has(:checked) .quiz-dot {
  border-color: var(--nptc-gold);
}

.quiz-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 9999px;
  background: var(--nptc-gold);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease;
}

.quiz-option:has(:checked) .quiz-dot::after {
  transform: translate(-50%, -50%) scale(1);
}

.quiz-progress-track {
  height: 0.35rem;
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  border-radius: 9999px;
  background: var(--nptc-gold);
  transition: width 0.35s ease;
}

.modal-icon-circle {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-pair:disabled,
.cta-pair[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.cta-pair:disabled:hover .cta-pill,
.cta-pair:disabled:hover .cta-icon,
.cta-pair[disabled]:hover .cta-pill,
.cta-pair[disabled]:hover .cta-icon {
  transform: none;
}

.page-hero {
  position: relative;
  padding-top: 8.5rem;
  padding-bottom: 4.5rem;
  background:
    linear-gradient(120deg, rgba(3, 18, 47, 0.94), rgba(6, 27, 67, 0.86)),
    url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1800&q=80")
      center/cover no-repeat;
  color: #fff;
}

.price-launch {
  background: linear-gradient(135deg, #fff1f2, #fff);
  border: 1px solid rgba(217, 8, 18, 0.45);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1023px) {
  .hero-subject {
    max-height: min(60vh, 500px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .cta-pair:hover .cta-pill,
  .cta-pair:hover .cta-icon,
  .feature-tile:hover,
  .service-chip:hover { transform: none; }
}
