:root {
  --dark: #111923;
  --text: #171c29;
  --muted: #5f6878;
  --green: #197a70;
  --deep-green: #063f2d;
  --lime: #a9d84f;
  --line: #edf0f5;
  --shadow: 0 22px 65px rgba(18, 25, 35, 0.14);
}

/* Lower homepage: FAQ, founder contact, and footer */
.home-faq {
  padding: 112px 28px 96px;
  background: #fff;
}

.faq-inner {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-areas:
    "intro list"
    "network list";
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
  gap: 28px 92px;
  align-items: start;
}

.faq-intro {
  grid-area: intro;
  padding-top: 12px;
}

.home-section-label {
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 12px;
  color: var(--deep-green);
  background: #edf8d5;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.faq-intro h2,
.founder-story h2,
.founder-contact-card h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 4.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.faq-list {
  grid-area: list;
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #edf0f6;
  border-radius: 22px;
  background: #f6f8fc;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.is-open {
  background: #f0f2f6;
  box-shadow: 0 15px 30px rgba(20, 28, 42, 0.05);
}

.faq-question {
  width: 100%;
  min-height: 76px;
  padding: 22px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--text);
  border: 0;
  background: transparent;
  font-size: 1.05rem;
  font-weight: 850;
  text-align: left;
}

