/* ============================================
   Training Jaipur — Modern Design System
   ============================================ */

:root {
  --color-bg: #f7f9f4;
  --color-surface: #ffffff;
  --color-surface-2: #f0f4e8;
  --color-text: #1a2e1a;
  --color-text-muted: #5a6b5a;
  --color-primary: #56721D;
  --color-primary-dark: #455a17;
  --color-primary-light: #eef2e6;
  --color-primary-soft: #768038;
  --color-coral: #f95d5d;
  --color-coral-dark: #e04545;
  --color-coral-light: #fff0f0;
  --color-accent: #56721D;
  --color-accent-2: #768038;
  --color-success: #56721D;
  --color-error: #ef4444;
  --color-border: #e4ead8;
  --shadow-sm: 0 2px 8px rgba(30, 41, 59, 0.05);
  --shadow-md: 0 8px 28px rgba(30, 41, 59, 0.08);
  --shadow-lg: 0 20px 50px rgba(86, 114, 29, 0.14);
  --shadow-xl: 0 28px 64px rgba(86, 114, 29, 0.18);
  --shadow-card: 0 4px 20px rgba(30, 41, 59, 0.06);
  --shadow-card-hover: 0 16px 40px rgba(86, 114, 29, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 24px;
  --radius-btn: 14px;
  --radius-full: 9999px;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --topbar-height: 44px;
  --header-main-height: 80px;
  --header-height: calc(var(--topbar-height) + var(--header-main-height));
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  --section-pad: clamp(64px, 8vw, 112px);
  --container-max: 1280px;
  --container-pad: clamp(28px, 5.5vw, 72px);
}

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

html {
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header-height) + 20px);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

/* CSS smooth-scroll fights ScrollTrigger scrub and causes sticky jank */
html.gsap-active {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  /* Do NOT set overflow-x here — it breaks position:sticky site-wide */
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  box-sizing: border-box;
}

.header,
.top-bar,
.footer,
.brand-marquee,
.companies,
.hero,
.why-us,
.testimonials,
.contact-section,
.courses,
.home-blogs {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

/* Sticky stack needs overflow:visible on ancestors — never clip this section */
.process--orbit,
.process--orbit > .container,
.process-stack,
.process-orbit-slot {
  overflow: visible !important;
}

/* ---- Typography ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-soft));
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: var(--color-text);
}

.section-title span{
color: #6ea00f;
}
.section-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 640px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(180deg, #627f28 0%, var(--color-primary) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(86, 114, 29, 0.32), 0 1px 0 rgba(255, 255, 255, 0.15) inset;
}

.btn-primary:hover {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(86, 114, 29, 0.4), 0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(86, 114, 29, 0.35);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.55);
  color: var(--color-primary);
  border-color: rgba(86, 114, 29, 0.45);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(86, 114, 29, 0.06);
}

.btn-outline:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(86, 114, 29, 0.14);
}

.btn-outline:active {
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-btn);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ---- Top bar ---- */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--topbar-height);
  background: linear-gradient(90deg, #1a2e1a 0%, #243824 55%, #1a2e1a 100%);
  border-bottom: 1px solid rgba(110, 160, 15, 0.22);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  height: 100%;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  flex: 1 1 auto;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.top-bar-link + .top-bar-link {
  margin-left: 22px;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.top-bar-link svg {
  flex: none;
  width: 14px;
  height: 14px;
  color: #6ea00f;
}

.top-bar-link:hover {
  color: #fff;
}

.top-bar a.top-bar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 0;
  min-height: 0;
  height: 32px;
  margin-left: auto;
  padding: 0 16px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  border-radius: 999px;
  background: #6ea00f;
  box-shadow: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.top-bar a.top-bar-cta:hover {
  background: #5f8f0d;
  color: #fff;
  transform: none;
  box-shadow: none;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-main-height);
  background: transparent;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header.scrolled .nav-link,
.header.scrolled .nav-dropdown-toggle {
  color: rgba(255, 255, 255, 0.78);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-dropdown-toggle:hover,
.header.scrolled .nav-dropdown.open .nav-dropdown-toggle,
.header.scrolled .nav-dropdown:hover .nav-dropdown-toggle,
.header.scrolled .nav-link.active {
  color: #0f172a;
  background: #eef2e6;
}

.header.scrolled .menu-toggle span {
  background: #fff;
}

.header.scrolled .logo-img--on-light {
  display: none;
}

.header.scrolled .logo-img--on-dark {
  display: block;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 12px;
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  overflow: visible;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--color-coral);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
}

.logo span {
  color: var(--color-coral);
}

.logo-img {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(220px, 58vw);
  object-fit: contain;
}

/* Default: dark-text logo. White logo shown on dark headers via page rules below. */
.logo-img--on-dark {
  display: none;
  height: 56px;
  max-width: min(260px, 70vw);
  transform: none;
  transform-origin: left center;
}

.home-page .logo-img--on-light,
.blog-page .logo-img--on-light {
  display: none;
}

.home-page .logo-img--on-dark,
.blog-page .logo-img--on-dark {
  display: block;
}

.footer-brand .logo-img {
  height: 56px;
  max-width: min(260px, 80vw);
  object-fit: contain;
  transform: none;
}

@media (max-width: 600px) {
  .logo-img {
    height: 42px;
  }

  .logo-img--on-dark {
    height: 46px;
    max-width: min(200px, 68vw);
  }
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-btn);
  transition: color var(--transition), background var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2.5px;
  border-radius: 2px;
  background: var(--color-primary);
  transform: translateX(-50%);
  transition: width var(--transition);
}

.nav-link:hover {
  color: #0f172a;
  background: #eef2e6;
}

.nav-link:hover::after {
  width: 18px;
}

.nav-link.active {
  color: var(--color-primary);
  background: var(--color-primary-light);
  font-weight: 600;
}

.nav-link.active::after {
  width: 22px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  border-radius: var(--radius-btn);
  transition: color var(--transition), background var(--transition);
}

.nav-dropdown-toggle:hover {
  color: #0f172a;
  background: #eef2e6;
}

.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown:hover .nav-dropdown-toggle {
  color: #0f172a;
  background: #eef2e6;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px) scale(0.97);
  transform-origin: top center;
  transition:
    opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.28s;
}

/* Academic Courses simple dropdown — light list (ref style) */
.nav-dropdown-menu:not(.nav-mega-premium):not(.nav-mega) {
  min-width: 168px;
  width: max-content;
  background: #f4f5f4;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  padding: 4px 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Invisible bridge so cursor can move toggle → menu without closing */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast), padding-left var(--transition-fast);
}

.nav-dropdown-menu:not(.nav-mega-premium):not(.nav-mega) a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 8px 12px;
  margin: 0;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: #2a2f2a;
  background: transparent;
  white-space: nowrap;
}

.nav-dropdown-menu:not(.nav-mega-premium):not(.nav-mega) a::after {
  content: none;
  display: none;
}

.nav-dropdown-menu a:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.nav-dropdown-menu:not(.nav-mega-premium):not(.nav-mega) a:hover {
  background: rgba(86, 114, 29, 0.08);
  color: #1a2e1a;
  padding-left: 12px;
}

.nav-dropdown-menu.nav-mega {
  min-width: 280px;
  padding: 12px;
}

.nav-submenu {
  padding: 8px 0;
  border-top: 1px solid var(--color-border);
}

.nav-submenu:first-child {
  border-top: none;
}

.nav-submenu-label {
  display: block;
  padding: 6px 14px 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text);
}

.nav-menu-link {
  font-weight: 600 !important;
}

.nav-dropdown-group {
  padding: 8px 14px 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .btn {
  padding: 10px 20px;
  font-size: 0.88rem;
  border-radius: var(--radius-btn);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-surface);
  padding: 24px;
  overflow-y: auto;
  z-index: 999;
  transform: translateX(100%);
  transition: transform var(--transition);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav-group {
  padding: 16px 0 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.mobile-nav-sub {
  padding-left: 16px;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.mobile-nav-subgroup {
  padding: 10px 0 4px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: calc(var(--header-height) + 72px) 0 110px;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(86, 114, 29, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(118, 128, 56, 0.1) 0%, transparent 50%),
    linear-gradient(160deg, #eef3e4 0%, #f4f7ee 38%, #f8faf6 72%, #eef2e6 100%);
  overflow: hidden;
}

/* Dark premium homepage banner */
.hero--dark {
  --hero-neon: #6ea00f;
  --hero-neon-soft: rgba(110, 160, 15, 0.18);
  padding: calc(var(--header-height) + 48px) 0 40px;
  background:
    radial-gradient(ellipse 55% 45% at 78% 35%, rgba(182, 245, 0, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 12% 70%, rgba(86, 114, 29, 0.18) 0%, transparent 55%),
    linear-gradient(165deg, #050505 0%, #0b0f0a 45%, #0a0a0a 100%);
  color: #f4f4f5;
}

.hero--dark::before {
  top: -120px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: rgba(182, 245, 0, 0.07);
  filter: blur(50px);
}

.hero--dark::after {
  bottom: -80px;
  left: -60px;
  width: 360px;
  height: 360px;
  background: rgba(86, 114, 29, 0.2);
  filter: blur(48px);
}

.hero--dark .hero-shape-1 {
  background: rgba(182, 245, 0, 0.12);
  opacity: 0.7;
}

.hero--dark .hero-shape-2 {
  background: rgba(86, 114, 29, 0.28);
}

.hero--dark .hero-shape-3 {
  background: rgba(182, 245, 0, 0.06);
}

.hero--dark .hero-grid {
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  margin-bottom: 40px;
}

.hero--dark .hero-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(182, 245, 0, 0.28);
  color: #d4f56a;
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.hero--dark .hero-badge-dot {
  background: var(--hero-neon);
  box-shadow: 0 0 0 0 rgba(182, 245, 0, 0.5);
}

.hero--dark .hero-badge-dot {
  animation: pulseNeon 2s infinite;
}

@keyframes pulseNeon {
  0% { opacity: 1; box-shadow: 0 0 0 0 rgba(182, 245, 0, 0.45); }
  70% { opacity: 0.75; box-shadow: 0 0 0 8px rgba(182, 245, 0, 0); }
  100% { opacity: 1; box-shadow: 0 0 0 0 rgba(182, 245, 0, 0); }
}

.hero--dark h1 {
  color: #e1f5a7;
  font-size: clamp(1.45rem, 2.7vw, 2.05rem);
}

.hero--dark h1 .gradient-text {
  color: #91c12f;
  text-shadow: 0 0 28px rgba(145, 193, 47, 0.25);
}

.hero--dark .hero-desc {
  color: rgba(228, 228, 231, 0.72);
  margin-bottom: 28px;
  max-width: 560px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 28px;
  max-width: 520px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.hero-feature-ic {
  flex: none;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--hero-neon-soft);
  color: var(--hero-neon);
}

.hero-feature-ic svg {
  width: 16px;
  height: 16px;
}

.hero--dark .hero-actions {
  margin-bottom: 28px;
}

.hero--dark .hero-actions .btn-primary {
  background: var(--hero-neon);
  color: #0a0a0a;
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(182, 245, 0, 0.2), 0 8px 28px rgba(182, 245, 0, 0.28);
}

.hero--dark .hero-actions .btn-primary:hover {
  background: #c8ff33;
  color: #000;
  box-shadow: 0 0 0 1px rgba(182, 245, 0, 0.35), 0 12px 32px rgba(182, 245, 0, 0.38);
}

.hero--dark .hero-actions .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: none;
  box-shadow: none;
}

.hero--dark .hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-avatars {
  display: flex;
}

.hero-avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: #0a0a0a;
  background: linear-gradient(145deg, #d4f56a, #8fbc3a);
  border: 2px solid #0a0a0a;
  margin-left: -10px;
}

.hero-avatars span:first-child {
  margin-left: 0;
}

.hero-social-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-social-text strong {
  font-size: 0.9rem;
  color: #fff;
}

.hero-rating {
  font-size: 0.8rem;
  color: rgba(228, 228, 231, 0.65);
}

.hero-rating em {
  font-style: normal;
  color: var(--hero-neon);
  font-weight: 700;
}

.hero--dark .hero-visual {
  padding-left: 0;
}

.hero--v2 .hero-visual {
  position: relative;
}

.hero--v2 .hero-grid,
.hero-grid--v2 {
  margin-bottom: 28px;
  align-items: start;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  grid-template-areas:
    "intro visual"
    "content visual";
  column-gap: clamp(36px, 5vw, 64px);
  row-gap: clamp(14px, 2vw, 22px);
}

.hero-grid--v2 .hero-intro {
  grid-area: intro;
}

.hero-grid--v2 .hero-content {
  grid-area: content;
  min-width: 0;
}

.hero-grid--v2 .hero-visual {
  grid-area: visual;
  min-width: 0;
  align-self: start;
}

.hero-grid--v2 .hero-badge {
  margin-bottom: 14px;
}

.hero.hero--v2 h1 {
  font-size: clamp(1.85rem, 2.8vw, 2.55rem);
  letter-spacing: -0.035em;
  max-width: none;
  width: 100%;
  white-space: normal;
  line-height: 1.2;
  margin-bottom: 0;
}

.hero--v2 .hero-desc {
  margin-bottom: 26px;
  max-width: min(560px, 100%);
}

.hero-features--row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 30px;
  max-width: none;
  grid-template-columns: none;
}

.hero-features--row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.hero-features--row .hero-feature-ic {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
}

.hero-features--row .hero-feature-ic svg {
  width: 14px;
  height: 14px;
}

.hero--v2 .hero-actions {
  margin-bottom: 0;
}

.hero--dark .hero-image-wrap {
  border: 2px solid rgba(182, 245, 0, 0.55);
  border-radius: 28px 28px 22px 80px;
  box-shadow:
    0 0 0 1px rgba(182, 245, 0, 0.1),
    0 0 48px rgba(182, 245, 0, 0.14),
    0 28px 64px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}

.hero--dark .hero-image-wrap img {
  height: auto;
  aspect-ratio: 4 / 3;
  max-height: min(520px, 58vh);
  width: 100%;
  object-fit: cover;
  filter: saturate(1) brightness(0.95);
}

.hero-frame-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
  box-shadow: inset 0 0 0 1px rgba(182, 245, 0, 0.2);
}

.hero-play {
  position: absolute;
  left: -12px;
  top: 18%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  max-width: 90px;
}

.hero-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #b6f500;
  color: #0a0a0a;
  box-shadow: 0 0 0 8px rgba(182, 245, 0, 0.15), 0 12px 28px rgba(182, 245, 0, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero-play-btn svg {
  width: 22px;
  height: 22px;
  margin-left: 2px;
}

.hero-play:hover .hero-play-btn {
  transform: scale(1.06);
  box-shadow: 0 0 0 10px rgba(182, 245, 0, 0.2), 0 14px 32px rgba(182, 245, 0, 0.45);
}

.hero-play-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
}

.hero-stats-bar--overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  margin: 0;
  padding: 12px 10px;
  background: rgba(12, 12, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  gap: 4px;
}

.hero-stats-bar--overlay .hero-stat-item {
  padding: 4px 6px;
  gap: 8px;
}

.hero-stats-bar--overlay .hero-stat-ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.hero-stats-bar--overlay .hero-stat-ic svg {
  width: 16px;
  height: 16px;
}

.hero-stats-bar--overlay .hero-stat-item strong {
  font-size: 0.95rem;
}

.hero-stats-bar--overlay .hero-stat-item span {
  font-size: 0.68rem;
}

/* Popular courses strip */
.hero-popular {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 200px 1fr 160px;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 16px;
}

.hero-popular-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 20px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-popular-card--cta {
  background: linear-gradient(160deg, rgba(86, 114, 29, 0.55) 0%, rgba(20, 30, 12, 0.95) 100%);
  color: #fff;
}

.hero-rocket {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(182, 245, 0, 0.15);
  color: #b6f500;
}

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

.hero-popular-card--cta p {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-popular-card--place {
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  align-items: center;
}

.hero-popular-card--place strong {
  font-size: 1.8rem;
  font-weight: 800;
  color: #b6f500;
  line-height: 1;
}

.hero-popular-card--place span {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.hero-popular-main {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.hero-popular-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

.hero-popular-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.hero-popular-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 4px;
  border-radius: 12px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.hero-popular-item:hover {
  background: rgba(182, 245, 0, 0.08);
  color: #fff;
  transform: translateY(-2px);
}

.hero-pop-ic {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 0.85rem;
  font-weight: 800;
}

.hero-pop-ic svg {
  width: 20px;
  height: 20px;
}

.hero-pop-ic--green { background: rgba(182, 245, 0, 0.15); color: #b6f500; }
.hero-pop-ic--blue { background: rgba(59, 130, 246, 0.18); color: #60a5fa; }
.hero-pop-ic--orange { background: rgba(249, 115, 22, 0.18); color: #fb923c; }
.hero-pop-ic--purple { background: rgba(168, 85, 247, 0.18); color: #c084fc; }
.hero-pop-ic--teal { background: rgba(20, 184, 166, 0.18); color: #2dd4bf; }

/* Trust bar */
.hero-trust {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
}

.hero-trust-ic {
  flex: none;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
}

.hero-trust-ic svg {
  width: 16px;
  height: 16px;
}

.hero-trust-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.hero-trust-item span {
  font-size: 0.7rem;
  color: rgba(228, 228, 231, 0.55);
}

.hero-frame-glow::before,
.hero-frame-glow::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--hero-neon);
  opacity: 0.85;
}

.hero-frame-glow::before {
  top: 14px;
  left: 14px;
  border-right: none;
  border-bottom: none;
}

.hero-frame-glow::after {
  right: 14px;
  bottom: 14px;
  border-left: none;
  border-top: none;
}

.hero-side-tag {
  position: absolute;
  top: 50%;
  right: 10px;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hero-neon);
  text-shadow: 0 0 16px rgba(182, 245, 0, 0.35);
  pointer-events: none;
}

.hero-course-float {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(210px, 48%);
}

.hero-course-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(18, 18, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.hero-course-chip:hover {
  transform: translateX(4px);
  border-color: rgba(182, 245, 0, 0.45);
  box-shadow: 0 12px 32px rgba(182, 245, 0, 0.12);
}

.hero-chip-ic {
  flex: none;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--hero-neon-soft);
  color: var(--hero-neon);
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-course-chip strong {
  display: block;
  font-size: 0.78rem;
  color: #fff;
  line-height: 1.2;
}

.hero-course-chip small {
  display: block;
  font-size: 0.68rem;
  color: rgba(228, 228, 231, 0.55);
  margin-top: 2px;
}

.hero-stats-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
}

.hero-stat-ic {
  flex: none;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.hero-stat-ic svg {
  width: 20px;
  height: 20px;
}

.hero-stat-ic--green {
  background: rgba(182, 245, 0, 0.15);
  color: #b6f500;
}

.hero-stat-ic--purple {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
}

.hero-stat-ic--orange {
  background: rgba(249, 115, 22, 0.15);
  color: #fb923c;
}

.hero-stat-ic--blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.hero-stat-item strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}

.hero-stat-item span {
  font-size: 0.78rem;
  color: rgba(228, 228, 231, 0.6);
}

/* Homepage dark header over banner */
.home-page .header:not(.scrolled) {
  background: transparent;
}

.home-page .header:not(.scrolled) .nav-link,
.home-page .header:not(.scrolled) .nav-dropdown-toggle {
  color: rgba(255, 255, 255, 0.78);
}

.home-page .header:not(.scrolled) .nav-link:hover,
.home-page .header:not(.scrolled) .nav-dropdown-toggle:hover,
.home-page .header:not(.scrolled) .nav-dropdown.open .nav-dropdown-toggle,
.home-page .header:not(.scrolled) .nav-dropdown:hover .nav-dropdown-toggle {
  color: #0f172a;
  background: #eef2e6;
}

.home-page .header:not(.scrolled) .nav-link.active {
  color: #b6f500;
  background: rgba(182, 245, 0, 0.12);
}

.home-page .header:not(.scrolled) .nav-link.active::after,
.home-page .header:not(.scrolled) .nav-link:hover::after {
  background: #b6f500;
}

.home-page .header:not(.scrolled) .btn-outline,
.home-page .header.scrolled .btn-outline {
  color: #6ea00f;
  border-color: #6ea00f;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.home-page .header:not(.scrolled) .btn-outline:hover,
.home-page .header.scrolled .btn-outline:hover {
  background: #6ea00f;
  color: #fff;
  border-color: #6ea00f;
}

.home-page .header:not(.scrolled) .btn-primary,
.home-page .header.scrolled .btn-primary {
  background: #b6f500;
  color: #0a0a0a;
  box-shadow: 0 6px 22px rgba(182, 245, 0, 0.28);
}

.home-page .header:not(.scrolled) .btn-primary:hover,
.home-page .header.scrolled .btn-primary:hover {
  background: #c8ff33;
}

.home-page .header:not(.scrolled) .menu-toggle span {
  background: #fff;
}

.home-page .header.scrolled {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.home-page .header.scrolled .nav-link,
.home-page .header.scrolled .nav-dropdown-toggle {
  color: rgba(255, 255, 255, 0.75);
}

.home-page .header.scrolled .nav-link:hover,
.home-page .header.scrolled .nav-dropdown-toggle:hover,
.home-page .header.scrolled .nav-dropdown.open .nav-dropdown-toggle,
.home-page .header.scrolled .nav-dropdown:hover .nav-dropdown-toggle,
.home-page .header.scrolled .nav-link.active {
  color: #0f172a;
  background: #eef2e6;
}

.home-page .header.scrolled .menu-toggle span {
  background: #fff;
}


.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  animation: none;
}

.hero-shape-1 {
  top: -8%;
  right: 8%;
  width: 380px;
  height: 380px;
  background: rgba(86, 114, 29, 0.22);
}

.hero-shape-2 {
  bottom: 5%;
  left: -5%;
  width: 320px;
  height: 320px;
  background: rgba(118, 128, 56, 0.18);
  animation-delay: -4s;
}

.hero-shape-3 {
  top: 42%;
  left: 38%;
  width: 200px;
  height: 200px;
  background: rgba(86, 114, 29, 0.1);
  animation-delay: -7s;
}

.hero-decor {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(86, 114, 29, 0.18);
  pointer-events: none;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

.hero-decor-1 {
  width: 14px;
  height: 14px;
  top: 22%;
  left: 46%;
  background: rgba(86, 114, 29, 0.2);
}

.hero-decor-2 {
  width: 10px;
  height: 10px;
  top: 68%;
  right: 48%;
  background: rgba(249, 93, 93, 0.25);
  animation-delay: -2.5s;
}

.hero-decor-3 {
  width: 22px;
  height: 22px;
  bottom: 18%;
  left: 8%;
  border-color: rgba(118, 128, 56, 0.3);
  animation-delay: -1.5s;
}

@keyframes heroShapeFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -18px) scale(1.05); }
}

.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 560px;
  height: 560px;
  background: rgba(86, 114, 29, 0.1);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: rgba(86, 114, 29, 0.08);
  border-radius: 50%;
  filter: blur(36px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 88px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(86, 114, 29, 0.22);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(86, 114, 29, 0.45);
}

@keyframes pulse {
  0% { opacity: 1; box-shadow: 0 0 0 0 rgba(86, 114, 29, 0.4); }
  70% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(86, 114, 29, 0); }
  100% { opacity: 1; box-shadow: 0 0 0 0 rgba(86, 114, 29, 0); }
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.55rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
  color: var(--color-text);
}

.hero h1 .gradient-text {
  color: var(--color-primary);
}

.text-coral {
  color: var(--color-coral);
}

.nav-dropdown-menu.nav-mega {
  min-width: 280px;
  max-height: min(70vh, 520px);
  overflow-y: auto;
  padding: 12px;
}

.hero-desc {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions .btn {
  min-height: 52px;
  padding: 14px 30px;
  font-size: 0.98rem;
}

.hero-visual {
  position: relative;
  padding-left: 8px;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(86, 114, 29, 0.06);
  border: 4px solid rgba(255, 255, 255, 0.95);
}

.hero-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-image-wrap:hover img {
  transform: scale(1.03);
}

.hero-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  justify-content: space-around;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-image-badge span {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-coral);
}

.hero-image-badge span strong {
  display: block;
  font-size: 1.2rem;
  color: var(--color-text);
}

.hero-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hero-stat-mini {
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.hero-stat-mini .number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.hero-stat-mini .label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 6px;
}

.hero-float {
  position: absolute;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(86, 114, 29, 0.14);
  z-index: 2;
  animation: float 4.5s ease-in-out infinite;
  pointer-events: none;
}

.hero-float::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(86, 114, 29, 0.35), rgba(118, 128, 56, 0.2));
}

.hero-float-1 {
  top: -10px;
  right: 12px;
  width: 48px;
  height: 48px;
}

.hero-float-2 {
  bottom: 30%;
  left: -18px;
  width: 40px;
  height: 40px;
  animation-delay: -2s;
  border-radius: 50%;
}

.hero-float-2::before {
  inset: 10px;
  background: linear-gradient(145deg, rgba(249, 93, 93, 0.4), rgba(249, 93, 93, 0.15));
}

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

/* ---- Stats / Impact ---- */
.stats {
  padding: var(--section-pad) 0;
  background: var(--color-surface);
}

.stats--impact {
  background: #fff;
  overflow: hidden;
}

.stats-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(44px, 5.5vw, 64px);
}

.stats-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3f5515;
  margin-bottom: 16px;
}

.stats-kicker i {
  position: relative;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #9fd600, #56721D);
}

.stats-kicker i:last-child {
  background: linear-gradient(90deg, #56721D, #9fd600, transparent);
}

.stats-kicker i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  background: #6ea00f;
  transform: translateY(-50%) rotate(45deg);
}

.stats-kicker i:first-child::after {
  right: -2px;
}

.stats-kicker i:last-child::after {
  left: -2px;
}

.stats-title {
  font-size: clamp(1.75rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: #1a2a12;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 14px;
}

.stats-title span {
  position: relative;
  color: #6ea00f;
  display: inline-block;
}

.stats-title span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 9px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10' preserveAspectRatio='none'%3E%3Cpath d='M2 7c28-6 55 4 116-3' fill='none' stroke='%239fd600' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  pointer-events: none;
}

.stats-sub {
  margin: 0 auto;
  max-width: 640px;
  font-size: 1rem;
  color: #6a7363;
  line-height: 1.7;
}

.stats--impact .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  max-width: 980px;
  margin-inline: auto;
}

.stats--impact .stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 26px 18px 72px;
  background: #fff;
  border: 1px solid rgba(86, 114, 29, 0.08);
  border-radius: 22px;
  box-shadow:
    0 10px 28px rgba(26, 31, 22, 0.045),
    0 2px 6px rgba(26, 31, 22, 0.025);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  --stat-wave: #d7e8b8;
  --stat-icon-bg: #dff0b8;
  --stat-tab: #3f5515;
  --stat-accent: #56721D;
}

