:root {
  --navy: #071433;
  --blue: #10256f;
  --blue-2: #1d4ed8;
  --purple: #7c3aed;
  --cyan: #22d3ee;
  --ink: #101828;
  --muted: #667085;
  --line: rgba(15, 23, 42, 0.1);
  --soft: #f6f8ff;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 37, 111, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 112px 0;
  position: relative;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 16px 0;
  transition: 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.navbar {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.28);
}

.logo-brand-mark {
  padding: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 37, 111, 0.1);
}

.logo-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.site-footer .logo-brand-mark {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.site-footer .logo-brand-mark img {
  filter: invert(1);
  opacity: 0.96;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: -3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #344054;
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--purple);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue-2), var(--purple));
  box-shadow: 0 16px 36px rgba(79, 70, 229, 0.28);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(124, 58, 237, 0.16);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.btn-light {
  background: white;
  color: var(--blue);
}

.btn-outline-light {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 130px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 20%, rgba(34, 211, 238, 0.24), transparent 28%),
    radial-gradient(circle at 22% 28%, rgba(124, 58, 237, 0.22), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #eef4ff 42%, #f9f5ff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.02;
  margin-bottom: 18px;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-subtitle,
.section-heading p,
.section-copy p,
.contact-info p,
.guide-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-subtitle {
  max-width: 650px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  margin-bottom: 14px;
}

.platform-line {
  max-width: 680px;
  margin: 0 0 32px;
  padding: 14px 18px;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 18px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 38px rgba(16, 37, 111, 0.08);
  font-weight: 800;
}

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

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.trust-row div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(124, 58, 237, 0.12);
  box-shadow: 0 18px 40px rgba(16, 37, 111, 0.08);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  color: var(--blue);
  font-size: 1.35rem;
  line-height: 1.05;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 5px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.career-illustration {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  padding: 18px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.career-illustration svg {
  width: 100%;
  display: none;
}

.hero-banner-img {
  display: block;
  width: 100%;
  min-height: 360px;
  object-fit: contain;
  object-position: center;
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 22%, rgba(34, 211, 238, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(244, 247, 255, 0.86));
}

.glass {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.8;
  animation: float 7s ease-in-out infinite;
}

.orb-one {
  width: 180px;
  height: 180px;
  top: 42px;
  right: 46px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.42), rgba(34, 211, 238, 0));
}

.orb-two {
  width: 240px;
  height: 240px;
  bottom: 34px;
  left: 6px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.28), rgba(124, 58, 237, 0));
  animation-delay: 1.5s;
}

.mentor-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  border-radius: 20px;
  min-width: 164px;
}

.mentor-card span,
.mentor-card small {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.78rem;
}

.mentor-card strong {
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.05;
}

.floating-card {
  animation: float 5.5s ease-in-out infinite;
}

.card-a {
  top: 86px;
  left: 0;
}

.card-b {
  right: 0;
  bottom: 86px;
  animation-delay: 1s;
}

.founder-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 62px;
  align-items: center;
}

.section-copy {
  max-width: 740px;
}

.founder-card {
  padding: 34px;
  border-radius: 32px;
}

.profile-visual {
  width: 116px;
  height: 116px;
  border-radius: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: white;
  font-size: 2.1rem;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.26), rgba(124, 58, 237, 0.16)),
    linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 20px 44px rgba(79, 70, 229, 0.28);
}

.image-profile {
  overflow: hidden;
  background: linear-gradient(135deg, #eef6ff, #f7f2ff);
}

.image-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

blockquote {
  margin: 24px 0 0;
  padding: 22px;
  color: var(--navy);
  font-weight: 800;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(124, 58, 237, 0.1));
}

.light-section {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.card-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.audience-card,
.timeline-step,
.why-card,
.testimonial-card,
.contact-form {
  border-radius: 26px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 18px 42px rgba(16, 37, 111, 0.08);
}

.service-card,
.audience-card {
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.audience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.26);
  box-shadow: 0 28px 70px rgba(16, 37, 111, 0.14);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 18px;
  color: transparent;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(124, 58, 237, 0.18));
  position: relative;
}

