/* ══════════════════════════════════════
   GLOBAL RESET & DESIGN TOKENS
   ══════════════════════════════════════ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.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;
}

:root {
  --bg: #f3f4f6;
  --bg-elevated: #ffffff;
  --bg-soft: #f9fafb;
  --primary: #2563eb;
  --primary-soft: rgba(37, 99, 235, 0.08);
  --accent: #22c55e;
  --accent-dark: #16a34a;
  --text-main: #111827;
  --text-muted: #6b7280;
  --border-subtle: #e5e7eb;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 999px;
  --hero-dark: #0f172a;
  --hero-dark2: #1e293b;
  --ff-heading: "Inter", system-ui, sans-serif;
  --ff-body: "DM Sans", system-ui, sans-serif;
  /* Glass */
  --glass-light: rgba(255, 255, 255, 0.58);
  --glass-light-strong: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.72);
  --glass-border-soft: rgba(255, 255, 255, 0.45);
  --glass-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  --glass-inset: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  --glass-blur: blur(22px) saturate(1.45);
  --glass-dark: rgba(15, 23, 42, 0.55);
  --glass-dark-strong: rgba(15, 23, 42, 0.72);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--ff-body);
  color: var(--text-main);
  line-height: 1.65;
  background-color: #dbeafe;
  background-image: radial-gradient(ellipse 110% 90% at 0% -10%, rgba(99, 102, 241, 0.42) 0%, transparent 58%),
    radial-gradient(ellipse 100% 80% at 100% 0%, rgba(56, 189, 248, 0.36) 0%, transparent 52%),
    radial-gradient(ellipse 85% 70% at 50% 100%, rgba(167, 139, 250, 0.32) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 45%, rgba(52, 211, 153, 0.2) 0%, transparent 50%),
    linear-gradient(168deg, #dbeafe 0%, #e0e7ff 22%, #fae8ff 48%, #cffafe 72%, #e0f2fe 100%);
  background-attachment: fixed;
  background-size: cover;
}

main {
  position: relative;
  z-index: 1;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

input,
textarea,
button {
  font-family: inherit;
}

img {
  max-width: 100%;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.35);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #1d4ed8, #16a34a);
}

/* ══════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════ */

.section-padding {
  padding: 104px min(8vw, 100px);
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 0;
}

/* ══════════════════════════════════════
   HEADER / NAVBAR
   ══════════════════════════════════════ */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--glass-light-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border-soft);
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.06);
  padding: 16px min(8vw, 100px);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

/* ── Hamburger ── */

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 200;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.menu-toggle:hover {
  background: #f3f4f6;
}

.menu-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  transition: transform 0.35s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.25s ease, width 0.35s cubic-bezier(0.77, 0, 0.175, 1);
  transform-origin: center;
}

.menu-toggle .bar-2 {
  width: 14px;
}

.menu-toggle.active {
  background: rgba(17, 24, 39, 0.08);
  border-color: transparent;
}

.menu-toggle.active .bar-1 {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .bar-2 {
  opacity: 0;
  width: 0;
}

.menu-toggle.active .bar-3 {
  transform: translateY(-7px) rotate(-45deg);
}

.logo {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

/* ── Brand ── */

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}

.brand div {
  min-width: 0;
}

.brand div a {
  display: block;
  line-height: 1.2;
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text-main);
}

.brand div small {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Desktop Nav ── */

.header ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 14px;
}

.header ul li {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.header ul li a {
  position: relative;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-xl);
  transition: color 0.2s ease, background 0.2s ease;
}

.header ul li a:hover {
  color: var(--primary);
  background: var(--primary-soft);
}

.nav-cta {
  padding: 8px 20px !important;
  border: 1.5px solid var(--accent-dark) !important;
  color: var(--accent-dark) !important;
  font-weight: 700 !important;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--accent-dark) !important;
  color: #ffffff !important;
  transform: scale(1.04);
}

.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

/* ══════════════════════════════════════
   MOBILE OVERLAY MENU
   ══════════════════════════════════════ */

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 15, 30, 0.94);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 2rem 0 2.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-overlay-inner {
  width: 90%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Header row: brand + close button */
.mobile-overlay-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

/* ✕ Close button */
.mobile-overlay-close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  line-height: 1;
}

.mobile-overlay-close:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  transform: scale(1.06);
}

.mobile-overlay-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-overlay-brand span {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.mobile-overlay-brand small {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateX(-20px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.mobile-overlay.open .mobile-nav-link {
  transform: translateX(0);
  opacity: 1;
}

.mobile-overlay.open .mobile-nav-link[data-index="1"] {
  transition-delay: 0.08s;
}

.mobile-overlay.open .mobile-nav-link[data-index="2"] {
  transition-delay: 0.14s;
}

.mobile-overlay.open .mobile-nav-link[data-index="3"] {
  transition-delay: 0.20s;
}

.mobile-overlay.open .mobile-nav-link[data-index="4"] {
  transition-delay: 0.26s;
}

.mobile-overlay.open .mobile-nav-link[data-index="5"] {
  transition-delay: 0.32s;
}

.mobile-overlay.open .mobile-nav-link[data-index="6"] {
  transition-delay: 0.38s;
}

.mobile-overlay.open .mobile-nav-link[data-index="7"] {
  transition-delay: 0.44s;
}

.mobile-overlay.open .mobile-nav-link[data-index="8"] {
  transition-delay: 0.5s;
}

.mobile-overlay.open .mobile-nav-link[data-index="9"] {
  transition-delay: 0.56s;
}

.mobile-link-number {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.25);
  min-width: 22px;
}

.mobile-link-text {
  font-family: var(--ff-heading);
  font-size: clamp(1.1rem, 4.5vw, 1.45rem);
  font-weight: 700;
  color: #ffffff;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover .mobile-link-text {
  color: var(--accent);
}

.mobile-nav-link:hover .mobile-link-number {
  color: var(--accent);
}

.mobile-nav-cta {
  margin-top: 0.5rem;
  border-bottom: none !important;
}

.mobile-nav-cta .mobile-link-text {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-overlay-footer {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.38s, transform 0.4s ease 0.38s;
}

.mobile-overlay.open .mobile-overlay-footer {
  opacity: 1;
  transform: translateY(0);
}

.mobile-overlay-footer p {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
}

body.nav-open {
  overflow: hidden;
}

/* ══════════════════════════════════════
   HERO SECTION — DARK GRADIENT
   ══════════════════════════════════════ */

.home {
  padding: 72px clamp(16px, 4vw, 48px) clamp(120px, 12vw, 160px);
  scroll-margin-top: 76px;
  color: #ffffff;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  background: var(--glass-dark-strong);
  backdrop-filter: blur(36px) saturate(1.35);
  -webkit-backdrop-filter: blur(36px) saturate(1.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--glass-shadow);
}

/* subtle mesh dot overlay */
.home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.home-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

/* Hero uses full viewport content width (other sections keep .section-inner max-width) */
.home .section-inner.home-inner {
  max-width: none;
}

/* One hero card: full-width title, then grid row — copy | image (right) */
.home-hero-card {
  width: 100%;
  min-height: min-content;
  overflow: visible;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.25rem, 3vw, 2.5rem) clamp(2rem, 3.5vw, 3rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home .hero-main-title {
  width: 100%;
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  margin: 0 0 clamp(1rem, 2vw, 1.35rem);
  color: #ffffff;
  text-transform: none;
  letter-spacing: -0.01em;
}

.home .home-hero-card > .hero-subtitle {
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem);
}

.hero-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 30%);
  grid-template-areas: "copy visual";
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  min-height: min-content;
}

.hero-copy-col {
  grid-area: copy;
  min-width: 0;
  padding-bottom: 2px;
}

.home .hero-main-grid .hero-visual {
  grid-area: visual;
  justify-self: end;
  width: 100%;
  max-width: min(320px, 100%);
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-badge {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #86efac;
  font-weight: 600;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1rem;
  line-height: 1.68;
}

.profileSkills {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 1.85rem;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, max-content));
  gap: 1rem;
}

.tech-strip {
  margin-top: 2.25rem;
  margin-bottom: 0;
  padding-top: 1.5rem;
  padding-bottom: 0.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 0.85rem;
}

.tech-strip span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
}

.tech-icons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(32px, 40px));
  gap: 1rem;
  align-items: center;
  justify-items: start;
}

.tech-icons img {
  width: 32px;
  height: 32px;
  filter: brightness(1.1);
  transition: transform 0.2s ease;
}

.tech-icons img:hover {
  transform: translateY(-3px) scale(1.15);
}

/* Devicon Vercel mark is dark — keep visible on hero gradient */
.home .tech-icons img[alt="Vercel"] {
  filter: brightness(0) invert(1);
}

.home .tech-icons img[alt="Vercel"]:hover {
  filter: brightness(0) invert(1);
}

/* ── Buttons (funnel: use btn + one variant) ──
   btn--primary   → main green CTA
   btn--surface   → light pages (solid, dark text)
   btn--outline   → card “View details”
   btn--on-dark   → hero / dark backgrounds (glass)
   btn--whatsapp  → WhatsApp actions
   Legacy aliases: .primary-btn, .secondary-btn, .btn-whatsapp-light */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-xl);
  border: 1.5px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease,
    border-color 0.22s ease, color 0.22s ease;
}

