/* ══════════════════════════════════════
   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: center;
  justify-content: center;
  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: 85%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.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: 1.2rem;
  padding: 1rem 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: 1.55rem;
  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 ── */

.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;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease,
    border-color 0.22s ease, color 0.22s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(34, 197, 94, 0.35);
}

.primary-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 55px rgba(34, 197, 94, 0.5);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.secondary-btn:hover {
  background: #ffffff;
  color: var(--hero-dark);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* ── 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 {
  background: transparent;
  padding: 28px min(8vw, 100px) 32px;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.45), rgba(124, 58, 237, 0.42));
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--glass-shadow), var(--glass-inset);
}

.stat-item {
  padding: 22px 28px;
  position: relative;
  color: #ffffff;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.stat-number,
.stat-number-text {
  font-family: var(--ff-heading);
  font-size: 2.2rem;
  font-weight: 900;
  display: inline;
}

.stat-plus,
.stat-dash {
  font-family: var(--ff-heading);
  font-size: 1em;
  font-weight: 700;
  opacity: 0.7;
}

.stat-label {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  font-weight: 600;
}

/* ══════════════════════════════════════
   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;
}

.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;
}

.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: 420px;
  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: 5.5rem;
}

.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 {
  background: #ffffff !important;
  color: var(--hero-dark) !important;
  border-color: #ffffff !important;
}

.program-cta-panel .primary-btn:hover {
  background: rgba(255, 255, 255, 0.92) !important;
}

.program-cta-panel .secondary-btn {
  border-color: rgba(255, 255, 255, 0.45) !important;
  color: #ffffff !important;
}

.program-cta-panel .secondary-btn: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 {
  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 {
  filter: brightness(1.06);
}

.roadmap-cta-panel .secondary-btn {
  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 {
  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;
}

.sendButton {
  margin-top: 0.5rem;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-xl);
  border: none;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sendButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.4);
}

.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 0.8fr 0.8fr;
  gap: 3.25rem;
  padding: 64px 0 48px;
}

.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-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 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-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: 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-icons {
    justify-items: center;
    grid-template-columns: repeat(auto-fill, minmax(32px, 44px));
  }

  .tech-strip {
    justify-items: center;
  }

  .stats-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2n)::after {
    display: none;
  }

  .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-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
  }
}

@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;
  }
}