.icon::after {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-2), var(--purple));
}

.service-card p,
.audience-card p,
.timeline-step p,
.why-card span,
.testimonial-card blockquote,
.faq-section p {
  color: var(--muted);
}

.intelligence-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 16%, rgba(34, 211, 238, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
}

.intelligence-grid,
.exam-grid,
.college-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.assessment-dimensions,
.parent-concerns,
.college-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.assessment-dimensions span,
.parent-concerns span,
.college-list span,
.topic-grid span {
  padding: 11px 14px;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  font-size: 0.88rem;
}

.dashboard-card {
  min-height: 480px;
  padding: 30px;
  border-radius: 34px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 78% 20%, rgba(34, 211, 238, 0.3), transparent 28%),
    radial-gradient(circle at 22% 72%, rgba(124, 58, 237, 0.24), transparent 32%);
}

.dashboard-top,
.metric-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-top span,
.metric-list span {
  color: var(--muted);
  font-weight: 800;
}

.dashboard-top strong {
  color: var(--purple);
  font-size: 2.7rem;
  line-height: 1;
}

.radar-wrap {
  position: relative;
  width: min(320px, 100%);
  aspect-ratio: 1;
  margin: 36px auto;
}

.radar-grid,
.radar-grid::before,
.radar-grid::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(29, 78, 216, 0.16);
  border-radius: 32% 68% 45% 55% / 42% 40% 60% 58%;
}

.radar-grid::before,
.radar-grid::after {
  content: "";
  inset: 14%;
}

.radar-grid::after {
  inset: 29%;
}

.radar-shape {
  position: absolute;
  inset: 15% 20% 18% 14%;
  clip-path: polygon(52% 0, 95% 36%, 76% 92%, 19% 78%, 0 28%);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.42), rgba(124, 58, 237, 0.42));
  border: 2px solid rgba(124, 58, 237, 0.5);
}

.radar-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 0 0 5px rgba(34, 211, 238, 0.22);
}

.dot-one {
  top: 4%;
  left: 50%;
}

.dot-two {
  right: 4%;
  top: 34%;
}

.dot-three {
  left: 12%;
  bottom: 18%;
}

.metric-list {
  display: grid;
  gap: 12px;
}

.metric-list div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.metric-list strong {
  color: var(--blue);
}

.industries-section {
  background: #ffffff;
}

.industry-grid,
.exam-cloud,
.blog-grid,
.career-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.industry-grid span,
.exam-cloud span,
.career-marquee span {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(29, 78, 216, 0.12);
  color: var(--navy);
  background: white;
  box-shadow: 0 14px 34px rgba(16, 37, 111, 0.07);
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.industry-grid span:hover,
.exam-cloud span:hover,
.career-marquee span:hover {
  transform: translateY(-4px) rotate(-1deg);
  border-color: rgba(124, 58, 237, 0.34);
}

.future-careers-section {
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 12% 20%, rgba(34, 211, 238, 0.25), transparent 28%),
    radial-gradient(circle at 84% 70%, rgba(124, 58, 237, 0.34), transparent 32%),
    linear-gradient(135deg, #061027, #172554 48%, #3b0764);
}

.future-careers-section h2,
.future-careers-section .eyebrow {
  color: white;
}

.future-careers-section .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.career-marquee span {
  color: white;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.library-section {
  background: linear-gradient(180deg, #ffffff, #f7f9ff);
}

.library-search {
  max-width: 760px;
  margin: -24px auto 34px;
  position: relative;
}

.library-search input {
  min-height: 60px;
  padding-right: 112px;
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(16, 37, 111, 0.1);
}

.library-search span {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 12px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--blue-2), var(--purple));
  font-weight: 900;
  font-size: 0.8rem;
}

.library-grid,
.stream-grid,
.myth-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.library-card,
.stream-card,
.myth-card,
.blog-grid a {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 16px 38px rgba(16, 37, 111, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.library-card:hover,
.stream-card:hover,
.myth-card:hover,
.blog-grid a:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(16, 37, 111, 0.14);
}

.library-card.hidden {
  display: none;
}

.career-page-preview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding: 22px;
  border-radius: 24px;
}

.career-page-preview strong {
  color: var(--navy);
  margin-right: 8px;
}

.career-page-preview span {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(34, 211, 238, 0.12);
  font-weight: 800;
  font-size: 0.84rem;
}

.exam-section,
.college-section {
  background: var(--soft);
}

.roadmap-section {
  overflow: hidden;
}

.roadmap-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
}