.faq-chevron {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(225deg) translateY(-1px);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 25px 24px;
  color: #444e60;
  font-size: 0.96rem;
  line-height: 1.65;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-network {
  position: relative;
  grid-area: network;
  height: 300px;
  overflow: hidden;
}

.faq-network svg {
  position: absolute;
  inset: 5px 0 0;
  width: 100%;
  height: calc(100% - 5px);
}

.faq-network path {
  fill: none;
  stroke: rgba(236, 99, 99, 0.18);
  stroke-width: 1.8;
}

.network-node {
  position: absolute;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #1b4151;
  border: 1px solid #eef0f4;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 14px 28px rgba(18, 29, 42, 0.14);
  font-size: 0.72rem;
  font-weight: 900;
}

.node-one { top: 125px; left: 0; color: #008b72; }
.node-two { top: 42px; left: 20%; color: #2376c6; }
.node-three { top: 185px; left: 33%; color: #1c67b8; }
.node-four { top: 35px; left: 50%; color: #158056; }
.node-five { top: 143px; left: 62%; color: #087b52; }
.node-six { top: 18px; right: 4%; color: #2b2e3c; }
.node-seven { right: 4%; bottom: 20px; color: #de3f36; }
.node-eight { right: 28%; bottom: 0; color: #128e73; }

.founder-section {
  padding: 38px 28px 110px;
  background: #fff;
}

.founder-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(38px, 7vw, 118px);
  color: #f9fbff;
  background: var(--dark);
  border-radius: 40px;
}

.founder-story .home-section-label,
.founder-contact-card .home-section-label {
  color: #defe75;
  background: rgba(222, 254, 117, 0.12);
}

.founder-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.founder-story h2 {
  max-width: 620px;
}

.founder-role {
  margin: 18px 0 0;
  color: #dfe5ed;
  font-weight: 750;
  line-height: 1.55;
}

.founder-role span {
  color: #9aa8bb;
  font-size: 0.94rem;
  font-weight: 600;
}

.founder-portrait {
  width: clamp(112px, 12vw, 180px);
  margin: 0;
  flex: 0 0 auto;
}

.founder-portrait img {
  width: 100%;
  height: auto;
  display: block;
  border: 4px solid rgba(221, 254, 117, 0.72);
  border-radius: 24px;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.25);
}

.founder-story blockquote {
  margin: 0 0 24px;
  padding: 0 0 0 24px;
  color: #fff;
  border-left: 4px solid var(--lime);
  font-size: clamp(1.15rem, 1.65vw, 1.45rem);
  font-weight: 720;
  line-height: 1.5;
}

.founder-story > p:not(.home-section-label):not(.founder-role):not(.founder-signature) {
  max-width: 710px;
  margin: 0 0 15px;
  color: #c9d1dc;
  line-height: 1.7;
}

.founder-signature {
  margin: 30px 0 0;
  color: #defe75;
  font-weight: 800;
}

.founder-contact-card {
  padding: clamp(26px, 3.5vw, 45px);
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 26px;
  background: #242e40;
}

.founder-contact-card h2 {
  margin-bottom: 28px;
  font-size: clamp(1.85rem, 3vw, 3.1rem);
}

.founder-form {
  display: grid;
  gap: 17px;
}

.founder-form label {
  display: grid;
  gap: 8px;
  color: #f5f7fb;
  font-size: 0.93rem;
  font-weight: 800;
}

.founder-form input,
.founder-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--text);
  border: 1px solid transparent;
  border-radius: 11px;
  outline: none;
  background: #fff;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.founder-form textarea {
  resize: vertical;
  min-height: 118px;
}

.founder-form input:focus,
.founder-form textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(222, 254, 117, 0.16);
}

.founder-form-status {
  min-height: 1.2em;
  margin: 1px 0 0;
  color: #d5dfeb;
  font-size: 0.9rem;
  line-height: 1.45;
}

.founder-form-status.is-error { color: #ffb7b7; }
.founder-form-status.is-success { color: #defe75; }

.founder-submit {
  min-height: 52px;
  margin-top: 4px;
  color: #13202b;
  border: 0;
  border-radius: 12px;
  background: var(--lime);
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.founder-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 25px rgba(169, 216, 79, 0.18);
}

.site-footer {
  padding: 0 28px 32px;
  color: #eef3fa;
  background: #fff;
}

.footer-inner,
.footer-bottom {
  width: min(1440px, 100%);
  margin: 0 auto;
  background: var(--dark);
}

.footer-inner {
  padding: clamp(38px, 6vw, 78px);
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(390px, 0.95fr);
  gap: 70px;
  border-radius: 40px 40px 0 0;
}

.footer-logo .logo-mark { border-color: #2cbf9c; }

.footer-brand > p {
  margin: 22px 0 0;
  color: #aab4c4;
  font-weight: 700;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 42px;
}

.footer-links section {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-links h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1rem;
}

.footer-links a,
.footer-bottom a {
  color: #aab4c4;
  font-size: 0.94rem;
}

.footer-links a:hover,
.footer-bottom a:hover { color: var(--lime); }

.footer-bottom {
  padding: 0 clamp(38px, 6vw, 78px) 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 0 0 40px 40px;
}

.footer-bottom p {
  margin: 0;
  color: #eef3fa;
  font-size: 0.9rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

@media (max-width: 960px) {
  .faq-inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(370px, 1.15fr);
    gap: 28px 46px;
  }

  .founder-shell,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .founder-contact-card { max-width: 680px; }
  .footer-inner { gap: 46px; }
}

@media (max-width: 720px) {
  .home-faq,
  .founder-section { padding-right: 14px; padding-left: 14px; }

  .home-faq { padding-top: 74px; padding-bottom: 65px; }

  .faq-inner {
    grid-template-areas:
      "intro"
      "list"
      "network";
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-intro { padding: 0 10px; }
  .faq-intro h2 { font-size: 2rem; }

  .faq-question { min-height: 66px; padding: 18px 20px; font-size: 0.98rem; }
  .faq-answer p { padding: 0 20px 20px; font-size: 0.92rem; }
  .faq-network { height: 245px; margin: 4px -14px 0; }
  .network-node { width: 48px; height: 48px; font-size: 0.63rem; }
  .node-one { top: 103px; left: 0; }
  .node-two { top: 28px; left: 20%; }
  .node-three { top: 151px; left: 33%; }
  .node-four { top: 27px; left: 50%; }
  .node-five { top: 118px; left: 62%; }
  .node-six { top: 14px; right: 4%; }
  .node-seven { right: 4%; bottom: 16px; }
  .node-eight { right: 28%; bottom: 0; }

  .founder-section { padding-top: 14px; padding-bottom: 70px; }
  .founder-shell { padding: 32px 22px; gap: 34px; border-radius: 25px; }
  .founder-heading-row { gap: 16px; }
  .founder-story h2 { font-size: 2.2rem; }
  .founder-portrait { width: 92px; }
  .founder-story blockquote { padding-left: 17px; font-size: 1.06rem; }
  .founder-story > p:not(.home-section-label):not(.founder-role):not(.founder-signature) { font-size: 0.94rem; }
  .founder-contact-card { padding: 25px 18px; border-radius: 20px; }

  .site-footer { padding: 0 14px 14px; }
  .footer-inner { padding: 38px 26px 32px; gap: 34px; border-radius: 25px 25px 0 0; }
  .footer-links { gap: 26px; }
  .footer-bottom { padding: 0 26px 28px; align-items: flex-start; flex-direction: column-reverse; gap: 22px; border-radius: 0 0 25px 25px; }
  .footer-bottom nav { justify-content: flex-start; gap: 15px; }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Inter, Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
  pointer-events: none;
}

.nav-bar {
  width: min(1220px, calc(100% - 48px));
  height: 88px;
  margin: 0 auto;
  padding: 0 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background: var(--dark);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(17, 25, 35, 0.2);
  pointer-events: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.nav-wordmark {
  flex: 0 1 212px;
}

.nav-wordmark img {
  display: block;
  width: 100%;
  max-height: 58px;
  height: auto;
  object-fit: contain;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  border: 3px solid #2095d4;
  border-left-color: #2cbf9c;
  border-radius: 8px;
  font-size: 1.25rem;
  font-weight: 900;
  transform: skew(-8deg);
}

.logo-text {
  display: grid;
  line-height: 1.05;
}

.logo-text strong {
  font-size: 1.05rem;
  font-weight: 900;
}

.logo-text small {
  max-width: 245px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav,
.nav-actions,
.mobile-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 38px;
}

.desktop-nav a,
.package-btn {
  color: rgba(255, 255, 255, 0.68);
  border: 0;
  background: transparent;
  font-weight: 700;
}

.desktop-nav a:hover,
.desktop-nav .active,
.package-btn:hover {
  color: #fff;
}

.package-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.package-btn span,
.drawer-arrow {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.package-btn span {
  transition: transform 0.2s ease;
}

.package-btn[aria-expanded="true"] span {
  transform: rotate(225deg) translateY(-2px);
}

.package-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(13, 18, 25, 0.48);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.package-mega-menu {
  position: fixed;
  top: 120px;
  left: 50%;
  z-index: 60;
  display: grid;
  width: min(1220px, calc(100% - 48px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 28px;
  color: #151928;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(17, 25, 35, 0.26);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.package-mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.package-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.package-mega-column {
  min-width: 0;
  padding: 32px 36px 28px;
}

.package-mega-column + .package-mega-column {
  border-left: 1px solid #e5e8e1;
}

.package-mega-column h2 {
  margin: 0 0 24px;
  color: #151928;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.package-mega-column a {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding: 0 14px;
  border-radius: 10px;
  color: #4f5867;
  background: #fafbf9;
  font-size: 0.94rem;
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.package-mega-column a:first-of-type {
  margin-top: 0;
}

.package-mega-column a span {
  flex: 0 0 auto;
  font-size: 1.1rem;
  line-height: 1;
}

.package-mega-column a:hover,
.package-mega-column a:focus-visible {
  color: #0e5f53;
  background: #eff7e6;
  outline: none;
  transform: translateX(3px);
}

.nav-actions {
  gap: 14px;
}

.btn {
  min-height: 46px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-light {
  color: var(--text);
  background: #fff;
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-primary {
  color: #fff;
  background: var(--green);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(25, 122, 112, 0.24);
}

.btn-muted {
  color: #101622;
  background: #e3e5e9;
}

.mobile-actions {
  display: none;
  gap: 18px;
}

.india-flag {
  position: relative;
  width: 44px;
  height: 44px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: linear-gradient(#ff8f1f 0 33%, #fff 33% 66%, #159447 66%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.india-flag::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  height: 30%;
  border: 1.5px solid #27479f;
  border-radius: 50%;
  background:
    radial-gradient(circle, #27479f 0 1.2px, transparent 1.4px),
    repeating-conic-gradient(#27479f 0 5deg, transparent 5deg 15deg);
  transform: translate(-50%, -50%);
}

.menu-toggle {
  width: 48px;
  height: 42px;
  padding: 0;
  display: grid;
  align-content: center;
  gap: 7px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  height: 5px;
  display: block;
  background: #fff;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 710px;
  padding: 212px 0 118px;
  overflow: hidden;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24, 33, 48, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 33, 48, 0.06) 1px, transparent 1px);
  background-size: 128px 118px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 13%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 13%, #000 82%, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.25rem, 5.1vw, 4.75rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 span {
  display: inline-block;
  padding: 0 18px 5px;
  color: #fff;
  background: var(--lime);
  border-radius: 8px;
}

.hero p {
  width: min(560px, 100%);
  margin: 30px auto 0;
  color: #202636;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.55;
  font-weight: 500;
}

.hero-buttons {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.floating-icons,
.stats-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.app-icon {
  --float-x: 4px;
  --float-y: -13px;
  position: absolute;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 9px solid rgba(247, 249, 253, 0.96);
  border-radius: 18px;
  box-shadow: 0 12px 25px rgba(36, 45, 66, 0.15);
  font-size: 1.25rem;
  font-weight: 900;
  animation: floatIcon 6.5s ease-in-out infinite;
}

.icon-chat { top: 142px; left: 0; background: linear-gradient(135deg, #7fe5df, #4666e8); }
.icon-unreal { top: 142px; left: 20%; background: linear-gradient(135deg, #33405a, #b9c7e5); animation-delay: -1.2s; }
.icon-insta { top: 118px; right: 20%; background: radial-gradient(circle at 35% 100%, #ffd76b, #f53765 46%, #7837ff); animation-delay: -2.2s; }
.icon-vn { top: 392px; left: 19%; color: #101622; background: #fff; animation-delay: -3s; }
.icon-ai { bottom: 88px; left: 13%; background: linear-gradient(135deg, #5b1700, #ff9e22); animation-delay: -1.8s; }
.icon-canva { bottom: 74px; left: 46%; background: linear-gradient(135deg, #55d8f2, #734dff); animation-delay: -2.8s; }
.icon-pr { top: 430px; right: 16%; background: linear-gradient(135deg, #f4b5ff, #5e7eff); animation-delay: -1.6s; }
.icon-fire { bottom: 118px; right: 2%; background: linear-gradient(135deg, #ffca4e, #f35a45); animation-delay: -3.6s; }

.stat-card {
  --rise: -10px;
  position: absolute;
  width: 180px;
  min-height: 176px;
  padding: 30px 18px 20px;
  color: #fff;
  background: #202020;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: floatCard 8s ease-in-out infinite;
}

.stat-card::before,
.stat-card::after {
  content: "";
  position: absolute;
  right: -62px;
  bottom: -12px;
  width: 220px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transform: rotate(-21deg);
}

.stat-card::after {
  right: -34px;
  bottom: 20px;
  opacity: 0.75;
}

.card-courses {
  left: 2%;
  bottom: 86px;
  transform: rotate(2deg);
}

.card-trainers {
  top: 138px;
  right: 6%;
  background: var(--deep-green);
  animation-delay: -2s;
}

.card-students {
  right: 25%;
  bottom: 76px;
  background: #163224;
  animation-delay: -3.4s;
}

.dots,
.stat-card strong,
.stat-card span {
  position: relative;
  z-index: 1;
}

.dots {
  display: flex;
  gap: 7px;
}

.dots i {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
}

.dots i:nth-child(1) { background: #ff4b4b; }
.dots i:nth-child(2) { background: #27c6ff; }
.dots i:nth-child(3) { background: #b6e84f; }

.stat-card strong {
  display: block;
  margin-top: 20px;
  font-size: 2rem;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  line-height: 1.2;
}

.media {
  padding: 28px 0 70px;
  background: #fff;
}

.media h2 {
  margin: 0 0 28px;
  text-align: center;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 900;
}

.media-window {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.media-track {
  --gap: 42px;
  display: flex;
  width: max-content;
  gap: var(--gap);
  animation: mediaMove 23s linear infinite;
}

.media-window:hover .media-track {
  animation-play-state: paused;
}

.media-row {
  display: flex;
  align-items: center;
  gap: var(--gap);
  color: #727272;
  filter: grayscale(1);
  opacity: 0.82;
  font-size: 1rem;
  font-weight: 900;
}

.media-row span {
  min-width: 150px;
  min-height: 34px;
  display: grid;
  place-items: center;
  text-align: center;
}

.knowledge {
  padding: 90px max(7vw, 28px) 72px;
  color: #fff;
  background: var(--dark);
}

.knowledge-head {
  width: min(1480px, 100%);
  margin: 0 auto 64px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.knowledge h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.knowledge-head > div > p:last-child {
  max-width: 630px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.package-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: end;
}

.package-tab {
  min-height: 62px;
  padding: 7px 10px 7px 22px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.7);
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  font-weight: 700;
  white-space: nowrap;
}

.package-tab b {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  font-size: 1.05rem;
}

.package-tab.active {
  color: #005b4d;
  background: #fff;
}

.package-tab.active b {
  color: #fff;
  background: #00644f;
}

.pack-panel {
  width: min(1480px, 100%);
  margin: 0 auto;
}

.digital-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.course-card {
  position: relative;
  min-height: 474px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
}

.course-card::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -21%;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.1;
}

.course-copy {
  position: relative;
  z-index: 2;
  width: 62%;
}

.course-copy h3,
.business-card h3 {
  margin: 0;
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  line-height: 1.13;
}

.course-copy p {
  margin: 18px 0 26px;
  font-size: 0.98rem;
  line-height: 1.5;
}

.starter-card {
  color: #fff;
  background: #00604c;
}

.elite-card {
  color: #091425;
  background: #fff;
}

.exclusive-card {
  color: #091425;
  background: #d5e0e0;
}

.vip-card {
  color: #06152a;
  background: var(--lime);
  box-shadow: 0 0 24px rgba(169, 216, 79, 0.65), 0 0 56px rgba(89, 219, 226, 0.27);
}

.course-box {
  position: absolute;
  right: 22px;
  bottom: 34px;
  z-index: 1;
  width: 45%;
  min-width: 130px;
  padding: 25px 12px 18px;
  display: grid;
  gap: 78px;
  color: #fff;
  background: linear-gradient(135deg, #18222b, #34444a);
  border-right: 12px solid #41c58e;
  border-bottom: 12px solid #253138;
  box-shadow: -10px 14px 16px rgba(10, 17, 25, 0.2);
  transform: perspective(340px) rotateY(-16deg) rotateX(2deg);
}

.course-box::before {
  content: "";
  position: absolute;
  inset: 16px 14px 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: repeating-radial-gradient(ellipse at 10% 90%, transparent 0 13px, rgba(255, 255, 255, 0.05) 14px 15px, transparent 16px 25px);
}

.course-box strong,
.course-box small {
  position: relative;
  z-index: 1;
}

.course-box strong {
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.course-box small {
  padding-top: 7px;
  border-top: 9px solid #35c888;
  color: #eafff7;
  font-size: 0.54rem;
  font-weight: 800;
}

.box-elite { border-right-color: #6ad9b0; }
.box-exclusive { border-right-color: #2dc48b; }
.box-vip { border-right-color: #96ebce; }

.buy-button {
  width: fit-content;
  min-height: 50px;
  padding: 5px 16px 5px 5px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.buy-button i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #005b4d;
  border-radius: 50%;
  background: #fff;
  font-style: normal;
  font-size: 1rem;
}

.elite-card .buy-button,
.exclusive-card .buy-button,
.vip-card .buy-button,
.tone-light .buy-button,
.tone-lime .buy-button {
  color: #00604c;
}

.elite-card .buy-button i,
.exclusive-card .buy-button i,
.vip-card .buy-button i,
.tone-light .buy-button i,
.tone-lime .buy-button i {
  color: #fff;
  background: #00604c;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.business-card {
  position: relative;
  min-height: 296px;
  padding: 34px;
  overflow: hidden;
  border-radius: 24px;
}

.business-card > *:not(.pack-symbol) {
  position: relative;
  z-index: 1;
  max-width: 68%;
}

.business-card p {
  margin: 16px 0 24px;
  line-height: 1.45;
}

.pack-symbol {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.04));
  box-shadow: inset 0 0 22px rgba(255,255,255,0.12);
  font-size: 2.5rem;
  font-weight: 900;
}

.tone-green { color: #fff; background: #00604c; }
.tone-dark { color: #fff; background: #12342c; }
.tone-light { color: #07152b; background: #eef4f3; }
.tone-lime { color: #08172d; background: var(--lime); }
.tone-light .pack-symbol,
.tone-lime .pack-symbol { color: #00604c; border-color: rgba(0, 96, 76, 0.18); background: rgba(255, 255, 255, 0.5); }

.language-bar {
  width: min(1480px, 100%);
  min-height: 110px;
  margin: 54px auto 0;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  border-radius: 999px;
  background: #202c3b;
  box-shadow: 0 9px 0 rgba(0, 0, 0, 0.12);
}

.language-bar strong { font-size: clamp(1.05rem, 2vw, 1.32rem); }

.language-bar div { display: flex; flex-wrap: wrap; justify-content: end; gap: 12px; }

.language-bar button {
  min-height: 58px;
  padding: 0 24px;
  color: #101a2d;
  border: 0;
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
}

.skills-ticker { overflow: hidden; color: #0b2a32; background: var(--dark); }

.ticker-row { width: 110%; margin-left: -5%; overflow: hidden; white-space: nowrap; transform: rotate(-1.1deg); }
.ticker-row div { width: max-content; padding: 10px 0; font-size: clamp(1.2rem, 2.6vw, 2rem); font-weight: 800; animation: tickerMove 28s linear infinite; }
.ticker-row b { margin: 0 10px; }
.ticker-top { background: #00513f; color: var(--lime); }
.ticker-bottom { margin-top: -2px; background: var(--lime); }
.ticker-bottom div { animation-direction: reverse; }

.screen-dim {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(13, 18, 25, 0.62);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(360px, 74vw);
  height: 100svh;
  padding: 34px 24px 26px;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: #fff;
  background: var(--dark);
  border-top-left-radius: 22px;
  border-bottom-left-radius: 22px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.drawer-logo {
  padding: 0 10px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.drawer-wordmark {
  display: block;
  width: min(100%, 220px);
}

.drawer-wordmark img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 74px;
  object-fit: contain;
  object-position: left center;
}

.drawer-nav {
  padding-top: 26px;
  display: grid;
  gap: 10px;
}

.drawer-nav a,
.drawer-package,
.drawer-login {
  min-height: 56px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  border: 0;
  border-radius: 8px;
  background: transparent;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
}

.drawer-package {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.drawer-arrow {
  margin-left: auto;
  transition: transform 0.2s ease;
}

.drawer-package.open .drawer-arrow {
  transform: rotate(225deg);
}

.drawer-icon {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.drawer-submenu {
  display: grid;
  max-height: 0;
  gap: 10px;
  padding-left: 37px;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.3s ease;
}

.drawer-submenu.open {
  max-height: 1000px;
  gap: 10px;
  padding-top: 2px;
  padding-bottom: 4px;
  opacity: 1;
}

.drawer-package-group {
  display: grid;
  gap: 6px;
}

.drawer-package-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  min-height: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
  list-style: none;
}

.drawer-package-group summary::-webkit-details-marker {
  display: none;
}

.drawer-package-group summary::after {
  content: "+";
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.1rem;
}

.drawer-package-group[open] summary::after {
  content: "-";
}

.drawer-package-items {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.24s ease;
}

.drawer-package-items > div {
  display: grid;
  min-height: 0;
  gap: 5px;
  overflow: hidden;
}

.drawer-package-group[open] .drawer-package-items {
  grid-template-rows: 1fr;
}

.drawer-submenu a {
  display: block;
  min-height: 28px;
  padding: 3px 0 3px 12px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.82rem;
  line-height: 1.3;
}

.drawer-login {
  margin-top: auto;
}

body.menu-open .screen-dim {
  opacity: 1;
  visibility: visible;
}

body.menu-open .mobile-menu {
  transform: translateX(0);
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(var(--float-x), var(--float-y), 0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 var(--rise);
  }
}

@keyframes mediaMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - var(--gap) / 2));
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1180px) {
  .card-trainers {
    right: 2%;
  }

  .card-students {
    right: 17%;
  }

  .knowledge-head {
    align-items: start;
    flex-direction: column;
  }

  .package-tabs {
    justify-content: start;
  }

  .digital-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 0;
  }

  .nav-bar {
    width: 100%;
    height: 74px;
    padding: 0 28px;
    border-radius: 0;
  }

  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .package-mega-menu,
  .package-menu-overlay {
    display: none !important;
  }

  .mobile-actions {
    display: flex;
  }

  .logo-text strong {
    font-size: 0.92rem;
  }

  .logo-text small {
    max-width: 210px;
    font-size: 0.5rem;
  }

  .nav-wordmark {
    flex-basis: 172px;
  }

  .nav-wordmark img {
    max-height: 54px;
  }

  .hero {
    min-height: auto;
    padding: 144px 0 52px;
  }

  .grid-bg {
    background-size: 86px 86px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 7.8vw, 3.35rem);
  }

  .hero p {
    font-size: 1.12rem;
  }

  .icon-chat,
  .icon-unreal,
  .icon-insta,
  .icon-ai,
  .icon-canva,
  .icon-pr {
    display: none;
  }

  .app-icon {
    width: 56px;
    height: 56px;
    border-width: 7px;
    font-size: 0.95rem;
  }

  .icon-vn {
    top: 42%;
    left: -24px;
  }

  .icon-fire {
    top: 43%;
    right: -18px;
  }

  .stats-layer {
    position: relative;
    inset: auto;
    width: min(640px, calc(100% - 20px));
    height: 248px;
    margin: 58px auto 0;
    --mobile-card-width: clamp(160px, 31vw, 210px);
    --mobile-overlap: clamp(38px, 9vw, 52px);
  }

  .stat-card {
    position: absolute;
    inset: auto;
    width: var(--mobile-card-width);
    min-height: 178px;
  }

  .card-courses {
    top: 0;
    left: 50%;
    right: auto;
    bottom: auto;
    z-index: 3;
    transform: translateX(-50%);
  }

  .card-trainers {
    top: 56px;
    left: 50%;
    right: auto;
    bottom: auto;
    z-index: 2;
    transform: translateX(calc(50% - var(--mobile-overlap)));
  }

  .card-students {
    top: 56px;
    left: 50%;
    right: auto;
    bottom: auto;
    z-index: 2;
    transform: translateX(calc(-150% + var(--mobile-overlap)));
  }
}

@media (max-width: 640px) {
  .nav-bar {
    padding: 0 20px;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .site-header .logo-text small {
    display: none;
  }

  .nav-wordmark {
    flex-basis: 148px;
  }

  .nav-wordmark img {
    max-height: 48px;
  }

  .india-flag {
    width: 38px;
    height: 38px;
  }

  .menu-toggle {
    width: 42px;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-content {
    width: min(100% - 26px, 540px);
  }

  .hero h1 {
    font-size: clamp(2rem, 9.8vw, 2.68rem);
  }

  .hero h1 span {
    padding: 0 10px 3px;
  }

  .hero p {
    margin-top: 24px;
    font-size: 1.03rem;
  }

  .hero-buttons {
    margin-top: 26px;
  }

  .hero-buttons .btn-muted {
    display: none;
  }

  .stats-layer {
    width: min(100% - 8px, 520px);
    height: 236px;
    --mobile-card-width: clamp(146px, 36vw, 178px);
    --mobile-overlap: clamp(38px, 10vw, 46px);
  }

  .stat-card {
    min-height: 164px;
    padding: 28px 14px 16px;
  }

  .stat-card strong {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .stat-card span {
    font-size: 0.88rem;
  }

  .media {
    padding: 30px 0 52px;
  }

  .media-track {
    --gap: 30px;
  }

  .media-row span {
    min-width: 138px;
    font-size: 0.9rem;
  }

  .knowledge {
    padding: 66px 22px 52px;
  }

  .knowledge-head {
    margin-bottom: 38px;
    gap: 28px;
  }

  .knowledge-head > div > p:last-child {
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .package-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .package-tab {
    min-height: 54px;
    padding: 6px 8px 6px 13px;
    justify-content: space-between;
    gap: 5px;
    font-size: 0.72rem;
    white-space: normal;
    text-align: left;
  }

  .package-tab b {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    font-size: 0.9rem;
  }

  .digital-grid,
  .business-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .course-card {
    min-height: 230px;
    padding: 28px;
    border-radius: 15px;
  }

  .course-copy {
    width: 60%;
  }

  .course-copy h3,
  .business-card h3 {
    font-size: 1.65rem;
  }

  .course-copy p {
    margin: 11px 0 18px;
    font-size: 0.85rem;
    line-height: 1.42;
  }

  .course-box {
    right: 22px;
    bottom: 22px;
    width: 31%;
    min-width: 0;
    padding: 17px 8px 12px;
    gap: 45px;
    border-right-width: 8px;
    border-bottom-width: 8px;
  }

  .course-box::before {
    inset: 10px 8px 35px;
  }

  .course-box small {
    border-top-width: 6px;
    font-size: 0.36rem;
  }

  .buy-button {
    min-height: 37px;
    padding: 4px 13px 4px 4px;
    gap: 9px;
    font-size: 0.75rem;
  }

  .buy-button i {
    width: 27px;
    height: 27px;
    font-size: 0.78rem;
  }

  .business-card {
    min-height: 214px;
    padding: 28px;
    border-radius: 15px;
  }

  .business-card > *:not(.pack-symbol) {
    max-width: 63%;
  }

  .business-card p {
    margin: 10px 0 16px;
    font-size: 0.84rem;
  }

  .pack-symbol {
    right: 20px;
    bottom: 20px;
    width: 92px;
    height: 92px;
    border-radius: 16px;
    font-size: 2rem;
  }

  .language-bar {
    min-height: 0;
    margin-top: 36px;
    padding: 25px 22px;
    display: grid;
    gap: 19px;
    border-radius: 20px;
  }

  .language-bar strong { font-size: 1rem; }
  .language-bar div { justify-content: start; }
  .language-bar button { min-height: 45px; padding: 0 18px; font-size: 0.86rem; }
  .ticker-row div { padding: 8px 0; font-size: 1rem; }

  .mobile-menu {
    width: min(360px, 74vw);
    padding: 42px 22px 28px;
  }

  .drawer-logo {
    padding-inline: 8px;
  }

  .drawer-nav a,
  .drawer-package,
  .drawer-login {
    min-height: 56px;
    padding: 0 14px;
    gap: 14px;
    font-size: 1rem;
  }

  .drawer-submenu {
    padding-left: 37px;
    padding-right: 0;
  }

  .drawer-package-group a {
    font-size: 0.8rem;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2rem;
  }

  .stats-layer {
    width: 100%;
    height: 216px;
    --mobile-card-width: clamp(136px, 39vw, 156px);
    --mobile-overlap: 40px;
  }

  .stat-card {
    min-height: 146px;
    padding: 24px 10px 14px;
  }

  .stat-card strong {
    font-size: 1.45rem;
  }

  .stat-card span {
    font-size: 0.76rem;
  }

  .dots i {
    width: 9px;
    height: 9px;
  }

  .mobile-menu {
    width: min(360px, 76vw);
  }

  .knowledge {
    padding-inline: 16px;
  }

  .package-tab {
    padding-left: 10px;
    font-size: 0.67rem;
  }

  .package-tab b {
    width: 33px;
    height: 33px;
    font-size: 0.8rem;
  }

  .course-card {
    min-height: 218px;
    padding: 23px;
  }

  .course-copy {
    width: 61%;
  }

  .course-copy h3,
  .business-card h3 {
    font-size: 1.42rem;
  }

  .course-copy p {
    font-size: 0.77rem;
  }

  .course-box {
    right: 16px;
    bottom: 17px;
    width: 31%;
  }
}

/* Refined pack presentation and interactions. */
@media (min-width: 1181px) {
  .digital-grid {
    grid-template-columns: minmax(420px, 1.52fr) minmax(270px, 0.88fr) minmax(270px, 0.88fr);
    grid-template-rows: repeat(2, 250px);
    gap: 28px;
  }

  .course-card {
    min-height: 0;
    padding: 34px 38px;
    border-radius: 30px;
  }

  .starter-card { grid-column: 1; grid-row: 1; }
  .elite-card { grid-column: 1; grid-row: 2; }
  .exclusive-card { grid-column: 2; grid-row: 1 / span 2; }
  .vip-card { grid-column: 3; grid-row: 1 / span 2; }

  .starter-card .course-copy,
  .elite-card .course-copy { width: 57%; }

  .exclusive-card .course-copy,
  .vip-card .course-copy {
    width: 100%;
    text-align: center;
  }

  .exclusive-card .course-copy p,
  .vip-card .course-copy p { margin-top: 280px; }

  .exclusive-card .buy-button,
  .vip-card .buy-button { margin: 0 auto; }

  .starter-card .course-box,
  .elite-card .course-box {
    right: 34px;
    bottom: 28px;
    width: 122px;
  }

  .exclusive-card .course-box,
  .vip-card .course-box {
    top: 100px;
    right: 50%;
    bottom: auto;
    width: 170px;
    transform: translateX(50%) perspective(420px) rotateY(-15deg) rotateX(2deg);
  }
}

.course-box {
  gap: 56px;
  min-width: 0;
  border-radius: 1px;
  box-shadow: -13px 18px 18px rgba(0, 0, 0, 0.27);
}

.course-box strong {
  overflow-wrap: anywhere;
  font-size: clamp(0.85rem, 1.75vw, 1.55rem);
}

.course-box img {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(-8px 14px 9px rgba(0, 0, 0, 0.3));
}

.course-box:has(img) {
  height: 168px;
  padding: 0;
  display: block;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.course-box:has(img) strong,
.course-box:has(img) small,
.course-box:has(img)::before,
.course-box:has(img)::after {
  display: none;
}

@media (min-width: 1181px) {
  .starter-card .course-box:has(img),
  .elite-card .course-box:has(img) {
    width: 152px;
    height: 176px;
  }

  .exclusive-card .course-box:has(img),
  .vip-card .course-box:has(img) {
    width: 205px;
    height: 214px;
  }
}

.course-box::after {
  content: "";
  position: absolute;
  top: 4px;
  left: -14px;
  width: 14px;
  height: calc(100% - 4px);
  background: #111a20;
  clip-path: polygon(100% 0, 100% 100%, 0 94%, 0 7%);
}

.vip-card {
  isolation: isolate;
  border: 2px solid transparent;
  background: linear-gradient(var(--lime), var(--lime)) padding-box, linear-gradient(135deg, #f46edb, #5d8cff, #6bf0d2, #fff46d, #f46edb) border-box;
  box-shadow: 0 0 13px rgba(111, 222, 205, 0.66), 0 0 26px rgba(129, 106, 255, 0.34);
}

.vip-card::before {
  display: none;
}

.buy-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.35s ease, border-color 0.35s ease, transform 0.25s ease;
}

.buy-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #fff;
  transform: translateX(-102%);
  transition: transform 0.35s cubic-bezier(.2, .7, .2, 1);
}

.buy-button:hover {
  color: #00604c;
  border-color: #fff;
  transform: translateY(-2px);
}

.buy-button:hover::before { transform: translateX(0); }
.buy-button:hover i { color: #fff; background: #00604c; }
.digital-grid .buy-button { border-color: rgba(255, 255, 255, 0.9); }
.elite-card .buy-button, .exclusive-card .buy-button, .vip-card .buy-button { border-color: #00604c; }

.pack-symbol {
  color: transparent !important;
  background-color: rgba(255, 255, 255, 0.88);
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 90%;
}

.business-grid .business-card:nth-child(1) .pack-symbol { background-image: url("assets/amazon.png"); background-size: 100%; }
.business-grid .business-card:nth-child(2) .pack-symbol { background-image: url("assets/flipkart.png"); background-size: cover; }
.business-grid .business-card:nth-child(3) .pack-symbol { background-image: url("assets/meesho-logo.png"); background-size: 94% auto !important; }
.business-grid .business-card:nth-child(4) .pack-symbol { background-image: url("assets/print-on-demand.png"); background-size: cover; }
.business-grid .business-card:nth-child(5) .pack-symbol { background-image: url("assets/resin-art.png"); background-size: cover; }
.business-grid .business-card:nth-child(6) .pack-symbol { background-image: url("assets/business-owner.png"); background-size: cover; }

.service-grid .business-card:nth-child(1) .pack-symbol { background-image: url("assets/facebook.png"); }
.service-grid .business-card:nth-child(2) .pack-symbol { background-image: url("assets/instagram.png"); }
.service-grid .business-card:nth-child(3) .pack-symbol { background-image: url("assets/snapchat.png"); }
.service-grid .business-card:nth-child(4) .pack-symbol { background-image: url("assets/whatsapp-business.png"); }
.service-grid .business-card:nth-child(5) .pack-symbol { background-image: url("assets/google-ads.png"); }
.service-grid .business-card:nth-child(6) .pack-symbol { background-image: url("assets/capcut.png"); }

@media (min-width: 981px) {
  body.is-scrolling .site-header { top: 10px; }
  body.is-scrolling .package-mega-menu { top: 112px; }

  body.is-scrolling .nav-bar {
    width: min(620px, calc(100% - 48px));
    height: 88px;
    padding-inline: 42px;
    justify-content: space-between;
    background: rgba(17, 25, 35, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  }

  body.is-scrolling .desktop-nav { display: none; }
  body.is-scrolling .logo-mark { width: 38px; height: 38px; font-size: 1rem; }
  body.is-scrolling .logo-text small { font-size: 0.48rem; }
  body.is-scrolling .nav-actions { gap: 12px; }
  body.is-scrolling .nav-actions .btn { min-height: 46px; padding-inline: 22px; }
}

/* How it works */
.how-it-works {
  background: #fff;
  color: #101827;
  padding: 104px max(28px, 7vw) 120px;
}

.how-inner { width: min(1400px, 100%); margin: 0 auto; }

.how-heading { max-width: 1080px; }

.how-heading .section-kicker {
  display: inline-block;
  margin: 0 0 10px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #f6f7f5;
  color: #26333c;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.how-heading h2 {
  margin: 0;
  color: #252525;
  font-size: clamp(2.25rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.how-heading > p:last-child {
  max-width: 1060px;
  margin: 22px 0 0;
  font-size: 1.05rem;
  line-height: 1.65;
}

.steps-rail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 140px 220px;
  margin-top: 64px;
  padding-bottom: 160px;
}

.steps-paths {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  color: #cbd2d1;
  pointer-events: none;
}

.steps-paths > path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-dasharray: 7 6;
}

.how-step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  min-height: 298px;
  padding: 38px 50px 38px 118px;
  border-radius: 28px;
}

.step-pale { background: #f3fde4; }
.step-neutral { background: #f4f4f3; }

.how-step:nth-of-type(odd) { grid-column: 1; }
.how-step:nth-of-type(even) { grid-column: 2; }
.how-step:nth-of-type(4) { transform: translateY(160px); }

.step-number {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 26px;
  display: flex;
  width: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.step-pale .step-number { background: #00604c; }
.step-neutral .step-number { background: #272727; }

.step-content { display: flex; flex: 1; flex-direction: column; justify-content: space-between; gap: 40px; }

.step-title { display: flex; align-items: center; gap: 13px; }

.step-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  font-size: 1.22rem;
}

.step-pale .step-icon { background: #e4fad8; }

.step-title h3 {
  margin: 0;
  color: #101827;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.step-content > p {
  max-width: 510px;
  margin: 0;
  color: #111827;
  font-size: 1rem;
  line-height: 1.6;
}

/* Career paths */
.career-paths { overflow: hidden; background: #fff; color: #202020; padding: 96px max(28px, 6vw) 110px; }
.career-inner, .why-inner { width: min(1440px, 100%); margin: 0 auto; }
.career-heading h2, .why-heading h2 { margin: 0; color: #242424; font-size: clamp(2.2rem, 4vw, 3.25rem); line-height: 1.08; letter-spacing: 0; }
.career-heading p { margin: 12px 0 0; font-size: 1rem; }

.career-rail { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 64px 58px; margin-top: 66px; padding: 0 26px; }
.career-card { position: relative; min-height: 390px; padding: 96px 20px 22px; border-radius: 24px; background: #fff; box-shadow: 0 16px 23px rgba(16, 24, 39, 0.18); }
.career-card.tilt-left { transform: rotate(-3deg); }
.career-card.tilt-right { transform: rotate(3deg); }
.career-note { min-height: 250px; padding: 46px 30px 28px; border-radius: 28px; background: #e9efe2; }
.career-note h3 { margin: 0; color: #171717; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.32rem, 2vw, 1.75rem); font-weight: 500; letter-spacing: 0; }
.career-note h3 span { font-family: Arial, sans-serif; font-size: 1.25rem; }
.career-note p { margin: 12px 0 0; color: #141414; font-family: Georgia, "Times New Roman", serif; font-size: 1rem; line-height: 1.58; }

.push-pin { position: absolute; z-index: 1; top: -27px; left: 50%; width: 58px; height: 58px; border-radius: 50%; box-shadow: inset -8px -10px 11px rgba(0, 0, 0, 0.3), inset 7px 7px 10px rgba(255, 255, 255, 0.45), 0 8px 11px rgba(0, 0, 0, 0.32); transform: translateX(-50%); }
.push-pin::before { position: absolute; top: 35px; left: -9px; width: 76px; height: 20px; content: ""; border-radius: 50%; background: inherit; box-shadow: inherit; }
.push-pin::after { position: absolute; top: -22px; left: 9px; width: 40px; height: 40px; content: ""; border-radius: 50%; background: inherit; box-shadow: inherit; }
.pin-green { background: radial-gradient(circle at 32% 24%, #81c9b3, #075342 68%); }
.pin-black { background: radial-gradient(circle at 30% 22%, #7c7d7d, #050505 64%); }
.pin-lime { background: radial-gradient(circle at 30% 22%, #e3ffd2, #7cce5c 66%); }

/* Why us */
.why-us { background: #fff; color: #171d27; padding: 94px max(28px, 6vw) 86px; }
.why-heading { position: relative; }
.why-heading > p { margin: 10px 0 0; font-size: 1rem; }
.why-panels { display: grid; grid-template-columns: 1fr 1.05fr; gap: 24px; margin-top: 32px; }
.why-stats, .why-learning { position: relative; min-height: 287px; overflow: hidden; border-radius: 30px; }
.why-stats { padding: 28px 34px; background: #eeeeee; }
.why-stats > div:not(.avatar-cluster) { display: grid; gap: 3px; margin-bottom: 25px; }
.why-stats b { color: #252525; font-size: clamp(2.65rem, 5vw, 4.1rem); line-height: 0.9; }
.why-stats span { font-size: 1rem; }
.trainer-network { position: absolute; right: 28px; bottom: 18px; width: min(47%, 305px); height: auto; object-fit: contain; }
.why-learning { display: flex; justify-content: space-between; padding: 32px 30px; background: #e7eddf; }
.why-learning > div:first-child { position: relative; z-index: 1; width: min(63%, 430px); }
.why-learning h3 { margin: 8px 0 0; font-size: clamp(1.85rem, 3.2vw, 3rem); line-height: 1.02; letter-spacing: 0; }
.phone-stack { position: relative; width: 310px; min-height: 230px; }
.phone { position: absolute; width: 142px; height: 260px; overflow: hidden; border: 7px solid #121212; border-radius: 22px; background: #fff; box-shadow: 0 12px 18px rgba(0,0,0,.25); }
.phone::before { position: absolute; top: 8px; left: 50%; width: 58px; height: 14px; content: ""; border-radius: 12px; background: #111; transform: translateX(-50%); }
.phone-back { top: 0; right: 10px; }
.phone-front { z-index: 1; top: 62px; left: 18px; padding: 0; }
.phone-front img, .phone-back img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.why-closing { max-width: 920px; margin: 72px auto 0; color: #333; font-size: clamp(2rem, 4vw, 3.75rem); line-height: 1.08; text-align: center; }

/* Homepage experts */
.skillpreneur-experts-section { overflow: hidden; padding: 92px max(28px, 6vw); background: var(--dark); color: #fff; }
.skillpreneur-experts-inner { width: min(1440px, 100%); margin: 0 auto; }
.skillpreneur-experts-heading { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 38px; }
.skillpreneur-experts-heading h2 { margin: 0; font-size: clamp(2.2rem, 4vw, 3.25rem); letter-spacing: 0; }
.skillpreneur-experts-controls { display: flex; gap: 9px; }
.skillpreneur-experts-arrow { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; color: #fff; background: transparent; font-size: 1.25rem; cursor: pointer; }
.skillpreneur-experts-arrow:hover, .skillpreneur-experts-arrow:focus-visible { border-color: var(--lime); color: var(--lime); outline: none; }
.skillpreneur-experts-viewport { overflow: hidden; padding: 0 1px 14px; touch-action: pan-y; }
.skillpreneur-experts-track { display: flex; width: max-content; will-change: transform; }
.skillpreneur-experts-track.is-looping { animation: skillpreneur-experts-scroll 22s linear infinite; }
.skillpreneur-experts-viewport:hover .skillpreneur-experts-track.is-looping, .skillpreneur-experts-track.is-manually-paused { animation-play-state: paused; }
.skillpreneur-experts-group { display: flex; flex: 0 0 auto; gap: 24px; padding-right: 24px; }
@keyframes skillpreneur-experts-scroll { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }
.skillpreneur-expert-card { display: grid; grid-template-columns: 96px minmax(0, 1fr); width: min(31vw, 390px); min-height: 250px; gap: 22px; align-items: start; padding: 28px; border-radius: 24px; box-shadow: 0 18px 32px rgba(0,0,0,.2); scroll-snap-align: start; }
.skillpreneur-expert-card.tone-forest { background: #245f59; }.skillpreneur-expert-card.tone-slate { background: #263b4b; }.skillpreneur-expert-card.tone-sage { background: #496e68; }
.skillpreneur-expert-card > img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; object-position: center; background: #101923; }
.skillpreneur-expert-copy { min-width: 0; }.skillpreneur-expert-copy h3 { margin: 4px 0 12px; font-size: 1.45rem; letter-spacing: 0; }.skillpreneur-expert-role { margin: 0; color: var(--lime); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }.skillpreneur-expert-copy > p:not(.skillpreneur-expert-role) { min-height: 67px; margin: 0; color: #edf6f3; font-size: .94rem; line-height: 1.5; }.skillpreneur-expert-copy button { margin-top: 18px; padding: 9px 13px; border: 0; border-radius: 9px; color: #0e2024; background: var(--lime); font: 700 .8rem Inter, Arial, sans-serif; cursor: pointer; }.skillpreneur-expert-copy button:hover, .skillpreneur-expert-copy button:focus-visible { background: #c1eb70; outline: none; }

@media (max-width: 720px) {
  .how-it-works { overflow: hidden; padding: 64px 0 74px; }
  .how-heading { padding: 0 24px; }
  .how-heading .section-kicker, .how-heading > p:last-child { display: none; }
  .how-heading h2 { font-size: 1.68rem; }

  .steps-rail {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    margin-top: 26px;
    padding: 0 24px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .steps-rail::-webkit-scrollbar { display: none; }
  .steps-paths { display: none; }

  .how-step {
    display: block;
    min-height: 288px;
    flex: 0 0 min(84vw, 365px);
    padding: 35px 24px 28px;
    border-radius: 16px;
    background: #f4f4f3;
    scroll-snap-align: center;
  }

  .how-step:nth-of-type(4) { transform: none; }

  .step-number {
    position: static;
    display: block;
    width: auto;
    margin: 0 0 26px;
    color: #121212 !important;
    background: transparent !important;
    font-size: 1.38rem;
    line-height: 1;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .step-content { display: block; }
  .step-title { gap: 9px; }
  .step-icon { width: 38px; height: 38px; flex-basis: 38px; font-size: 1rem; }
  .step-title h3 { font-size: 1.25rem; }
  .step-content > p { margin-top: 24px; font-size: 1rem; line-height: 1.55; }

  .career-paths { padding: 68px 0 76px; }
  .career-heading { padding: 0 38px; }
  .career-heading h2 { font-size: 1.65rem; }
  .career-heading p { display: none; }
  .career-rail { display: flex; gap: 28px; overflow-x: auto; margin-top: 44px; padding: 22px 48px 16px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .career-rail::-webkit-scrollbar { display: none; }
  .career-card, .career-card.tilt-left, .career-card.tilt-right { min-height: 322px; flex: 0 0 min(82vw, 360px); padding: 74px 14px 14px; border-radius: 20px; transform: none; scroll-snap-align: center; }
  .career-note { min-height: 228px; padding: 28px 16px 20px; border-radius: 20px; }
  .career-note h3 { font-size: 1.3rem; }
  .career-note p { font-size: 0.93rem; line-height: 1.42; }
  .push-pin { transform: translateX(-50%) scale(.84); }

  .why-us { padding: 64px 36px 70px; }
  .why-heading h2 { font-size: 1.65rem; }
  .why-heading > p { font-size: 0.92rem; }
  .why-panels { display: block; margin-top: 18px; }
  .why-stats, .why-learning { min-height: 166px; border-radius: 20px; }
  .why-stats { padding: 18px 14px; }
  .why-stats > div:not(.avatar-cluster) { gap: 1px; margin-bottom: 14px; }
  .why-stats b { font-size: 2rem; }
  .why-stats span { font-size: 0.78rem; }
  .trainer-network { right: -7px; bottom: 0; width: 54%; }
  .why-learning { min-height: 260px; margin-top: 16px; padding: 105px 15px 18px; }
  .why-learning > div:first-child { width: 70%; }
  .why-learning h3 { font-size: 1.5rem; }
  .why-learning span { font-size: .9rem; }
  .phone-stack { position: absolute; top: 18px; right: -24px; width: 190px; min-height: 180px; transform: scale(.68); transform-origin: top right; }
  .why-closing { margin-top: 35px; font-size: 1.72rem; }

  .skillpreneur-experts-section { padding: 64px 0 70px; }
  .skillpreneur-experts-heading { padding: 0 36px; margin-bottom: 26px; }
  .skillpreneur-experts-heading h2 { font-size: 1.7rem; }
  .skillpreneur-experts-viewport { padding: 0 36px 14px; }
  .skillpreneur-experts-group { gap: 16px; padding-right: 16px; }
  .skillpreneur-expert-card { width: min(82vw, 360px); min-height: 246px; grid-template-columns: 82px minmax(0, 1fr); gap: 17px; padding: 22px; border-radius: 20px; scroll-snap-align: center; }
  .skillpreneur-expert-card > img { width: 82px; height: 82px; }
  .skillpreneur-expert-copy h3 { margin-bottom: 10px; font-size: 1.3rem; }
  .skillpreneur-expert-copy > p:not(.skillpreneur-expert-role) { min-height: 0; font-size: .88rem; }
}

@media (min-width: 721px) and (max-width: 1024px) {
  .skillpreneur-expert-card { width: min(44vw, 380px); }
}

@media (max-width: 720px) {
  .skillpreneur-expert-card { width: min(72vw, 320px); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .skillpreneur-experts-track.is-looping { animation: none; }
}
/* FIX ONLY FOOTER SKILLPRENEUR LOGO */
.site-footer .footer-logo {
    display: inline-block;
    width: 220px;
    max-width: 220px;
}

.site-footer .footer-logo img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .site-footer .footer-logo {
        width: 170px;
        max-width: 170px;
    }
}