.btn--block {
  width: 100%;
  margin-top: 0.5rem;
}

.btn--primary,
.primary-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(34, 197, 94, 0.35);
}

.btn--primary:hover,
.primary-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 55px rgba(34, 197, 94, 0.5);
}

/* Light sections: roadmap, forms area, etc. */
.btn--surface {
  background: #ffffff;
  color: var(--text-main);
  border-color: #cbd5e1;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn--surface:hover {
  border-color: var(--primary);
  color: #1d4ed8;
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 99, 235, 0.15);
}

/* Differentiator cards & secondary actions on white cards */
.btn--outline {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  border-color: rgba(37, 99, 235, 0.38);
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.06);
}

.btn--outline:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.12);
}

/* Hero & dark strips only */
.btn--on-dark,
.secondary-btn {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.btn--on-dark:hover,
.secondary-btn:hover {
  background: #ffffff;
  color: var(--hero-dark);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.btn--whatsapp,
.btn-whatsapp-light {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  border-color: rgba(18, 140, 126, 0.55);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.28);
}

.btn--whatsapp:hover,
.btn-whatsapp-light:hover {
  background: linear-gradient(135deg, #2ee577, #15967a);
  color: #ffffff;
  border-color: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.38);
}

/* ── Hero image ── */

.userImg {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
  animation: floatHero 5s ease-in-out infinite;
  background: transparent;
  object-fit: contain;
}

.hero-visual {
  min-width: 0;
  padding: 0;
  background: transparent;
  border: none;
}

/* ══════════════════════════════════════
   STATS STRIP
   ══════════════════════════════════════ */

.stats-strip {
  position: relative;
  background: transparent;
  padding: clamp(1rem, 3vw, 1.75rem) min(5vw, 100px) clamp(1.25rem, 3vw, 2rem);
}

.stats-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-bar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.65rem, 2vw, 1rem);
  width: 100%;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border-radius: clamp(18px, 2.5vw, 26px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, transparent 42%),
    linear-gradient(125deg, #4338ca 0%, #6366f1 32%, #4f46e5 55%, #2563eb 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 4px 0 rgba(255, 255, 255, 0.1) inset,
    0 24px 48px rgba(49, 46, 129, 0.35),
    0 0 0 1px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.stats-bar::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto 40%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.22) 0%, transparent 65%);
  pointer-events: none;
}

.stats-bar::after {
  content: "";
  position: absolute;
  inset: auto -10% -50% -30%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(34, 211, 238, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.stat-cell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  padding: clamp(0.85rem, 2vw, 1.15rem) 0.65rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 10px 28px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.stat-cell:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 16px 36px rgba(15, 23, 42, 0.18);
}

.stat-cell-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #e0e7ff;
  background: rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.15);
}

.stat-cell-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  width: 100%;
}

.stat-value-line {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.06em;
  line-height: 1;
}

.stat-number,
.stat-number-text {
  font-family: var(--ff-heading);
  font-size: clamp(1.65rem, 3.8vw, 2.15rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(15, 23, 42, 0.25);
}

.stat-plus,
.stat-dash {
  font-family: var(--ff-heading);
  font-size: 0.55em;
  font-weight: 800;
  opacity: 0.88;
  vertical-align: super;
}

.stat-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
  max-width: 11rem;
  text-shadow: 0 1px 8px rgba(15, 23, 42, 0.2);
}

/* ══════════════════════════════════════
   TECHNOLOGIES YOU WILL LEARN
   ══════════════════════════════════════ */

section.tech-learn-section {
  background: transparent;
}

.tech-learn-tagline {
  max-width: 640px;
}

.tech-learn-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.tech-learn-card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid var(--glass-border-soft);
  box-shadow: var(--glass-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tech-learn-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.12);
}

.tech-learn-card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(34, 197, 94, 0.1));
  display: grid;
  place-items: center;
}

.tech-learn-card-icon img {
  width: 36px;
  height: 36px;
}

.tech-learn-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.65rem;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.tech-learn-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.tech-learn-card p strong {
  color: var(--text-main);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .tech-learn-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .tech-learn-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   PRICING SECTION & MODALS
   ══════════════════════════════════════ */

section.pricing-section {
  background: transparent;
}

.pricing-actions {
  display: grid;
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.pricing-btn {
  width: 100%;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-family: var(--ff-body);
  text-align: left;
  display: grid;
  gap: 0.35rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 2px solid transparent;
}

.pricing-btn-label {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pricing-btn-hint {
  font-size: 0.88rem;
  opacity: 0.85;
  font-weight: 500;
}

.pricing-btn-primary {
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  color: #ffffff;
  box-shadow: 0 14px 40px rgba(37, 99, 235, 0.35);
}

.pricing-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.45);
}

.pricing-btn:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.5);
  outline-offset: 3px;
}

.pricing-help-highlight {
  background-color: rgba(34, 197, 94, 0.12);
  border-left: 4px solid rgba(34, 197, 94, 0.8);
  padding: 0.9rem 1rem;
  border-radius: 0.65rem;
  font-weight: 600;
  color: var(--text-main);
}

.price-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.price-modal[hidden] {
  display: none;
}

.price-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.price-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  padding: 2rem 1.75rem 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.2);
  animation: priceModalIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes priceModalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.price-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.06);
  color: var(--text-muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.price-modal-close:hover {
  background: rgba(15, 23, 42, 0.1);
  color: var(--text-main);
}

.price-modal-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.price-modal-amount {
  margin: 0 0 0.75rem;
  font-family: var(--ff-heading);
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.price-modal-amount--struck {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  margin-bottom: 0.25rem;
}

.price-modal-body {
  min-height: 6.5rem;
}

.price-modal-features {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  margin: 1rem 0 0.8rem;
  padding-top: 0.9rem;
}

.price-modal-features h3 {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-modal-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.price-modal-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-main);
  font-size: 0.94rem;
}

.price-modal-feature-list li i {
  font-size: 0.68rem;
  color: var(--primary);
}

.price-modal-amount--deal {
  font-size: 2.85rem;
  color: var(--accent-dark);
  margin-bottom: 0.75rem;
}

.price-modal-early-note {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-main);
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.22);
}

.price-modal-early-note strong {
  color: var(--accent-dark);
}

.price-modal-early-cta {
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-xl);
  border: 2px solid var(--accent-dark);
  background: rgba(34, 197, 94, 0.08);
  color: var(--accent-dark);
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.price-modal-early-cta:hover {
  background: var(--accent-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.price-modal-early-cta:focus-visible {
  outline: 3px solid rgba(34, 197, 94, 0.45);
  outline-offset: 2px;
}

.price-modal-early-cta[hidden] {
  display: none;
}

.price-modal-done {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-dark);
  text-align: center;
}

.price-modal-done[hidden] {
  display: none;
}

.price-modal-foot {
  margin: 1.25rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

/* ══════════════════════════════════════
   SECTION STYLES
   ══════════════════════════════════════ */

.section-heading {
  text-align: center;
  margin-bottom: 2.25rem;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border-soft);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

h2 {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-main);
  margin-bottom: 12px;
}

.section-tagline {
  font-size: 0.94rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Sections sit on global mesh; panels are glass ── */

section.projects {
  background: transparent;
}

section.about {
  background: transparent;
}

section.program-section {
  background: transparent;
  position: relative;
  overflow: hidden;
}

section.program-section::before {
  content: "";
  position: absolute;
  inset: -35% -15% auto;
  height: 60%;
  background: radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.12), transparent 62%);
  pointer-events: none;
}

.program-inner {
  position: relative;
  z-index: 1;
}

.program-tagline-wide {
  max-width: 720px;
}

.webinar-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: 1.65rem 1.85rem;
  margin-bottom: 3rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, rgba(15, 23, 42, 0.75) 0%, rgba(30, 58, 95, 0.65) 50%, rgba(15, 118, 110, 0.55) 100%);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: webinar-glow 4s ease-in-out infinite alternate;
}

@keyframes webinar-glow {
  from {
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  }

  to {
    box-shadow: 0 22px 56px rgba(14, 116, 144, 0.25);
  }
}

.webinar-banner-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.webinar-banner-copy {
  flex: 1;
  min-width: 200px;
}

.webinar-banner-copy strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.webinar-banner-copy p {
  font-size: 0.88rem;
  line-height: 1.55;
  opacity: 0.92;
  margin: 0;
}

.webinar-banner-cta {
  flex-shrink: 0;
  background: #25d366 !important;
  color: #fff !important;
  border: none !important;
  padding: 0.65rem 1.15rem !important;
  font-weight: 700 !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.webinar-banner-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.program-intro-card {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  padding: 1.65rem 1.85rem;
  background: var(--glass-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-lg);
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-main);
  box-shadow: var(--glass-shadow), var(--glass-inset);
}

.program-block {
  background: var(--glass-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.95rem;
  margin-bottom: 1.65rem;
  box-shadow: var(--glass-shadow), var(--glass-inset);
  transition: box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease, background 0.35s ease;
}

.program-block:hover {
  background: var(--glass-light-strong);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12);
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.22);
}

.program-block-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.95rem;
}