.stats--impact .stat-card--enrolled {
  --stat-wave: #d8ecc0;
  --stat-icon-bg: #e4f3c8;
  --stat-tab: #3f5515;
  --stat-accent: #56721D;
}

.stats--impact .stat-card--placed {
  --stat-wave: #b7c978;
  --stat-icon-bg: #d4e29a;
  --stat-tab: #5a6b28;
  --stat-accent: #5f7028;
}

.stats--impact .stat-card--years {
  --stat-wave: #6f8a4a;
  --stat-icon-bg: #c5d6a8;
  --stat-tab: #3d5230;
  --stat-accent: #4a5f34;
}

.stats--impact .stat-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 48px rgba(26, 31, 22, 0.1),
    0 0 0 1px rgba(86, 114, 29, 0.12);
  border-color: rgba(86, 114, 29, 0.18);
}

.stat-icon-wrap {
  position: relative;
  width: 78px;
  height: 78px;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
}

.stat-icon-ring {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(86, 114, 29, 0.12);
  box-shadow: 0 6px 16px rgba(26, 31, 22, 0.05);
}

.stat-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(160deg, #6ea00f 0%, #56721D 100%);
  box-shadow: 0 8px 18px rgba(86, 114, 29, 0.2);
}

.stats--impact .stat-card--placed .stat-icon {
  background: linear-gradient(160deg, #8fa84a 0%, #5f7028 100%);
}

.stats--impact .stat-card--years .stat-icon {
  background: linear-gradient(160deg, #7a9460 0%, #3d5230 100%);
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.stat-icon-arc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed rgba(86, 114, 29, 0.28);
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(35deg);
  pointer-events: none;
}

.stat-icon-arc::before,
.stat-icon-arc::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3f5515;
}

.stat-icon-arc::before {
  left: 14%;
  bottom: 18%;
}

.stat-icon-arc::after {
  right: 14%;
  bottom: 18%;
}

.stats--impact .stat-number {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--stat-accent);
  line-height: 1.05;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.stats--impact .stat-label {
  position: relative;
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #1a2a12;
  margin-bottom: 10px;
  line-height: 1.3;
  padding-bottom: 8px;
}

.stats--impact .stat-label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 44px;
  height: 2.5px;
  border-radius: 999px;
  background: var(--stat-wave);
}

.stats--impact .stat-desc {
  font-size: 0.8rem;
  color: #6a7363;
  line-height: 1.55;
  margin: 0;
  max-width: 240px;
}

.stat-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  pointer-events: none;
}

.stat-wave svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: var(--stat-wave);
}

.stat-tab {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 42px;
  height: 36px;
  border-radius: 12px 12px 0 0;
  background: var(--stat-tab);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 -3px 12px rgba(26, 31, 22, 0.14);
}

.stat-tab svg {
  width: 15px;
  height: 15px;
}

@media (max-width: 900px) {
  .stats--impact .stats-grid {
    grid-template-columns: 1fr;
    max-width: min(340px, 100%);
    margin-inline: auto;
  }
}

/* ---- Gallery ---- */
.gallery-section {
  --gallery-neon: #b6f500;
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 110px) 0;
  color: #f4f4f5;
  background:
    radial-gradient(ellipse 45% 40% at 8% 70%, rgba(182, 245, 0, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 90% 20%, rgba(86, 114, 29, 0.22) 0%, transparent 50%),
    linear-gradient(180deg, #070907 0%, #0b100b 50%, #060806 100%);
}

.gallery-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.gallery-dots {
  position: absolute;
  inset: 6% 2% 4% 38%;
  background-image: radial-gradient(rgba(182, 245, 0, 0.18) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 75%);
}

.gallery-wave {
  position: absolute;
  left: 0;
  bottom: 4%;
  width: 36%;
  height: 34%;
  background:
    radial-gradient(ellipse at 35% 65%, transparent 42%, rgba(182, 245, 0, 0.07) 43%, transparent 44%),
    radial-gradient(ellipse at 55% 55%, transparent 48%, rgba(86, 114, 29, 0.14) 49%, transparent 51%);
}

.gallery-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: clamp(24px, 3.5vw, 44px);
  align-items: center;
  max-width: min(1480px, 100%);
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(12px, 2vw, 28px);
  box-sizing: border-box;
}

.gallery-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gallery-neon);
}

.gallery-label::after {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: var(--gallery-neon);
  box-shadow: 0 0 12px rgba(182, 245, 0, 0.5);
}

.gallery-title {
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 14px;
}

.gallery-title span {
  color:#6ea00f;
  
}

.gallery-desc {
  margin: 0 0 24px;
  max-width: 36ch;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(228, 228, 231, 0.72);
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.gallery-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(182, 245, 0, 0.5);
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.gallery-tab svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.gallery-tab:hover {
  border-color: var(--gallery-neon);
  transform: translateY(-1px);
}

.gallery-tab.is-active {
  background: var(--gallery-neon);
  border-color: var(--gallery-neon);
  color: #0a0a0a;
  box-shadow: 0 8px 24px rgba(182, 245, 0, 0.28);
}

.gallery-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 6px 2px;
  border-radius: 20px;
  background: rgba(18, 22, 16, 0.9);
  border: 1px solid rgba(182, 245, 0, 0.18);
  list-style: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.gallery-stats li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
}

.gallery-stats li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-stats-ic {
  position: relative;
  flex: none;
  width: 52px;
  height: 52px;
  display: block;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(182, 245, 0, 0.65);
  box-shadow:
    0 0 18px rgba(182, 245, 0, 0.28),
    0 0 0 6px rgba(182, 245, 0, 0.06);
  line-height: 0;
  overflow: visible;
}

.gallery-stats-ic::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182, 245, 0, 0.22) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.gallery-stats-ic svg {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  z-index: 1;
  width: 22px !important;
  height: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translate(-50%, -50%) !important;
  stroke: #fff;
  display: block;
  flex: none;
  pointer-events: none;
}

.gallery-stats strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.15;
}

.gallery-stats li span {
  display: block;
  margin-top: 2px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.68);
}

/* Explicit bento collage — matches mockup proportions */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(8, minmax(52px, 1fr));
  gap: 12px;
  min-height: min(620px, 78vh);
  max-height: 680px;
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(182, 245, 0, 0.2);
  background: #121612;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.25s ease;
  min-height: 0;
}

.gallery-item--a { grid-area: 1 / 1 / 6 / 4; }
.gallery-item--b { grid-area: 1 / 4 / 4 / 8; }
.gallery-item--c { grid-area: 1 / 8 / 4 / 13; }
.gallery-item--d { grid-area: 4 / 4 / 6 / 6; }
.gallery-item--e { grid-area: 4 / 6 / 6 / 8; }
.gallery-item--f { grid-area: 4 / 8 / 9 / 11; }
.gallery-item--g { grid-area: 6 / 1 / 9 / 5; }
.gallery-item--h { grid-area: 6 / 5 / 9 / 8; }
.gallery-item--i { grid-area: 4 / 11 / 6 / 13; }
.gallery-item--j { grid-area: 6 / 11 / 9 / 13; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Keep faces/subjects framed when tall photos are cropped into wide slots */
.gallery-item--a img {
  object-position: center 22%;
}

.gallery-item--f img {
  object-position: 60% center;
}

.gallery-item--g img {
  object-position: center 38%;
}

.gallery-item--b img {
  object-position: center 45%;
}

.gallery-item:hover {
  border-color: rgba(182, 245, 0, 0.55);
  box-shadow: 0 16px 36px rgba(182, 245, 0, 0.12);
  z-index: 2;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item.is-hidden {
  display: none !important;
}

.gallery-item--video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.78) 100%);
  pointer-events: none;
}

.gallery-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: rgba(182, 245, 0, 0.92);
  color: #0a0a0a;
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 8px rgba(182, 245, 0, 0.18), 0 12px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.gallery-play svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

.gallery-play:hover {
  background: #c8ff33;
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 0 0 10px rgba(182, 245, 0, 0.22), 0 14px 32px rgba(182, 245, 0, 0.25);
}

.gallery-item figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  color: #fff;
  pointer-events: none;
}

.gallery-item figcaption strong {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.gallery-item figcaption span {
  flex: none;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

/* Photos = full collage (photos + videos). Videos = videos only */
.gallery-section[data-active="videos"] .gallery-item[data-type="photos"] {
  display: none !important;
}

.gallery-section[data-active="videos"] .gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: none;
  grid-auto-rows: minmax(220px, 28vh);
  max-height: none;
}

.gallery-section[data-active="videos"] .gallery-item--c,
.gallery-section[data-active="videos"] .gallery-item--h {
  grid-area: auto;
}

@media (max-width: 1100px) {
  .gallery-layout {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  }

  .gallery-grid {
    min-height: 520px;
    max-height: 580px;
  }
}

@media (max-width: 900px) {
  .gallery-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gallery-copy {
    max-width: 520px;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(8, minmax(70px, auto));
    min-height: 0;
    max-height: none;
  }

  .gallery-item--a { grid-area: 1 / 1 / 4 / 3; }
  .gallery-item--b { grid-area: 1 / 3 / 3 / 5; }
  .gallery-item--c { grid-area: 1 / 5 / 3 / 7; }
  .gallery-item--d { grid-area: 3 / 3 / 5 / 4; }
  .gallery-item--e { grid-area: 3 / 4 / 5 / 5; }
  .gallery-item--f { grid-area: 3 / 5 / 6 / 7; }
  .gallery-item--g { grid-area: 4 / 1 / 6 / 3; }
  .gallery-item--h { grid-area: 5 / 3 / 7 / 5; }
  .gallery-item--i { grid-area: 6 / 5 / 8 / 7; }
  .gallery-item--j { grid-area: 6 / 1 / 8 / 3; }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 10px;
    min-height: 0;
    max-height: none;
  }

  .gallery-item--a,
  .gallery-item--b,
  .gallery-item--c,
  .gallery-item--d,
  .gallery-item--e,
  .gallery-item--f,
  .gallery-item--g,
  .gallery-item--h,
  .gallery-item--i,
  .gallery-item--j {
    grid-area: auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 0 !important;
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gallery-play {
    width: 44px;
    height: 44px;
  }

  .gallery-play svg {
    width: 16px;
    height: 16px;
  }

  .gallery-item figcaption strong {
    font-size: 0.7rem;
  }

  .gallery-item figcaption span {
    font-size: 0.65rem;
  }
}

/* ---- Companies ---- */
.companies {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--color-surface-2);
  overflow: hidden;
  width: 100%;
}

.companies-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 56px);
}

.companies-head .section-label {
  font-size: 0.88rem;
}

.companies-head .section-title {
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  margin-bottom: 0;
}

.companies-track {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: marquee 40s linear infinite;
  width: max-content;
  padding-inline: 16px;
}

.companies-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.company-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 100px;
  padding: 22px 32px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.company-pill img {
  display: block;
  width: auto;
  height: 52px;
  max-width: 220px;
  max-height: 52px;
  object-fit: contain;
}

.company-pill:hover {
  border-color: rgba(86, 114, 29, 0.28);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  transform: translateY(-3px);
}

@media (max-width: 640px) {
  .companies {
    padding: clamp(64px, 12vw, 88px) 0;
  }

  .company-pill {
    min-width: 150px;
    min-height: 78px;
    padding: 16px 20px;
    border-radius: 16px;
  }

  .company-pill img {
    height: 38px;
    max-width: 160px;
  }

  .companies-track {
    gap: 16px;
  }
}

/* ---- Process ---- */
.process {
  padding: var(--section-pad) 0;
}

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

.process-step {
  position: relative;
  padding: 36px 26px;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.process-step:hover {
  border-color: rgba(249, 93, 93, 0.45);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}

.process-number {
  width: 48px;
  height: 48px;
  background: var(--color-coral);
  color: #fff;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 22px;
  box-shadow: 0 8px 18px rgba(249, 93, 93, 0.28);
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.35;
}

.process-step p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---- Dark orbit counselling process ---- */
.process--orbit {
  --orbit-neon: #b6f500;
  --orbit-neon-soft: rgba(182, 245, 0, 0.35);
  --orbit-neon-glow: rgba(182, 245, 0, 0.45);
  --orbit-olive: #56721D;
  position: relative;
  overflow: visible;
  background:
    radial-gradient(ellipse 55% 45% at 85% 15%, rgba(182, 245, 0, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(182, 245, 0, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #050805 0%, #0a100a 50%, #070907 100%);
  padding-bottom: clamp(80px, 10vw, 120px);
  color: #f4f4f5;
}

.process-orbit-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.process-orbit-dots {
  position: absolute;
  inset: 8% 4%;
  background-image: radial-gradient(rgba(182, 245, 0, 0.14) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse at 80% 20%, #000 10%, transparent 70%);
}

.process-orbit-wave {
  position: absolute;
  left: 0;
  bottom: 8%;
  width: 42%;
  height: 28%;
  background:
    radial-gradient(ellipse at 30% 70%, transparent 40%, rgba(182, 245, 0, 0.06) 41%, transparent 42%),
    radial-gradient(ellipse at 50% 60%, transparent 45%, rgba(86, 114, 29, 0.12) 46%, transparent 48%);
}

.process--orbit > .container {
  position: relative;
  z-index: 1;
  max-width: min(1520px, 100%);
  padding-inline: clamp(12px, 2vw, 28px);
}

.process-orbit-head .section-label,
.process-orbit-head .section-title {
  color: #fff;
}

.process-orbit-head .section-desc {
  color: rgba(228, 228, 231, 0.7);
  margin-inline: auto;
}

.process-stack-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(36px, 5vw, 52px);
}

.process--orbit .process-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 18vh;
}

/* Optional slot wrappers (legacy) */
.process-orbit-slot {
  position: relative;
  min-height: 0;
  display: block;
  padding-bottom: 0;
}

.process-orbit-card {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  width: 100%;
  z-index: 1;
  border-radius: 28px;
  border: 1px solid rgba(182, 245, 0, 0.14);
  background: linear-gradient(160deg, rgba(18, 28, 16, 1) 0%, rgba(8, 12, 8, 1) 100%);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(182, 245, 0, 0.05);
  overflow: hidden;
  margin: 0 0 clamp(100px, 16vh, 180px);
  transform: none !important;
  filter: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.process--orbit .process-stack > .process-orbit-card:last-child {
  margin-bottom: 0;
}

/* Same sticky top for all cards — staggered tops cause scroll jumps */
.process--orbit .process-stack > .process-orbit-card:nth-child(1),
.process-orbit-slot:nth-child(1) .process-orbit-card { z-index: 1; }
.process--orbit .process-stack > .process-orbit-card:nth-child(2),
.process-orbit-slot:nth-child(2) .process-orbit-card { z-index: 2; }
.process--orbit .process-stack > .process-orbit-card:nth-child(3),
.process-orbit-slot:nth-child(3) .process-orbit-card { z-index: 3; }
.process--orbit .process-stack > .process-orbit-card:nth-child(4),
.process-orbit-slot:nth-child(4) .process-orbit-card { z-index: 4; }

/* Inner shell gets scale/dim stack effect (never transform the sticky card) */
.process-orbit-card > * {
  transform-origin: center top;
  backface-visibility: hidden;
}

.process-orbit-card.is-stacking {
  box-shadow:
    0 36px 72px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(182, 245, 0, 0.08);
}

.process-mobile-nav {
  display: none;
}

.process-orbit-body {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(28px, 3.5vw, 48px);
  min-height: min(560px, calc(100vh - var(--header-height) - 48px));
}

.process-orbit-step {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  margin-bottom: 20px;
  border-radius: 999px;
  border: 1px solid rgba(182, 245, 0, 0.55);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orbit-neon);
  background: rgba(182, 245, 0, 0.08);
  box-shadow: 0 0 18px rgba(182, 245, 0, 0.12);
}

.process-orbit-content h3 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 8px;
  color: #fff;
}

.process-orbit-content h3 span {
  color: var(--orbit-neon);
}

.process-orbit-content h3::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--orbit-neon);
  box-shadow: 0 0 16px rgba(182, 245, 0, 0.45);
}

.process-orbit-content > p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(228, 228, 231, 0.75);
  margin: 18px 0 26px;
  max-width: 520px;
}

.process-orbit-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
}

.process-orbit-features li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 16px 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.process-orbit-features li:hover {
  transform: translateY(-4px);
  background: rgba(182, 245, 0, 0.08);
  border-color: rgba(182, 245, 0, 0.35);
  box-shadow: 0 12px 28px rgba(182, 245, 0, 0.12);
}

.process-orbit-fic {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(182, 245, 0, 0.14);
  color: #b6f500;
  box-shadow: 0 0 18px rgba(182, 245, 0, 0.22);
  overflow: hidden;
  line-height: 0;
  flex-shrink: 0;
}

.process-orbit-fic svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px !important;
  height: 20px !important;
  transform: translate(-50%, -50%);
  display: block;
  stroke: #b6f500 !important;
}

.process-orbit-cta {
  background: #b6f500 !important;
  color: #0a0a0a !important;
  border: none !important;
  border-radius: 14px;
  box-shadow:
    0 0 24px rgba(182, 245, 0, 0.45),
    0 10px 28px rgba(182, 245, 0, 0.35);
  font-weight: 700;
}

.process-orbit-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 36px rgba(182, 245, 0, 0.55),
    0 16px 36px rgba(182, 245, 0, 0.45);
  background: #c8ff33 !important;
  color: #000 !important;
}

.process-orbit-visual {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.process-orbit-ring {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1.5px dashed rgba(182, 245, 0, 0.65);
  box-shadow: 0 0 40px rgba(182, 245, 0, 0.28);
  animation: processOrbitSpin 28s linear infinite;
}

.process-orbit-ring::before,
.process-orbit-ring::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orbit-neon);
  box-shadow: 0 0 12px rgba(182, 245, 0, 0.8);
}

.process-orbit-ring::before {
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.process-orbit-ring::after {
  bottom: 14%;
  right: 10%;
}

@keyframes processOrbitSpin {
  to { transform: rotate(360deg); }
}

.process-orbit-photo {
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(182, 245, 0, 0.65);
  box-shadow: 0 0 48px rgba(182, 245, 0, 0.28), 0 20px 50px rgba(0, 0, 0, 0.45);
}

.process-orbit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-orbit-card:hover .process-orbit-photo img {
  transform: scale(1.06);
}

.process-float-pill {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: min(180px, 46%);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(12, 18, 12, 0.88);
  border: 1px solid rgba(182, 245, 0, 0.28);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.process-float-pill i {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orbit-neon);
  box-shadow: 0 0 10px rgba(182, 245, 0, 0.7);
}

.process-float-pill:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(182, 245, 0, 0.65);
  background: rgba(24, 36, 18, 0.95);
  box-shadow: 0 14px 32px rgba(182, 245, 0, 0.18);
}

.process-float-pill--1 { top: 4%; left: 8%; }
.process-float-pill--2 { top: 18%; right: -2%; }
.process-float-pill--3 { top: 48%; left: -6%; }
.process-float-pill--4 { bottom: 18%; right: 0; }
.process-float-pill--5 { bottom: 6%; left: 14%; }

/* ---- Step 2 aptitude layout (blue theme) ---- */
.process-orbit-card--aptitude {
  --orbit-neon: #3b82f6;
  background:
    radial-gradient(ellipse 50% 60% at 88% 40%, rgba(59, 130, 246, 0.22) 0%, transparent 55%),
    linear-gradient(160deg, rgba(10, 16, 28, 0.98) 0%, rgba(8, 10, 16, 0.99) 100%);
  border-color: rgba(59, 130, 246, 0.22);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(59, 130, 246, 0.08);
}

.process-orbit-card--aptitude .process-orbit-step {
  border-color: rgba(59, 130, 246, 0.55);
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.1);
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.16);
}

.process-orbit-card--aptitude .process-aptitude-kicker span {
  color: #3b82f6;
}

.process-orbit-card--aptitude .process-aptitude-kicker::after {
  background: #3b82f6;
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.5);
}

.process-orbit-card--aptitude .process-orbit-cta {
  background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 55%, #2563eb 100%) !important;
  color: #fff !important;
  box-shadow:
    0 0 24px rgba(59, 130, 246, 0.45),
    0 10px 28px rgba(37, 99, 235, 0.4);
}

.process-orbit-card--aptitude .process-orbit-cta:hover {
  background: linear-gradient(180deg, #93c5fd 0%, #60a5fa 100%) !important;
  color: #0a0a0a !important;
  box-shadow:
    0 0 36px rgba(59, 130, 246, 0.55),
    0 16px 36px rgba(37, 99, 235, 0.45);
}

.process-aptitude-body {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  min-height: min(560px, 70vh);
}

.process-aptitude-kicker {
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 10px;
}

.process-aptitude-kicker span {
  color: var(--orbit-neon);
}

.process-aptitude-kicker::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--orbit-neon);
  box-shadow: 0 0 14px rgba(182, 245, 0, 0.45);
}

.process-aptitude-content h3 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 16px 0 12px;
  letter-spacing: -0.02em;
}

.process-aptitude-content > p {
  color: rgba(228, 228, 231, 0.72);
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0 0 24px;
  max-width: 480px;
}

.process-aptitude-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 26px;
}

.process-aptitude-icons li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
}

.process-aptitude-ic {
  position: relative;
  flex: none;
  width: 56px;
  height: 56px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 50%;
  background: rgba(10, 16, 12, 0.9);
  border: 1.5px solid rgba(182, 245, 0, 0.55);
  color: #b6f500;
  box-shadow:
    0 0 0 6px rgba(182, 245, 0, 0.06),
    0 0 26px rgba(182, 245, 0, 0.28);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.process-aptitude-ic svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px !important;
  height: 22px !important;
  max-width: 22px;
  max-height: 22px;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  display: block;
  flex: none;
  pointer-events: none;
  stroke: currentColor !important;
  color: inherit;
}

.process-aptitude-icons li:hover .process-aptitude-ic {
  background: rgba(182, 245, 0, 0.14);
  border-color: #b6f500;
  box-shadow:
    0 0 0 8px rgba(182, 245, 0, 0.1),
    0 0 34px rgba(182, 245, 0, 0.45);
}

/* Step 2 only — blue icons */
.process-orbit-card--aptitude .process-aptitude-ic {
  background: rgba(10, 14, 28, 0.92);
  border-color: rgba(59, 130, 246, 0.55);
  color: #60a5fa;
  box-shadow:
    0 0 0 6px rgba(59, 130, 246, 0.08),
    0 0 26px rgba(59, 130, 246, 0.32);
}

.process-orbit-card--aptitude .process-aptitude-icons li:hover .process-aptitude-ic {
  background: rgba(59, 130, 246, 0.16);
  border-color: #60a5fa;
  box-shadow:
    0 0 0 8px rgba(59, 130, 246, 0.12),
    0 0 34px rgba(59, 130, 246, 0.5);
}

.process-aptitude-visual {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.process-aptitude-stage {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.process-aptitude-rings {
  position: absolute;
  inset: 2%;
  border-radius: 50%;
  border: 2px solid rgba(59, 130, 246, 0.55);
  box-shadow:
    0 0 0 16px rgba(59, 130, 246, 0.08),
    0 0 0 32px rgba(59, 130, 246, 0.05),
    0 0 48px rgba(59, 130, 246, 0.35),
    inset 0 0 40px rgba(59, 130, 246, 0.1);
}

.process-aptitude-photo {
  inset: 14%;
  border-color: rgba(59, 130, 246, 0.75);
  box-shadow: 0 0 48px rgba(59, 130, 246, 0.35), 0 18px 40px rgba(0, 0, 0, 0.45);
}

.process-aptitude-float {
  position: absolute;
  z-index: 4;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.process-aptitude-float--list {
  top: 10%;
  left: -6%;
  width: min(180px, 52%);
  padding: 14px 14px 12px;
  background: rgba(255, 255, 255, 0.96);
  color: #1a2e1a;
}

.process-aptitude-float--list strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.process-aptitude-float--list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #3d4f3d;
  margin-bottom: 6px;
  line-height: 1.35;
}

.process-aptitude-float--list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: inset 0 0 0 2px #fff;
}

.process-aptitude-float--chart {
  right: 6%;
  bottom: 16%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(10, 14, 24, 0.9);
  border: 1px solid rgba(59, 130, 246, 0.35);
}

.process-aptitude-pie {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: conic-gradient(#3b82f6 0 38%, #60a5fa 38% 62%, #1e3a8a 62% 82%, #93c5fd 82% 100%);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.35);
}

.process-aptitude-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
}

.process-aptitude-bars i {
  display: block;
  width: 7px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #93c5fd, #2563eb);
}

.process-aptitude-bars i:nth-child(1) { height: 45%; }
.process-aptitude-bars i:nth-child(2) { height: 70%; }
.process-aptitude-bars i:nth-child(3) { height: 55%; }
.process-aptitude-bars i:nth-child(4) { height: 90%; }

.process-aptitude-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: min(210px, 100%);
}

.process-aptitude-side li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.process-aptitude-side li:hover {
  transform: translateX(-4px);
  background: rgba(59, 130, 246, 0.14);
  border-color: #60a5fa;
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.25);
}

.process-aptitude-side-ic {
  position: relative;
  flex: none;
  width: 34px;
  height: 34px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #60a5fa;
  overflow: hidden;
}

.process-aptitude-side-ic svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px !important;
  height: 16px !important;
  max-width: 16px;
  max-height: 16px;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  display: block;
  flex: none;
  pointer-events: none;
  stroke: currentColor !important;
  color: inherit;
}

/* Aptitude ambient motion */
.process-orbit-card--aptitude .process-aptitude-rings {
  animation: aptitudeRingPulse 3.2s ease-in-out infinite;
}

.process-orbit-card--aptitude .process-aptitude-rings::before,
.process-orbit-card--aptitude .process-aptitude-rings::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 14px rgba(96, 165, 250, 0.9);
  animation: aptitudeDotB 2.4s ease-in-out infinite;
}

.process-orbit-card--aptitude .process-aptitude-rings::before {
  top: 8%;
  left: 50%;
  margin-left: -5px;
}

.process-orbit-card--aptitude .process-aptitude-rings::after {
  bottom: 12%;
  right: 14%;
  animation-delay: 1.2s;
}

.process-orbit-card--aptitude .process-aptitude-float--list {
  animation: aptitudeFloatA 4.5s ease-in-out infinite;
}

.process-orbit-card--aptitude .process-aptitude-float--chart {
  animation: aptitudeFloatB 5s ease-in-out infinite;
}

.process-orbit-card--aptitude .process-aptitude-pie {
  animation: aptitudePieSpin 10s linear infinite;
}

.process-orbit-card--aptitude .process-aptitude-bars i {
  transform-origin: bottom center;
  animation: aptitudeBarPulse 2.4s ease-in-out infinite;
}

.process-orbit-card--aptitude .process-aptitude-bars i:nth-child(2) { animation-delay: 0.15s; }
.process-orbit-card--aptitude .process-aptitude-bars i:nth-child(3) { animation-delay: 0.3s; }
.process-orbit-card--aptitude .process-aptitude-bars i:nth-child(4) { animation-delay: 0.45s; }