.roadmap-strip span {
  min-height: 86px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  border-radius: 22px;
  color: var(--blue);
  background: white;
  border: 1px solid rgba(124, 58, 237, 0.14);
  box-shadow: 0 18px 38px rgba(16, 37, 111, 0.08);
  font-weight: 900;
}

.future-work-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 211, 238, 0.13), transparent 30%),
    #ffffff;
}

.topic-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.parent-section {
  padding: 84px 0;
}

.parent-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 34px;
  align-items: center;
  padding: 46px;
  border-radius: 36px;
  color: white;
  background:
    radial-gradient(circle at 82% 20%, rgba(34, 211, 238, 0.24), transparent 28%),
    linear-gradient(135deg, #071433, #172554 45%, #5b21b6);
  box-shadow: 0 30px 90px rgba(16, 37, 111, 0.22);
}

.parent-card h2,
.parent-card p,
.parent-card .eyebrow {
  color: white;
}

.parent-concerns span {
  color: white;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
}

.parent-visual-panel {
  display: block;
}

.parent-visual-panel .parent-concerns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.parent-visual-panel img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.college-panel {
  display: grid;
  gap: 18px;
}

.college-panel img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
  background: #f7fbff;
  border: 1px solid rgba(124, 58, 237, 0.12);
  box-shadow: 0 20px 50px rgba(16, 37, 111, 0.12);
}

.roadmap-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 28px;
  align-items: center;
  margin-bottom: 34px;
}

.roadmap-intro .section-heading {
  margin-bottom: 0;
}

.roadmap-student-img {
  width: 100%;
  border-radius: 30px;
  background: white;
  box-shadow: 0 20px 50px rgba(16, 37, 111, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.myths-section {
  background: linear-gradient(180deg, #ffffff, #f7f9ff);
}

.myth-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.04rem;
}

.blog-grid a {
  color: var(--blue);
  font-weight: 900;
}

.mobile-show-more {
  display: none;
}

.mobile-quick-path {
  display: none;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.audience-wide {
  grid-column: span 2;
}

.mini-illustration {
  height: 92px;
  border-radius: 22px;
  margin-bottom: 22px;
  background:
    radial-gradient(circle at 80% 30%, rgba(34, 211, 238, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(29, 78, 216, 0.1), rgba(124, 58, 237, 0.13));
  position: relative;
  overflow: hidden;
}

.mini-illustration::before,
.mini-illustration::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.mini-illustration::before {
  width: 54px;
  height: 54px;
  left: 24px;
  top: 18px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
}

.mini-illustration::after {
  width: 92px;
  height: 18px;
  right: 24px;
  bottom: 24px;
  background: rgba(16, 37, 111, 0.14);
  border-radius: 999px;
}

.process-section {
  background: linear-gradient(180deg, white, #f8faff);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}

.timeline-step {
  position: relative;
  z-index: 1;
  padding: 26px;
}

.timeline-step span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 16px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-2), var(--purple));
}

.dark-gradient {
  color: white;
  background:
    radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.22), transparent 30%),
    linear-gradient(135deg, #071433 0%, #172554 44%, #4c1d95 100%);
}

.dark-gradient h2,
.dark-gradient .eyebrow {
  color: white;
}

.why-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.why-card strong,
.why-card span {
  display: block;
}

.why-card strong {
  margin-bottom: 8px;
  color: white;
  font-size: 1.04rem;
}

.why-card span {
  color: rgba(255, 255, 255, 0.72);
}

.testimonial-shell {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.testimonial-track {
  overflow: hidden;
  min-height: 310px;
}

.testimonial-card {
  display: none;
  padding: 38px;
  text-align: center;
  animation: fadeSlide 0.35s ease;
}

.testimonial-card.active {
  display: block;
}

.avatar {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 26px;
  color: white;
  font-weight: 900;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
}

.stars {
  color: #f59e0b;
  font-size: 1.1rem;
}

.testimonial-card blockquote {
  background: transparent;
  box-shadow: none;
  padding: 0;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 700;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: var(--blue);
  background: white;
  box-shadow: 0 16px 32px rgba(16, 37, 111, 0.14);
  cursor: pointer;
  font-size: 2rem;
}

.prev {
  left: -18px;
}

.next {
  right: -18px;
}

.guide-section {
  padding-top: 40px;
  background: var(--soft);
}

.guide-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 34px;
  align-items: center;
  padding: 42px;
  border-radius: 34px;
}

.inline-form {
  display: flex;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 37, 111, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  outline: 0;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.08);
}

.accordion details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.accordion summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  float: right;
  color: var(--purple);
}