.program-block-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-soft), rgba(34, 197, 94, 0.12));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.program-block h3 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
  color: var(--text-main);
}

.program-block-lead {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0 0 1.15rem;
  line-height: 1.62;
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.9rem;
}

.tech-stack-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease,
    box-shadow 0.25s ease;
}

.tech-stack-item:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.1);
}

.tech-stack-item img {
  flex-shrink: 0;
}

.program-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.program-two-col .program-block {
  margin-bottom: 1.35rem;
}

.program-list {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.91rem;
  line-height: 1.68;
  color: var(--text-main);
}

.program-list li {
  margin-bottom: 0.55rem;
}

.program-list.compact li {
  margin-bottom: 0.35rem;
}

.program-columns-list {
  margin: 0;
  padding-left: 1.2rem;
  columns: 2;
  column-gap: 2.25rem;
  font-size: 0.91rem;
  line-height: 1.65;
}

.program-columns-list li {
  break-inside: avoid;
  margin-bottom: 0.58rem;
}

.program-highlight-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.65rem;
}

.program-highlight-card {
  background: var(--glass-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-lg);
  padding: 1.55rem 1.7rem;
  box-shadow: var(--glass-shadow), var(--glass-inset);
}

.program-highlight-card h4 {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: var(--text-main);
}

.salary-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0 0 0.85rem;
}

.salary-bands {
  list-style: none;
  padding: 0;
  margin: 0;
}

.salary-bands li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--border-subtle);
  font-size: 0.88rem;
}

.salary-bands li:last-child {
  border-bottom: none;
}

.salary-band-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
}

.salary-tier {
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.salary-exp {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.92;
}

.salary-band-amounts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 2px;
  flex-shrink: 0;
}

.salary-amount {
  color: var(--primary);
  font-weight: 800;
  font-size: 0.92rem;
}

.salary-monthly {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.3;
}

.program-offers {
  background: var(--glass-light-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 1.85rem 1.85rem;
  margin-bottom: 1.85rem;
  box-shadow: var(--glass-shadow), var(--glass-inset);
}

.program-offers-title {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-decoration-color: var(--primary);
}

.program-offers-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  max-width: 640px;
}

.program-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.program-chip {
  display: inline-block;
  padding: 0.5rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.22);
  color: #1e3a8a;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.program-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.15);
}

.program-cta-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.85rem;
  padding: 2rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, rgba(15, 23, 42, 0.82) 0%, rgba(30, 58, 143, 0.72) 100%);
  backdrop-filter: blur(28px) saturate(1.35);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.program-cta-panel h3 {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.5rem;
}

.program-cta-panel p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 520px;
  opacity: 0.95;
}

.program-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.program-cta-panel .primary-btn,
.program-cta-panel .btn--primary {
  background: #ffffff !important;
  color: var(--hero-dark) !important;
  border-color: #ffffff !important;
}

.program-cta-panel .primary-btn:hover,
.program-cta-panel .btn--primary:hover {
  background: rgba(255, 255, 255, 0.92) !important;
}

.program-cta-panel .secondary-btn,
.program-cta-panel .btn--on-dark {
  border-color: rgba(255, 255, 255, 0.45) !important;
  color: #ffffff !important;
}

.program-cta-panel .secondary-btn:hover,
.program-cta-panel .btn--on-dark:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
}

section.testimonials {
  background: transparent;
}

section.contact {
  background: transparent;
}

section.roadmap-section {
  background: transparent;
  scroll-margin-top: 88px;
}

.roadmap-session-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.15rem;
  padding: 1.35rem 1.5rem;
  margin-bottom: 2.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(30, 64, 175, 0.2) 0%, rgba(22, 101, 52, 0.18) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(37, 99, 235, 0.28);
  box-shadow: var(--glass-shadow), var(--glass-inset);
}

.roadmap-session-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.roadmap-session-copy strong {
  display: block;
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.roadmap-session-copy p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-main);
}

.roadmap-session-copy em {
  font-style: normal;
  font-weight: 600;
  color: var(--text-muted);
}

.roadmap-tagline {
  max-width: 720px;
}

.roadmap-tagline a {
  font-weight: 700;
  color: var(--primary);
}

.roadmap-timeline {
  list-style: none;
  padding: 0;
  margin: 0 0 2.25rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.35), rgba(34, 197, 94, 0.35));
  border-radius: 999px;
}

.roadmap-step {
  position: relative;
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1rem;
  padding: 0.35rem 0 1.35rem 0;
  align-items: start;
}

.roadmap-step:last-child {
  padding-bottom: 0;
}

.roadmap-step-num {
  position: relative;
  z-index: 1;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
  flex-shrink: 0;
}

.roadmap-step-body {
  background: var(--glass-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.2rem 1.15rem;
  box-shadow: var(--glass-shadow), var(--glass-inset);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.roadmap-step-body:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.1);
}

.roadmap-step-body h3 {
  font-family: var(--ff-heading);
  font-size: 1.02rem;
  font-weight: 800;
  margin: 0 0 0.45rem;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.roadmap-step-body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.62;
  color: var(--text-main);
}

.roadmap-step-body a {
  font-weight: 700;
  color: var(--primary);
}

.roadmap-step-meta {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  opacity: 0.9;
}

.roadmap-cta-panel {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 1.85rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 58, 138, 0.78) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.18);
}

.roadmap-cta-panel h3 {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.45rem;
}

.roadmap-cta-panel p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 520px;
  opacity: 0.95;
}

.roadmap-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.roadmap-cta-panel .primary-btn,
.roadmap-cta-panel .btn--primary {
  background: #25d366 !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.roadmap-cta-panel .primary-btn:hover,
.roadmap-cta-panel .btn--primary:hover {
  filter: brightness(1.06);
}

.roadmap-cta-panel .secondary-btn,
.roadmap-cta-panel .btn--on-dark {
  border-color: rgba(255, 255, 255, 0.45) !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.roadmap-cta-panel .secondary-btn:hover,
.roadmap-cta-panel .btn--on-dark:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

.hero-tertiary-link {
  margin-top: 1.15rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-tertiary-link a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease;
}

.hero-tertiary-link a:hover {
  color: rgba(255, 255, 255, 0.85);
}

section.student-insights {
  background: transparent;
  scroll-margin-top: 88px;
}

section.ai-pulse {
  background: transparent;
  scroll-margin-top: 88px;
}

.ai-pulse-tagline {
  max-width: 720px;
}

.ai-pulse-meta {
  text-align: center;
  font-size: 0.86rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.ai-pulse-meta i {
  color: var(--primary);
  margin-right: 0.35rem;
}

.ai-pulse-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.ai-pulse-column {
  background: var(--glass-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.65rem;
  box-shadow: var(--glass-shadow), var(--glass-inset);
}

.ai-pulse-column-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.ai-pulse-column-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(124, 58, 237, 0.12));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ai-pulse-column-icon-tools {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.14), rgba(37, 99, 235, 0.1));
  color: var(--accent-dark);
}

.ai-pulse-column h3 {
  font-family: var(--ff-heading);
  font-size: 1.12rem;
  font-weight: 800;
  margin: 0;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.ai-pulse-column-lead {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 1.15rem;
}

.ai-pulse-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ai-pulse-list li {
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.ai-pulse-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.ai-pulse-link {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  transition: color 0.2s ease, gap 0.2s ease;
}

.ai-pulse-link i {
  font-size: 0.65rem;
  opacity: 0.75;
}

.ai-pulse-link:hover {
  color: #1d4ed8;
}

.ai-pulse-desc {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
  font-weight: 500;
}

.ai-pulse-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.55;
}

.ai-pulse-disclaimer i {
  color: var(--primary);
  margin-right: 0.35rem;
}

.program-ai-crosslink {
  margin: 1.15rem 0 0;
  padding-top: 1rem;
  border-top: 1px dashed rgba(15, 23, 42, 0.1);
}

.insights-tagline {
  max-width: 720px;
}

.insights-table-wrap {
  margin-bottom: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border-soft);
  background: var(--glass-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  overflow: hidden;
}

.insights-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.insights-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.84rem;
  line-height: 1.55;
}

.insights-table caption {
  padding: 0;
}

.insights-table thead th {
  font-family: var(--ff-heading);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-align: left;
  padding: 1rem 1rem 0.65rem;
  background: rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.insights-table tbody th[scope="row"] {
  font-weight: 800;
  color: var(--text-main);
  white-space: nowrap;
  max-width: 11rem;
}

.insights-table tbody th,
.insights-table tbody td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  vertical-align: top;
  color: var(--text-main);
}

.insights-table tbody tr:last-child th,
.insights-table tbody tr:last-child td {
  border-bottom: none;
}

.insights-table .cell-bad {
  color: #e11d48;
  font-weight: 800;
  margin-right: 0.35rem;
}

.insights-table .cell-good {
  color: #15803d;
  font-weight: 800;
  margin-right: 0.35rem;
}

.insights-table-cta {
  margin: 0;
  padding: 1rem 1.1rem 1.2rem;
  text-align: center;
  border-top: 1px dashed rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.4);
}

.insight-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  transition: gap 0.2s ease, color 0.2s ease;
}

.insight-inline-link:hover {
  gap: 0.65rem;
  color: #1d4ed8;
}