.process-orbit-card--aptitude .process-aptitude-icons li .process-aptitude-ic {
  animation: aptitudeIconGlow 2.8s ease-in-out infinite;
}

.process-orbit-card--aptitude .process-aptitude-icons li:nth-child(2) .process-aptitude-ic { animation-delay: 0.2s; }
.process-orbit-card--aptitude .process-aptitude-icons li:nth-child(3) .process-aptitude-ic { animation-delay: 0.4s; }
.process-orbit-card--aptitude .process-aptitude-icons li:nth-child(4) .process-aptitude-ic { animation-delay: 0.6s; }

.process-orbit-card--aptitude .process-aptitude-side li {
  animation: aptitudeSideIdle 4s ease-in-out infinite;
}

.process-orbit-card--aptitude .process-aptitude-side li:nth-child(2) { animation-delay: 0.35s; }
.process-orbit-card--aptitude .process-aptitude-side li:nth-child(3) { animation-delay: 0.7s; }
.process-orbit-card--aptitude .process-aptitude-side li:nth-child(4) { animation-delay: 1.05s; }

.process-orbit-card--aptitude .process-orbit-cta {
  animation: aptitudeCtaGlow 2.6s ease-in-out infinite;
}

.process-orbit-card--aptitude .process-aptitude-side li:hover,
.process-orbit-card--aptitude .process-aptitude-icons li:hover .process-aptitude-ic,
.process-orbit-card--aptitude .process-orbit-cta:hover {
  animation-play-state: paused;
}

.process-orbit-card--aptitude .process-aptitude-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed rgba(96, 165, 250, 0.35);
  pointer-events: none;
  animation: aptitudePieSpin 28s linear infinite;
  z-index: 1;
}

@keyframes aptitudeRingPulse {
  0%, 100% {
    box-shadow:
      0 0 0 16px rgba(59, 130, 246, 0.08),
      0 0 0 32px rgba(59, 130, 246, 0.05),
      0 0 48px rgba(59, 130, 246, 0.35),
      inset 0 0 40px rgba(59, 130, 246, 0.1);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 0 18px rgba(59, 130, 246, 0.12),
      0 0 0 38px rgba(59, 130, 246, 0.07),
      0 0 64px rgba(59, 130, 246, 0.5),
      inset 0 0 48px rgba(59, 130, 246, 0.16);
    transform: scale(1.015);
  }
}

@keyframes aptitudeDotB {
  0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
  50% { transform: translateY(-6px) scale(1.15); opacity: 0.75; }
}

@keyframes aptitudeFloatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

@keyframes aptitudePieSpin {
  to { transform: rotate(360deg); }
}

@keyframes aptitudeBarPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.9; }
  50% { transform: scaleY(1.18); opacity: 1; }
}

@keyframes aptitudeIconGlow {
  0%, 100% {
    box-shadow:
      0 0 0 6px rgba(59, 130, 246, 0.08),
      0 0 26px rgba(59, 130, 246, 0.32);
  }
  50% {
    box-shadow:
      0 0 0 9px rgba(59, 130, 246, 0.14),
      0 0 36px rgba(59, 130, 246, 0.55);
  }
}

@keyframes aptitudeSideIdle {
  0%, 100% { transform: translateX(0); border-color: rgba(59, 130, 246, 0.35); }
  50% { transform: translateX(-3px); border-color: rgba(96, 165, 250, 0.55); }
}

@keyframes aptitudeCtaGlow {
  0%, 100% {
    box-shadow:
      0 0 24px rgba(59, 130, 246, 0.45),
      0 10px 28px rgba(37, 99, 235, 0.4);
  }
  50% {
    box-shadow:
      0 0 36px rgba(59, 130, 246, 0.65),
      0 14px 34px rgba(37, 99, 235, 0.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-orbit-card--aptitude .process-aptitude-rings,
  .process-orbit-card--aptitude .process-aptitude-rings::before,
  .process-orbit-card--aptitude .process-aptitude-rings::after,
  .process-orbit-card--aptitude .process-aptitude-stage::before,
  .process-orbit-card--aptitude .process-aptitude-float--list,
  .process-orbit-card--aptitude .process-aptitude-float--chart,
  .process-orbit-card--aptitude .process-aptitude-pie,
  .process-orbit-card--aptitude .process-aptitude-bars i,
  .process-orbit-card--aptitude .process-aptitude-icons li .process-aptitude-ic,
  .process-orbit-card--aptitude .process-aptitude-side li,
  .process-orbit-card--aptitude .process-orbit-cta {
    animation: none !important;
  }
}

@media (max-width: 1024px) {
  .process-aptitude-body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .process-aptitude-visual {
    grid-template-columns: 1fr;
    order: -1;
  }

  .process-aptitude-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .process-aptitude-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .process-aptitude-side {
    grid-template-columns: 1fr;
  }

  .process-aptitude-float--list {
    left: 0;
    top: 4%;
  }

  .process-aptitude-body {
    padding: 24px 18px 28px;
  }
}

/* ---- Step 3 recommend layout (purple theme) ---- */
.process-orbit-card--recommend {
  --orbit-neon: #a855f7;
  background:
    radial-gradient(ellipse 55% 55% at 82% 45%, rgba(168, 85, 247, 0.28) 0%, transparent 58%),
    linear-gradient(160deg, rgba(18, 12, 28, 0.98) 0%, rgba(10, 8, 16, 0.99) 100%);
  border-color: rgba(168, 85, 247, 0.22);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(168, 85, 247, 0.08);
}

.process-orbit-card--recommend .process-orbit-step {
  border-color: rgba(168, 85, 247, 0.55);
  color: #c084fc;
  background: rgba(168, 85, 247, 0.1);
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.16);
}

.process-orbit-card--recommend .process-aptitude-kicker span {
  color: #a855f7;
}

.process-orbit-card--recommend .process-aptitude-kicker::after {
  background: #a855f7;
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.5);
}

.process-orbit-card--recommend .process-orbit-cta {
  background: linear-gradient(180deg, #c084fc 0%, #a855f7 55%, #7c3aed 100%) !important;
  color: #fff !important;
  box-shadow:
    0 0 24px rgba(168, 85, 247, 0.45),
    0 10px 28px rgba(124, 58, 237, 0.4);
}

.process-orbit-card--recommend .process-orbit-cta:hover {
  background: linear-gradient(180deg, #e9d5ff 0%, #c084fc 100%) !important;
  color: #1a0a2e !important;
  box-shadow:
    0 0 36px rgba(168, 85, 247, 0.55),
    0 16px 36px rgba(124, 58, 237, 0.45);
}

.process-orbit-card--recommend .process-aptitude-ic {
  background: rgba(16, 10, 28, 0.92);
  border-color: rgba(168, 85, 247, 0.55);
  color: #c084fc;
  box-shadow:
    0 0 0 6px rgba(168, 85, 247, 0.08),
    0 0 26px rgba(168, 85, 247, 0.32);
}

.process-orbit-card--recommend .process-aptitude-icons li:hover .process-aptitude-ic {
  background: rgba(168, 85, 247, 0.16);
  border-color: #c084fc;
  box-shadow:
    0 0 0 8px rgba(168, 85, 247, 0.12),
    0 0 34px rgba(168, 85, 247, 0.5);
}

.process-recommend-body {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  min-height: min(560px, 70vh);
}

.process-recommend-content h3 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 16px 0 12px;
  letter-spacing: -0.02em;
}

.process-recommend-content > p {
  color: rgba(228, 228, 231, 0.72);
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0 0 24px;
  max-width: 500px;
}

.process-recommend-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.process-recommend-skip {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(168, 85, 247, 0.55);
  border-radius: 14px;
}

.process-recommend-skip:hover {
  background: rgba(168, 85, 247, 0.12);
  border-color: #c084fc;
  color: #fff;
  transform: translateY(-2px);
}

.process-recommend-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.process-recommend-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.process-recommend-dots span.is-active {
  width: 22px;
  border-radius: 999px;
  background: #a855f7;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.55);
}

.process-recommend-visual {
  position: relative;
}

.process-recommend-stage {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.process-recommend-rings {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  border: 2px solid rgba(168, 85, 247, 0.7);
  box-shadow:
    0 0 0 14px rgba(168, 85, 247, 0.08),
    0 0 48px rgba(168, 85, 247, 0.4),
    inset 0 0 30px rgba(168, 85, 247, 0.1);
}

.process-orbit-card--recommend {
  overflow: visible;
}

.process-recommend-visual,
.process-recommend-stage {
  overflow: visible;
}

.process-recommend-photo {
  inset: 20%;
  border-color: rgba(168, 85, 247, 0.55);
  box-shadow: 0 0 48px rgba(168, 85, 247, 0.32), 0 18px 40px rgba(0, 0, 0, 0.45);
}

.process-recommend-photo img {
  object-position: 50% 18%;
}

.process-recommend-float {
  position: absolute;
  z-index: 4;
  border-radius: 16px;
  background: rgba(18, 12, 28, 0.88);
  border: 1px solid rgba(168, 85, 247, 0.35);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.process-recommend-float:hover {
  transform: translateY(-3px);
  border-color: rgba(168, 85, 247, 0.65);
  box-shadow: 0 16px 36px rgba(168, 85, 247, 0.2);
}

.process-recommend-float--courses {
  top: 2%;
  left: -26%;
  right: auto;
  width: min(188px, 54%);
  padding: 14px;
  color: #fff;
}

.process-recommend-float--courses strong {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.process-recommend-float--courses li {
  position: relative;
  padding-left: 18px;
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 7px;
  line-height: 1.35;
}

.process-recommend-float--courses li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: #a855f7;
  box-shadow: inset 0 0 0 2px rgba(12, 8, 20, 0.9);
}

.process-recommend-float--demand {
  right: -18%;
  top: auto;
  bottom: 16%;
  width: min(168px, 46%);
  padding: 12px 14px;
  color: #c084fc;
}

.process-recommend-float--demand strong {
  display: block;
  color: #fff;
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.process-recommend-float--demand svg {
  width: 100%;
  height: 40px;
}

.process-recommend-float--growth {
  left: auto;
  right: -8%;
  bottom: auto;
  top: 8%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  border-radius: 999px;
}

.process-recommend-star {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a855f7;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.85);
  animation: recommendStarPulse 2s ease-in-out infinite;
}

/* Recommend ambient motion */
.process-orbit-card--recommend .process-recommend-rings {
  animation: recommendRingPulse 3.2s ease-in-out infinite;
}

.process-orbit-card--recommend .process-recommend-rings::before,
.process-orbit-card--recommend .process-recommend-rings::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c084fc;
  box-shadow: 0 0 14px rgba(192, 132, 252, 0.9);
  animation: aptitudeDotB 2.4s ease-in-out infinite;
}

.process-orbit-card--recommend .process-recommend-rings::before {
  top: 8%;
  left: 50%;
  margin-left: -5px;
}

.process-orbit-card--recommend .process-recommend-rings::after {
  bottom: 14%;
  right: 12%;
  animation-delay: 1.2s;
}

.process-orbit-card--recommend .process-recommend-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed rgba(192, 132, 252, 0.35);
  pointer-events: none;
  animation: aptitudePieSpin 28s linear infinite;
  z-index: 1;
}

.process-orbit-card--recommend .process-recommend-float--courses {
  animation: aptitudeFloatA 4.5s ease-in-out infinite;
}

.process-orbit-card--recommend .process-recommend-float--demand {
  animation: aptitudeFloatB 5s ease-in-out infinite;
}

.process-orbit-card--recommend .process-recommend-float--growth {
  animation: aptitudeFloatA 4.8s ease-in-out infinite 0.4s;
}

.process-orbit-card--recommend .process-recommend-icons li .process-aptitude-ic {
  animation: recommendIconGlow 2.8s ease-in-out infinite;
}

.process-orbit-card--recommend .process-recommend-icons li:nth-child(2) .process-aptitude-ic { animation-delay: 0.2s; }
.process-orbit-card--recommend .process-recommend-icons li:nth-child(3) .process-aptitude-ic { animation-delay: 0.4s; }
.process-orbit-card--recommend .process-recommend-icons li:nth-child(4) .process-aptitude-ic { animation-delay: 0.6s; }

.process-orbit-card--recommend .process-orbit-cta {
  animation: recommendCtaGlow 2.6s ease-in-out infinite;
}

.process-orbit-card--recommend .process-recommend-skip {
  animation: recommendSkipPulse 3s ease-in-out infinite;
}

.process-orbit-card--recommend .process-recommend-float:hover,
.process-orbit-card--recommend .process-recommend-icons li:hover .process-aptitude-ic,
.process-orbit-card--recommend .process-orbit-cta:hover,
.process-orbit-card--recommend .process-recommend-skip:hover {
  animation-play-state: paused;
}

@keyframes recommendRingPulse {
  0%, 100% {
    box-shadow:
      0 0 0 14px rgba(168, 85, 247, 0.08),
      0 0 48px rgba(168, 85, 247, 0.4),
      inset 0 0 30px rgba(168, 85, 247, 0.1);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 0 18px rgba(168, 85, 247, 0.14),
      0 0 64px rgba(168, 85, 247, 0.55),
      inset 0 0 40px rgba(168, 85, 247, 0.16);
    transform: scale(1.015);
  }
}

@keyframes recommendIconGlow {
  0%, 100% {
    box-shadow:
      0 0 0 6px rgba(168, 85, 247, 0.08),
      0 0 26px rgba(168, 85, 247, 0.32);
  }
  50% {
    box-shadow:
      0 0 0 9px rgba(168, 85, 247, 0.14),
      0 0 36px rgba(168, 85, 247, 0.55);
  }
}

@keyframes recommendCtaGlow {
  0%, 100% {
    box-shadow:
      0 0 24px rgba(168, 85, 247, 0.45),
      0 10px 28px rgba(124, 58, 237, 0.4);
  }
  50% {
    box-shadow:
      0 0 36px rgba(168, 85, 247, 0.65),
      0 14px 34px rgba(124, 58, 237, 0.5);
  }
}

@keyframes recommendSkipPulse {
  0%, 100% { border-color: rgba(255, 255, 255, 0.35); }
  50% { border-color: rgba(192, 132, 252, 0.7); }
}

@keyframes recommendStarPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(168, 85, 247, 0.85); transform: scale(1); }
  50% { box-shadow: 0 0 18px rgba(192, 132, 252, 1); transform: scale(1.2); }
}

@media (max-width: 1024px) {
  .process-recommend-body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .process-recommend-visual {
    order: -1;
  }

  .process-recommend-float--courses {
    left: 0;
    right: auto;
    top: 0;
  }

  .process-recommend-float--demand {
    right: 0;
    bottom: 10%;
  }

  .process-recommend-float--growth {
    right: 0;
    top: auto;
    bottom: 0;
  }
}

@media (max-width: 768px) {
  .process-recommend-body {
    padding: 24px 18px 28px;
  }

  .process-recommend-float--demand {
    display: none;
  }
}

/* ---- Step 4 beyond layout (orange theme) ---- */
.process-orbit-card--beyond {
  --orbit-neon: #f97316;
  background:
    radial-gradient(ellipse 50% 55% at 85% 42%, rgba(249, 115, 22, 0.26) 0%, transparent 58%),
    linear-gradient(160deg, rgba(24, 14, 8, 0.98) 0%, rgba(12, 10, 8, 0.99) 100%);
  border-color: rgba(249, 115, 22, 0.22);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(249, 115, 22, 0.08);
}

.process-orbit-card--beyond .process-orbit-step {
  border-color: rgba(249, 115, 22, 0.55);
  color: #fb923c;
  background: rgba(249, 115, 22, 0.1);
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.16);
}

.process-orbit-card--beyond .process-aptitude-kicker span {
  color: #f97316;
}

.process-orbit-card--beyond .process-aptitude-kicker::after {
  background: #f97316;
  box-shadow: 0 0 14px rgba(249, 115, 22, 0.5);
}

.process-orbit-card--beyond .process-orbit-cta {
  background: linear-gradient(180deg, #fb923c 0%, #f97316 55%, #ea580c 100%) !important;
  color: #fff !important;
  box-shadow:
    0 0 24px rgba(249, 115, 22, 0.45),
    0 10px 28px rgba(234, 88, 12, 0.4);
}

.process-orbit-card--beyond .process-orbit-cta:hover {
  background: linear-gradient(180deg, #fdba74 0%, #fb923c 100%) !important;
  color: #1a0a00 !important;
  box-shadow:
    0 0 36px rgba(249, 115, 22, 0.55),
    0 16px 36px rgba(234, 88, 12, 0.45);
}

.process-orbit-card--beyond .process-recommend-skip {
  border-color: rgba(249, 115, 22, 0.55);
}

.process-orbit-card--beyond .process-recommend-skip:hover {
  background: rgba(249, 115, 22, 0.12);
  border-color: #fb923c;
}

.process-orbit-card--beyond .process-aptitude-ic {
  background: rgba(24, 12, 6, 0.92);
  border-color: rgba(249, 115, 22, 0.55);
  color: #fb923c;
  box-shadow:
    0 0 0 6px rgba(249, 115, 22, 0.08),
    0 0 26px rgba(249, 115, 22, 0.32);
}

.process-orbit-card--beyond .process-aptitude-icons li:hover .process-aptitude-ic {
  background: rgba(249, 115, 22, 0.16);
  border-color: #fb923c;
  box-shadow:
    0 0 0 8px rgba(249, 115, 22, 0.12),
    0 0 34px rgba(249, 115, 22, 0.5);
}

.process-orbit-card--beyond .process-aptitude-side li {
  background: rgba(249, 115, 22, 0.06);
  border-color: rgba(249, 115, 22, 0.35);
}

.process-orbit-card--beyond .process-aptitude-side li:hover {
  background: rgba(249, 115, 22, 0.14);
  border-color: #fb923c;
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.25);
}

.process-orbit-card--beyond .process-aptitude-side-ic {
  background: rgba(249, 115, 22, 0.14);
  border-color: rgba(249, 115, 22, 0.4);
  color: #fb923c;
}

.process-beyond-body {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  min-height: min(560px, 70vh);
}

.process-beyond-content h3 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 16px 0 12px;
  letter-spacing: -0.02em;
}

.process-beyond-content > p {
  color: rgba(228, 228, 231, 0.72);
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0 0 24px;
  max-width: 500px;
}

.process-beyond-visual {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.process-beyond-stage {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.process-beyond-rings {
  position: absolute;
  inset: 2%;
  border-radius: 50%;
  border: 2px solid rgba(249, 115, 22, 0.7);
  box-shadow:
    0 0 0 16px rgba(249, 115, 22, 0.08),
    0 0 0 32px rgba(249, 115, 22, 0.05),
    0 0 48px rgba(249, 115, 22, 0.4),
    inset 0 0 28px rgba(249, 115, 22, 0.1);
}

.process-beyond-rings::before,
.process-beyond-rings::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f97316;
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.85);
}

.process-beyond-rings::before {
  top: 10%;
  left: 18%;
  animation: aptitudeDotB 2.4s ease-in-out infinite;
}

.process-beyond-rings::after {
  bottom: 16%;
  right: 12%;
  animation: aptitudeDotB 2.4s ease-in-out infinite 1.2s;
}

.process-beyond-photo {
  inset: 14%;
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: 0 0 48px rgba(249, 115, 22, 0.32), 0 18px 40px rgba(0, 0, 0, 0.45);
}

.process-beyond-side li:hover {
  transform: translateX(-4px);
}

/* Beyond ambient motion */
.process-orbit-card--beyond .process-beyond-rings {
  animation: beyondRingPulse 3.2s ease-in-out infinite;
}

.process-orbit-card--beyond .process-beyond-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed rgba(251, 146, 60, 0.4);
  pointer-events: none;
  animation: aptitudePieSpin 28s linear infinite;
  z-index: 1;
}

.process-orbit-card--beyond .process-beyond-icons li .process-aptitude-ic {
  animation: beyondIconGlow 2.8s ease-in-out infinite;
}

.process-orbit-card--beyond .process-beyond-icons li:nth-child(2) .process-aptitude-ic { animation-delay: 0.2s; }
.process-orbit-card--beyond .process-beyond-icons li:nth-child(3) .process-aptitude-ic { animation-delay: 0.4s; }
.process-orbit-card--beyond .process-beyond-icons li:nth-child(4) .process-aptitude-ic { animation-delay: 0.6s; }

.process-orbit-card--beyond .process-beyond-side li {
  animation: beyondSideIdle 4s ease-in-out infinite;
}

.process-orbit-card--beyond .process-beyond-side li:nth-child(2) { animation-delay: 0.35s; }
.process-orbit-card--beyond .process-beyond-side li:nth-child(3) { animation-delay: 0.7s; }
.process-orbit-card--beyond .process-beyond-side li:nth-child(4) { animation-delay: 1.05s; }

.process-orbit-card--beyond .process-orbit-cta {
  animation: beyondCtaGlow 2.6s ease-in-out infinite;
}

.process-orbit-card--beyond .process-recommend-skip {
  animation: beyondSkipPulse 3s ease-in-out infinite;
}

.process-orbit-card--beyond .process-beyond-side li:hover,
.process-orbit-card--beyond .process-beyond-icons li:hover .process-aptitude-ic,
.process-orbit-card--beyond .process-orbit-cta:hover,
.process-orbit-card--beyond .process-recommend-skip:hover {
  animation-play-state: paused;
}

@keyframes beyondRingPulse {
  0%, 100% {
    box-shadow:
      0 0 0 16px rgba(249, 115, 22, 0.08),
      0 0 0 32px rgba(249, 115, 22, 0.05),
      0 0 48px rgba(249, 115, 22, 0.4),
      inset 0 0 28px rgba(249, 115, 22, 0.1);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 0 18px rgba(249, 115, 22, 0.14),
      0 0 0 38px rgba(249, 115, 22, 0.08),
      0 0 64px rgba(249, 115, 22, 0.55),
      inset 0 0 40px rgba(249, 115, 22, 0.16);
    transform: scale(1.015);
  }
}

@keyframes beyondIconGlow {
  0%, 100% {
    box-shadow:
      0 0 0 6px rgba(249, 115, 22, 0.08),
      0 0 26px rgba(249, 115, 22, 0.32);
  }
  50% {
    box-shadow:
      0 0 0 9px rgba(249, 115, 22, 0.14),
      0 0 36px rgba(249, 115, 22, 0.55);
  }
}

@keyframes beyondSideIdle {
  0%, 100% { transform: translateX(0); border-color: rgba(249, 115, 22, 0.35); }
  50% { transform: translateX(-3px); border-color: rgba(251, 146, 60, 0.6); }
}

@keyframes beyondCtaGlow {
  0%, 100% {
    box-shadow:
      0 0 24px rgba(249, 115, 22, 0.45),
      0 10px 28px rgba(234, 88, 12, 0.4);
  }
  50% {
    box-shadow:
      0 0 36px rgba(249, 115, 22, 0.65),
      0 14px 34px rgba(234, 88, 12, 0.5);
  }
}

@keyframes beyondSkipPulse {
  0%, 100% { border-color: rgba(255, 255, 255, 0.35); }
  50% { border-color: rgba(251, 146, 60, 0.7); }
}

@media (max-width: 1024px) {
  .process-beyond-body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .process-beyond-visual {
    grid-template-columns: 1fr;
    order: -1;
  }

  .process-beyond-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .process-beyond-body {
    padding: 24px 18px 28px;
  }

  .process-beyond-side {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-orbit-ring,
  .process-orbit-card--recommend .process-recommend-rings,
  .process-orbit-card--recommend .process-recommend-rings::before,
  .process-orbit-card--recommend .process-recommend-rings::after,
  .process-orbit-card--recommend .process-recommend-stage::before,
  .process-orbit-card--recommend .process-recommend-float--courses,
  .process-orbit-card--recommend .process-recommend-float--demand,
  .process-orbit-card--recommend .process-recommend-float--growth,
  .process-orbit-card--recommend .process-recommend-icons li .process-aptitude-ic,
  .process-orbit-card--recommend .process-orbit-cta,
  .process-orbit-card--recommend .process-recommend-skip,
  .process-recommend-star,
  .process-orbit-card--beyond .process-beyond-rings,
  .process-beyond-rings::before,
  .process-beyond-rings::after,
  .process-orbit-card--beyond .process-beyond-stage::before,
  .process-orbit-card--beyond .process-beyond-icons li .process-aptitude-ic,
  .process-orbit-card--beyond .process-beyond-side li,
  .process-orbit-card--beyond .process-orbit-cta,
  .process-orbit-card--beyond .process-recommend-skip {
    animation: none !important;
  }
}

@media (max-width: 1024px) {
  .process-orbit-body {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 28px 22px 36px;
  }

  .process-orbit-visual {
    order: -1;
    width: min(100%, 360px);
  }

  .process-orbit-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-orbit-content h3 {
    font-size: clamp(1.55rem, 4vw, 2.1rem);
  }
}

@media (max-width: 768px) {
  .process-orbit-slot {
    min-height: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .process-orbit-features {
    grid-template-columns: 1fr 1fr;
  }

  .process-float-pill {
    font-size: 0.7rem;
    padding: 8px 10px;
    max-width: 42%;
  }

  .process-float-pill--2,
  .process-float-pill--3 {
    display: none;
  }
}

/* ---- Our Programs (neon theme) ---- */
.courses--neon {
  --course-neon: #b6f500;
  position: relative;
  overflow: hidden;
  padding: var(--section-pad) 0;
  color: #f4f4f5;
  background:
    radial-gradient(ellipse 50% 40% at 10% 20%, rgba(86, 114, 29, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 90% 80%, rgba(182, 245, 0, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #070907 0%, #0b120b 50%, #050805 100%);
}

.courses-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.courses-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.courses-glow--1 {
  width: min(420px, 50vw);
  height: min(420px, 50vw);
  top: -8%;
  right: -4%;
  background: rgba(86, 114, 29, 0.45);
}

.courses-glow--2 {
  width: min(360px, 45vw);
  height: min(360px, 45vw);
  bottom: 5%;
  left: -6%;
  background: rgba(182, 245, 0, 0.12);
}

.courses-dots {
  position: absolute;
  inset: 6% 4%;
  background-image: radial-gradient(rgba(182, 245, 0, 0.14) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 75%);
}

.courses--neon > .container {
  position: relative;
  z-index: 1;
}

.courses-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.courses-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(182, 245, 0, 0.3);
  background: rgba(182, 245, 0, 0.06);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d4f56a;
}

.courses-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 14px;
}

.courses-title span {
  color: #6ea00f;
}

.courses-desc {
  margin: 0 auto;
  max-width: 520px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(228, 228, 231, 0.68);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}

@media (min-width: 1101px) {
  .courses--neon .courses-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.course-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.course-card--neon {
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, rgba(18, 28, 16, 0.98) 0%, rgba(8, 12, 8, 1) 100%);
  border: 1px solid rgba(182, 245, 0, 0.12);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.4);
  border-radius: 24px;
}

.course-card:hover,
.course-card--neon:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(182, 245, 0, 0.18);
  border-color: rgba(182, 245, 0, 0.28);
}

.course-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.course-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5, 8, 5, 0.85) 100%);
  pointer-events: none;
}