.accordion details[open] summary::after {
  content: "-";
}

.final-cta {
  padding: 70px 0;
}

.final-cta-card {
  padding: 70px;
  border-radius: 40px;
  color: white;
  background:
    radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.26), transparent 28%),
    linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 30px 90px rgba(76, 29, 149, 0.25);
}

.final-cta-card h2,
.final-cta-card p {
  color: white;
  max-width: 760px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  color: var(--blue);
  font-weight: 800;
}

.map-placeholder {
  display: grid;
  gap: 6px;
  min-height: 180px;
  padding: 26px;
  border-radius: 28px;
  color: white;
  background:
    linear-gradient(rgba(7, 20, 51, 0.54), rgba(7, 20, 51, 0.54)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.12) 0 2px, transparent 2px 18px),
    linear-gradient(135deg, #1d4ed8, #7c3aed);
  align-content: end;
}

.map-placeholder span {
  opacity: 0.78;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.contact-form label {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.92rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #061027;
  padding: 70px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr;
  gap: 34px;
}

.site-footer h3,
.site-footer strong {
  color: white;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.footer-brand {
  margin-bottom: 16px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.copyright {
  width: min(1160px, calc(100% - 40px));
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.floating-whatsapp,
.sticky-book {
  position: fixed;
  z-index: 45;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 44px rgba(16, 37, 111, 0.22);
}

.floating-whatsapp {
  right: 20px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: white;
  font-weight: 900;
  background: #10b981;
}

.sticky-book {
  right: 92px;
  bottom: 26px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-2), var(--purple));
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
}

.modal.active {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 51, 0.64);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(580px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 34px;
  border-radius: 32px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
}

.modal-form {
  display: grid;
  gap: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

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

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 980px) {
  .section {
    padding: 82px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .founder-grid,
  .contact-grid,
  .faq-grid,
  .guide-card,
  .intelligence-grid,
  .exam-grid,
  .college-grid,
  .parent-card,
  .roadmap-intro {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-visual {
    min-height: auto;
  }

  .trust-row,
  .card-grid,
  .audience-grid,
  .timeline,
  .why-grid,
  .footer-grid,
  .library-grid,
  .stream-grid,
  .myth-grid,
  .blog-grid,
  .roadmap-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    display: none;
  }

  .audience-wide {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .container,
  .navbar,
  .copyright {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 54px 0;
  }

  h1 {
    font-size: 2.48rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 1.86rem;
    line-height: 1.08;
  }

  h3 {
    font-size: 1.05rem;
  }

  .site-header {
    padding: 10px 0;
  }

  .brand small {
    display: none;
  }

  .nav-links {
    top: 62px;
  }

  .hero {
    padding-top: 88px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-subtitle,
  .platform-line,
  .section-heading p,
  .section-copy p,
  .contact-info p,
  .guide-card p {
    font-size: 0.98rem;
  }

  .platform-line {
    padding: 12px 14px;
    margin-bottom: 20px;
  }

  .section-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .eyebrow {
    margin-bottom: 9px;
    font-size: 0.7rem;
  }

  .hero-actions,
  .inline-form {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .trust-row,
  .timeline,
  .why-grid,
  .footer-grid,
  .myth-grid,
  .blog-grid,
  .roadmap-strip {
    grid-template-columns: 1fr;
  }

  .trust-row {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    margin-top: 22px;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .trust-row div {
    flex: 0 0 148px;
    padding: 14px;
    scroll-snap-align: start;
  }

  .trust-row strong {
    font-size: 1.08rem;
  }

  .mobile-quick-path {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-top: 14px;
    padding-bottom: 4px;
  }

  .mobile-quick-path a {
    flex: 0 0 auto;
    padding: 9px 13px;
    border: 1px solid rgba(124, 58, 237, 0.16);
    border-radius: 999px;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 26px rgba(16, 37, 111, 0.08);
    font-size: 0.82rem;
    font-weight: 900;
  }

  .dashboard-card {
    min-height: auto;
    padding: 22px;
  }

  .dashboard-top strong {
    font-size: 2rem;
  }

  .radar-wrap {
    width: min(230px, 100%);
    margin: 22px auto;
  }

  .mobile-scroll {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    gap: 14px;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-scroll > * {
    flex: 0 0 min(84%, 330px);
    scroll-snap-align: start;
  }

  .card-grid.services-grid {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .card-grid.services-grid > * {
    flex: 0 0 min(84%, 330px);
    scroll-snap-align: start;
  }

  .mobile-collapsible:not(.expanded) > :nth-child(n + 9) {
    display: none;
  }

  .blog-grid.mobile-collapsible:not(.expanded) > :nth-child(n + 7) {
    display: none;
  }

  .compact-preview.mobile-collapsible:not(.expanded) span:nth-of-type(n + 4) {
    display: none;
  }

  .mobile-show-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 16px;
    padding: 0 16px;
    border: 1px solid rgba(124, 58, 237, 0.22);
    border-radius: 999px;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 30px rgba(16, 37, 111, 0.08);
    font-weight: 900;
  }

  .dark-more {
    color: white;
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
  }

  .library-search input {
    padding-right: 16px;
  }

  .library-search span {
    position: static;
    display: inline-flex;
    transform: none;
    margin-top: 10px;
  }

  .industry-grid,
  .exam-cloud,
  .career-marquee,
  .topic-grid {
    justify-content: flex-start;
  }

  .industry-grid span,
  .exam-cloud span,
  .career-marquee span {
    width: auto;
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.86rem;
  }

  .career-illustration {
    padding: 8px;
    border-radius: 24px;
  }

  .hero-banner-img {
    min-height: 190px;
    max-height: 260px;
  }

  .mentor-card {
    display: none;
  }

  .card-a,
  .card-b {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .founder-card,
  .guide-card,
  .final-cta-card,
  .modal-card {
    padding: 22px;
    border-radius: 26px;
  }

  .founder-card {
    margin-top: -18px;
  }

  .parent-card {
    padding: 28px 22px;
  }

  .service-card,
  .audience-card,
  .timeline-step,
  .library-card,
  .stream-card,
  .myth-card,
  .blog-grid a {
    padding: 20px;
    border-radius: 22px;
  }

  .parent-visual-panel {
    display: block;
  }

  .parent-visual-panel img,
  .roadmap-student-img,
  .college-panel img {
    max-width: 260px;
    margin: 0 auto;
  }

  .slider-btn {
    position: static;
    margin: 14px 6px 0;
  }

  .testimonial-shell {
    text-align: center;
  }

  .sticky-book {
    display: grid;
    left: 14px;
    right: 82px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 14px;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 14px;
  }

  .site-footer {
    padding-bottom: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