.insight-icon-lg {
  width: 52px;
  height: 52px;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--primary-soft), rgba(34, 197, 94, 0.12));
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.insights-paths {
  background: var(--glass-light-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 1.85rem 1.85rem;
  box-shadow: var(--glass-shadow), var(--glass-inset);
  margin-bottom: 1.5rem;
}

.insights-paths-head {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  margin-bottom: 1.65rem;
}

.insights-paths-head h3 {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
  color: var(--text-main);
}

.insights-paths-head p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 720px;
}

.insight-icon-lg {
  width: 52px;
  height: 52px;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--primary-soft), rgba(34, 197, 94, 0.12));
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.insights-path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.path-tile {
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.path-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.08);
}

.path-tile i {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 0.65rem;
  display: block;
}

.path-tile h4 {
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
  color: var(--text-main);
}

.path-tile p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.insights-footnote {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}

.insights-footnote i {
  color: var(--accent-dark);
  margin-right: 0.35rem;
}

/* ══════════════════════════════════════
   PROJECTS
   ══════════════════════════════════════ */

.projectsContainer {
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.85rem;
}

.projectCard {
  background: var(--glass-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.5rem;
  border: 1px solid var(--glass-border-soft);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.projectCard img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.projectCard h3 {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 700;
}

.project-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
}

.projectCard:hover {
  transform: translateY(-8px);
  background: var(--glass-light-strong);
  box-shadow: 0 24px 56px rgba(37, 99, 235, 0.14);
  border-color: rgba(37, 99, 235, 0.28);
}

/* ══════════════════════════════════════
   ABOUT
   ══════════════════════════════════════ */

.aboutContainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  margin-top: 2.5rem;
  padding: 2rem 2.1rem;
  border-radius: var(--radius-lg);
  background: var(--glass-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-soft);
  box-shadow: var(--glass-shadow), var(--glass-inset);
}

.aboutContainer p {
  font-size: 0.98rem;
  color: var(--text-main);
  line-height: 1.78;
}

.highlights {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.85rem;
}