.course-card img,
.course-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.course-card:hover img,
.course-card--neon:hover .course-card-media img {
  transform: scale(1.06);
}

.course-card-num {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #0a0a0a;
  background: var(--course-neon);
  padding: 5px 10px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(182, 245, 0, 0.35);
}

.course-card-ic {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(182, 245, 0, 0.35);
  background: rgba(8, 12, 8, 0.72);
  color: var(--course-neon);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.course-card-ic svg {
  width: 20px;
  height: 20px;
}

.course-card-body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.course-card--neon .course-card-body h3 {
  font-size: 1.12rem;
  font-weight: 750;
  margin-bottom: 10px;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.02em;
}

.course-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}

.course-card--neon .course-card-body p {
  font-size: 0.9rem;
  color: rgba(228, 228, 231, 0.68);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.course-card-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.course-card-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.course-card-links a {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  border-radius: var(--radius-full);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}

.course-card--neon .course-card-links a {
  background: rgba(182, 245, 0, 0.08);
  color: #d4f56a;
  border: 1px solid rgba(182, 245, 0, 0.22);
  border-radius: 10px;
}

.course-card-links a:hover {
  background: var(--color-coral);
  color: #fff;
  transform: translateY(-1px);
}

.course-card--neon .course-card-links a:hover {
  background: var(--course-neon);
  color: #0a0a0a;
  border-color: var(--course-neon);
  box-shadow: 0 8px 18px rgba(182, 245, 0, 0.28);
}

@media (max-width: 1100px) {
  .courses--neon .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .courses--neon .courses-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 36px;
  }

  .course-card--neon .course-card-body {
    padding: 14px 12px 16px;
  }
}

/* ---- Counselling split ---- */
.counselling-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 52px;
  align-items: center;
  margin-top: 52px;
}

.counselling-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid rgba(255, 255, 255, 0.95);
}

.counselling-split .process-grid {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.counselling-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.counselling-image:hover img {
  transform: scale(1.03);
}

/* ---- Why Us ---- */
.why-us {
  padding: var(--section-pad) 0;
  background: var(--color-surface-2);
}

.why-us--v2 {
  position: relative;
  overflow: hidden;
  background: var(--color-surface-2);
}

.why-us--v2 .why-us-bg {
  display: none;
}

.why-us-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.why-us-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.65;
}

.why-us-glow--1 {
  width: min(460px, 58vw);
  height: min(460px, 58vw);
  top: -12%;
  right: -6%;
  background: rgba(182, 245, 0, 0.32);
}

.why-us-glow--2 {
  width: min(360px, 48vw);
  height: min(360px, 48vw);
  bottom: 4%;
  left: -8%;
  background: rgba(86, 114, 29, 0.16);
}

.why-us-glow--3 {
  width: min(280px, 40vw);
  height: min(280px, 40vw);
  top: 42%;
  right: 18%;
  background: rgba(139, 92, 246, 0.08);
  opacity: 0.5;
}

.why-us-dots {
  position: absolute;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(rgba(86, 114, 29, 0.2) 1.2px, transparent 1.3px);
  background-size: 14px 14px;
  opacity: 0.55;
}

.why-us-dots--1 {
  top: 14%;
  right: 6%;
}

.why-us-dots--2 {
  bottom: 22%;
  left: 4%;
}

.why-us-line {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(86, 114, 29, 0.14), transparent);
  height: 1px;
}

.why-us-line--1 {
  width: min(280px, 40vw);
  top: 28%;
  left: 12%;
  transform: rotate(-8deg);
}

.why-us-line--2 {
  width: min(220px, 32vw);
  bottom: 36%;
  right: 10%;
  transform: rotate(12deg);
}

.why-us--v2 > .container {
  position: relative;
  z-index: 1;
}

.why-us-head {
  max-width: 740px;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.why-us-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8fa84a;
  margin-bottom: 16px;
}

.why-us-label::before {
  content: "";
  width: 36px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #b6f500, #56721D);
}

.why-us-title {
  font-size: clamp(1.7rem, 3.5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #141814;
  margin: 0 0 10px;
}

.why-us-title span {
  color: #6ea00f;
}

.why-us-quote {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 1.06rem;
  font-style: normal;
  font-weight: 500;
  color: #66705f;
  line-height: 1.35;
  padding: 0;
  border: 0;
}

.why-us-quote-bar {
  flex: none;
  width: 3px;
  height: 1em;
  border-radius: 3px;
  background: #b6f500;
}

.why-us-quote strong {
  color: #9fd600;
  font-weight: 700;
}

.why-us--v2 .why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  justify-items: stretch;
}

.why-us--v2 .why-card {
  position: relative;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  padding: 20px 18px 18px;
  background:
    radial-gradient(ellipse 70% 55% at 12% 18%, var(--why-accent-glow) 0%, transparent 60%),
    #fff;
  border: 1px solid rgba(20, 24, 20, 0.06);
  border-radius: 22px;
  box-shadow:
    0 10px 26px rgba(20, 24, 20, 0.04),
    0 2px 6px rgba(20, 24, 20, 0.025);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  --why-accent: #6ea00f;
  --why-accent-soft: rgba(110, 160, 15, 0.14);
  --why-accent-ring: rgba(110, 160, 15, 0.3);
  --why-accent-glow: rgba(110, 160, 15, 0.1);
}

.why-us--v2 .why-card::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 64px;
  height: 64px;
  background-image: radial-gradient(var(--why-accent-ring) 1px, transparent 1.2px);
  background-size: 9px 9px;
  opacity: 0.35;
  pointer-events: none;
}

/* Same width as 01–03, centered under the top row */
.why-us--v2 .why-card--04 {
  grid-column: 2 / span 2;
}

.why-us--v2 .why-card--05 {
  grid-column: 4 / span 2;
}

/* Distinct accent per card (must beat .why-us--v2 .why-card specificity) */
.why-us--v2 .why-card--01 {
  --why-accent: #6ea00f;
  --why-accent-soft: rgba(110, 160, 15, 0.16);
  --why-accent-ring: rgba(110, 160, 15, 0.32);
  --why-accent-glow: rgba(182, 245, 0, 0.14);
}

.why-us--v2 .why-card--02 {
  --why-accent: #0d9488;
  --why-accent-soft: rgba(13, 148, 136, 0.14);
  --why-accent-ring: rgba(13, 148, 136, 0.3);
  --why-accent-glow: rgba(34, 211, 238, 0.12);
}

.why-us--v2 .why-card--03 {
  --why-accent: #9aa33a;
  --why-accent-soft: rgba(154, 163, 58, 0.16);
  --why-accent-ring: rgba(154, 163, 58, 0.32);
  --why-accent-glow: rgba(200, 210, 70, 0.14);
}

.why-us--v2 .why-card--04 {
  --why-accent: #3b82f6;
  --why-accent-soft: rgba(59, 130, 246, 0.14);
  --why-accent-ring: rgba(59, 130, 246, 0.3);
  --why-accent-glow: rgba(96, 165, 250, 0.14);
}

.why-us--v2 .why-card--05 {
  --why-accent: #8b5cf6;
  --why-accent-soft: rgba(139, 92, 246, 0.14);
  --why-accent-ring: rgba(139, 92, 246, 0.3);
  --why-accent-glow: rgba(167, 139, 250, 0.14);
}

.why-us--v2 .why-card:hover {
  transform: translateY(-8px);
  border-color: var(--why-accent-ring);
  box-shadow:
    0 24px 48px rgba(20, 24, 20, 0.08),
    0 0 0 1px var(--why-accent-ring);
}

.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.why-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 28px;
  padding: 0 8px;
  border-radius: 8px;
  border: 1px solid var(--why-accent-ring);
  background: var(--why-accent-soft);
  color: var(--why-accent);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.why-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--why-accent-ring);
  color: var(--why-accent);
  background: var(--why-accent-soft);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.why-card-arrow svg {
  width: 16px;
  height: 16px;
}

.why-card-arrow:hover,
.why-us--v2 .why-card:hover .why-card-arrow {
  background: var(--why-accent);
  border-color: var(--why-accent);
  color: #fff;
  transform: translateY(-1px);
}

.why-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: var(--why-accent-soft);
  color: var(--why-accent);
  border: 1.5px solid var(--why-accent-ring);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.92);
}

.why-card-icon svg {
  width: 24px;
  height: 24px;
}

.why-us--v2 .why-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.02rem;
  font-weight: 800;
  color: #141814;
  margin: 0 0 10px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.why-us--v2 .why-card p {
  position: relative;
  z-index: 1;
  flex: 1;
  font-size: 0.86rem;
  color: #6a7363;
  line-height: 1.6;
  margin: 0 0 14px;
}

.why-card-more {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--why-accent);
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}

.why-card-more:hover {
  gap: 12px;
  color: var(--why-accent);
}

.why-features {
  list-style: none;
  margin: clamp(40px, 5vw, 56px) 0 0;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px 16px;
  border-radius: 24px;
  background: linear-gradient(135deg, #121612 0%, #1c221a 55%, #151a15 100%);
  box-shadow: 0 22px 48px rgba(18, 22, 18, 0.28);
}

.why-features li,
.why-features a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f4f6f1;
  text-decoration: none;
  min-width: 0;
}

.why-features a:hover {
  color: #b6f500;
}

.why-feat-ic {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border: 1.5px solid currentColor;
  background: rgba(255, 255, 255, 0.03);
}

.why-feat-ic svg {
  width: 18px;
  height: 18px;
  display: block;
  flex: none;
}

.why-feat-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.why-feat-text strong {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.why-feat-text small {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(228, 228, 231, 0.62);
}

.why-feat-ic--lime { color: #b6f500; box-shadow: 0 0 0 4px rgba(182, 245, 0, 0.12); }
.why-feat-ic--cyan { color: #22d3ee; box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12); }
.why-feat-ic--violet { color: #c084fc; box-shadow: 0 0 0 4px rgba(192, 132, 252, 0.12); }
.why-feat-ic--amber { color: #f59e0b; box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12); }
.why-feat-ic--green { color: #86efac; box-shadow: 0 0 0 4px rgba(134, 239, 172, 0.12); }

/* legacy tags kept for other pages if referenced */
.why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}

.why-tag {
  padding: 11px 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.why-tag:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(86, 114, 29, 0.3);
}

@media (max-width: 1100px) {
  .why-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .why-us--v2 .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .why-us--v2 .why-card,
  .why-us--v2 .why-card--03,
  .why-us--v2 .why-card--04,
  .why-us--v2 .why-card--05 {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }

  .why-us--v2 .why-card--05 {
    grid-column: 1 / -1;
  }

  .why-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .why-us--v2 .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .why-features {
    padding: 20px 16px;
    grid-template-columns: 1fr;
  }

  .why-features li,
  .why-features a {
    white-space: normal;
  }
}

/* ---- Testimonials ---- */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--color-surface-2);
}

.testimonials--dark {
  --tm-neon: #b6f500;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 40% at 15% 20%, rgba(182, 245, 0, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 90% 70%, rgba(86, 114, 29, 0.2) 0%, transparent 50%),
    linear-gradient(180deg, #070907 0%, #0c100c 50%, #080a08 100%);
  color: #f4f4f5;
}

.tm-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.tm-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
}

.tm-glow-1 {
  width: 320px;
  height: 320px;
  top: -80px;
  left: 8%;
  background: rgba(182, 245, 0, 0.12);
}

.tm-glow-2 {
  width: 280px;
  height: 280px;
  bottom: 10%;
  right: 5%;
  background: rgba(86, 114, 29, 0.28);
}

.tm-dots {
  position: absolute;
  inset: 12% 4%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.tm-big-quote {
  position: absolute;
  top: 6%;
  left: 6%;
  font-size: clamp(6rem, 14vw, 11rem);
  line-height: 0.8;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  user-select: none;
}

.testimonials--dark > .container {
  position: relative;
  z-index: 1;
}

.tm-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.tm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(182, 245, 0, 0.35);
  background: rgba(182, 245, 0, 0.08);
  color: #d4f56a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tm-badge svg {
  width: 14px;
  height: 14px;
}

.testimonials--dark .section-title {
  color: #fff;
  margin-bottom: 14px;
}

.tm-accent {
  color: var(--tm-neon);
}

.tm-sub {
  color: rgba(228, 228, 231, 0.7);
  font-size: 1.02rem;
  line-height: 1.7;
}

.tm-sub span {
  color: var(--tm-neon);
  font-weight: 600;
}

.testimonial-slider {
  position: relative;
  margin-top: 52px;
  padding-inline: 56px;
}

.tm-side-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(182, 245, 0, 0.45);
  background: rgba(12, 14, 12, 0.92);
  color: #b6f500;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.tm-side-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}

.tm-side-btn--prev {
  left: 0;
}

.tm-side-btn--next {
  right: 0;
}

.tm-side-btn:hover {
  background: #b6f500;
  color: #0a0a0a;
  border-color: #b6f500;
  box-shadow: 0 10px 28px rgba(182, 245, 0, 0.3);
  transform: translateY(-50%) scale(1.05);
}

.tm-side-btn:active {
  transform: translateY(-50%) scale(0.96);
}

@media (max-width: 768px) {
  .testimonial-slider {
    padding-inline: 42px;
  }

  .tm-side-btn {
    width: 40px;
    height: 40px;
  }

  .tm-side-btn svg {
    width: 18px;
    height: 18px;
  }
}

.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 18px 4px 12px;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  position: relative;
  flex: 0 0 min(380px, 85vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.testimonials--dark .testimonial-card {
  background: rgba(18, 22, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  padding: 28px 24px 20px;
  min-height: 420px;
}

.testimonials--dark .testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 22px 0 0;
  border-color: var(--tm-neon) transparent transparent transparent;
  opacity: 0.85;
  margin: 0;
  display: block;
}

.testimonials--dark .testimonial-card:hover {
  border-color: rgba(182, 245, 0, 0.28);
  box-shadow: 0 20px 48px rgba(182, 245, 0, 0.1);
}

.testimonial-card--featured {
  border-color: rgba(182, 245, 0, 0.65) !important;
  box-shadow:
    0 0 0 1px rgba(182, 245, 0, 0.25),
    0 0 36px rgba(182, 245, 0, 0.18),
    0 20px 48px rgba(0, 0, 0, 0.4) !important;
}

.testimonial-card--featured::before {
  display: none !important;
}

.tm-featured-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 12px;
  border-radius: 999px;
  background: #fbbf24;
  color: #1a1200;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(251, 191, 36, 0.35);
}

.tm-card-quote {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--tm-neon);
  opacity: 0.7;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.testimonial-card::before {
  content: "\201C";
  font-size: 3rem;
  line-height: 1;
  color: var(--color-coral);
  opacity: 0.35;
  display: block;
  margin-bottom: -8px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testimonials--dark .testimonial-author {
  align-items: flex-start;
  padding-right: 28px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-coral);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex: none;
}

.testimonials--dark .testimonial-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, #6b8f2e, #3d5214);
  border: 2px solid rgba(182, 245, 0, 0.35);
}

.tm-meta h4,
.testimonial-author h4 {
  font-weight: 700;
  font-size: 1rem;
}

.testimonials--dark .tm-meta h4 {
  color: #fff;
  margin-bottom: 2px;
}

.tm-course {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--tm-neon);
  margin-bottom: 4px;
}

.tm-stars {
  color: #fbbf24;
  font-size: 0.78rem;
  letter-spacing: 1px;
  line-height: 1;
}

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.testimonials--dark .testimonial-card > p {
  color: rgba(228, 228, 231, 0.78);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 18px;
}

.tm-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tm-place,
.tm-role {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tm-place-ic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(182, 245, 0, 0.14);
  color: var(--tm-neon);
  flex: none;
}

.tm-place-ic svg {
  width: 15px;
  height: 15px;
}

.tm-place small,
.tm-role small {
  display: block;
  font-size: 0.68rem;
  color: rgba(228, 228, 231, 0.5);
  margin-bottom: 2px;
}

.tm-place strong,
.tm-role strong {
  display: block;
  font-size: 0.84rem;
  color: #fff;
  line-height: 1.25;
}

.tm-role {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  text-align: right;
}

.tm-role strong {
  color: var(--tm-neon);
}

.slider-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  font-size: 1.2rem;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.testimonials--dark .slider-btn {
  background: transparent;
  border-color: rgba(182, 245, 0, 0.4);
  color: #fff;
  box-shadow: none;
}

.testimonials--dark .slider-btn--primary,
.testimonials--dark .slider-btn:hover {
  background: var(--tm-neon);
  color: #0a0a0a;
  border-color: var(--tm-neon);
  box-shadow: 0 8px 22px rgba(182, 245, 0, 0.3);
  transform: translateY(-2px);
}

.slider-btn:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(86, 114, 29, 0.28);
}

.tm-dots-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.tm-dots-nav span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transition: background var(--transition), width var(--transition);
}

.tm-dots-nav span.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--tm-neon);
}

/* ---- Blogs ---- */
.blogs {
  padding: var(--section-pad) 0;
}

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

.blog-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(86, 114, 29, 0.22);
}

.blog-thumb {
  height: 180px;
  background: var(--color-primary-light);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.blog-category {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
}

.blog-body {
  padding: 26px 24px 28px;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.blog-body h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-body p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-link:hover {
  gap: 10px;
}

/* ---- Home blogs (dark mockup) ---- */
.home-blogs {
  --hb-neon: #b6f500;
  --hb-ink: #f4f4f5;
  --hb-muted: rgba(228, 228, 231, 0.62);
  --hb-card: #141414;
  --hb-border: rgba(255, 255, 255, 0.08);
  position: relative;
  padding: clamp(56px, 8vw, 100px) 0;
  background: #0a0a0a;
  overflow: hidden;
}

.home-blogs-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px 40px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.home-blogs-copy {
  max-width: 640px;
}

.home-blogs-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hb-neon);
}

.home-blogs-kicker svg {
  width: 16px;
  height: 16px;
}

.home-blogs-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
}

.home-blogs .home-blogs-copy h2 {
  color: #fff;
}

.home-blogs-mark {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  color: var(--hb-neon);
}

.home-blogs-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18em;
  width: 100%;
  height: 0.32em;
  color: var(--hb-neon);
  pointer-events: none;
}

.home-blogs-copy p {
  margin: 0;
  max-width: 48ch;
  color: var(--hb-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.home-blogs-cta-wrap {
  position: relative;
  flex: 0 0 auto;
  padding-top: 8px;
}

.home-blogs-scribble {
  display: none;
}

.home-blogs-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  background: transparent;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, gap 0.25s ease;
}

.home-blogs-cta-arrow {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: block;
  transition: transform 0.25s ease;
}

.home-blogs-cta:hover {
  background: var(--hb-neon);
  border-color: var(--hb-neon);
  color: #0a0a0a;
  transform: translateY(-2px);
  gap: 14px;
}

.home-blogs-cta:hover .home-blogs-cta-arrow {
  transform: translateX(3px);
}

.home-blogs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hb-card {
  --hb-accent: #8b5cf6;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--hb-card);
  border: 1px solid var(--hb-border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hb-card--purple { --hb-accent: #8b5cf6; }
.hb-card--teal { --hb-accent: #14b8a6; }
.hb-card--rose { --hb-accent: #f43f5e; }
.hb-card--blue { --hb-accent: #3b82f6; }

.hb-card::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 72px;
  height: 56px;
  pointer-events: none;
  opacity: 0.45;
  background-image: radial-gradient(var(--hb-accent) 1.1px, transparent 1.2px);
  background-size: 8px 8px;
  mask-image: linear-gradient(135deg, transparent 20%, #000 75%);
  -webkit-mask-image: linear-gradient(135deg, transparent 20%, #000 75%);
}

.hb-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--hb-accent) 45%, transparent);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.hb-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a1a1a;
}

.hb-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hb-card:hover .hb-media img {
  transform: scale(1.05);
}

.hb-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--hb-accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.hb-badge svg {
  width: 18px;
  height: 18px;
}

.hb-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 16px 18px;
  gap: 10px;
}

.hb-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--hb-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hb-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: rgba(228, 228, 231, 0.5);
  font-size: 0.75rem;
}

.hb-meta span,
.hb-meta time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hb-meta svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
}

.hb-body h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.hb-body h3 a {
  color: #fff;
}

.hb-body h3 a:hover {
  color: var(--hb-neon);
}

.hb-body > p {
  margin: 0;
  color: var(--hb-muted);
  font-size: 0.84rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hb-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 4px;
  color: var(--hb-neon);
  font-size: 0.86rem;
  font-weight: 700;
  transition: gap 0.25s ease;
}

.hb-more-ic {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(182, 245, 0, 0.55);
  display: grid;
  place-items: center;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.hb-more-ic svg {
  width: 12px;
  height: 12px;
}

.hb-more:hover {
  gap: 12px;
}

.hb-more:hover .hb-more-ic {
  background: var(--hb-neon);
  border-color: var(--hb-neon);
  color: #0a0a0a;
}

@media (max-width: 1100px) {
  .home-blogs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .home-blogs-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-blogs-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hb-card,
  .hb-media img,
  .home-blogs-cta,
  .hb-more {
    transition: none;
  }

  .hb-card:hover {
    transform: none;
  }

  .hb-card:hover .hb-media img {
    transform: none;
  }
}

/* ---- FAQ ---- */
.faq {
  padding: var(--section-pad) 0;
  background: var(--color-surface-2);
}

.faq-list {
  max-width: 760px;
  margin: 52px auto 0;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.faq-item:hover,
.faq-item.open {
  border-color: rgba(86, 114, 29, 0.25);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--color-text);
  transition: color var(--transition);
  line-height: 1.45;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: grid;
  place-items: center;
  font-size: 0;
  color: var(--color-primary);
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.faq-icon::before {
  content: "+";
  line-height: 1;
  font-size: 1.2rem;
}

.faq-item.open .faq-icon {
  transform: none;
}

.faq-item.open .faq-icon::before {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 320px;
}

/* ---- FAQ dark cards (homepage mockup) ---- */
.faq--dark {
  --faq-neon: #b6f500;
  --faq-ink: #0c1220;
  --faq-card: #0f1110;
  --faq-card-2: #141714;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 45% at 50% -10%, rgba(182, 245, 0, 0.07) 0%, transparent 55%),
    linear-gradient(180deg, #f4f6f0 0%, #eef1ea 100%);
}

.faq--dark .faq-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}

.faq--dark .faq-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:#6ea00f;
  filter: drop-shadow(0 0 10px rgba(182, 245, 0, 0.35));
}

.faq--dark .faq-kicker-line {
  display: block;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background:#6ea00f;
  box-shadow: 0 0 8px rgba(182, 245, 0, 0.55);
}

.faq--dark .faq-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--faq-ink);
  margin: 0 0 14px;
}

.faq--dark .faq-title span {
  color: #6ea00f;
  text-shadow: none;
}

.faq--dark .faq-sub {
  margin: 0 auto;
  max-width: 46ch;
  font-size: 1rem;
  line-height: 1.7;
  color: #6b7280;
}

.faq--dark .faq-list {
  max-width: 880px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq--dark .faq-item {
  margin: 0;
  background: var(--faq-card);
  border: 1px solid rgba(182, 245, 0, 0.14);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(8, 12, 8, 0.18);
  overflow: hidden;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, transform 0.28s ease;
}
 

.faq--dark .faq-item:hover {
  border-color: rgba(182, 245, 0, 0.32);
  box-shadow: 0 18px 44px rgba(8, 12, 8, 0.22);
}

.faq--dark .faq-item.open {
  background: var(--faq-card-2);
  border-color: var(--faq-neon);
  box-shadow:
    0 0 0 1px rgba(182, 245, 0, 0.35),
    0 0 28px rgba(182, 245, 0, 0.18),
    0 20px 48px rgba(8, 12, 8, 0.28);
}

.faq--dark .faq-question {
  align-items: center;
  gap: 16px;
  padding: 22px 22px;
  color: #fff;
  min-height: 44px;
}

.faq--dark .faq-question:hover {
  color: #fff;
}

.faq--dark .faq-q-text {
  flex: 1;
  min-width: 0;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.45;
  color: #fff;
  transition: color 0.25s ease;
}

.faq--dark .faq-item.open .faq-q-text {
  color: var(--faq-neon);
}

/* Left icon: closed = ? ring, open = glowing bubble */
.faq--dark .faq-q-ic {
  position: relative;
  flex: none;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(182, 245, 0, 0.65);
  color: var(--faq-neon);
  background: transparent;
  transition: box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease, border-radius 0.28s ease;
}

.faq--dark .faq-q-ic__mark {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  z-index: 1;
}

.faq--dark .faq-q-ic__bubble {
  display: none !important;
  width: 30px;
  height: 30px;
}

.faq--dark .faq-item.open .faq-q-ic {
  width: 44px;
  height: 44px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: var(--faq-neon);
  filter: drop-shadow(0 0 10px rgba(182, 245, 0, 0.75));
}

.faq--dark .faq-item.open .faq-q-ic__mark {
  display: none !important;
}

.faq--dark .faq-item.open .faq-q-ic__bubble {
  display: block !important;
}

/* Right toggle: outline +  /  solid chevron */
.faq--dark .faq-icon {
  position: relative;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1.5px solid rgba(182, 245, 0, 0.7);
  color: #fff;
  font-size: 0;
  overflow: hidden;
}

.faq--dark .faq-icon::before {
  content: none !important;
}

.faq--dark .faq-icon svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.faq--dark .faq-icon .faq-icon__plus {
  display: block !important;
  opacity: 1;
}

.faq--dark .faq-icon .faq-icon__chev {
  display: block !important;
  opacity: 0;
}

.faq--dark .faq-item.open .faq-icon {
  background: var(--faq-neon);
  border-color: var(--faq-neon);
  color: #0a0a0a;
  box-shadow: 0 0 16px rgba(182, 245, 0, 0.45);
  transform: none;
}

.faq--dark .faq-item.open .faq-icon::before {
  content: none !important;
}

.faq--dark .faq-item.open .faq-icon .faq-icon__plus {
  opacity: 0;
}

.faq--dark .faq-item.open .faq-icon .faq-icon__chev {
  opacity: 1;
}

.faq--dark .faq-answer {
  transition: max-height 0.4s ease;
}

.faq--dark .faq-answer-inner {
  position: relative;
  margin: 0 22px 22px 82px;
  padding: 4px 0 2px 20px;
  color: rgba(244, 246, 241, 0.88);
  font-size: 0.95rem;
  line-height: 1.75;
  border-left: 2px solid var(--faq-neon);
}

.faq--dark .faq-answer-inner::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--faq-neon);
  box-shadow: 0 0 12px rgba(182, 245, 0, 0.85);
}

.faq--dark .faq-item.open .faq-answer {
  max-height: 420px;
}