.highlight-card {
  border-radius: var(--radius-lg);
  background: var(--glass-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 2rem 1.75rem;
  border: 1px solid var(--glass-border-soft);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  background: var(--glass-light-strong);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.highlight-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.highlight-card ul {
  padding-left: 0;
}

.highlight-card li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.highlight-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
}

/* ══════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════ */

.testimonials-marquee {
  margin-top: 2.25rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.testimonials-marquee-inner {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0.25rem 0 0.5rem;
  animation: testimonials-marquee 50s linear infinite;
}

.testimonials-marquee:hover .testimonials-marquee-inner {
  animation-play-state: paused;
}

@keyframes testimonials-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-marquee-inner {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .testimonials-marquee .testimonial-card {
    flex: 1 1 min(320px, 100%);
    max-width: 380px;
  }
}

.testimonials-marquee .testimonial-card {
  flex: 0 0 min(320px, 85vw);
  max-width: 340px;
}

.testimonial-card {
  background: var(--glass-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 2rem 1.65rem;
  border: 1px solid var(--glass-border-soft);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  bottom: 1.25rem;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  opacity: 0.95;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: var(--glass-light-strong);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
}

.quote-icon {
  font-family: Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */

.contactContainer {
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

form {
  background: var(--glass-light-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.9rem 2.15rem;
  border: 1px solid var(--glass-border-soft);
  box-shadow: var(--glass-shadow), var(--glass-inset);
}

.contactDetails {
  background: var(--glass-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  padding: 2rem 1.85rem;
  border: 1px solid var(--glass-border-soft);
  box-shadow: var(--glass-shadow), var(--glass-inset);
}

input,
textarea {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #111827;
  margin-bottom: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

/* Submit uses shared .btn--whatsapp; keep hook for sizing */
button.sendButton.btn--whatsapp {
  margin-top: 0.5rem;
  gap: 6px;
  padding: 0.9rem 1.6rem;
  font-size: 0.95rem;
  border: none;
}

.contactDetails h3 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.contactDetails p {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.6rem;
  line-height: 1.65;
}

.contact-points {
  margin: 0.8rem 0 1rem;
  padding-left: 0;
  list-style: none;
}

.contact-points li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  color: var(--text-main);
}

.contact-points i {
  color: var(--accent);
  font-size: 0.78rem;
}

.contact-quote {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  margin-top: 0.5rem;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */

.site-footer {
  position: relative;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  color: rgba(255, 255, 255, 0.72);
  padding: 0 min(8vw, 100px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -20px 60px rgba(15, 23, 42, 0.12);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 0.9fr;
  gap: 2.5rem 3rem;
  padding: 56px 0 44px;
}

/* Slim variant used by the new footer */
.footer-inner--slim {
  grid-template-columns: 1.4fr 1fr 1.2fr 0.9fr;
}

.footer-brand h3 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 300px;
  margin-bottom: 1rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-links h4,
.footer-links-group h4,
.footer-contact h4 {
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}

.footer-links-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1.75rem;
  align-content: start;
}

.footer-links-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links ul li,
.footer-links-group ul li,
.footer-contact ul li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact i {
  font-size: 0.85rem;
  color: var(--accent);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #ffffff;
}

/* ── Student quick‑links column ── */
.footer-student-links h4,
.footer-highlights h4 {
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}

.footer-student-links ul,
.footer-highlights ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-student-links ul li,
.footer-highlights ul li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-student-links ul li i,
.footer-highlights ul li i {
  font-size: 0.82rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

.footer-student-links ul li a {
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  transition: color 0.2s ease;
}

.footer-student-links ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 18px 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ══════════════════════════════════════
   FLOATING WHATSAPP CTA
   ══════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-pulse 2.5s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ══════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ══════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.reveal-d1 {
  transition-delay: 0.12s;
}

.reveal.reveal-d2 {
  transition-delay: 0.24s;
}

.reveal.reveal-d3 {
  transition-delay: 0.36s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   KEYFRAMES
   ══════════════════════════════════════ */

@keyframes floatHero {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 1100px) {
  .stats-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ── Tablet: 768px – 960px ── */
@media (min-width: 768px) and (max-width: 960px) {
  /* Show desktop nav on tablets — enough horizontal space */
  .desktop-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  /* Shrink funnel nav items to fit */
  .desktop-nav-funnel ul {
    gap: 0.1rem 0.3rem;
  }

  .desktop-nav-funnel ul li a {
    padding: 5px 7px;
    font-size: 0.62rem;
  }

  .desktop-nav-funnel .nav-cta {
    padding: 6px 10px !important;
    font-size: 0.62rem !important;
  }

  /* Stats: keep 3-col on tablet (5th cell in col 1 looks fine) */
  .stats-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* Hero: 2-column split on tablet */
  .hero-main-grid,
  .funnel-hero-tight .hero-main-grid {
    grid-template-columns: 1fr minmax(160px, 28%) !important;
    grid-template-areas: "copy visual" !important;
  }

  .home .hero-main-grid .hero-visual,
  .home.funnel-hero-tight .hero-main-grid .hero-visual {
    justify-self: end !important;
    max-width: min(220px, 30vw) !important;
  }

  .home.funnel-hero-tight .hero-copy-col,
  .funnel-hero-tight .hero-copy-col {
    text-align: left;
  }

  .home-hero-card {
    text-align: left;
  }

  .funnel-hero-tight .funnel-hero-title,
  .home.funnel-hero-tight .hero-main-title {
    align-items: flex-start;
    text-align: left;
  }

  .funnel-hero-tight .hero-badge {
    margin-inline: 0;
  }

  .funnel-hero-tight .hero-actions,
  .home.funnel-hero-tight .hero-actions {
    justify-content: flex-start;
    grid-template-columns: repeat(auto-fit, minmax(180px, max-content));
  }

  .funnel-hero-tight .funnel-micro-hint {
    text-align: left;
  }

  /* Footer: 2×2 clean grid — brand full width, then 2+2 */
  .footer-inner,
  .footer-inner--slim {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .home-hero-card {
    text-align: center;
  }

  .hero-main-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "copy";
  }

  .home .hero-main-grid .hero-visual {
    justify-self: center;
    max-width: min(300px, 88vw);
  }

  .home .hero-main-grid .userImg {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    justify-items: center;
  }

  .tech-strip {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 0.85rem;
    row-gap: 0.65rem;
  }

  .tech-strip > span {
    flex: 0 1 auto;
    text-align: center;
  }

  /* Full width so grid auto-fill doesn’t collapse to a single column */
  .tech-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    flex: 1 1 100%;
    min-width: 0;
    grid-template-columns: unset;
    justify-items: unset;
  }

  /* Stats: 3-col at tablet-ish, 5th card stays in row 2 without orphaning */
  .stats-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .program-two-col,
  .program-highlight-row {
    grid-template-columns: 1fr;
  }

  .program-columns-list {
    columns: 1;
  }

  .webinar-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .webinar-banner-icon {
    margin: 0 auto;
  }

  .webinar-banner-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .program-cta-panel {
    flex-direction: column;
    text-align: center;
  }

  .program-cta-actions {
    justify-content: center;
    width: 100%;
  }

  .insights-path-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insights-paths-head {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .ai-pulse-layout {
    grid-template-columns: 1fr;
  }

  .roadmap-session-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .roadmap-session-icon {
    margin: 0 auto;
  }

  .roadmap-cta-panel {
    flex-direction: column;
    text-align: center;
  }

  .roadmap-cta-actions {
    justify-content: center;
    width: 100%;
  }

  .aboutContainer {
    grid-template-columns: 1fr;
  }

  .contactContainer {
    grid-template-columns: 1fr;
  }

  /* Footer handled by the min-width: 769px block above;
     this rule applies to ≤960px AND ≤768px so we keep
     the 1-col fallback for small tablets / large phones */
  .footer-brand p {
    max-width: none;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .footer-contact li {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .footer-inner,
  .footer-inner--slim {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    text-align: center;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand p {
    margin-inline: auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-student-links ul li,
  .footer-highlights ul li {
    justify-content: center;
  }

  .footer-student-links ul li a {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .footer-links-cols {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

@media (max-width: 380px) {
  .stats-bar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section-padding {
    padding: 80px 20px;
  }

  .home {
    padding: 52px 20px clamp(96px, 20vw, 140px);
  }

  .home-hero-card {
    padding: 1.5rem 1.25rem clamp(1.75rem, 5vw, 2.5rem);
  }

  .home .hero-main-title {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .stat-number,
  .stat-number-text {
    font-size: 1.8rem;
  }

  .projectsContainer {
    gap: 1.2rem;
  }

  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .insights-path-grid {
    grid-template-columns: 1fr;
  }

  .insights-paths {
    padding: 1.5rem 1.25rem;
  }

  .roadmap-timeline::before {
    left: 1.05rem;
  }

  .roadmap-step {
    grid-template-columns: 2.35rem 1fr;
    gap: 0.75rem;
  }

  .roadmap-step-num {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 0.65rem;
  }

  /* ── Funnel hero: force single column on mobile ── */
  .funnel-hero-tight .hero-main-grid {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "visual"
      "copy";
  }

  .funnel-hero-tight .home .hero-main-grid .hero-visual,
  .home.funnel-hero-tight .hero-main-grid .hero-visual {
    justify-self: center !important;
    max-width: min(200px, 72vw) !important;
  }

  .funnel-hero-tight .home .hero-main-grid .userImg,
  .home.funnel-hero-tight .hero-main-grid .userImg {
    max-height: 180px !important;
    margin: 0 auto !important;
  }

  .funnel-hero-tight .funnel-hero-title,
  .home.funnel-hero-tight .hero-main-title {
    align-items: center;
    text-align: center;
  }

  .home.funnel-hero-tight .hero-copy-col,
  .funnel-hero-tight .hero-copy-col {
    text-align: center;
  }

  .funnel-hero-tight .hero-badge {
    margin-inline: auto;
  }

  .funnel-hero-tight .hero-actions,
  .home.funnel-hero-tight .hero-actions {
    justify-content: center;
    grid-template-columns: 1fr;
  }

  .funnel-hero-tight .funnel-micro-hint {
    text-align: center;
  }
}

/* ══════════════════════════════════════
   FUNNEL LANDING (webinar-first, modals)
   ══════════════════════════════════════ */

.desktop-nav-funnel ul {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.2rem 0.45rem;
}

.desktop-nav-funnel ul li {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.desktop-nav-funnel ul li a {
  padding: 6px 10px;
}

.desktop-nav-funnel .nav-cta {
  white-space: nowrap;
  padding: 7px 14px !important;
  font-size: 0.68rem !important;
}

/* Funnel hero: premium look — ambient light, glass card, balanced layout */
.home.funnel-hero-tight {
  padding-top: clamp(48px, 6vw, 64px);
  padding-bottom: clamp(40px, 5vw, 56px);
  padding-inline: clamp(14px, 3.5vw, 40px);
  background: linear-gradient(168deg, #0c1222 0%, #111c33 38%, #0f172a 72%, #0a1628 100%);
  border-bottom-color: rgba(148, 163, 184, 0.12);
}

.home.funnel-hero-tight::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 55% at 88% 12%, rgba(59, 130, 246, 0.22), transparent 58%),
    radial-gradient(ellipse 70% 45% at 8% 75%, rgba(34, 197, 94, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 62% 88%, rgba(167, 139, 250, 0.16), transparent 50%);
}

.home.funnel-hero-tight::before {
  opacity: 0.85;
}

.funnel-hero-tight .home-hero-card {
  position: relative;
  z-index: 1;
  padding: clamp(1.35rem, 2.4vw, 1.85rem) clamp(1.2rem, 2.4vw, 2rem);
  padding-bottom: clamp(1.2rem, 2vw, 1.5rem);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 55%, rgba(15, 23, 42, 0.35) 100%);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: calc(var(--radius-lg) + 4px);
  box-shadow:
    0 4px 0 1px rgba(255, 255, 255, 0.04) inset,
    0 28px 64px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(59, 130, 246, 0.07),
    0 0 80px -20px rgba(59, 130, 246, 0.25);
}

.funnel-hero-tight .home-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(100% 90% at 12% -10%, rgba(96, 165, 250, 0.18), transparent 52%),
    radial-gradient(80% 60% at 100% 100%, rgba(167, 139, 250, 0.12), transparent 45%);
  pointer-events: none;
  opacity: 0.65;
}

.funnel-hero-tight .home-hero-card > * {
  position: relative;
  z-index: 1;
}

.funnel-hero-tight .hero-badge {
  margin-bottom: 12px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.06));
  border: 1px solid rgba(74, 222, 128, 0.35);
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.12);
  letter-spacing: 0.12em;
}

.hero-ai-accent {
  font-weight: 900;
  background: linear-gradient(120deg, #c4b5fd 0%, #67e8f9 45%, #a5b4fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  white-space: nowrap;
}

.home .funnel-hero-sub .funnel-tagline-flow {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.03em;
}

.hero-visual-frame {
  position: relative;
  padding: 12px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.18), rgba(139, 92, 246, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 40px -8px rgba(59, 130, 246, 0.35);
}

/* Funnel hero: no outer “card” ring — image sits on the dark background */
.home.funnel-hero-tight .hero-visual-frame {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.funnel-hero-tight .hero-visual-frame .userImg {
  border-radius: 14px;
  box-shadow: none;
  animation: floatHero 5s ease-in-out infinite;
}

.funnel-hero-tight .home .hero-main-title {
  margin-bottom: clamp(0.45rem, 1vw, 0.75rem);
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08em;
  line-height: 1.1;
  max-width: none;
}

.funnel-hero-tight .funnel-hero-title .hero-title-line {
  display: block;
}

.funnel-hero-tight .hero-copy-col .hero-subtitle {
  margin-bottom: clamp(0.65rem, 1.2vw, 0.9rem);
}

.funnel-hero-tight .hero-main-grid {
  gap: clamp(0.85rem, 2vw, 1.35rem);
  grid-template-columns: minmax(0, 1fr) minmax(120px, 24%);
  align-items: start;
}

.funnel-hero-tight .home .hero-main-grid .hero-visual {
  max-width: min(240px, 28vw);
  justify-self: end;
  align-self: start;
}

.funnel-hero-tight .home .hero-main-grid .userImg {
  display: block;
  max-height: min(220px, 34vh);
  width: auto;
  max-width: 100%;
  margin: 0;
  object-fit: contain;
}

.funnel-hero-tight .hero-copy-col {
  padding-bottom: 0;
}

.funnel-hero-tight .hero-actions {
  gap: 0.65rem 0.85rem;
}

.funnel-hero-tight .funnel-micro-hint {
  margin-top: 0.55rem;
  line-height: 1.45;
}

/* Hero — visible story roadmap (screen-share friendly) */
#story-flow-map {
  scroll-margin-top: 88px;
}

.funnel-story-flow-banner {
  margin-top: clamp(1rem, 2.8vw, 1.65rem);
  width: 100%;
  border-radius: 14px;
  padding: 1rem 1.2rem 1.05rem;
  background: linear-gradient(
    105deg,
    rgba(15, 118, 110, 0.92) 0%,
    rgba(29, 78, 216, 0.88) 48%,
    rgba(15, 23, 42, 0.94) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 44px rgba(15, 23, 42, 0.38);
}

.funnel-story-flow-inner {
  max-width: 100%;
}

.funnel-story-flow-kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.5rem;
  font-family: var(--ff-body, system-ui, sans-serif);
}

.funnel-story-flow-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(0.82rem, 2.1vw, 1.06rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.55;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0.35rem;
  row-gap: 0.25rem;
}

.funnel-story-node {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.funnel-story-node--cta {
  color: #a7f3d0;
}

.funnel-story-sep {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  user-select: none;
}

/* Technologies — layered stack map (not competitor hex layout) */
.funnel-tech-showcase {
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(37, 99, 235, 0.06), transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 40%, rgba(124, 58, 237, 0.05), transparent 50%),
    linear-gradient(180deg, #f4f7fb 0%, #fafbfc 40%, #ffffff 100%);
  border-block: 1px solid #e8ecf4;
  scroll-margin-top: 88px;
}

.funnel-tech-showcase-inner {
  max-width: 1000px;
}

.funnel-tech-showcase .tech-showcase-heading h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.85rem, 4.2vw, 2.5rem);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.funnel-tech-showcase .tech-showcase-sub {
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  color: #6b7280;
  line-height: 1.55;
  max-width: 38rem;
  margin: 0 auto;
  font-weight: 500;
}

.funnel-tech-showcase .tech-showcase-badge {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
  color: var(--primary);
}

.stack-map {
  margin: clamp(1.5rem, 3vw, 2.25rem) auto 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 2vw, 1.1rem);
}

.stack-map--polished {
  gap: clamp(1rem, 2.2vw, 1.25rem);
}

.stack-layer {
  --stack-accent: #2563eb;
  --stack-glow: rgba(37, 99, 235, 0.09);
  position: relative;
  padding: 1rem 1.15rem 1.05rem 1.2rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e8ecf4;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  border-left: 4px solid var(--stack-accent);
}

.stack-map--polished .stack-layer {
  padding: 1.2rem 1.25rem 1.15rem 1.35rem;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 36px rgba(15, 23, 42, 0.06);
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.stack-map--polished .stack-layer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(45%, 200px);
  height: min(70%, 140px);
  background: radial-gradient(ellipse at top right, var(--stack-glow) 0%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.stack-map--polished .stack-layer-head,
.stack-map--polished .stack-chip-list {
  position: relative;
  z-index: 1;
}

.stack-layer--frontend {
  --stack-accent: #2563eb;
  --stack-glow: rgba(37, 99, 235, 0.14);
}

.stack-layer--backend {
  --stack-accent: #059669;
  --stack-glow: rgba(5, 150, 105, 0.14);
}

.stack-layer--database {
  --stack-accent: #d97706;
  --stack-glow: rgba(217, 119, 6, 0.14);
}

.stack-layer--deploy {
  --stack-accent: #7c3aed;
  --stack-glow: rgba(124, 58, 237, 0.12);
}

.stack-layer--workflow {
  --stack-accent: #475569;
  --stack-glow: rgba(71, 85, 105, 0.12);
}

.stack-layer--ai {
  --stack-accent: #0d9488;
  --stack-glow: rgba(13, 148, 136, 0.16);
}

.stack-layer--ai .stack-layer-icon {
  background: rgba(13, 148, 136, 0.12);
  color: #0d9488;
}

.stack-layer-head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.stack-layer-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
}

.stack-layer--frontend .stack-layer-icon {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
}

.stack-layer--backend .stack-layer-icon {
  background: rgba(5, 150, 105, 0.12);
  color: #059669;
}

.stack-layer--database .stack-layer-icon {
  background: rgba(217, 119, 6, 0.12);
  color: #d97706;
}

.stack-layer--deploy .stack-layer-icon {
  background: rgba(124, 58, 237, 0.12);
  color: #7c3aed;
}

.stack-layer--workflow .stack-layer-icon {
  background: rgba(71, 85, 105, 0.12);
  color: #475569;
}

.stack-layer-title {
  margin: 0;
  font-family: var(--ff-heading);
  font-size: 1.02rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.stack-layer-flow {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.stack-chip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.45rem 0.5rem;
}

.stack-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.22rem;
  padding: 0.38rem 0.5rem 0.42rem;
  min-width: 4.6rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.stack-chip:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
  transform: translateY(-2px);
}

.stack-chip-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  line-height: 0;
}

.stack-chip-icon.stack-chip-icon--fa {
  border-radius: 8px;
  background: linear-gradient(145deg, #ccfbf1, #e0f2fe);
  color: #0f766e;
  font-size: 0.95rem;
}

.stack-chip-icon img {
  width: auto;
  height: auto;
  max-width: 30px;
  max-height: 30px;
  object-fit: contain;
}

.stack-chip-icon--dark img {
  filter: brightness(0) saturate(100%);
  opacity: 0.88;
}

.stack-chip-icon--vercel {
  background: #0f172a;
  border-radius: 8px;
}

.stack-chip-icon--vercel img {
  filter: brightness(0) invert(1);
  max-width: 22px;
  max-height: 22px;
}

.stack-chip-icon--render {
  background: #f1f5f9;
  border-radius: 8px;
}

.stack-chip-icon--render img {
  max-width: 26px;
  max-height: 26px;
}

.stack-chip-icon--cursor img {
  max-width: 28px;
  max-height: 28px;
}

.stack-chip-label {
  font-family: var(--ff-heading);
  font-size: 0.68rem;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  line-height: 1.15;
  max-width: 5.5rem;
}

/* Polished stack map: tinted chips + clearer hierarchy (inherits --stack-accent on .stack-layer) */
.stack-map--polished .stack-layer-head {
  margin-bottom: 0.75rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.stack-map--polished .stack-layer-title {
  font-size: 1.06rem;
}

.stack-map--polished .stack-layer-flow {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.45;
}

.stack-map--polished .stack-layer .stack-chip {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-color: #e2e8f0;
  border-color: color-mix(in srgb, var(--stack-accent) 24%, #e8ecf4);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  padding: 0.48rem 0.52rem 0.5rem;
  gap: 0.32rem;
}

.stack-map--polished .stack-layer .stack-chip:hover {
  border-color: #cbd5e1;
  border-color: color-mix(in srgb, var(--stack-accent) 48%, #94a3b8);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--stack-accent) 14%, transparent);
  transform: translateY(-3px);
}

.stack-map--polished .stack-chip-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(248, 250, 252, 0.95);
  background: color-mix(in srgb, var(--stack-accent) 11%, #ffffff);
  border: 1px solid #e2e8f0;
  border-color: color-mix(in srgb, var(--stack-accent) 18%, transparent);
}

.stack-map--polished .stack-chip-icon img {
  max-width: 32px;
  max-height: 32px;
}

/* Express: white mark on slate tile (reads at same weight as other chips) */
.stack-map--polished .stack-chip-icon--dark {
  background: linear-gradient(155deg, #334155, #1e293b);
  border-color: #475569;
}

.stack-map--polished .stack-chip-icon--dark img {
  filter: brightness(0) invert(1);
  opacity: 1;
  max-width: 28px;
  max-height: 28px;
}

.stack-map--polished .stack-chip-icon--vercel {
  background: #0f172a;
  border-color: #334155;
}

.stack-map--polished .stack-chip-icon--render {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.stack-map--polished .stack-chip-icon--cursor img {
  max-width: 30px;
  max-height: 30px;
}

.stack-map--polished .stack-chip-icon--dark img {
  filter: none;
  opacity: 1;
}

.stack-map--polished .stack-layer--ai .stack-chip-icon--fa {
  background: color-mix(in srgb, var(--stack-accent) 12%, #ecfeff);
  border: 1px solid color-mix(in srgb, var(--stack-accent) 28%, #99f6e4);
  color: #0f766e;
  font-size: 1.02rem;
}

.stack-map--polished .stack-chip-label {
  font-size: 0.69rem;
  letter-spacing: 0.02em;
  color: #334155;
}

@media (min-width: 720px) {
  .stack-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1rem;
    align-items: start;
  }

  .stack-layer--frontend {
    grid-column: 1 / -1;
  }

  .stack-layer--ai {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .stack-chip-list {
    justify-content: flex-start;
  }

  .stack-chip {
    min-width: 4.25rem;
    padding-inline: 0.4rem;
  }
}

.funnel-hero-title {
  max-width: none;
}

@media (min-width: 900px) {
  .funnel-hero-tight .hero-main-grid {
    grid-template-columns: minmax(0, 1fr) minmax(160px, 26%);
  }
}

@media (max-width: 960px) {
  .home.funnel-hero-tight {
    padding-bottom: clamp(32px, 8vw, 48px);
  }

  .home.funnel-hero-tight .hero-main-grid {
    gap: 0.75rem;
    grid-template-areas:
      "copy"
      "visual";
  }

  .funnel-hero-tight .funnel-hero-title {
    align-items: center;
    width: 100%;
  }

  .home.funnel-hero-tight .home .hero-main-grid .hero-visual {
    max-width: min(240px, 72vw);
    justify-self: center;
  }

  .home.funnel-hero-tight .hero-visual-frame {
    margin-inline: auto;
  }

  .home.funnel-hero-tight .home .hero-main-grid .userImg {
    max-height: min(195px, 30vh);
  }
}

.funnel-tagline-flow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--primary);
  letter-spacing: 0.02em;
}

.home .funnel-hero-sub .funnel-tagline-flow {
  color: #c7d2fe;
}

.home .funnel-micro-hint {
  color: rgba(255, 255, 255, 0.62);
}

.home .funnel-micro-hint i {
  color: #86efac;
}

.home .funnel-link-ghost {
  color: #93c5fd;
}

.home .funnel-link-ghost:hover {
  color: #bfdbfe;
}

.funnel-hero-cta {
  flex-wrap: wrap;
}

.funnel-explore-btn .funnel-arrow {
  transition: transform 0.2s ease;
}

.funnel-explore-btn:hover .funnel-arrow {
  transform: translateX(4px);
}

.funnel-btn-pulse {
  position: relative;
  animation: funnelCtaPulse 2.8s ease-in-out infinite;
}

@keyframes funnelCtaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
  }
}

.funnel-hero-tight .funnel-btn-pulse {
  animation: funnelHeroCtaPulse 2.6s ease-in-out infinite;
}

@keyframes funnelHeroCtaPulse {
  0%,
  100% {
    box-shadow: 0 16px 40px rgba(34, 197, 94, 0.35), 0 0 0 0 rgba(34, 197, 94, 0.45);
  }
  50% {
    box-shadow: 0 18px 44px rgba(34, 197, 94, 0.42), 0 0 0 10px rgba(34, 197, 94, 0);
  }
}

.funnel-micro-hint {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.funnel-micro-hint i {
  margin-top: 0.2rem;
  color: var(--primary);
}

.funnel-link-ghost {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.funnel-link-ghost:hover {
  color: #1d4ed8;
}

.funnel-chevron {
  transition: transform 0.2s ease;
}

.funnel-link-ghost:hover .funnel-chevron {
  transform: translateX(4px);
}

.funnel-section {
  scroll-margin-top: 88px;
}

.funnel-section-alt {
  background: rgba(255, 255, 255, 0.42);
  border-block: 1px solid var(--glass-border-soft);
}

.funnel-card-grid {
  display: grid;
  gap: 1.25rem;
}

.funnel-card-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.funnel-card-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

#ai-career-outlook .funnel-card-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.funnel-card-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.funnel-diff-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.funnel-card {
  background: var(--glass-light-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--glass-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.funnel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  border-color: rgba(37, 99, 235, 0.25);
}

.funnel-card-interactive {
  display: flex;
  flex-direction: column;
}

.funnel-card-interactive .funnel-card-btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.45rem 0.95rem;
  font-size: 0.82rem;
  gap: 0.35rem;
}

.funnel-card-btn i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.funnel-card-btn:hover i {
  transform: translateX(3px);
}

.funnel-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.funnel-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.funnel-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.funnel-gap-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}

.funnel-gap-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  background: var(--glass-light-strong);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border-soft);
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-main);
}

.funnel-gap-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.2em;
  border-radius: 6px;
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  font-size: 0.72rem;
  line-height: 1;
}

.funnel-gap-icon i {
  display: block;
  line-height: 1;
  color: inherit;
}

.funnel-gap-text {
  flex: 1;
  min-width: 0;
}

/* ── Industry logos & hiring landscape ── */

.funnel-industry-lead {
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.funnel-brand-marquee {
  list-style: none;
  margin: 0 auto 2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 0.75rem;
  max-width: 900px;
}

.funnel-brand-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1rem 0.85rem;
  min-width: 5.75rem;
  min-height: 4.5rem;
  border-radius: var(--radius-md);
  background: var(--glass-light-strong);
  border: 1px solid var(--glass-border-soft);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.funnel-brand-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

/* Fixed frame: same footprint; full-color assets use object-fit contain */
.funnel-brand-tile-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  padding: 7px;
  box-sizing: border-box;
}

/* Larger slot for full-color wordmarks (no caption under the card) */
.funnel-brand-marquee--color .funnel-brand-tile-logo {
  width: 88px;
  height: 52px;
  padding: 4px 6px;
}

.funnel-brand-tile-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.funnel-growth-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.funnel-growth-card {
  padding: 1.2rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--glass-border-soft);
  box-shadow: var(--glass-shadow);
}

.funnel-growth-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.05rem;
}

.funnel-growth-card h3 {
  font-family: var(--ff-heading);
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
  color: var(--text-main);
}

.funnel-growth-card p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

.funnel-hiring {
  scroll-margin-top: 88px;
}

/* Indicative salary bands (India) */
.funnel-salary {
  scroll-margin-top: 88px;
}

.funnel-salary-wrap {
  max-width: min(40rem, 100%);
  margin: 0 auto;
}

.funnel-salary-card {
  position: relative;
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08), 0 2px 12px rgba(37, 99, 235, 0.06);
}

.funnel-salary-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, #93c5fd, #c4b5fd, #a5b4fc);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.funnel-salary-lead {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #64748b;
}

.funnel-salary-lead strong {
  color: #475569;
  font-weight: 700;
}

.funnel-salary-rows {
  list-style: none;
  margin: 0;
  padding: 0;
}

.funnel-salary-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed #cbd5e1;
}

.funnel-salary-row:first-of-type {
  padding-top: 0;
}

.funnel-salary-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.funnel-salary-tier {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.funnel-salary-label {
  font-family: var(--ff-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}

.funnel-salary-exp {
  font-size: 0.82rem;
  font-weight: 600;
  color: #94a3b8;
}

.funnel-salary-figures {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  text-align: right;
}

.funnel-salary-lpa {
  font-family: var(--ff-heading);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 800;
  color: #2563eb;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.funnel-salary-mo {
  font-size: 0.78rem;
  font-weight: 600;
  color: #94a3b8;
}

.funnel-salary-foot {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #64748b;
}

.funnel-salary-foot strong {
  color: #475569;
}

@media (max-width: 520px) {
  .funnel-salary-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .funnel-salary-figures {
    align-items: flex-start;
    text-align: left;
  }
}

.funnel-hiring-disclaimer {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  max-width: 52rem;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.28);
  color: #92400e;
  font-size: 0.88rem;
  line-height: 1.55;
}

.funnel-hiring-disclaimer > i {
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 1.1rem;
  color: #d97706;
}

.funnel-hiring-disclaimer p {
  margin: 0;
}

.funnel-hiring-hero-stat {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(79, 70, 229, 0.1));
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: var(--glass-shadow);
}

.funnel-hiring-hero-value {
  display: block;
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 5vw, 2.65rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #1e3a8a;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.funnel-hiring-hero-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 600;
}

.funnel-hiring-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.funnel-hiring-card {
  padding: 1.15rem 1.1rem;
  border-radius: var(--radius-md);
  background: var(--glass-light-strong);
  border: 1px solid var(--glass-border-soft);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.funnel-hiring-card:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.funnel-hiring-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.funnel-hiring-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.funnel-hiring-logo img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.funnel-hiring-logo--fa i {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
}

.funnel-hiring-logo--linkedin {
  color: #0a66c2;
  background: linear-gradient(180deg, #ffffff, #f0f9ff);
  border-color: rgba(10, 102, 194, 0.22);
}

.funnel-hiring-logo--text {
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--primary);
  border-color: rgba(37, 99, 235, 0.2);
}

.funnel-hiring-vol {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  white-space: nowrap;
}

.funnel-hiring-dots {
  display: inline-block;
  width: 3.25rem;
  height: 0.4rem;
  border-radius: 999px;
  vertical-align: middle;
  background: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.funnel-hiring-dots::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #6366f1);
  width: var(--hiring-fill-pct, 60%);
}

.funnel-hiring-dots[data-fill="5"] {
  --hiring-fill-pct: 100%;
}

.funnel-hiring-dots[data-fill="4"] {
  --hiring-fill-pct: 80%;
}

.funnel-hiring-dots[data-fill="3"] {
  --hiring-fill-pct: 60%;
}

.funnel-hiring-card h3 {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
  color: var(--text-main);
}

.funnel-hiring-range {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0 0 0.55rem;
}

.funnel-hiring-tip {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-main);
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-subtle);
}

.funnel-hiring-tip i {
  color: var(--primary);
  margin-right: 0.25rem;
}

@media (max-width: 900px) {
  .funnel-growth-cards,
  .funnel-hiring-grid {
    grid-template-columns: 1fr;
  }

  .funnel-hiring-vol {
    white-space: normal;
    flex-wrap: wrap;
    justify-content: flex-end;
    text-align: right;
  }
}

.funnel-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 900px) {
  .funnel-split {
    grid-template-columns: 1fr;
  }
}

.funnel-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 1rem 0 1.25rem;
}

.funnel-text-cta {
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.funnel-text-cta:hover i {
  transform: translateX(4px);
}

.funnel-text-cta i {
  transition: transform 0.2s ease;
}

.funnel-ai-disclaimer {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-top: 0.85rem;
  margin-bottom: 0;
}

.funnel-source-note {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-top: 1.75rem;
  text-align: center;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.funnel-source-note a {
  color: var(--primary);
  font-weight: 600;
}

.funnel-bridge-cta {
  margin-top: 1.1rem;
  text-align: center;
}

.funnel-quote-panel {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.12), rgba(34, 197, 94, 0.08));
  border: 1px solid var(--glass-border-soft);
}

.funnel-quote {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-main);
}

.funnel-accordion {
  max-width: 720px;
  margin: 2rem auto 0;
}

.funnel-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border-soft);
  background: var(--glass-light-strong);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.funnel-acc-trigger:hover {
  border-color: rgba(37, 99, 235, 0.35);
}

.funnel-acc-trigger[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.funnel-acc-trigger i {
  transition: transform 0.25s ease;
  color: var(--primary);
}

.funnel-acc-panel {
  margin-top: 0.75rem;
  padding: 1rem 1.15rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.65);
  border: 1px dashed var(--border-subtle);
}

.funnel-acc-panel p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.62;
  color: var(--text-muted);
}

.funnel-acc-panel p + p {
  margin-top: 0.65rem;
}

.funnel-faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.funnel-faq-item {
  margin-bottom: 0.65rem;
}

.funnel-faq-item:last-child {
  margin-bottom: 0;
}

#faq .funnel-acc-trigger {
  text-align: left;
}

#faq .funnel-acc-trigger > span:first-child {
  flex: 1;
  padding-right: 0.5rem;
  line-height: 1.4;
}

.funnel-faq-foot {
  max-width: 720px;
  margin: clamp(1.5rem, 3vw, 2rem) auto 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.funnel-faq-foot a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.funnel-career-footnote {
  max-width: 46rem;
  margin: clamp(1.75rem, 3.5vw, 2.25rem) auto 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.funnel-step-list {
  list-style: decimal;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.65rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.funnel-support-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 48%, #0f172a 100%);
  color: #e5e7eb;
  border-block: none;
}

.funnel-support-hero .section-heading h2,
.funnel-support-hero .funnel-tagline-on-dark {
  color: #f8fafc;
}

.funnel-tagline-on-dark {
  opacity: 0.92;
}

.funnel-badge-light {
  background: rgba(255, 255, 255, 0.12);
  color: #93c5fd;
  border-color: rgba(255, 255, 255, 0.2);
}

.funnel-support-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.funnel-support-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.88rem;
  font-weight: 600;
}

.funnel-support-pill i {
  color: #4ade80;
}

.funnel-trainer-card {
  display: flex;
  gap: clamp(1rem, 3vw, 1.5rem);
  align-items: flex-start;
  max-width: 52rem;
  margin: 0 auto;
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.25rem, 3vw, 1.75rem);
  background: var(--glass-light-strong);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border-soft);
  box-shadow: var(--glass-shadow);
}

.funnel-trainer-body {
  flex: 1;
  min-width: 0;
}

.funnel-trainer-title {
  margin: 0 0 1rem;
  font-family: var(--ff-heading);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.funnel-trainer-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.funnel-trainer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.funnel-trainer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
}

.funnel-trainer-check {
  flex-shrink: 0;
  width: 1.35rem;
  display: flex;
  justify-content: center;
  padding-top: 0.2rem;
}

.funnel-trainer-check i {
  color: var(--accent);
  font-size: 0.85rem;
}

.funnel-trainer-item {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.funnel-trainer-item-kicker {
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.funnel-trainer-item-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  font-weight: 500;
}

.funnel-trainer-item-desc strong {
  color: #475569;
  font-weight: 700;
}

@media (max-width: 560px) {
  .funnel-trainer-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .funnel-trainer-body {
    width: 100%;
  }

  .funnel-trainer-list {
    text-align: left;
  }

  .funnel-trainer-list li {
    justify-content: flex-start;
  }
}

.funnel-path-note {
  max-width: 44rem;
  margin: 0 auto 1.35rem;
  padding: 1rem 1.2rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-main);
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--radius-md);
}