@media (max-width: 640px) {
  .faq--dark .faq-kicker {
    gap: 8px;
    letter-spacing: 0.14em;
  }

  .faq--dark .faq-kicker-line {
    width: 18px;
  }

  .faq--dark .faq-question {
    padding: 16px 14px;
    gap: 12px;
    align-items: flex-start;
  }

  .faq--dark .faq-q-ic {
    width: 36px;
    height: 36px;
    margin-top: 2px;
  }

  .faq--dark .faq-q-ic__bubble {
    width: 22px;
    height: 22px;
  }

  .faq--dark .faq-icon {
    width: 32px;
    height: 32px;
    margin-top: 2px;
  }

  .faq--dark .faq-icon svg {
    width: 14px;
    height: 14px;
  }

  .faq--dark .faq-q-text {
    font-size: 0.92rem;
  }

  .faq--dark .faq-answer-inner {
    margin: 0 14px 16px 14px;
    padding-left: 16px;
  }
}

/* ---- Contact ---- */
.contact-section {
  padding: var(--section-pad) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-top: 52px;
}

.contact-info-card {
  padding: 36px 32px;
  background: var(--color-coral);
  border-radius: var(--radius-xl);
  color: #fff;
  box-shadow: 0 16px 40px rgba(249, 93, 93, 0.28);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-info-item h4 {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.8;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.95rem;
  color: #fff;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.contact-form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 42px;
  box-shadow: var(--shadow-md);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.form-group label .required {
  color: var(--color-error);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(86, 114, 29, 0.15);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--color-error);
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
  border-color: var(--color-success);
}

.form-error {
  display: none;
  font-size: 0.8rem;
  color: var(--color-error);
  margin-top: 6px;
}

.form-group.has-error .form-error {
  display: block;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--color-success);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--color-text-muted);
}

.contact-form-card.hidden-form .contact-form {
  display: none;
}

/* ---- Get In Touch (dark homepage) ---- */
.contact-section--touch {
  position: relative;
  overflow: hidden;
  background: #eef0ec;
  padding: clamp(64px, 8vw, 100px) 0;
}

.contact-touch-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.contact-touch-ring {
  position: absolute;
  border: 1px solid rgba(86, 114, 29, 0.12);
  border-radius: 50%;
}

.contact-touch-ring--1 {
  width: 280px;
  height: 280px;
  top: 8%;
  left: -60px;
}

.contact-touch-ring--2 {
  width: 220px;
  height: 220px;
  bottom: 18%;
  right: -40px;
  border-color: rgba(182, 245, 0, 0.18);
}

.contact-touch-dots {
  position: absolute;
  width: 120px;
  height: 90px;
  background-image: radial-gradient(rgba(90, 100, 80, 0.28) 1.2px, transparent 1.3px);
  background-size: 12px 12px;
  opacity: 0.55;
}

.contact-touch-dots--1 {
  top: 12%;
  right: 10%;
}

.contact-touch-dots--2 {
  bottom: 12%;
  left: 8%;
}

.contact-section--touch > .container {
  position: relative;
  z-index: 1;
}

.contact-touch-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.contact-touch-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8fbf00;
  margin-bottom: 14px;
}

.contact-touch-label::before,
.contact-touch-label::after {
  content: "";
  width: 36px;
  height: 2px;
  border-radius: 2px;
  background: #b6f500;
}

.contact-touch-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #1a1f16;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.contact-touch-title span {
  color: #6ea00f;
}

.contact-touch-sub {
  margin: 0;
  color: #6a7363;
  font-size: 1.02rem;
  line-height: 1.7;
}

.contact-section--touch .contact-grid {
  gap: 24px;
  margin-top: 0;
  align-items: stretch;
}

.contact-section--touch .contact-info-card,
.contact-section--touch .contact-form-card {
  position: relative;
  background: #121412;
  border: 1px solid rgba(182, 245, 0, 0.1);
  border-radius: 24px;
  padding: clamp(28px, 3.5vw, 40px);
  color: #fff;
  box-shadow: 0 22px 50px rgba(10, 12, 10, 0.28);
  overflow: hidden;
}

.contact-card-dots {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 72px;
  height: 56px;
  background-image: radial-gradient(rgba(182, 245, 0, 0.35) 1px, transparent 1.2px);
  background-size: 10px 10px;
  opacity: 0.45;
  pointer-events: none;
}

.contact-section--touch .contact-info-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 28px;
  color: #fff;
}

.contact-section--touch .contact-info-card h3 span {
  color: #b6f500;
  position: relative;
  display: inline-block;
}

.contact-section--touch .contact-info-card h3 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 12%;
  bottom: -6px;
  height: 2px;
  background: #b6f500;
  border-radius: 2px;
}

.contact-section--touch .contact-info-item {
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-section--touch .contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  background: rgba(182, 245, 0, 0.12);
  color: #b6f500;
  border: 1px solid rgba(182, 245, 0, 0.35);
  box-shadow: 0 0 18px rgba(182, 245, 0, 0.12);
}

.contact-section--touch .contact-info-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  flex: none;
}

.contact-section--touch .contact-info-item h4 {
  color: #b6f500;
  opacity: 1;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.contact-section--touch .contact-info-item p,
.contact-section--touch .contact-info-item a {
  color: rgba(244, 246, 241, 0.92);
  line-height: 1.55;
}

.contact-section--touch .contact-info-item a:hover {
  color: #b6f500;
  text-decoration: none;
}

.contact-help-box {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(182, 245, 0, 0.22);
  background: rgba(255, 255, 255, 0.03);
}

.contact-help-ic {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: #b6f500 !important;
  background: rgba(182, 245, 0, 0.1);
  font-size: 0;
}

.contact-help-ic svg {
  width: 20px;
  height: 20px;
  display: block;
  flex: none;
  margin: auto;
}

.contact-help-box strong {
  display: block;
  font-size: 0.92rem;
  color: #fff;
  margin-bottom: 4px;
}

.contact-help-box > div > span {
  display: block;
  font-size: 0.82rem;
  color: #b6f500;
}

.contact-section--touch .contact-form-card {
  background: #101210;
}

.contact-section--touch .form-group label {
  color: #f4f6f1;
}

.contact-section--touch .form-group label .optional {
  color: rgba(244, 246, 241, 0.45);
  font-weight: 500;
}

.form-field {
  position: relative;
}

.form-field-ic {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: rgba(244, 246, 241, 0.4);
  pointer-events: none;
  z-index: 1;
}

.form-field-ic svg {
  width: 18px;
  height: 18px;
  display: block;
  flex: none;
}

.form-field--textarea .form-field-ic {
  top: 16px;
  transform: none;
}

.contact-section--touch .form-group input,
.contact-section--touch .form-group select,
.contact-section--touch .form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  color: #fff;
  padding: 14px 16px 14px 44px;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  color-scheme: dark;
}

/* Chrome/Safari autofill — keep dark fields (not white) */
.contact-section--touch .form-group input:-webkit-autofill,
.contact-section--touch .form-group input:-webkit-autofill:hover,
.contact-section--touch .form-group input:-webkit-autofill:focus,
.contact-section--touch .form-group input:-webkit-autofill:active,
.contact-section--touch .form-group select:-webkit-autofill,
.contact-section--touch .form-group select:-webkit-autofill:hover,
.contact-section--touch .form-group select:-webkit-autofill:focus,
.contact-section--touch .form-group textarea:-webkit-autofill,
.contact-section--touch .form-group textarea:-webkit-autofill:hover,
.contact-section--touch .form-group textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
  border: 1px solid rgba(182, 245, 0, 0.45) !important;
  box-shadow:
    0 0 0 1000px #151815 inset !important,
    0 0 0 3px rgba(182, 245, 0, 0.1) !important;
  transition: background-color 99999s ease-in-out 0s;
}

.contact-section--touch .form-group textarea {
  min-height: 120px;
  padding-bottom: 28px;
}

.contact-section--touch .form-group input::placeholder,
.contact-section--touch .form-group textarea::placeholder {
  color: rgba(244, 246, 241, 0.35);
}

.contact-section--touch .form-group select {
  appearance: none;
  background-color: rgba(255, 255, 255, 0.04);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239aa392' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  color-scheme: dark;
}

.contact-section--touch .form-group select option,
.contact-section--touch .form-group select optgroup {
  background: #1a1f16;
  color: #fff;
}

.contact-section--touch .form-group input:focus,
.contact-section--touch .form-group select:focus,
.contact-section--touch .form-group textarea:focus {
  border-color: rgba(182, 245, 0, 0.65);
  box-shadow: 0 0 0 3px rgba(182, 245, 0, 0.12);
}

.form-char-count {
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-size: 0.72rem;
  color: rgba(244, 246, 241, 0.4);
  pointer-events: none;
}

.contact-section--touch .form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  background: #b6f500;
  color: #101210;
  border: none;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(182, 245, 0, 0.25);
}

.contact-section--touch .form-submit svg {
  width: 18px;
  height: 18px;
  display: block;
  flex: none;
}

.contact-section--touch .form-submit:hover {
  background: #c8ff33;
  color: #101210;
  transform: translateY(-2px);
}

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 0;
  font-size: 0.78rem;
  color: rgba(244, 246, 241, 0.45);
  text-align: center;
  line-height: 1.4;
}

.form-privacy svg {
  flex: none;
  width: 14px;
  height: 14px;
  color: #b6f500;
}

.contact-section--touch .form-success h3 {
  color: #fff;
}

.contact-section--touch .form-success p {
  color: rgba(244, 246, 241, 0.65);
}

.contact-section--touch .form-success .btn-outline {
  border-color: rgba(182, 245, 0, 0.45);
  color: #b6f500;
}

.contact-touch-bar {
  list-style: none;
  margin: 24px 0 0;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: #121412;
  border: 1px solid rgba(182, 245, 0, 0.1);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(10, 12, 10, 0.22);
  position: relative;
  overflow: hidden;
}

.contact-touch-bar::before,
.contact-touch-bar::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 56px;
  background-image: radial-gradient(rgba(182, 245, 0, 0.3) 1px, transparent 1.2px);
  background-size: 10px 10px;
  opacity: 0.35;
  pointer-events: none;
}

.contact-touch-bar::before {
  top: 14px;
  left: 14px;
}

.contact-touch-bar::after {
  bottom: 14px;
  right: 14px;
}

.contact-touch-bar li {
  display: flex;
  gap: 14px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-touch-bar-ic {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: #b6f500 !important;
  background: rgba(182, 245, 0, 0.1);
  border: 1.5px solid rgba(182, 245, 0, 0.45);
  font-size: 0;
}

.contact-touch-bar-ic svg {
  width: 18px;
  height: 18px;
  display: block;
  flex: none;
  margin: auto;
}

.contact-touch-bar strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-touch-bar li > div > span {
  display: block;
  color: rgba(244, 246, 241, 0.5);
  font-size: 0.8rem;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .contact-touch-bar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .contact-touch-bar {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }

  .contact-help-box {
    align-items: flex-start;
  }
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: calc(var(--header-height) + 60px) 0 60px;
  background: var(--color-surface-2);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 720px;
  margin-inline: auto;
}

.page-hero.wide p {
  max-width: 820px;
}

/* ---- Breadcrumbs ---- */
.breadcrumbs {
  padding: calc(var(--header-height) + 16px) 0 0;
  background: var(--color-surface-2);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  opacity: 0.5;
}

.breadcrumbs a:hover {
  color: var(--color-coral);
}

/* ---- Internal page sections ---- */
.ipage-section {
  padding: 72px 0;
}

.ipage-section.alt {
  background: var(--color-surface-2);
}

.ipage-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.ipage-section > .container > p.lead {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 760px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.highlight-card {
  padding: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--color-coral);
}

.highlight-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.internship-tracks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.track-card {
  padding: 0;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
}

.track-card .track-body {
  padding: 20px;
}

.track-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.track-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.track-card .track-meta {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 32px;
}

.meta-pill {
  padding: 10px 18px;
  background: var(--color-coral-light);
  border: 1px solid rgba(249, 93, 93, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-coral);
}

.domain-block {
  margin-bottom: 48px;
  padding: 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.domain-block h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}

.domain-block > p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.domain-block ul {
  list-style: disc;
  padding-left: 20px;
}

.domain-block li {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

.apply-banner {
  padding: 48px;
  background: var(--color-coral);
  border-radius: var(--radius-lg);
  color: #fff;
  text-align: center;
  margin-top: 48px;
}

.apply-banner h2 {
  color: #fff;
  margin-bottom: 12px;
}

.apply-banner p {
  opacity: 0.92;
  margin-bottom: 24px;
  max-width: 560px;
  margin-inline: auto;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-coral);
  font-weight: 700;
}

.cta-inline {
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .highlight-grid,
  .internship-tracks {
    grid-template-columns: 1fr;
  }

  .apply-banner {
    padding: 32px 24px;
  }
}

/* ---- Internal page hero with form ---- */
.ipage-hero {
  position: relative;
  padding: calc(var(--header-height) + 32px) 0 72px;
  background:
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(86, 114, 29, 0.1) 0%, transparent 55%),
    linear-gradient(160deg, #eef3e4 0%, #f4f7ee 45%, #f8faf6 100%);
  scroll-margin-top: calc(var(--header-height) + 12px);
  overflow: hidden;
}

.ipage-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: heroBlobDrift 12s ease-in-out infinite;
}

.hero-blob-1 {
  width: 320px;
  height: 320px;
  background: rgba(86, 114, 29, 0.18);
  top: -80px;
  right: 10%;
}

.hero-blob-2 {
  width: 260px;
  height: 260px;
  background: rgba(249, 93, 93, 0.15);
  bottom: 10%;
  left: -60px;
  animation-delay: -4s;
}

.hero-blob-3 {
  width: 180px;
  height: 180px;
  background: rgba(16, 185, 129, 0.12);
  top: 40%;
  right: -40px;
  animation-delay: -8s;
}

@keyframes heroBlobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-15px, 10px) scale(0.95); }
}

.ipage-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: start;
}

.ipage-hero-content h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.ipage-hero-content h1 .text-coral {
  color: var(--color-coral);
}

.ipage-hero-content > p {
  color: var(--color-text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.hero-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-stat-pill {
  padding: 8px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  color: var(--color-text-muted);
  box-shadow: var(--shadow-sm);
}

.hero-stat-pill strong {
  color: var(--color-coral);
  font-weight: 800;
}

/* Hero entrance animations */
.hero-animate {
  opacity: 0;
  animation: heroFadeUp 0.7s ease forwards;
}

.hero-animate-1 { animation-delay: 0.1s; }
.hero-animate-2 { animation-delay: 0.2s; }
.hero-animate-3 { animation-delay: 0.35s; }
.hero-animate-4 { animation-delay: 0.45s; }
.hero-animate-5 { animation-delay: 0.55s; }
.hero-animate-6 { animation-delay: 0.65s; }

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated hero image block */
.ipage-hero-visual {
  position: relative;
  margin-top: 8px;
}

.hero-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-xl);
  transform: perspective(800px) rotateY(-2deg);
  transition: transform 0.4s ease;
}

.hero-img-frame:hover {
  transform: perspective(800px) rotateY(0deg);
}

.hero-img-frame img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  animation: heroImgReveal 1s ease 0.5s both;
}

@keyframes heroImgReveal {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  animation: heroFloat 4s ease-in-out infinite;
}

.hero-float-badge strong {
  display: block;
  font-size: 1.1rem;
  color: var(--color-coral);
  line-height: 1.2;
}

.hero-float-badge small {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.hero-float-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.hero-float-badge-1 {
  top: 16px;
  right: -12px;
  animation-delay: 0s;
}

.hero-float-badge-2 {
  bottom: 24px;
  left: -16px;
  animation-delay: -2s;
}

.hero-float-tag {
  position: absolute;
  bottom: -14px;
  right: 24px;
  padding: 8px 18px;
  background: var(--color-coral);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(249, 93, 93, 0.4);
  animation: heroPulse 2.5s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(249, 93, 93, 0.4); }
  50% { transform: scale(1.04); box-shadow: 0 6px 22px rgba(249, 93, 93, 0.5); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-animate,
  .hero-img-frame img,
  .hero-blob,
  .hero-float-badge,
  .hero-float-tag {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.ipage-hero-form {
  position: sticky;
  top: calc(var(--header-height) + 16px);
}

.ipage-hero-form .contact-form-card {
  padding: 28px;
}

.ipage-hero-form .form-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.ipage-hero-form .form-subtitle {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.section-split.reverse {
  direction: rtl;
}

.section-split.reverse > * {
  direction: ltr;
}

.section-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: var(--shadow-md);
}

.section-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.domain-block.domain-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
  padding: 0;
  overflow: hidden;
  border: none;
  background: transparent;
  margin-bottom: 32px;
}

.domain-block.domain-split.reverse {
  direction: rtl;
}

.domain-block.domain-split.reverse > * {
  direction: ltr;
}

.domain-block.domain-split .domain-inner ul {
  list-style: disc;
  padding-left: 20px;
}

.domain-block.domain-split .domain-inner li {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

.domain-block.domain-split .domain-inner {
  padding: 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  height: 100%;
}

.domain-block.domain-split .domain-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: var(--shadow-md);
  min-height: 100%;
}

.domain-block.domain-split .domain-img img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.highlight-card img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

@media (max-width: 1024px) {
  .ipage-hero-grid,
  .section-split,
  .domain-block.domain-split {
    grid-template-columns: 1fr;
  }

  .ipage-hero-form {
    position: static;
  }

  .section-split.reverse {
    direction: ltr;
  }

  .domain-block.domain-split .domain-img {
    order: -1;
  }
}

@media (max-width: 768px) {
  .ipage-hero {
    padding: calc(var(--header-height) + 20px) 0 48px;
  }

  .ipage-hero-grid {
    display: flex;
    flex-direction: column;
  }

  .ipage-hero-form {
    order: -1;
  }

  .ipage-hero-form .contact-form-card {
    padding: 20px;
  }

  .ipage-hero-form .form-row {
    grid-template-columns: 1fr;
  }

  .hero-img-frame {
    transform: none;
  }

  .hero-img-frame img {
    height: 220px;
  }

  .hero-float-badge-1 {
    top: 10px;
    right: 8px;
    padding: 10px 12px;
  }

  .hero-float-badge-2 {
    bottom: 16px;
    left: 8px;
    padding: 10px 12px;
  }

  .hero-float-badge strong {
    font-size: 0.95rem;
  }

  .hero-float-tag {
    right: 12px;
    bottom: -10px;
    font-size: 0.72rem;
  }

  .section-image img,
  .domain-block.domain-split .domain-img img {
    min-height: 200px;
  }
}

/* ---- About ---- */
.about-content {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  color: var(--color-text-muted);
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-stat {
  text-align: center;
  padding: 28px 16px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.about-stat .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-coral);
}

.about-stat .txt {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* ---- Brand marquee (above footer) ---- */
.brand-marquee {
  --mx: 50%;
  --my: 50%;
  background: #000;
  overflow: hidden;
  padding: clamp(48px, 8vw, 100px) var(--container-pad);
  position: relative;
  cursor: default;
}

.brand-marquee-glow {
  position: absolute;
  left: var(--gx, 50%);
  top: var(--gy, 50%);
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(182, 245, 0, 0.28) 0%, rgba(86, 114, 29, 0.12) 42%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.45s ease, width 0.45s ease, height 0.45s ease;
  opacity: 0;
  will-change: opacity, left, top;
}

.brand-marquee-inner {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  user-select: none;
}

.brand-marquee-text {
  grid-area: 1 / 1;
  display: block;
  width: max-content;
  max-width: 100%;
  text-align: center;
  font-size: clamp(2.4rem, 11.5vw, 10.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
  white-space: nowrap;
  margin: 0;
  padding: 0.12em 0.06em;
}

.brand-marquee-text--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.09);
}

.brand-marquee-text--fill {
  color: transparent;
  background: linear-gradient(180deg, #e8ff8a 0%, #b6f500 32%, #6d8f2a 68%, #3d5214 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(
    circle 200px at var(--mx) var(--my),
    #000 0%,
    #000 40%,
    transparent 75%
  );
  mask-image: radial-gradient(
    circle 200px at var(--mx) var(--my),
    #000 0%,
    #000 40%,
    transparent 75%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: opacity 0.45s ease;
  will-change: opacity;
}

.brand-marquee.is-active .brand-marquee-text--fill {
  opacity: 1;
  transition: opacity 0.2s ease;
}

.brand-marquee.is-active .brand-marquee-glow {
  opacity: 1;
  width: min(50vw, 520px);
  height: min(50vw, 520px);
  transition: opacity 0.2s ease, width 0.35s ease, height 0.35s ease;
}

@media (max-width: 1024px) {
  .brand-marquee {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .brand-marquee {
    display: none !important;
    padding: 48px 3vw 40px;
  }

  .brand-marquee-text {
    font-size: clamp(2.6rem, 14vw, 4.5rem);
    line-height: 1.15;
    -webkit-text-stroke-width: 1px;
  }

  .brand-marquee-text--fill {
    -webkit-mask-image: radial-gradient(
      circle 120px at var(--mx) var(--my),
      #000 0%,
      #000 40%,
      transparent 75%
    );
    mask-image: radial-gradient(
      circle 120px at var(--mx) var(--my),
      #000 0%,
      #000 40%,
      transparent 75%
    );
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee-text--fill {
    -webkit-mask-image: none;
    mask-image: none;
    opacity: 0;
  }

  .brand-marquee.is-active .brand-marquee-text--fill {
    opacity: 1;
  }

  .brand-marquee-glow {
    left: 50%;
    top: 50%;
    opacity: 0;
  }
}

/* ---- Footer ---- */
.footer {
  background: #070a08;
  color: rgba(255, 255, 255, 0.78);
  padding: 72px 0 28px;
  position: relative;
  overflow: hidden;
}

.footer--pro {
  --ft-neon: #b6f500;
  --ft-border: rgba(255, 255, 255, 0.1);
  --ft-muted: rgba(255, 255, 255, 0.58);
  background:
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(86, 114, 29, 0.18), transparent 55%),
    radial-gradient(ellipse 45% 35% at 100% 0%, rgba(182, 245, 0, 0.06), transparent 50%),
    #070a08;
}

.footer--pro::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(rgba(182, 245, 0, 0.18) 0.7px, transparent 0.8px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

.footer--pro > .container {
  position: relative;
  z-index: 1;
}

.ft-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.05fr 0.95fr;
  gap: 28px 24px;
  align-items: start;
  margin-bottom: 28px;
}

.ft-brand .ft-logo {
  display: inline-flex;
  margin-bottom: 14px;
}

.ft-brand .ft-logo img {
  height: 96px;
  width: auto;
  max-width: min(400px, 88vw);
  object-fit: contain;
  transform: scale(1.12);
  transform-origin: left center;
}

.ft-brand > p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--ft-muted);
  max-width: 280px;
  margin: 0 0 18px;
  word-spacing: normal;
  letter-spacing: -0.01em;
}

.ft-follow-label {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}

.ft-follow-label::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 6px;
  background: var(--ft-neon);
  border-radius: 2px;
}

.ft-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ft-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(182, 245, 0, 0.45);
  color: var(--ft-neon);
  display: grid;
  place-items: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.ft-socials a svg {
  width: 16px;
  height: 16px;
}

.ft-socials a:hover {
  background: var(--ft-neon);
  color: #0a0a0a;
  border-color: var(--ft-neon);
}

.ft-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff !important;
  font-size: 0.86rem !important;
  font-weight: 750 !important;
  margin: 0 0 16px !important;
  text-transform: uppercase;
  letter-spacing: 0.05em !important;
}

.ft-heading svg {
  width: 18px;
  height: 18px;
  color: var(--ft-neon);
  flex-shrink: 0;
}

.ft-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ft-contact li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.ft-ic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(182, 245, 0, 0.4);
  color: var(--ft-neon);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  box-sizing: border-box;
}

.ft-ic svg {
  width: 15px;
  height: 15px;
  display: block;
  flex-shrink: 0;
  max-width: none;
}

.ft-ic--solid {
  background: var(--ft-neon);
  border-color: var(--ft-neon);
  color: #0a0a0a;
}

.ft-contact small {
  display: block;
  font-size: 0.72rem;
  color: var(--ft-muted);
  margin-bottom: 2px;
}

.ft-contact a,
.ft-contact li > div > span {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  line-height: 1.4;
  word-break: break-word;
}

.ft-contact a:hover {
  color: var(--ft-neon);
}

.ft-address {
  max-width: 240px;
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--ft-muted);
  margin: 0 0 14px;
  word-spacing: normal;
  letter-spacing: -0.01em;
}

.ft-reach {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(182, 245, 0, 0.45);
  border-radius: 12px;
  background: rgba(182, 245, 0, 0.04);
}

.ft-reach strong {
  display: block;
  font-size: 0.84rem;
  color: #fff;
  margin-bottom: 2px;
}

.ft-reach span {
  font-size: 0.76rem;
  color: var(--ft-muted);
}

.ft-pages {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ft-pages li {
  border-bottom: 1px solid var(--ft-border);
}

.ft-pages li:last-child {
  border-bottom: 0;
}

.ft-pages a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.ft-pages a span {
  color: var(--ft-neon);
  font-weight: 700;
  line-height: 1;
}

.ft-pages a:hover {
  color: var(--ft-neon);
  padding-left: 4px;
}

.ft-enroll {
  border: 1px solid rgba(182, 245, 0, 0.55);
  border-radius: 18px;
  padding: 22px 18px 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(182, 245, 0, 0.14), transparent 55%),
    rgba(12, 16, 12, 0.9);
  box-shadow: 0 0 0 1px rgba(182, 245, 0, 0.08), 0 12px 40px rgba(182, 245, 0, 0.08);
  text-align: center;
}

.ft-enroll-ic {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 1px solid rgba(182, 245, 0, 0.5);
  color: var(--ft-neon);
  display: grid;
  place-items: center;
  box-shadow: 0 0 24px rgba(182, 245, 0, 0.2);
}

.ft-enroll-ic svg {
  width: 26px;
  height: 26px;
}

.ft-enroll h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ft-enroll > p {
  margin: 0 0 14px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ft-muted);
}

.ft-enroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 44px;
  border-radius: 10px;
  background: var(--ft-neon);
  color: #0a0a0a;
  font-weight: 750;
  font-size: 0.92rem;
  text-decoration: none;
  transition: filter 0.2s, transform 0.2s;
}

.ft-enroll-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.ft-or {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  color: var(--ft-muted);
  font-size: 0.78rem;
  text-transform: lowercase;
}

.ft-or::before,
.ft-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--ft-border);
}

.ft-enroll-call {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.ft-enroll-call small {
  display: block;
  font-size: 0.72rem;
  color: var(--ft-muted);
}

.ft-enroll-call a {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.ft-enroll-call a:hover {
  color: var(--ft-neon);
}

.ft-enroll-call span:last-child {
  display: block;
  font-size: 0.72rem;
  color: var(--ft-muted);
  margin-top: 2px;
}

.ft-strip {
  display: grid;
  gap: 0;
  border: 1px solid var(--ft-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 16px;
  overflow: hidden;
}

.ft-strip--courses {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.ft-strip--usps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ft-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 14px;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid var(--ft-border);
  min-width: 0;
  transition: background 0.2s;
}

.ft-strip-item:last-child {
  border-right: 0;
}

a.ft-strip-item:hover {
  background: rgba(182, 245, 0, 0.05);
}

.ft-strip-ic {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: var(--ft-neon);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(182, 245, 0, 0.08);
}

.ft-strip-ic svg {
  width: 18px;
  height: 18px;
}

.ft-strip-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 3px;
}

.ft-strip-item small {
  display: block;
  font-size: 0.7rem;
  color: var(--ft-muted);
  line-height: 1.35;
}

.ft-copy {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--ft-border);
  text-align: center;
  font-size: 0.84rem;
  color: var(--ft-muted);
}

.ft-copy a {
  color: #6ea00f;
  text-decoration: none;
  font-weight: 600;
}

.ft-copy a:hover {
  text-decoration: underline;
}

.ft-heart {
  display: none;
}

/* Legacy footer hooks kept for older pages until synced */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.92rem;
  margin-top: 18px;
  line-height: 1.65;
  max-width: 320px;
}

.footer h4 {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-links li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #b6f500;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.86rem;
  line-height: 1.6;
  opacity: 0.7;
}

@media (max-width: 1200px) {
  .ft-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ft-enroll {
    grid-column: 1 / -1;
    max-width: 420px;
  }

  .ft-strip--courses {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ft-strip--courses .ft-strip-item:nth-child(3n) {
    border-right: 0;
  }

  .ft-strip--courses .ft-strip-item:nth-child(n+4) {
    border-top: 1px solid var(--ft-border);
  }

  .ft-strip--usps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ft-strip--usps .ft-strip-item:nth-child(2n) {
    border-right: 0;
  }

  .ft-strip--usps .ft-strip-item:nth-child(n+3) {
    border-top: 1px solid var(--ft-border);
  }
}

@media (max-width: 720px) {
  .footer--pro {
    padding: 36px 0 18px;
  }

  .ft-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
    align-items: stretch;
  }

  .ft-brand {
    grid-column: 1 / -1;
  }

  .ft-brand > p {
    max-width: 100%;
    margin-bottom: 12px;
    font-size: 0.84rem;
  }

  .ft-brand .ft-logo img {
    height: 70px;
  }

  .ft-follow-label {
    margin-bottom: 10px;
  }

  /* Let's Connect — bordered card, 2×2 contacts */
  .ft-top > .ft-col:nth-child(2) {
    grid-column: 1 / -1;
    border: 1px solid var(--ft-border);
    border-radius: 14px;
    padding: 14px 12px 16px;
    background: rgba(255, 255, 255, 0.02);
  }

  .ft-top > .ft-col:nth-child(2) .ft-heading {
    margin-bottom: 14px !important;
  }

  .ft-top > .ft-col:nth-child(2) .ft-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .ft-top > .ft-col:nth-child(2) .ft-contact li {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
  }

  .ft-top > .ft-col:nth-child(2) .ft-ic {
    width: 30px;
    height: 30px;
  }

  .ft-top > .ft-col:nth-child(2) .ft-ic svg {
    width: 13px;
    height: 13px;
  }

  .ft-top > .ft-col:nth-child(2) .ft-contact small {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .ft-top > .ft-col:nth-child(2) .ft-contact a,
  .ft-top > .ft-col:nth-child(2) .ft-contact span {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  /* Address full width */
  .ft-top > .ft-col:nth-child(3) {
    grid-column: 1 / -1;
  }

  .ft-address {
    max-width: 100%;
    font-size: 0.82rem;
    margin-bottom: 10px;
  }

  .ft-reach {
    padding: 10px 12px;
  }

  /* Other Pages | Enroll Now side-by-side */
  .ft-top > .ft-col:nth-child(4) {
    grid-column: 1;
    min-width: 0;
  }

  .ft-pages a {
    padding: 8px 0;
    font-size: 0.8rem;
  }

  .ft-enroll {
    grid-column: 2;
    max-width: none;
    padding: 14px 12px 12px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ft-enroll-ic {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
  }

  .ft-enroll-ic svg {
    width: 20px;
    height: 20px;
  }

  .ft-enroll h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .ft-enroll > p {
    display: none;
  }

  .ft-enroll-btn {
    height: 40px;
    font-size: 0.82rem;
    margin-top: 4px;
  }

  .ft-or {
    margin: 10px 0;
  }

  .ft-enroll-call {
    width: 100%;
    gap: 8px;
  }

  .ft-enroll-call a {
    font-size: 0.8rem;
  }

  .ft-enroll-call span:last-child,
  .ft-enroll-call small {
    font-size: 0.66rem;
  }

  /* Course categories — 2×3 */
  .ft-strip {
    margin-bottom: 12px;
  }

  .ft-strip--courses {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ft-strip--courses .ft-strip-item {
    border-right: 1px solid var(--ft-border);
    border-bottom: 1px solid var(--ft-border);
    padding: 12px 10px;
    gap: 8px;
  }

  .ft-strip--courses .ft-strip-item:nth-child(2n) {
    border-right: 0;
  }

  .ft-strip--courses .ft-strip-item:nth-child(n+5) {
    border-bottom: 0;
  }

  .ft-strip--courses .ft-strip-item:nth-child(n+4) {
    border-top: 0;
  }

  /* USPs — 2×2 */
  .ft-strip--usps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ft-strip--usps .ft-strip-item {
    border-right: 1px solid var(--ft-border);
    border-bottom: 1px solid var(--ft-border);
    padding: 12px 10px;
    gap: 8px;
  }

  .ft-strip--usps .ft-strip-item:nth-child(2n) {
    border-right: 0;
  }

  .ft-strip--usps .ft-strip-item:nth-child(n+3) {
    border-bottom: 0;
    border-top: 0;
  }

  .ft-strip-ic {
    width: 30px;
    height: 30px;
  }

  .ft-strip-ic svg {
    width: 15px;
    height: 15px;
  }

  .ft-strip-item strong {
    font-size: 0.72rem;
  }

  .ft-strip-item small {
    font-size: 0.66rem;
  }

  .ft-copy {
    margin-top: 14px;
    padding-top: 14px;
    font-size: 0.76rem;
  }
}

@media (max-width: 420px) {
  .ft-top {
    grid-template-columns: 1fr;
  }

  .ft-top > .ft-col:nth-child(4),
  .ft-enroll {
    grid-column: 1;
  }

  .ft-top > .ft-col:nth-child(2) .ft-contact {
    grid-template-columns: 1fr;
  }
}

.why-tag a {
  color: inherit;
}

.why-tag a:hover {
  text-decoration: underline;
}
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 16px 24px;
  background: var(--color-text);
  color: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success {
  background: var(--color-success);
}

.toast.error {
  background: var(--color-error);
}

/* ---- Animations ---- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.gsap-active .reveal {
  transition:
    opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

html.gsap-active .reveal.visible {
  transform: translate3d(0, 0, 0);
}

/* Hero headline word split */
.gsap-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
  color: inherit;
}

.gsap-word-inner {
  display: inline-block;
  will-change: transform, opacity;
  color: #e1f5a7;
}

.hero--dark h1 .gradient-text .gsap-word,
.hero--dark h1 .gradient-text .gsap-word-inner {
  color: #91c12f;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-shape,
  .hero-decor,
  .hero-float,
  .hero-badge-dot {
    animation: none !important;
  }

  .hero-image-wrap:hover img,
  .course-card:hover img,
  .counselling-image:hover img,
  .process-stack-card:hover .process-stack-media img,
  .process-orbit-card:hover .process-orbit-photo img {
    transform: none;
  }

  .process-orbit-ring {
    animation: none !important;
  }

  .hero-course-chip:hover {
    transform: none;
  }
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .header-actions .btn {
    padding-inline: 14px;
    font-size: 0.85rem;
  }

  .nav-link,
  .nav-dropdown-toggle {
    padding-inline: 10px;
    font-size: 0.86rem;
  }

  .hero.hero--v2 h1 {
    font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  }
}

@media (max-width: 1100px) {
  .nav-desktop,
  .header-actions .btn-outline {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .header-actions .btn-primary {
    padding-inline: 14px;
    font-size: 0.82rem;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .counselling-split {
    grid-template-columns: 1fr;
  }

  .hero--v2 .hero-grid,
  .hero-grid--v2 {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "content"
      "visual";
    align-items: stretch;
  }

  .hero--dark .hero-visual {
    padding-left: 0;
    max-width: 640px;
    width: 100%;
    margin-inline: auto;
  }

  .hero.hero--v2 h1 {
    max-width: 100%;
    white-space: normal;
    font-size: clamp(1.7rem, 4.2vw, 2.4rem);
  }

  .hero-play {
    left: 8px;
    top: 12%;
  }

  .hero-course-float {
    position: static;
    transform: none;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
  }

  .hero-side-tag {
    font-size: 0.65rem;
    right: 8px;
  }

  .hero-stats-bar,
  .hero-stats-bar--overlay {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-popular {
    grid-template-columns: 1fr;
  }

  .hero-popular-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-popular-item:nth-child(5) {
    grid-column: 2 / span 2;
  }

  .hero-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .why-us:not(.why-us--v2) .why-grid {
    grid-template-columns: 1fr;
  }

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

  .why-us--v2 .why-card,
  .why-us--v2 .why-card--03,
  .why-us--v2 .why-card--04,
  .why-us--v2 .why-card--05 {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }

  .why-us--v2 .why-card--05 {
    grid-column: 1 / -1;
  }

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

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

  .stats--impact .stats-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-inline: auto;
  }

  .contact-touch-bar {
    grid-template-columns: 1fr 1fr;
  }

  .process-aptitude-icons,
  .process-recommend-icons,
  .process-beyond-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --topbar-height: 42px;
    --header-main-height: 72px;
    --header-height: calc(var(--topbar-height) + var(--header-main-height));
    --container-pad: 16px;
    --section-pad: clamp(48px, 10vw, 72px);
  }

  .top-bar-link + .top-bar-link {
    margin-left: 14px;
    padding-left: 14px;
  }

  .top-bar-link span {
    font-size: 0.75rem;
  }

  .top-bar-link--email {
    display: none;
  }

  .top-bar a.top-bar-cta {
    height: 30px;
    padding: 0 14px;
    font-size: 0.74rem;
  }

  .logo-img {
    height: 42px;
  }

  .logo-img--on-dark {
    height: 46px;
    max-width: min(200px, 68vw);
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .btn-primary {
    padding-inline: 14px;
    font-size: 0.82rem;
    min-height: 44px;
  }

  .hero {
    padding: calc(var(--header-height) + 36px) 0 48px;
  }

  .hero--dark {
    padding: calc(var(--header-height) + 28px) 0 32px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero--v2 .hero-grid {
    margin-bottom: 20px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
    margin-bottom: 16px;
    max-width: 100%;
  }

  .hero--dark h1,
  .hero.hero--v2 h1 {
    font-size: clamp(1.7rem, 7.2vw, 2.35rem);
    line-height: 1.18;
    margin-bottom: 14px;
    max-width: 100%;
    white-space: normal;
  }

  .hero--dark .hero-desc,
  .hero--v2 .hero-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 18px;
    max-width: 100%;
  }

  .hero-features,
  .hero-features--row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 0 20px;
    max-width: 100%;
  }

  .hero-features--row li,
  .hero-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 10px;
    white-space: normal;
    font-size: 0.78rem;
    line-height: 1.3;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
  }

  .hero-features--row .hero-feature-ic,
  .hero-feature-ic {
    width: 28px;
    height: 28px;
    flex: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    font-size: 0.92rem;
  }

  .hero-visual {
    display: block;
    padding-left: 0;
    width: 100%;
  }

  .hero--dark .hero-visual {
    padding-left: 0;
    max-width: 100%;
  }

  .hero-play {
    position: relative;
    left: 0;
    top: 0;
    flex-direction: row;
    max-width: none;
    margin-bottom: 12px;
    justify-content: flex-start;
  }

  .hero-play-btn {
    width: 42px;
    height: 42px;
  }

  .hero-side-tag,
  .hero-float,
  .hero-decor {
    display: none;
  }

  .hero-course-float {
    position: static;
    transform: none;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }

  .hero-image-wrap,
  .hero--dark .hero-image-wrap {
    border-radius: 22px;
  }

  .hero-image-wrap img,
  .hero--dark .hero-image-wrap img {
    width: 100%;
    max-height: 240px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .hero-stats-bar,
  .hero-stats-bar--overlay {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .hero-stats-bar--overlay {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 8px;
  }

  .hero-stat-item strong {
    font-size: 0.95rem;
  }

  .hero-stat-item span {
    font-size: 0.65rem;
  }

  .hero-popular {
    gap: 12px;
  }

  .hero-popular-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px 8px;
  }

  .hero-popular-item:nth-child(5) {
    grid-column: 2 / span 2;
  }

  .hero-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 8px;
  }

  .courses-grid,
  .courses--neon .courses-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }

  .blogs-grid,
  .process-grid,
  .footer-grid,
  .contact-touch-bar {
    grid-template-columns: 1fr;
  }

  .why-us--v2 .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }

  .why-us--v2 .why-card,
  .why-us--v2 .why-card--03,
  .why-us--v2 .why-card--04 {
    grid-column: auto !important;
    max-width: none;
    justify-self: stretch;
    padding: 14px 12px 14px;
    border-radius: 18px;
  }

  .why-us--v2 .why-card--05 {
    grid-column: 1 / -1 !important;
    max-width: none;
    justify-self: stretch;
    padding: 14px 12px 14px;
    border-radius: 18px;
  }

  .why-us--v2 .why-card h3 {
    font-size: 0.88rem;
    margin-bottom: 8px;
  }

  .why-us--v2 .why-card p {
    font-size: 0.72rem;
    line-height: 1.45;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .why-card-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
  }

  .why-card-icon svg {
    width: 18px;
    height: 18px;
  }

  .why-card-top {
    margin-bottom: 10px;
  }

  .why-card-num {
    min-width: 32px;
    height: 24px;
    font-size: 0.65rem;
  }

  .why-card-more {
    font-size: 0.75rem;
  }

  .course-card--neon .course-card-body {
    padding: 14px 12px 16px;
  }

  .course-card--neon .course-card-body h3 {
    font-size: 0.95rem;
  }

  .course-card--neon .course-card-body p {
    font-size: 0.78rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .course-card-links {
    gap: 6px;
  }

  .course-card-links a {
    font-size: 0.68rem;
    padding: 6px 10px;
  }

  .course-card-media {
    aspect-ratio: 16 / 11;
  }

  .stats--impact .stats-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .process-orbit-slot {
    min-height: 0;
    padding-bottom: 0;
    display: block;
    margin-bottom: 0;
  }

  .process--orbit .process-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 16vh;
    margin-inline: 0;
    overflow: visible !important;
  }

  .process-orbit-card {
    position: sticky;
    top: calc(var(--header-height, 64px) + 10px);
    width: 100%;
    max-width: none;
    flex: none;
    margin: 0 0 32px;
    border-radius: 20px;
    overflow: hidden;
    background: #0c100c;
    isolation: isolate;
  }

  .process-orbit-card--aptitude {
    background: #0a0e18;
  }

  .process-orbit-card--recommend {
    background: #100a16;
  }

  .process-orbit-card--beyond {
    background: #140e0a;
  }

  .process--orbit .process-stack > .process-orbit-card:last-child {
    margin-bottom: 0;
  }

  .process-orbit-body,
  .process-aptitude-body,
  .process-recommend-body,
  .process-beyond-body {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 16px 14px 18px !important;
    gap: 12px;
  }

  .process-orbit-visual,
  .process-aptitude-visual,
  .process-recommend-visual,
  .process-beyond-visual {
    order: -1;
    width: min(100%, 148px);
    max-width: 148px;
    aspect-ratio: 1;
    margin-inline: auto;
  }

  .process-aptitude-visual,
  .process-recommend-visual,
  .process-beyond-visual {
    grid-template-columns: 1fr;
    display: block;
  }

  .process-aptitude-stage,
  .process-recommend-stage,
  .process-beyond-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
  }

  .process-aptitude-side,
  .process-beyond-side,
  .process-float-pill,
  .process-aptitude-float,
  .process-recommend-float,
  .process-beyond-float,
  .process-recommend-dots {
    display: none !important;
  }

  /* 2×2 feature chips — like course card (icon + label) */
  .process-orbit-features,
  .process-aptitude-icons,
  .process-recommend-icons,
  .process-beyond-icons {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px 12px;
    margin: 0 0 16px;
  }

  .process-orbit-features li,
  .process-aptitude-icons li,
  .process-recommend-icons li,
  .process-beyond-icons li {
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 10px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.92);
  }

  .process-orbit-features li:hover,
  .process-aptitude-icons li:hover {
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .process-orbit-fic,
  .process-aptitude-ic {
    width: 40px !important;
    height: 40px !important;
    border-radius: 11px !important;
    flex-shrink: 0;
  }

  .process-orbit-fic svg,
  .process-aptitude-ic svg {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px;
    max-height: 18px;
  }

  .process-orbit-content h3,
  .process-aptitude-content h3,
  .process-recommend-content h3,
  .process-beyond-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .process-orbit-content > p,
  .process-aptitude-content > p,
  .process-recommend-content > p,
  .process-beyond-content > p,
  .process-aptitude-kicker {
    font-size: 0.84rem;
    line-height: 1.45;
    margin-bottom: 12px;
  }

  .process-orbit-step {
    margin-bottom: 10px;
  }

  .process-recommend-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
  }

  .process-recommend-skip {
    display: inline-flex !important;
    width: 100%;
    justify-content: center;
  }

  .process-orbit-cta {
    width: 100%;
    justify-content: center;
  }

  .process-mobile-nav {
    display: none !important;
  }

  .contact-section--touch .contact-grid {
    gap: 16px;
  }

  .contact-section--touch .contact-info-card,
  .contact-section--touch .contact-form-card {
    padding: 22px 16px;
  }

  .contact-touch-bar {
    padding: 18px 14px;
    gap: 16px;
  }

  .why-features {
    grid-template-columns: 1fr;
    padding: 18px 14px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .testimonials-track,
  .testimonial-track {
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 7vw;
    padding-inline: 7vw;
    gap: 12px;
  }

  .testimonial-card,
  .testimonials--dark .testimonial-card {
    flex: 0 0 86vw;
    width: 86vw;
    min-width: 86vw;
    max-width: 86vw;
    scroll-snap-align: center;
    min-height: 0;
  }

  .testimonials--dark .slider-controls,
  .testimonials--dark .tm-dots-nav {
    display: none !important;
  }

  .testimonials--dark .tm-side-btn {
    display: grid !important;
  }

  .brand-marquee-text {
    font-size: clamp(2rem, 12vw, 3.5rem);
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 480px) {
  :root {
    --container-pad: 14px;
    --topbar-height: 40px;
    --header-main-height: 68px;
    --header-height: calc(var(--topbar-height) + var(--header-main-height));
  }

  .top-bar a.top-bar-cta {
    height: 28px;
    padding: 0 12px;
    font-size: 0.7rem;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .logo-img {
    height: 40px;
  }

  .logo-img--on-dark {
    height: 44px;
    max-width: min(190px, 68vw);
  }

  .hero--dark h1,
  .hero.hero--v2 h1 {
    font-size: clamp(1.55rem, 8vw, 1.95rem);
  }

  .hero-badge {
    font-size: 0.7rem;
  }

  .hero-features,
  .hero-features--row {
    gap: 8px;
  }

  .hero-features--row li,
  .hero-features li {
    font-size: 0.72rem;
    padding: 9px 8px;
  }

  .hero-image-wrap img,
  .hero--dark .hero-image-wrap img {
    max-height: 200px;
  }

  .hero-stats-bar--overlay .hero-stat-item:nth-child(n + 3) {
    display: none;
  }

  .hero-popular-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 8px 6px;
  }

  .hero-popular-item {
    font-size: 0.62rem;
    gap: 6px;
    padding: 6px 2px;
  }

  .hero-popular-item .hero-pop-ic {
    width: 36px;
    height: 36px;
    font-size: 0.7rem;
  }

  .hero-popular-item:nth-child(5) {
    grid-column: 2 / span 2;
    justify-self: center;
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px 8px;
    padding: 12px 10px;
  }

  .hero-trust-item {
    gap: 8px;
    padding: 4px 2px;
  }

  .hero-trust-item strong {
    font-size: 0.72rem;
  }

  .hero-trust-item span {
    font-size: 0.65rem;
  }

  .process-aptitude-ic {
    width: 48px;
    height: 48px;
  }

  .process-aptitude-ic svg {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px;
    max-height: 18px;
  }

  .process-aptitude-icons li {
    font-size: 0.68rem;
  }

  .contact-touch-bar li {
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .hero--dark h1,
  .hero.hero--v2 h1 {
    font-size: 1.45rem;
  }

  .hero-features,
  .hero-features--row {
    grid-template-columns: 1fr;
  }

  .btn {
    font-size: 0.88rem;
  }
}

/* ===== Contact page — info first, then form ===== */
.contact-hero-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.contact-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.contact-card {
  display: block;
  padding: 28px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  border-top: 3px solid var(--color-coral);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.contact-card-ic {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(249, 93, 93, 0.12);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.contact-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

a.contact-card:hover h3 {
  color: var(--color-coral);
}

.contact-form-section {
  padding: 72px 0;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-section .ipage-hero-form {
  position: static;
}

.contact-form-intro .section-title {
  margin-bottom: 14px;
}

.contact-form-intro > p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-benefits {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.contact-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--color-text);
}

.contact-benefits li span {
  flex: none;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(249, 93, 93, 0.14);
  color: var(--color-coral);
  font-size: 0.7rem;
  font-weight: 800;
}

.contact-hours {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.contact-intro-img {
  margin-top: 26px;
}

.contact-intro-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ===== About page redesign ===== */
.ipage-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.about-intro {
  padding: 84px 0 56px;
}

.about-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 22px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
}

.about-feature-ic {
  flex: none;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(249, 93, 93, 0.14);
  color: var(--color-coral);
  font-size: 0.72rem;
  font-weight: 800;
}

.about-image-wrap {
  position: relative;
}

.about-badge-since {
  position: absolute;
  right: -8px;
  bottom: -18px;
  background: var(--color-coral);
  color: #fff;
  border-radius: 16px;
  padding: 14px 22px;
  text-align: center;
  box-shadow: 0 16px 34px rgba(249, 93, 93, 0.35);
}

.about-badge-since strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.92;
}

.about-badge-since span {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

/* Mission & Vision */
.about-mv {
  padding: 16px 0 8px;
}

.about-mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-mv-card {
  position: relative;
  padding: 36px 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--color-coral);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about-mv-ic {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(249, 93, 93, 0.12);
  font-size: 1.55rem;
  margin-bottom: 18px;
}

.about-mv-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.about-mv-card p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Why-choose icon cards */
.about-why .highlight-card {
  border-top: none;
  border-left: 3px solid var(--color-coral);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-why .highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-why .hl-ic {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(86, 114, 29, 0.12);
  font-size: 1.35rem;
  margin-bottom: 14px;
}

/* Stats band */
.about-stats-band {
  background: #1e293b;
  padding: 56px 0;
}

.about-stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.asb-item {
  text-align: center;
}

.asb-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-coral);
  line-height: 1;
}

.asb-txt {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-top: 8px;
}

/* CTA band */
.about-cta {
  padding: 72px 0;
}

.about-cta-inner {
  text-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  padding: 56px 32px;
}

.about-cta-inner h2 {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.about-cta-inner p {
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto 28px;
}

.about-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .about-feature-list,
  .about-mv-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-band-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  .about-badge-since {
    right: 12px;
    bottom: -16px;
  }
}

/* ============================================
   Responsive polish — mobile-first hardening
   (branding/content unchanged)
   ============================================ */

.btn,
.nav-link,
.nav-dropdown-toggle,
.gallery-tab,
.tm-nav-btn,
.hero-play-btn {
  min-height: 44px;
}

.nav-link,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
}

.gallery-tab {
  min-height: 44px;
  padding-block: 12px;
}

img,
video,
svg {
  max-width: 100%;
}

.gallery-section,
.stats--impact,
.testimonials,
.contact-section,
.courses--neon,
.why-us,
.faq,
.footer {
  max-width: 100%;
}

@media (max-width: 1024px) {
  .hero-features--row li {
    white-space: normal;
  }

  .hero-play-btn {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }

  .process-orbit-features {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: clamp(40px, 8vw, 64px);
    --container-pad: clamp(14px, 4vw, 20px);
  }

  .footer {
    padding: 40px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .gallery-section {
    padding: 48px 0;
  }

  .gallery-layout {
    padding-inline: clamp(14px, 4vw, 20px);
  }

  .stats--impact .stat-card {
    padding: 22px 16px 64px;
  }

  .stat-icon-wrap {
    width: 72px;
    height: 72px;
  }

  .why-us--v2 .why-card {
    padding: 20px 16px;
  }

  .testimonials--dark .testimonial-card,
  .testimonial-card {
    min-height: 0 !important;
    padding: 22px 18px;
  }

  .contact-section--touch {
    padding-block: clamp(48px, 8vw, 72px);
  }

  .contact-section--touch .contact-info-card,
  .contact-section--touch .contact-form-card {
    padding: 22px 18px;
  }

  .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    padding-block: 12px;
  }

  .process-orbit-body,
  .process-aptitude-body,
  .process-recommend-body,
  .process-beyond-body {
    padding: 22px 16px 26px !important;
  }

  .process-float-pill {
    max-width: 46%;
    font-size: 0.68rem;
  }

  .company-pill {
    min-width: 0;
    width: clamp(130px, 42vw, 180px);
  }

  .mobile-nav a,
  .mobile-nav-group,
  .mobile-accordion-trigger {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .process-orbit-features,
  .process-aptitude-icons,
  .process-recommend-icons,
  .process-beyond-icons {
    grid-template-columns: 1fr 1fr !important;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: none !important;
    grid-auto-rows: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    gap: 8px;
  }

  .gallery-item--a,
  .gallery-item--b,
  .gallery-item--c,
  .gallery-item--d,
  .gallery-item--e,
  .gallery-item--f,
  .gallery-item--g,
  .gallery-item--h,
  .gallery-item--i,
  .gallery-item--j {
    grid-area: auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 0 !important;
    aspect-ratio: 3 / 4;
  }

  .contact-touch-bar {
    grid-template-columns: 1fr !important;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .courses-grid,
  .courses--neon .courses-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  .why-us--v2 .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  .blogs-grid {
    grid-template-columns: 1fr !important;
  }

  .about-stats-band-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 360px) {
  :root {
    --container-pad: 12px;
  }

  .hero.hero--v2 h1,
  .hero--dark h1 {
    font-size: clamp(1.4rem, 8vw, 1.7rem);
  }

  .gallery-stats strong {
    font-size: 1.15rem;
  }

  .company-pill {
    width: clamp(120px, 48vw, 150px);
    min-height: 68px;
    padding: 12px 14px;
  }
}

@media (min-width: 1440px) {
  .container,
  .gallery-layout,
  .process--orbit > .container {
    max-width: min(1500px, 100%);
  }
}

/* Testimonials: hide dots only; side arrows stay visible */
#testimonials .slider-controls,
#testimonials .tm-dots-nav,
.testimonials .slider-controls,
.testimonials .tm-dots-nav {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

#testimonials .tm-side-btn,
.testimonials .tm-side-btn {
  display: grid !important;
  visibility: visible !important;
  pointer-events: auto !important;
  height: 48px !important;
  overflow: visible !important;
}

#testimonials .testimonial-slider,
.testimonials .testimonial-slider {
  margin-top: 36px;
  padding-bottom: 0;
}

#testimonials.testimonials--dark,
.testimonials.testimonials--dark {
  padding-block: clamp(48px, 7vw, 88px);
}

#testimonials .testimonial-track,
.testimonials--dark .testimonial-track {
  padding-top: 12px;
  padding-bottom: 8px;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  #testimonials .testimonial-slider,
  .testimonials .testimonial-slider {
    margin-top: 28px;
  }

  #testimonials,
  .testimonials.testimonials--dark {
    padding-block: clamp(40px, 8vw, 64px);
  }

  #testimonials .tm-head,
  .testimonials--dark .tm-head {
    margin-bottom: 0;
  }

  #testimonials .testimonial-track,
  .testimonials--dark .testimonial-track {
    padding-top: 10px;
    padding-bottom: 4px;
  }
}

@media (min-width: 1920px) {
  :root {
    --container-pad: 48px;
  }
}

/* ============================================
   Blog Page (dark mockup)
   ============================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.blog-page {
  --blog-bg: #0b0d0a;
  --blog-surface: #141714;
  --blog-surface-2: #1a1e18;
  --blog-border: rgba(255, 255, 255, 0.08);
  --blog-muted: #9aa39a;
  --blog-neon: #b6f500;
  background: var(--blog-bg);
  color: #f2f4f0;
}

.blog-page .header:not(.scrolled) {
  background: transparent;
}

.blog-page .header:not(.scrolled) .nav-link,
.blog-page .header:not(.scrolled) .nav-dropdown-toggle {
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
}

.blog-page .header:not(.scrolled) .nav-link:hover,
.blog-page .header:not(.scrolled) .nav-dropdown-toggle:hover,
.blog-page .header:not(.scrolled) .nav-dropdown.open .nav-dropdown-toggle,
.blog-page .header:not(.scrolled) .nav-dropdown:hover .nav-dropdown-toggle {
  color: #0f172a;
  background: #eef2e6;
}

.blog-page .header:not(.scrolled) .nav-link.active {
  color: var(--blog-neon);
  background: rgba(182, 245, 0, 0.12);
}

.blog-page .header:not(.scrolled) .nav-link.active::after,
.blog-page .header:not(.scrolled) .nav-link:hover::after {
  background: var(--blog-neon);
}

.blog-page .header:not(.scrolled) .btn-outline {
  color: var(--blog-neon);
  border-color: var(--blog-neon);
  background: transparent;
}

.blog-page .header:not(.scrolled) .btn-outline:hover {
  background: var(--blog-neon);
  color: #0b0d0a;
}

.blog-page .header:not(.scrolled) .btn-primary {
  background: var(--blog-neon);
  color: #0b0d0a;
  border-color: var(--blog-neon);
}

.blog-page .header:not(.scrolled) .menu-toggle span {
  background: #fff;
}

.blog-page .header.scrolled {
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(32px) saturate(1.8);
  -webkit-backdrop-filter: blur(32px) saturate(1.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.blog-page .header.scrolled .nav-link,
.blog-page .header.scrolled .nav-dropdown-toggle {
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
}

.blog-page .header.scrolled .nav-link:hover,
.blog-page .header.scrolled .nav-dropdown-toggle:hover,
.blog-page .header.scrolled .nav-dropdown.open .nav-dropdown-toggle,
.blog-page .header.scrolled .nav-dropdown:hover .nav-dropdown-toggle {
  color: #0f172a;
  background: #eef2e6;
}

.blog-page .header.scrolled .nav-link.active {
  color: var(--blog-neon);
  background: rgba(182, 245, 0, 0.12);
}

.blog-page .header.scrolled .nav-link.active::after,
.blog-page .header.scrolled .nav-link:hover::after {
  background: var(--blog-neon);
}

.blog-page .header.scrolled .btn-outline {
  color: var(--blog-neon);
  border-color: var(--blog-neon);
}

.blog-page .header.scrolled .btn-primary {
  background: var(--blog-neon);
  color: #0b0d0a;
  border-color: var(--blog-neon);
}

.blog-page .header.scrolled .menu-toggle span {
  background: #fff;
}

.blog-main {
  padding: calc(var(--header-height) + 36px) 0 72px;
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.9fr);
  gap: 28px 40px;
  align-items: end;
  margin-bottom: 28px;
}

.blog-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blog-neon);
  margin-bottom: 12px;
}

.blog-kicker::after {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--blog-neon);
  border-radius: 2px;
}

.blog-hero-copy h1 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 12px;
}

.blog-hero-copy h1 span {
  color: var(--blog-neon);
}

.blog-hero-copy p {
  max-width: 46ch;
  color: var(--blog-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.blog-hero-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.blog-search {
  display: flex;
  align-items: stretch;
  flex: 1 1 220px;
  max-width: 280px;
  min-width: 180px;
}

.blog-search input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--blog-border);
  border-right: 0;
  border-radius: 10px 0 0 10px;
  background: var(--blog-surface);
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
}

.blog-search input::placeholder {
  color: #7a8478;
}

.blog-search input:focus {
  outline: none;
  border-color: rgba(182, 245, 0, 0.45);
}

.blog-search-btn {
  width: 46px;
  height: 44px;
  border: 0;
  border-radius: 0 10px 10px 0;
  background: var(--blog-neon);
  color: #0b0d0a;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.blog-search-btn svg {
  width: 18px;
  height: 18px;
}

.blog-select-wrap {
  position: relative;
}

.blog-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  height: 44px;
  padding: 0 36px 0 14px;
  border: 1px solid var(--blog-border);
  border-radius: 10px;
  background: var(--blog-surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239aa39a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 12px center;
  color: #e8ebe6;
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
}

.blog-select-wrap select:focus {
  outline: none;
  border-color: rgba(182, 245, 0, 0.45);
}

.blog-view-toggle {
  display: inline-flex;
  gap: 6px;
}

.blog-view-toggle button {
  width: 40px;
  height: 44px;
  border: 1px solid var(--blog-border);
  border-radius: 10px;
  background: var(--blog-surface);
  color: var(--blog-muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.blog-view-toggle button svg {
  width: 16px;
  height: 16px;
}

.blog-view-toggle button.is-active,
.blog-view-toggle button:hover {
  color: var(--blog-neon);
  border-color: rgba(182, 245, 0, 0.55);
  background: rgba(182, 245, 0, 0.08);
}

.blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 4px;
}

.blog-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--blog-border);
  background: transparent;
  color: #c8cfc6;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.blog-cat svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.blog-cat:hover {
  border-color: rgba(182, 245, 0, 0.4);
  color: #fff;
}

.blog-cat.is-active {
  border-color: var(--blog-neon);
  color: var(--blog-neon);
  background: rgba(182, 245, 0, 0.06);
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px 32px;
  align-items: start;
}

.blog-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-feed[data-view="list"] {
  grid-template-columns: 1fr;
}

.blog-feed[data-view="list"] .bp-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: stretch;
}

.blog-feed[data-view="list"] .bp-media {
  min-height: 100%;
  aspect-ratio: auto;
}

.bp-card {
  background: var(--blog-surface);
  border: 1px solid var(--blog-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.bp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(182, 245, 0, 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.bp-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f120e;
}

.bp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.bp-card:hover .bp-media img {
  transform: scale(1.05);
}

.bp-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0b0d0a;
  background: var(--blog-neon);
}

.bp-tag--green { background: #b6f500; }
.bp-tag--lime { background: #9fd600; }
.bp-tag--blue { background: #5ec8ff; }
.bp-tag--orange { background: #ffb454; }
.bp-tag--purple { background: #c9a0ff; }
.bp-tag--red { background: #ff8a8a; }

.bp-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.bp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 0.74rem;
  color: var(--blog-muted);
}

.bp-meta span,
.bp-meta time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.bp-meta svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.bp-body h2 {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin: 0;
}

.bp-body h2 a {
  color: #fff;
  text-decoration: none;
}

.bp-body h2 a:hover {
  color: var(--blog-neon);
}

.bp-body > p {
  font-size: 0.86rem;
  color: var(--blog-muted);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.bp-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blog-neon);
  text-decoration: none;
  transition: gap 0.2s;
}

.bp-more:hover {
  gap: 10px;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: calc(var(--header-height) + 16px);
}

.blog-widget {
  background: var(--blog-surface);
  border: 1px solid var(--blog-border);
  border-radius: 16px;
  padding: 20px;
}

.blog-widget h3 {
  font-size: 1.05rem;
  font-weight: 750;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.3;
}

.blog-widget > p {
  font-size: 0.84rem;
  color: var(--blog-muted);
  margin: 0 0 14px;
  line-height: 1.55;
}

.blog-widget--newsletter {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(182, 245, 0, 0.12), transparent 42%),
    var(--blog-surface);
}

.blog-widget--newsletter::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 14px;
  width: 52px;
  height: 90px;
  background-image: radial-gradient(circle, rgba(182, 245, 0, 0.55) 1.5px, transparent 1.8px);
  background-size: 10px 10px;
  pointer-events: none;
  opacity: 0.7;
}

.blog-widget-ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(182, 245, 0, 0.12);
  color: var(--blog-neon);
  margin-bottom: 12px;
}

.blog-widget-ic svg {
  width: 20px;
  height: 20px;
}

.blog-subscribe {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-subscribe input {
  height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--blog-border);
  background: #0f120e;
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
}

.blog-subscribe input:focus {
  outline: none;
  border-color: rgba(182, 245, 0, 0.5);
}

.blog-subscribe .btn-primary {
  height: 44px;
  border-radius: 10px;
  background: var(--blog-neon);
  color: #0b0d0a;
  border: 0;
  font-weight: 750;
}

.blog-subscribe .btn-primary:hover {
  filter: brightness(1.05);
}

.blog-popular {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-popular a {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.blog-popular img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.blog-popular strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 650;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 4px;
}

.blog-popular a:hover strong {
  color: var(--blog-neon);
}

.blog-popular small {
  color: var(--blog-muted);
  font-size: 0.74rem;
}

.blog-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.blog-topic {
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--blog-border);
  background: transparent;
  color: #c8cfc6;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.blog-topic:hover {
  border-color: rgba(182, 245, 0, 0.5);
  color: var(--blog-neon);
}

.blog-topics-all {
  margin-top: 2px;
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.blog-page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--blog-border);
  background: var(--blog-surface);
  color: #d5dbd2;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 650;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.blog-page-btn:hover:not(:disabled):not(.is-active) {
  border-color: rgba(182, 245, 0, 0.4);
  color: #fff;
}

.blog-page-btn.is-active {
  background: var(--blog-neon);
  border-color: var(--blog-neon);
  color: #0b0d0a;
}

.blog-page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.blog-page .footer.footer--pro {
  border-top: 1px solid var(--blog-border);
}

@media (max-width: 1200px) {
  .blog-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 22px;
  }
}

@media (max-width: 980px) {
  .blog-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .blog-hero-tools {
    justify-content: flex-start;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .blog-widget--newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .blog-main {
    padding: calc(var(--header-height) + 24px) 0 48px;
  }

  .blog-hero {
    margin-bottom: 18px;
  }

  .blog-hero-copy h1 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .blog-hero-copy p {
    font-size: 0.9rem;
  }

  .blog-search {
    max-width: none;
    flex: 1 1 100%;
  }

  .blog-select-wrap {
    flex: 1 1 auto;
  }

  .blog-select-wrap select {
    width: 100%;
  }

  .blog-cats {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 18px;
    gap: 8px;
    padding-bottom: 6px;
  }

  .blog-cats::-webkit-scrollbar {
    display: none;
  }

  .blog-cat {
    height: 36px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .blog-feed,
  .blog-feed[data-view="list"] {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .blog-feed[data-view="list"] .bp-card {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .blog-widget--newsletter::before {
    display: none;
  }

  .blog-pagination {
    margin-top: 28px;
    gap: 6px;
  }

  .blog-page-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .blog-view-toggle {
    margin-left: auto;
  }

  .bp-body {
    padding: 14px;
  }

  .bp-body h2 {
    font-size: 0.98rem;
  }
}

/* ============================================
   Contact page redesign (cu-*)
   ============================================ */
.contact-page {
  --cu-ink: #1a2e0a;
  --cu-forest: #56721D;
  --cu-forest-deep: #3f5614;
  --cu-lime: #b6f500;
  --cu-lime-soft: #6ea00f;
  --cu-muted: #5c6b57;
  --cu-card: #ffffff;
  --cu-line: rgba(86, 114, 29, 0.14);
  background: #f7faf3;
}

.cu-hero {
  position: relative;
  padding: calc(var(--header-height) + 48px) 0 28px;
  overflow: hidden;
}

.cu-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cu-dots {
  position: absolute;
  width: 120px;
  height: 90px;
  background-image: radial-gradient(circle, rgba(110, 160, 15, 0.35) 1.6px, transparent 1.8px);
  background-size: 14px 14px;
  opacity: 0.7;
}

.cu-dots--tl { top: 72px; left: 4%; }
.cu-dots--tr { top: 90px; right: 6%; width: 90px; height: 70px; }

.cu-arc {
  position: absolute;
  top: 60px;
  right: 8%;
  width: 160px;
  height: 160px;
  border: 1.5px solid rgba(110, 160, 15, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(110, 160, 15, 0.08);
}

.cu-hero-head {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cu-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--cu-lime-soft);
}

.cu-hero-head h1 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 4.2vw, 2.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--cu-ink);
}

.cu-mark {
  position: relative;
  display: inline-block;
  color: var(--cu-lime-soft);
  white-space: nowrap;
}

.cu-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12em;
  width: 100%;
  height: 0.3em;
  color: var(--cu-lime);
  pointer-events: none;
}

.cu-hero-head p {
  margin: 0 auto;
  max-width: 54ch;
  color: var(--cu-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.cu-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.cu-card {
  position: relative;
  padding: 26px 24px 28px;
  background: var(--cu-card);
  border-radius: 20px;
  border: 1px solid rgba(86, 114, 29, 0.08);
  box-shadow: 0 12px 32px rgba(30, 50, 10, 0.06);
  overflow: hidden;
}

.cu-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 4px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(90deg, var(--cu-forest), var(--cu-lime-soft));
}

.cu-card-ic {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--cu-forest);
  color: #fff;
}

.cu-card-ic svg {
  width: 22px;
  height: 22px;
}

.cu-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--cu-ink);
}