.funnel-flow-subhead {
  font-family: var(--ff-heading);
  font-size: 0.98rem;
  font-weight: 800;
  text-align: center;
  margin: 0 auto 0.85rem;
  color: var(--text-main);
  max-width: 40rem;
}

.funnel-flow-subhead--spaced {
  margin-top: 1.85rem;
}

.funnel-flow--starter .funnel-flow-num {
  background: linear-gradient(135deg, #059669, #047857);
}

.funnel-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
}

.funnel-flow-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: var(--glass-light-strong);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border-soft);
  font-weight: 600;
  font-size: 0.9rem;
}

.funnel-flow-num {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-family: var(--ff-heading);
}

.funnel-center-cta {
  text-align: center;
  margin-top: 1.75rem;
}

/* Projects gallery (10 live demos) */
.funnel-projects-showcase {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding-top: clamp(1.75rem, 3vw, 2.25rem);
  border-top: 1px solid var(--glass-border-soft);
}

.funnel-projects-showcase-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.funnel-projects-showcase-lead {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.funnel-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: stretch;
}

.funnel-projects-grid > li {
  list-style: none;
  display: flex;
  flex-direction: column;
  min-height: 0;
  align-self: stretch;
}

.funnel-project-card {
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.funnel-project-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
  background: var(--glass-light-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border-soft);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.funnel-project-card-link:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.12), var(--glass-inset);
}