.cu-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.cu-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--cu-muted);
}

.cu-card-list a {
  color: var(--cu-ink);
  font-weight: 600;
  text-decoration: none;
}

.cu-card-list a:hover {
  color: var(--cu-lime-soft);
}

.cu-mini-ic {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(86, 114, 29, 0.12);
  color: var(--cu-forest);
}

.cu-mini-ic svg {
  width: 11px;
  height: 11px;
}

.cu-split {
  position: relative;
  padding: 40px 0 88px;
  overflow: hidden;
}

.cu-split::before {
  content: "";
  position: absolute;
  left: -40px;
  bottom: 40px;
  width: 180px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(110, 160, 15, 0.28) 1.5px, transparent 1.7px);
  background-size: 14px 14px;
  pointer-events: none;
}

.cu-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.cu-promo {
  --cu-promo-dark: #0a2a12;
  --cu-promo-lime: #9acd00;
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(260px, 1fr);
  min-height: 560px;
  border-radius: 28px;
  background: var(--cu-promo-dark);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(10, 42, 18, 0.22);
}

.cu-promo-curve {
  display: none;
}

.cu-promo-visual {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  background: #f7faf2;
  margin-left: -40px;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.cu-promo-art {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 55% center;
}

.cu-promo-copy {
  position: relative;
  z-index: 2;
  padding: 48px 24px 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cu-promo-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  padding: 9px 16px;
  border-radius: 10px;
  background: transparent;
  border: 1.5px solid var(--cu-promo-lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
}

.cu-promo-badge svg {
  width: 15px;
  height: 15px;
  color: var(--cu-promo-lime);
}

.cu-promo-copy h2 {
  margin: 0 0 14px;
  max-width: 12ch;
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}

.cu-promo-copy h2 em {
  font-style: normal;
  color: var(--cu-promo-lime);
}

.cu-promo-copy > p {
  margin: 0 0 28px;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  line-height: 1.65;
}

.cu-promo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
  max-width: 400px;
}

.cu-promo-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.94);
}

.cu-promo-ic {
  flex: none;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--cu-promo-lime);
  background: transparent;
  color: #fff;
}

.cu-promo-ic svg {
  width: 16px;
  height: 16px;
}

.cu-promo-dots {
  position: absolute;
  left: 40px;
  bottom: 24px;
  width: 72px;
  height: 48px;
  background-image: radial-gradient(circle, rgba(154, 205, 0, 0.55) 1.5px, transparent 1.7px);
  background-size: 12px 12px;
  pointer-events: none;
}

.cu-form-wrap {
  min-width: 0;
}

.cu-form-card {
  height: 100%;
  padding: 30px 28px 26px;
  border-radius: 22px;
  border: 1px solid rgba(86, 114, 29, 0.1);
  background: #fff;
  box-shadow: 0 16px 40px rgba(30, 50, 10, 0.08);
}

.cu-form-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.cu-form-head-ic {
  flex: none;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1f3a14;
  color: #fff;
}

.cu-form-head-ic svg {
  width: 22px;
  height: 22px;
}

.cu-form-card .form-title {
  margin: 0 0 6px;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111;
}

.cu-form-card .form-title em {
  font-style: normal;
  color: #56721D;
}

.cu-form-title-mark {
  position: relative;
  display: inline-block;
}

.cu-form-title-mark::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.05em;
  width: 1.05em;
  height: 3px;
  border-radius: 2px;
  background: #6ea00f;
}

.cu-form-card .form-subtitle {
  margin: 0;
  color: #6b7a66;
  font-size: 0.9rem;
  line-height: 1.45;
}

.cu-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cu-form-card .form-group {
  margin-bottom: 16px;
}

.cu-form-card .form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
}

.cu-form-card .required {
  color: #e11d48;
}

.cu-form-card .optional-label {
  font-weight: 500;
  color: #6b7a66;
}

.cu-field {
  position: relative;
}

.cu-field-ic {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #56721D;
  pointer-events: none;
  z-index: 1;
}

.cu-field-ic svg {
  width: 18px;
  height: 18px;
  display: block;
}

.cu-form-card .cu-field input,
.cu-form-card .cu-field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px 12px 44px;
  border: 1.5px solid #d7ddd2;
  border-radius: 12px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cu-form-card .cu-field--select select {
  padding-left: 14px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2356721D' stroke-width='2.4'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.cu-form-card textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px;
  border: 1.5px solid #d7ddd2;
  border-radius: 12px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 0.95rem;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cu-form-card .cu-field input:focus,
.cu-form-card .cu-field select:focus,
.cu-form-card textarea:focus {
  border-color: #6ea00f;
  box-shadow: 0 0 0 4px rgba(110, 160, 15, 0.12);
}

.cu-form-card .form-group.has-error .cu-field input,
.cu-form-card .form-group.has-error .cu-field select,
.cu-form-card .form-group.has-error textarea {
  border-color: #e11d48;
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
}

.cu-form-card .cu-field input::placeholder,
.cu-form-card textarea::placeholder {
  color: #9aa894;
}

.cu-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  margin-top: 6px;
  padding: 12px 56px 12px 22px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #1f3a14 0%, #56721D 55%, #6ea00f 100%);
  color: #fff;
  font: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(31, 58, 20, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cu-submit-text {
  position: relative;
  z-index: 1;
}

.cu-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(31, 58, 20, 0.34);
  filter: brightness(1.03);
}

.cu-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.cu-submit-arrow {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #56721D;
}

.cu-submit-arrow svg {
  width: 16px;
  height: 16px;
}

.cu-form-card .form-success {
  text-align: center;
  padding: 24px 8px;
}

.cu-form-card #resetFormBtn {
  margin-top: 20px;
}

@media (max-width: 640px) {
  .cu-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 1100px) {
  .cu-split-grid {
    grid-template-columns: 1fr;
  }

  .cu-promo {
    min-height: 0;
    grid-template-columns: 1.2fr 0.9fr;
  }
}

@media (max-width: 900px) {
  .cu-cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .cu-arc {
    opacity: 0.45;
  }
}

@media (max-width: 720px) {
  .cu-hero {
    padding-top: calc(var(--header-height) + 36px);
  }

  .cu-promo {
    grid-template-columns: 1fr;
    background: var(--cu-promo-dark);
  }

  .cu-promo-curve {
    display: none;
  }

  .cu-promo-copy {
    padding: 32px 24px 28px;
  }

  .cu-promo-copy h2 {
    max-width: none;
  }

  .cu-promo-copy > p {
    max-width: none;
  }

  .cu-promo-list {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .cu-promo-dots {
    position: relative;
    left: 0;
    bottom: auto;
    margin-top: 22px;
  }

  .cu-promo-visual {
    min-height: 320px;
    margin-left: 0;
    clip-path: none;
    padding: 0;
  }

  .cu-promo-art {
    min-height: 320px;
    object-position: center top;
  }

  .cu-form-card {
    padding: 26px 20px 22px;
  }
}

@media (max-width: 480px) {
  .cu-promo-visual {
    display: none;
  }

  .cu-promo {
    background: var(--cu-promo-dark);
  }
}

/* ============================================
   Internship page redesign (int-*)
   ============================================ */
.internship-page {
  --int-lime: #9acd00;
  --int-lime-soft: #6ea00f;
  --int-dark: #0a1208;
  --int-panel: #111a0e;
}

.internship-page .header:not(.scrolled) {
  background: transparent;
}

.internship-page .header:not(.scrolled) .nav-link,
.internship-page .header:not(.scrolled) .nav-dropdown-toggle {
  color: rgba(255, 255, 255, 0.82);
}

.internship-page .header:not(.scrolled) .nav-link:hover,
.internship-page .header:not(.scrolled) .nav-dropdown-toggle:hover,
.internship-page .header:not(.scrolled) .nav-dropdown.open .nav-dropdown-toggle,
.internship-page .header:not(.scrolled) .nav-dropdown:hover .nav-dropdown-toggle {
  color: #0f172a;
  background: rgba(238, 242, 230, 0.92);
}

.internship-page .header:not(.scrolled) .nav-link.active {
  color: var(--int-lime);
  background: rgba(154, 205, 0, 0.12);
}

.internship-page .header:not(.scrolled) .nav-link.active::after,
.internship-page .header:not(.scrolled) .nav-link:hover::after {
  background: var(--int-lime);
}

.internship-page .header:not(.scrolled) .btn-outline,
.internship-page .header.scrolled .btn-outline {
  color: var(--int-lime-soft);
  border-color: var(--int-lime-soft);
  background: transparent;
}

.internship-page .header:not(.scrolled) .btn-outline:hover,
.internship-page .header.scrolled .btn-outline:hover {
  background: var(--int-lime-soft);
  color: #fff;
}

.internship-page .header:not(.scrolled) .btn-primary,
.internship-page .header.scrolled .btn-primary {
  background: var(--int-lime);
  color: #0a1208;
}

.internship-page .logo-img--on-light,
.internship-page .header:not(.scrolled) .logo-img--on-light,
.internship-page .header.scrolled .logo-img--on-light {
  display: none;
}

.internship-page .logo-img--on-dark,
.internship-page .header:not(.scrolled) .logo-img--on-dark,
.internship-page .header.scrolled .logo-img--on-dark {
  display: block;
}

.internship-page .header:not(.scrolled) .menu-toggle span,
.internship-page .header.scrolled .menu-toggle span {
  background: #fff;
}

.internship-page .header.scrolled {
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
}

.internship-page .header.scrolled .nav-link,
.internship-page .header.scrolled .nav-dropdown-toggle {
  color: rgba(255, 255, 255, 0.88);
}

.internship-page .header.scrolled .nav-link:hover,
.internship-page .header.scrolled .nav-dropdown-toggle:hover,
.internship-page .header.scrolled .nav-dropdown.open .nav-dropdown-toggle,
.internship-page .header.scrolled .nav-dropdown:hover .nav-dropdown-toggle,
.internship-page .header.scrolled .nav-link.active {
  color: var(--int-lime);
}

.int-hero {
  position: relative;
  padding: calc(var(--header-height) + 36px) 0 72px;
  background:
    radial-gradient(ellipse 55% 45% at 15% 20%, rgba(154, 205, 0, 0.08), transparent 58%),
    radial-gradient(ellipse 40% 35% at 85% 70%, rgba(154, 205, 0, 0.05), transparent 55%),
    linear-gradient(165deg, #0a1208 0%, #0d1609 45%, #0a1008 100%);
  color: #fff;
  scroll-margin-top: calc(var(--header-height) + 12px);
  overflow: hidden;
}

.int-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.int-dots {
  position: absolute;
  width: 130px;
  height: 100px;
  background-image: radial-gradient(circle, rgba(154, 205, 0, 0.32) 1.5px, transparent 1.7px);
  background-size: 14px 14px;
  opacity: 0.55;
}

.int-dots--tl { top: 80px; left: 3%; }
.int-dots--br { bottom: 60px; right: 4%; width: 100px; height: 80px; opacity: 0.35; }

.int-hawa {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(520px, 55vw);
  transform: translate(-55%, -52%);
  opacity: 0.55;
  filter: drop-shadow(0 0 40px rgba(154, 205, 0, 0.12));
}

.int-glow {
  position: absolute;
  left: 8%;
  bottom: 12%;
  width: min(360px, 45vw);
  height: min(200px, 24vw);
  background: radial-gradient(ellipse, rgba(154, 205, 0, 0.14), transparent 70%);
  filter: blur(18px);
}

.int-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 4vw, 44px);
  align-items: start;
}

.int-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--int-lime);
}

.int-kicker svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.int-hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #fff;
  max-width: 14ch;
}

.int-mark {
  position: relative;
  display: inline-block;
  color: var(--int-lime);
  text-shadow: 0 0 28px rgba(154, 205, 0, 0.28);
}

.int-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.08em;
  width: 100%;
  height: 0.28em;
  color: var(--int-lime);
  pointer-events: none;
}

.int-hero-copy > p {
  margin: 0 0 22px;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.7;
}

.int-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.int-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1.5px solid transparent;
}

.int-pill svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.int-pill--green {
  background: rgba(154, 205, 0, 0.1);
  border-color: rgba(154, 205, 0, 0.45);
  color: #fff;
  box-shadow: 0 0 18px rgba(154, 205, 0, 0.12);
}

.int-pill--green svg { color: var(--int-lime); }

.int-pill--red {
  background: rgba(120, 30, 40, 0.35);
  border-color: rgba(220, 80, 90, 0.35);
  color: #fff;
}

.int-pill--red svg { color: #f87171; }

.int-pill--blue {
  background: rgba(30, 60, 120, 0.35);
  border-color: rgba(96, 165, 250, 0.35);
  color: #fff;
}

.int-pill--blue svg { color: #60a5fa; }

.int-visual {
  position: relative;
  margin-top: 4px;
}

.int-photo {
  position: relative;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  border: 2px solid rgba(154, 205, 0, 0.55);
  border-radius: 4px 20px 20px 4px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(154, 205, 0, 0.15),
    0 0 40px rgba(154, 205, 0, 0.18),
    0 20px 48px rgba(0, 0, 0, 0.45);
}

.int-photo img {
  display: block;
  width: 100%;
  height: clamp(220px, 28vw, 300px);
  object-fit: cover;
}

.int-stat {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(10, 30, 14, 0.92);
  border: 1px solid rgba(154, 205, 0, 0.25);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.int-stat strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}

.int-stat small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
}

.int-stat-ic {
  flex: none;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(154, 205, 0, 0.15);
  color: var(--int-lime);
}

.int-stat-ic svg {
  width: 18px;
  height: 18px;
}

.int-stat--tr {
  top: 14px;
  right: -8px;
}

.int-stat--bl {
  bottom: 52px;
  left: -10px;
}

.int-stat-chart {
  width: 44px;
  height: 22px;
  margin-left: 4px;
  flex-shrink: 0;
}

.int-enroll-btn {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e91e8c 0%, #f97316 55%, #fb923c 100%);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 0 32px rgba(233, 30, 140, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 2;
}

.int-enroll-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.int-enroll-btn:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow:
    0 0 40px rgba(233, 30, 140, 0.55),
    0 12px 28px rgba(0, 0, 0, 0.4);
}

.int-form-wrap {
  position: sticky;
  top: calc(var(--header-height) + 16px);
}

.int-form-card {
  padding: 28px 26px 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #fff;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.int-form-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.int-form-hex {
  flex: none;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
  background: linear-gradient(145deg, #1f3a14, #56721D);
  color: var(--int-lime);
}

.int-form-hex svg {
  width: 22px;
  height: 22px;
}

.int-form-card .form-title {
  margin: 0 0 6px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111;
}

.int-form-card .form-title em {
  font-style: normal;
  color: var(--int-lime-soft);
}

.int-form-card .form-subtitle {
  margin: 0;
  color: #6b7a66;
  font-size: 0.88rem;
  line-height: 1.45;
}

.int-form-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d7ddd2 20%, #d7ddd2 80%, transparent);
  position: relative;
}

.int-form-divider span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #d7ddd2;
  transform: rotate(45deg);
}

.int-form-card .cu-field--select select {
  padding-left: 44px;
}

.int-form-card .cu-field--textarea textarea {
  padding-left: 44px;
  padding-top: 14px;
}

.cu-field-ic--top {
  top: 16px;
  transform: none;
}

.int-perks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 4px;
  margin: 4px 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f3f5f0;
  font-size: 0.68rem;
  font-weight: 600;
  color: #4a5a44;
  line-height: 1.3;
}

.int-perks span:not(.int-perks-plus) {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.int-perks svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--int-lime-soft);
}

.int-perks-plus {
  color: #9aa894;
  font-weight: 700;
  padding: 0 2px;
}

.int-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 12px 22px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(180deg, #0a1808 0%, #142210 100%);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: visible;
}

.int-submit::before {
  content: "🚀";
  margin-right: 8px;
  font-size: 1.05rem;
}

.int-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.42);
}

.int-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.int-submit-scribble {
  position: absolute;
  right: -28px;
  bottom: -8px;
  width: 72px;
  height: 40px;
  color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .int-hero-grid {
    grid-template-columns: 1fr;
  }

  .int-form-wrap {
    position: static;
  }

  .int-hawa {
    opacity: 0.3;
  }
}

@media (max-width: 768px) {
  .int-hero {
    padding: calc(var(--header-height) + 24px) 0 56px;
  }

  .int-hero-grid {
    display: flex;
    flex-direction: column;
  }

  .int-form-wrap {
    order: -1;
  }

  .int-hero-copy h1 {
    max-width: none;
  }

  .int-stat--tr {
    right: 8px;
  }

  .int-stat--bl {
    left: 8px;
    bottom: 48px;
  }

  .int-perks {
    font-size: 0.62rem;
    gap: 4px 2px;
  }

  .int-submit-scribble {
    display: none;
  }
}

@media (max-width: 480px) {
  .int-pills {
    gap: 8px;
  }

  .int-pill {
    padding: 8px 12px;
    font-size: 0.76rem;
  }

  .int-photo {
    clip-path: none;
    border-radius: 16px;
  }

  .int-enroll-btn {
    font-size: 0.8rem;
    padding: 11px 20px;
    white-space: normal;
    text-align: center;
    max-width: 90%;
  }
}

/* Internship benefits section */
.int-benefits {
  padding: 80px 0 88px;
  background: #f8faf5;
}

.int-benefits-head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}

.int-benefits-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--int-lime-soft, #6ea00f);
}

.int-benefits-kicker::before,
.int-benefits-kicker::after {
  content: "•";
  margin: 0 6px;
  opacity: 0.7;
}

.int-benefits-head h2 {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #111;
}

.int-benefits-mark {
  color: var(--int-lime-soft, #6ea00f);
}

.int-benefits-head p {
  margin: 0;
  color: #5c6b57;
  font-size: 0.98rem;
  line-height: 1.7;
}

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

.int-ben-card {
  --ben-accent: #8b5cf6;
  --ben-glow: rgba(139, 92, 246, 0.22);
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 22px 22px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 8px 28px rgba(30, 50, 10, 0.06);
  overflow: hidden;
}

.int-ben-num {
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px 14px 8px 18px;
  background: var(--ben-accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  border-bottom-left-radius: 14px;
  line-height: 1;
}

.int-ben-ic {
  flex: none;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--ben-accent);
  box-shadow:
    0 0 0 6px var(--ben-glow),
    0 8px 20px rgba(0, 0, 0, 0.06);
}

.int-ben-ic svg {
  width: 26px;
  height: 26px;
}

.int-ben-body h3 {
  margin: 0 0 8px;
  padding-right: 36px;
  font-size: 1.02rem;
  font-weight: 800;
  color: #111;
  line-height: 1.25;
}

.int-ben-body p {
  margin: 0 0 14px;
  font-size: 0.86rem;
  line-height: 1.6;
  color: #6b7a66;
}

.int-ben-line {
  display: block;
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: var(--ben-accent);
}

.int-ben-card--purple { --ben-accent: #8b5cf6; --ben-glow: rgba(139, 92, 246, 0.2); }
.int-ben-card--green { --ben-accent: #84cc16; --ben-glow: rgba(132, 204, 22, 0.22); }
.int-ben-card--orange { --ben-accent: #f97316; --ben-glow: rgba(249, 115, 22, 0.22); }
.int-ben-card--blue { --ben-accent: #3b82f6; --ben-glow: rgba(59, 130, 246, 0.22); }
.int-ben-card--pink { --ben-accent: #ec4899; --ben-glow: rgba(236, 72, 153, 0.22); }
.int-ben-card--teal { --ben-accent: #14b8a6; --ben-glow: rgba(20, 184, 166, 0.22); }

.int-ben-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 18px 12px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 36px rgba(30, 50, 10, 0.08);
}

.int-ben-stat {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 18px;
  min-width: 0;
}

.int-ben-stat + .int-ben-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  height: 56%;
  width: 1px;
  background: #e3e8df;
}

.int-ben-stat-ic {
  flex: none;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #1a1a1a;
}

.int-ben-stat-ic svg {
  width: 22px;
  height: 22px;
}

.int-ben-stat-ic--green { background: #edf6d8; color: #4d7c0f; }
.int-ben-stat-ic--purple { background: #f1ebfb; color: #7c3aed; }
.int-ben-stat-ic--orange { background: #fff0e3; color: #ea580c; }
.int-ben-stat-ic--teal { background: #e5f7f4; color: #0f766e; }

.int-ben-stat-copy {
  min-width: 0;
  text-align: left;
}

.int-ben-stat-copy strong {
  display: block;
  font-size: 1.28rem;
  font-weight: 800;
  color: #111;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.int-ben-stat-label {
  display: block;
  margin-top: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #5f6d59;
  line-height: 1.25;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .int-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .int-ben-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 28px;
    padding: 16px 12px;
  }

  .int-ben-stat {
    justify-content: flex-start;
    padding: 14px 16px;
  }

  .int-ben-stat:nth-child(3)::before {
    display: none;
  }

  .int-ben-stat-label {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .int-benefits {
    padding: 56px 0 64px;
  }

  .int-benefits-grid {
    grid-template-columns: 1fr;
  }

  .int-ben-stats {
    grid-template-columns: 1fr;
    border-radius: 22px;
    padding: 8px 16px;
  }

  .int-ben-stat {
    justify-content: flex-start;
    padding: 14px 8px;
  }

  .int-ben-stat + .int-ben-stat::before {
    left: 8px;
    right: 8px;
    top: 0;
    width: auto;
    height: 1px;
  }
}

/* Internship domains & curriculum slider */
.int-domains {
  padding: 80px 0 72px;
  background: #f8faf5;
}

.int-domains-head {
  position: relative;
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}

.int-domains-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--int-lime-soft, #6ea00f);
}

.int-domains-kicker::before,
.int-domains-kicker::after {
  content: "•";
  margin: 0 6px;
  opacity: 0.7;
}

.int-domains-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3.5vw, 2.45rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #111;
}

.int-domains-mark {
  color: var(--int-lime-soft, #6ea00f);
}

.int-domains-head p {
  margin: 0;
  color: #5c6b57;
  font-size: 0.96rem;
  line-height: 1.7;
}

.int-dom-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.int-dom-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.int-dom-nav-item {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 14px 14px 12px;
  border: 1.5px solid #e8ece4;
  border-radius: 14px;
  background: #fff;
  color: #111;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.int-dom-nav-item:hover {
  border-color: rgba(110, 160, 15, 0.35);
  box-shadow: 0 6px 18px rgba(30, 50, 10, 0.06);
}

.int-dom-nav-item.is-active {
  background: linear-gradient(135deg, #0a2a12 0%, #142210 100%);
  border-color: rgba(154, 205, 0, 0.35);
  color: #fff;
  box-shadow: 0 10px 28px rgba(10, 42, 18, 0.22);
}

.int-dom-nav-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: #9aa894;
  min-width: 1.4em;
}

.int-dom-nav-item.is-active .int-dom-nav-num {
  color: rgba(255, 255, 255, 0.55);
}

.int-dom-nav-ic {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.int-dom-nav-ic svg {
  width: 18px;
  height: 18px;
}

.int-dom-nav-ic--green { background: rgba(132, 204, 22, 0.15); color: #65a30d; }
.int-dom-nav-ic--purple { background: rgba(139, 92, 246, 0.15); color: #7c3aed; }
.int-dom-nav-ic--orange { background: rgba(249, 115, 22, 0.15); color: #ea580c; }
.int-dom-nav-ic--blue { background: rgba(59, 130, 246, 0.15); color: #2563eb; }
.int-dom-nav-ic--pink { background: rgba(236, 72, 153, 0.15); color: #db2777; }
.int-dom-nav-ic--teal { background: rgba(20, 184, 166, 0.15); color: #0d9488; }

.int-dom-nav-item.is-active .int-dom-nav-ic {
  background: var(--int-lime, #9acd00);
  color: #0a1208;
}

.int-dom-nav-label {
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.3;
}

.int-dom-nav-arrow {
  width: 18px;
  height: 18px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.int-dom-nav-item.is-active .int-dom-nav-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--int-lime, #9acd00);
}

.int-dom-promo {
  margin-top: 8px;
  padding: 24px 20px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 20%, rgba(154, 205, 0, 0.12), transparent 45%),
    linear-gradient(160deg, #0a2a12 0%, #0d1809 100%);
  color: #fff;
  text-align: center;
  border: 1px solid rgba(154, 205, 0, 0.2);
}

.int-dom-trophy {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  color: #f5d76e;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.int-dom-trophy svg {
  width: 28px;
  height: 28px;
}

.int-dom-promo p {
  margin: 0 0 16px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
}

.int-dom-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--int-lime, #9acd00);
  color: #0a1208;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.int-dom-promo-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(154, 205, 0, 0.35);
}

.int-dom-panels {
  min-width: 0;
}

.int-dom-panel {
  display: none;
  animation: intDomFade 0.35s ease;
}

.int-dom-panel.is-active {
  display: block;
}

@keyframes intDomFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.int-dom-panel-head {
  --int-head-circuit: rgba(154, 205, 0, 0.22);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  padding: 32px 36px 36px;
  border-radius: 22px 22px 0 0;
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(154, 205, 0, 0.12), transparent 42%),
    linear-gradient(135deg, #0a2a12 0%, #14331a 48%, #0c1c10 100%);
}

.int-dom-panel-head::before {
  content: "";
  position: absolute;
  inset: 0 0 0 42%;
  pointer-events: none;
  background-image:
    linear-gradient(var(--int-head-circuit) 1px, transparent 1px),
    linear-gradient(90deg, var(--int-head-circuit) 1px, transparent 1px),
    radial-gradient(circle, rgba(154, 205, 0, 0.45) 1.2px, transparent 1.4px);
  background-size: 28px 28px, 28px 28px, 28px 28px;
  background-position: 0 0, 0 0, 14px 14px;
  opacity: 0.28;
  mask-image: linear-gradient(90deg, transparent, #000 28%);
}

.int-dom-panel-head--green { background: linear-gradient(135deg, #0a2a12 0%, #14331a 48%, #0c1c10 100%); }
.int-dom-panel-head--purple { background: linear-gradient(135deg, #1a1030 0%, #2d1b4e 55%, #150a28 100%); }
.int-dom-panel-head--orange { background: linear-gradient(135deg, #2a1508 0%, #4a2810 55%, #1a0d06 100%); }
.int-dom-panel-head--blue { background: linear-gradient(135deg, #0a1830 0%, #123060 55%, #081428 100%); }
.int-dom-panel-head--pink { background: linear-gradient(135deg, #2a0818 0%, #4a1230 55%, #180610 100%); }
.int-dom-panel-head--teal { background: linear-gradient(135deg, #082018 0%, #0e3830 55%, #061410 100%); }

.int-dom-panel-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  flex: 1 1 auto;
}

.int-dom-mod-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--int-lime, #9acd00);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.int-dom-panel-head h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  max-width: 18ch;
  color: #fff;
}

.int-dom-panel-copy p {
  margin: 0;
  max-width: 46ch;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.int-dom-panel-aside {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  min-width: 210px;
}

.int-dom-panel-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.int-dom-stat {
  display: flex;
  flex-direction: column;
  padding: 0 22px 0 0;
}

.int-dom-stat + .int-dom-stat {
  padding: 0 0 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.int-dom-stat strong {
  display: block;
  font-size: clamp(1.8rem, 2.8vw, 2.35rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}

.int-dom-stat span {
  display: block;
  margin-top: 8px;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
}

.int-dom-panel-deco {
  position: static;
  flex: none;
  width: 52px;
  height: 52px;
  margin: 0;
  color: #c8ff2a;
  opacity: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(200, 255, 42, 0.35));
}

.int-dom-panel-deco svg {
  width: 100%;
  height: 100%;
}

.int-dom-panel-deco--marketing { color: #d8b4fe; filter: drop-shadow(0 0 10px rgba(196, 181, 253, 0.4)); }
.int-dom-panel-deco--design { color: #fdba74; filter: drop-shadow(0 0 10px rgba(253, 186, 116, 0.4)); }
.int-dom-panel-deco--mobile { color: #93c5fd; filter: drop-shadow(0 0 10px rgba(147, 197, 253, 0.4)); }
.int-dom-panel-deco--analytics { color: #f9a8d4; filter: drop-shadow(0 0 10px rgba(249, 168, 212, 0.4)); }
.int-dom-panel-deco--security { color: #5eead4; filter: drop-shadow(0 0 10px rgba(94, 234, 212, 0.4)); }


.int-dom-learn {
  padding: 24px 24px 28px;
  background: #fff;
  border: 1px solid #e8ece4;
  border-top: none;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 12px 36px rgba(30, 50, 10, 0.07);
}

.int-dom-learn > h4 {
  margin: 0 0 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--int-lime-soft, #6ea00f);
}

.int-dom-module {
  --mod-accent: #84cc16;
  display: grid;
  grid-template-columns: auto 1fr minmax(120px, 180px);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid #eef2ea;
}

.int-dom-module:last-of-type {
  border-bottom: none;
  padding-bottom: 8px;
}

.int-dom-module-num {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--mod-accent) 18%, #fff);
  color: var(--mod-accent);
  font-size: 0.82rem;
  font-weight: 800;
  flex-shrink: 0;
}

.int-dom-module--green { --mod-accent: #84cc16; }
.int-dom-module--purple { --mod-accent: #8b5cf6; }
.int-dom-module--orange { --mod-accent: #f97316; }

.int-dom-module-copy h5 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 800;
  color: #111;
  line-height: 1.25;
}

.int-dom-module-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.int-dom-module-copy li {
  position: relative;
  padding-left: 14px;
  font-size: 0.84rem;
  line-height: 1.55;
  color: #6b7a66;
}

.int-dom-module-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mod-accent);
}

.int-dom-module-img {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8ece4;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.int-dom-module-img img {
  display: block;
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.int-dom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #eef2ea;
}

.int-dom-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--int-lime, #9acd00);
  color: #0a1208;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.int-dom-apply:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(154, 205, 0, 0.35);
}

.int-dom-syllabus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--int-lime-soft, #6ea00f);
  background: #fff;
  color: var(--int-lime-soft, #6ea00f);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.int-dom-syllabus:hover {
  background: rgba(110, 160, 15, 0.08);
}

.int-dom-features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 28px;
  padding: 20px 24px;
  list-style: none;
  border-radius: 18px;
  background:
    radial-gradient(circle at 10% 50%, rgba(154, 205, 0, 0.08), transparent 40%),
    linear-gradient(135deg, #0a2a12 0%, #0e2010 100%);
  border: 1px solid rgba(154, 205, 0, 0.15);
}

.int-dom-features li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.88);
}

.int-dom-feat-ic {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(234, 179, 8, 0.15);
  color: #facc15;
}

.int-dom-feat-ic svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1100px) {
  .int-dom-layout {
    grid-template-columns: 1fr;
  }

  .int-dom-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .int-dom-promo {
    grid-column: 1 / -1;
  }

  .int-dom-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .int-domains {
    padding: 56px 0 48px;
  }

  .int-dom-nav {
    grid-template-columns: 1fr;
  }

  .int-dom-module {
    grid-template-columns: auto 1fr;
  }

  .int-dom-module-img {
    grid-column: 1 / -1;
  }

  .int-dom-module-img img {
    height: 140px;
  }

  .int-dom-panel-head {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 20px 24px;
    gap: 20px;
  }

  .int-dom-panel-aside {
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    width: 100%;
  }

  .int-dom-learn {
    padding: 20px 18px 24px;
  }

  .int-dom-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 18px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .int-dom-panel {
    animation: none;
  }
}

/* Internship gallery */
.int-gal {
  padding: 72px 0 80px;
  background: #f6f7f2;
}

.int-gal-layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}

.int-gal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6ea00f;
}

.int-gal-kicker::after {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: #6ea00f;
}

.int-gal-side h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #111;
}

.int-gal-mark {
  position: relative;
  display: inline-block;
  color: #6ea00f;
}

.int-gal-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.08em;
  width: 100%;
  height: 0.28em;
  color: #9acd00;
  pointer-events: none;
}

.int-gal-side > p {
  margin: 0 0 20px;
  color: #5c6b57;
  font-size: 0.92rem;
  line-height: 1.7;
}

.int-gal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.int-gal-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1.5px solid #dce3d4;
  background: #fff;
  color: #1a1a1a;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.int-gal-tab svg {
  width: 15px;
  height: 15px;
}

.int-gal-tab:hover {
  border-color: #6ea00f;
}

.int-gal-tab.is-active {
  background: #9acd00;
  border-color: #9acd00;
  color: #0a1208;
}

.int-gal-impact {
  padding: 20px 18px 18px;
  margin-bottom: 16px;
  border-radius: 20px;
  background: linear-gradient(160deg, #151515 0%, #1c1c1c 100%);
  color: #fff;
}

.int-gal-impact h3 {
  margin: 0 0 16px;
  font-size: 0.95rem;
  font-weight: 800;
}

.int-gal-impact ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 12px;
}

.int-gal-impact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.int-gal-impact-ic {
  flex: none;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid #9acd00;
  color: #9acd00;
}

.int-gal-impact-ic svg {
  width: 15px;
  height: 15px;
}

.int-gal-impact strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
}

.int-gal-impact li span:not(.int-gal-impact-ic) {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
}

.int-gal-voice {
  position: relative;
  padding: 20px 18px 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(30, 50, 10, 0.07);
  min-height: 168px;
}

.int-gal-quote-mark {
  display: block;
  margin-bottom: 4px;
  font-size: 2.4rem;
  line-height: 0.7;
  color: #9acd00;
  font-weight: 800;
}

.int-gal-quote {
  display: none;
  margin: 0;
}

.int-gal-quote.is-active {
  display: block;
}

.int-gal-quote p {
  margin: 0 0 14px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #222;
}

.int-gal-quote footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.int-gal-quote footer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.int-gal-quote footer strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: #111;
}

.int-gal-quote footer span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #6ea00f;
}

.int-gal-dots {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 6px;
}

.int-gal-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #d7ddd2;
  cursor: pointer;
}

.int-gal-dots button.is-active {
  background: #9acd00;
}

.int-gal-main {
  position: relative;
}

.int-gal-blob {
  position: absolute;
  top: -18px;
  right: 8%;
  width: 220px;
  height: 90px;
  background: rgba(154, 205, 0, 0.22);
  border-radius: 50% 40% 50% 40%;
  filter: blur(2px);
  z-index: 0;
  pointer-events: none;
}

.int-gal-mosaic {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  grid-template-rows: minmax(210px, 28vw) minmax(150px, 18vw);
  gap: 14px;
}

.int-gal-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
}

.int-gal-tile--lg {
  grid-column: 1 / 3;
}

.int-gal-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.int-gal-tile:hover img {
  transform: scale(1.05);
}

.int-gal-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  color: #fff;
}

.int-gal-tile figcaption strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
}

.int-gal-tile figcaption span:not(.int-gal-kind) {
  display: block;
  margin-top: 2px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
}

.int-gal-kind {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-bottom: 6px;
  color: #fff;
}

.int-gal-kind svg {
  width: 16px;
  height: 16px;
}

.int-gal-play {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #111;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  z-index: 2;
}

.int-gal-play svg {
  width: 18px;
  height: 18px;
  margin-left: 2px;
}

.int-gal-tile.is-hidden,
.int-gal-strip-track img.is-hidden {
  display: none;
}

.int-gal[data-active="photo"] .int-gal-mosaic,
.int-gal[data-active="video"] .int-gal-mosaic {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: minmax(180px, 24vw);
}

.int-gal[data-active="photo"] .int-gal-tile--lg,
.int-gal[data-active="video"] .int-gal-tile--lg {
  grid-column: auto;
}

.int-gal-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.int-gal-strip-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.int-gal-strip-track::-webkit-scrollbar {
  display: none;
}

.int-gal-strip-track img {
  flex: none;
  width: 148px;
  height: 96px;
  object-fit: cover;
  border-radius: 14px;
  scroll-snap-align: start;
}

.int-gal-strip-nav {
  width: 36px;
  height: 36px;
  border: 1px solid #e0e6da;
  border-radius: 50%;
  background: #fff;
  color: #333;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.int-gal-strip-nav:hover {
  border-color: #9acd00;
  color: #56721D;
}

.int-gal-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  list-style: none;
  margin: 28px 0 0;
  padding: 22px 28px;
  border-radius: 22px;
  background: #171717;
  color: #fff;
}

.int-gal-bar li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.int-gal-bar-ic {
  flex: none;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid #9acd00;
  color: #9acd00;
}

.int-gal-bar-ic svg {
  width: 18px;
  height: 18px;
}

.int-gal-bar strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
}

.int-gal-bar span:not(.int-gal-bar-ic) {
  display: block;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .int-gal-layout {
    grid-template-columns: 1fr;
  }

  .int-gal-mosaic {
    grid-template-rows: 220px 170px;
  }

  .int-gal-bar {
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
  }
}

@media (max-width: 720px) {
  .int-gal {
    padding: 52px 0 56px;
  }

  .int-gal-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .int-gal-tile--lg,
  .int-gal[data-active="photo"] .int-gal-mosaic,
  .int-gal[data-active="video"] .int-gal-mosaic {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .int-gal-tile {
    min-height: 180px;
  }

  .int-gal-bar {
    grid-template-columns: 1fr;
    padding: 18px 20px;
    border-radius: 18px;
  }

  .int-gal-blob {
    display: none;
  }
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
}

.wa-float::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: waPulse 1.8s ease-out infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}

@media (max-width: 640px) {
  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .wa-float svg {
    width: 26px;
    height: 26px;
  }
}

.process-orbit-card.is-motion-in {
  will-change: transform, opacity;
}

.process-orbit-card.is-stacking > * {
  transform: scale(0.92);
  opacity: 0.78;
}

.process-orbit-card.is-motion-in .process-orbit-photo img,
.process-orbit-card.is-motion-in .process-aptitude-photo img,
.process-orbit-card.is-motion-in .process-recommend-photo img,
.process-orbit-card.is-motion-in .process-beyond-photo img {
  transition: transform 0.5s ease;
}

.process-orbit-card.is-motion-in:hover .process-orbit-photo img,
.process-orbit-card.is-motion-in:hover .process-aptitude-photo img,
.process-orbit-card.is-motion-in:hover .process-recommend-photo img,
.process-orbit-card.is-motion-in:hover .process-beyond-photo img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .process-orbit-card.is-stacking > * {
    transform: none;
    opacity: 1;
  }
}

html.is-scrolling .process-orbit-ring,
html.is-scrolling .hero-shape,
html.is-scrolling .process-aptitude-rings,
html.is-scrolling .process-aptitude-rings::before,
html.is-scrolling .process-aptitude-rings::after,
html.is-scrolling .process-aptitude-pie,
html.is-scrolling .process-aptitude-float--list,
html.is-scrolling .process-aptitude-float--chart,
html.is-scrolling .process-aptitude-bars i,
html.is-scrolling .process-orbit-cta,
html.is-scrolling .wa-float::after {
  animation-play-state: paused !important;
}