.funnel-project-card-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.funnel-project-card-media {
  flex: 0 0 auto;
  height: 158px;
  min-height: 158px;
  max-height: 158px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  box-sizing: border-box;
}

.funnel-project-card-media--preview {
  height: 200px;
  min-height: 200px;
  max-height: 200px;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #e0e7ff 0%, #f1f5f9 45%, #e0f2fe 100%);
  position: relative;
}

.funnel-project-card-media--preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
  border-radius: 0;
}

.funnel-project-card-media--preview img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.funnel-project-card-media:not(.funnel-project-card-media--preview) img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 118px;
  object-fit: contain;
  object-position: center;
}

.funnel-project-thumb {
  background: linear-gradient(160deg, #f8fafc 0%, #e2e8f0 100%);
}

.funnel-project-thumb i {
  font-size: clamp(2.75rem, 8vw, 3.35rem);
  line-height: 1;
  opacity: 0.92;
}

.funnel-project-thumb--react {
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.14), rgba(59, 130, 246, 0.08));
  color: #1d4ed8;
}

.funnel-project-thumb--api {
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.14), rgba(99, 102, 241, 0.1));
  color: #6d28d9;
}

.funnel-project-thumb--mern {
  background: linear-gradient(145deg, rgba(5, 150, 105, 0.16), rgba(16, 185, 129, 0.1));
  color: #047857;
}

.funnel-project-thumb--ai {
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.18), rgba(45, 212, 191, 0.12));
  color: #0f766e;
}

.funnel-project-card-body {
  padding: 1.05rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  flex: 1 1 auto;
  min-height: 0;
}

.funnel-project-card-title {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
  line-height: 1.25;
}

.funnel-project-card-body .project-tag {
  margin: 0;
}

.funnel-project-open {
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.funnel-project-open i {
  font-size: 0.72rem;
  opacity: 0.9;
}

.funnel-cert-panel {
  max-width: min(52rem, 100%);
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.25rem, 3vw, 2.25rem);
  background: var(--glass-light-strong);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border-soft);
  box-shadow: var(--glass-shadow);
}

.funnel-cert-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}

.funnel-cert-header-icon {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.funnel-cert-header h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin: 0 0 0.65rem;
}

.funnel-cert-lead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #475569;
}

.funnel-cert-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.funnel-cert-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem 1.15rem;
  align-items: start;
  padding: 1.1rem 1.15rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.funnel-cert-item:hover {
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 24px rgba(15, 23, 42, 0.06);
}

.funnel-cert-item-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.06));
  color: var(--primary);
  font-size: 1.1rem;
}

.funnel-cert-item-body {
  min-width: 0;
}

.funnel-cert-item-title {
  font-family: var(--ff-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin: 0 0 0.35rem;
}

.funnel-cert-item-desc {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: #475569;
}

@media (max-width: 480px) {
  .funnel-cert-item {
    grid-template-columns: 2.75rem 1fr;
    gap: 0.85rem 0.9rem;
    padding: 1rem;
  }

  .funnel-cert-item-icon {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1rem;
  }
}

.funnel-testimonial-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.funnel-tcard {
  padding: 1.35rem;
  background: var(--glass-light-strong);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.funnel-tcard:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.funnel-tcard p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.funnel-tcard footer {
  font-size: 0.85rem;
  color: var(--text-main);
}

.funnel-final-cta {
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.18), rgba(34, 197, 94, 0.14));
  border-block: 1px solid var(--glass-border-soft);
}

.funnel-final-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.funnel-final-inner h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.65rem, 4vw, 2.1rem);
}

.funnel-final-lead {
  margin: 0.85rem 0 1rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.funnel-urgency {
  font-weight: 700;
  color: #b45309;
  margin-bottom: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.funnel-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.funnel-contact .contactDetails .funnel-wa-secondary {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
  text-align: center;
}

.funnel-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.funnel-modal[hidden] {
  display: none;
}

.funnel-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.funnel-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(88vh, 720px);
  overflow: auto;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.25);
  border: 1px solid var(--border-subtle);
  animation: funnelModalIn 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes funnelModalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.funnel-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--text-main);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.funnel-modal-close:hover {
  background: var(--border-subtle);
}

.funnel-modal-title {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  padding-right: 2.5rem;
  margin-bottom: 0.75rem;
}

.funnel-modal-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.funnel-modal-body p {
  margin-bottom: 0.75rem;
}

.funnel-modal-body a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.funnel-modal-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.funnel-modal-stack img {
  width: 36px;
  height: 36px;
}

.funnel-modal-proj {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.funnel-modal-proj a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  text-decoration: none !important;
  border: 1px solid var(--border-subtle);
}

.funnel-modal-proj a:hover {
  border-color: rgba(37, 99, 235, 0.35);
}

.funnel-modal-proj span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.funnel-modal-list {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.4rem;
}

.funnel-modal-list li {
  list-style: disc;
}

.funnel-modal-roadmap {
  margin: 0.5rem 0 0;
  padding-left: 1.35rem;
  display: grid;
  gap: 0.45rem;
}

.funnel-modal-roadmap li {
  list-style: decimal;
  color: var(--text-muted);
}