@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;800&display=swap");

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

html {
  scroll-behavior: smooth;
}

:root {
  --green: #58cc02;
  --green-d: #46a302;
  --green-dd: #357a02;
  --green-p: rgba(88, 204, 2, 0.09);
  --green-pm: rgba(88, 204, 2, 0.18);
  --green-b: rgba(88, 204, 2, 0.3);
  --blue: #1cb0f6;
  --blue-d: #0d8fc8;
  --blue-dd: #0a6fa0;
  --blue-p: rgba(28, 176, 246, 0.09);
  --blue-pm: rgba(28, 176, 246, 0.18);
  --blue-b: rgba(28, 176, 246, 0.3);
  --pink: #f38dee;
  --pink-d: #d668d1;
  --pink-dd: #aa4daa;
  --pink-p: rgba(243, 141, 238, 0.09);
  --pink-pm: rgba(243, 141, 238, 0.18);
  --pink-b: rgba(243, 141, 238, 0.3);
  --ink: #0e1117;
  --ink-m: rgba(14, 17, 23, 0.52);
  --ink-f: rgba(14, 17, 23, 0.07);
  --ink-ff: rgba(14, 17, 23, 0.03);
  --white: #ffffff;
  --sh-soft: 0 2px 20px rgba(14, 17, 23, 0.06);
  --sh-card: 0 10px 40px rgba(14, 17, 23, 0.1);
  --sh-lift: 0 24px 64px rgba(14, 17, 23, 0.13);
  --sh-green: 0 10px 36px rgba(88, 204, 2, 0.32);
  --sh-blue: 0 10px 36px rgba(28, 176, 246, 0.32);
  --sh-pink: 0 10px 36px rgba(243, 141, 238, 0.32);
  --r: 14px;
  --rl: 20px;
  --rxl: 30px;
  --fh: "Caveat", cursive;
  --fb: "Lexend", sans-serif;
}

body {
  font-family: var(--fb);
  background: #fff;
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f5f7fa;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        to bottom,
        #1cb0f6,
        #ce82ff
    );
    border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        to bottom,
        #58cc02,
        #1cb0f6
    );
}

/* ══ SCROLL REVEAL ══ */
.sr {
  /*opacity: 0;*/
  transform: translateY(36px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.sr.vis {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.07s;
}

.d2 {
  transition-delay: 0.15s;
}

.d3 {
  transition-delay: 0.23s;
}

.d4 {
  transition-delay: 0.31s;
}

.d5 {
  transition-delay: 0.39s;
}

.d6 {
  transition-delay: 0.47s;
}

/* ══ PAGES ══ */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* ══ ANNOUNCE STRIP ══ */
.announce-strip {
  position: relative;
  z-index: 400;
  background: linear-gradient(90deg,
      var(--blue) 0%,
      var(--green) 33%,
      var(--pink) 66%,
      var(--blue) 100%);
  background-size: 300% 100%;
  animation: stripShimmer 6s linear infinite;
  color: #fff;
  padding: 11px 5%;
  text-align: center;
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

@keyframes stripShimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.announce-strip a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transition: border-color 0.15s;
  cursor: pointer;
}

.announce-strip a:hover {
  border-bottom-color: #fff;
}

.main_logo{
  width: 100px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: 70px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ══ NAV ══ */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(28px);
  border-bottom: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: box-shadow 0.25s;
  border-color: 0.25s;
}

#mainNav.scrolled {
  box-shadow: 0 4px 28px rgba(14, 17, 23, 0.08);
  border-bottom: 2px solid var(--ink-f);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  flex-shrink: 0;
  background: linear-gradient(135deg,
      var(--blue) 0%,
      var(--green) 50%,
      var(--pink) 100%);
  border-bottom: 3px solid var(--blue-dd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 16px rgba(28, 176, 246, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.logo:hover .logo-mark {
  transform: translateY(-3px) rotate(-4deg);
  box-shadow: 0 8px 24px rgba(243, 141, 238, 0.42);
}

.logo-text {
  font-family: var(--fh);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.2px;
}

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

.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--fb);
  color: var(--ink-m);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.82rem;
  padding: 7px 13px;
  border-radius: 10px;
  transition:
  color 0.15s;
  background 0.15s;
  cursor: pointer;
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--ink-f);
}

.nav-links a.active {
  color: var(--blue);
  font-weight: 700;
  background: var(--blue-p);
}

.nav-acts {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-ghost-nav {
  background: none;
  border: 2px solid var(--ink-f);
  color: var(--ink);
  border-bottom: 3px solid rgba(14, 17, 23, 0.12);
  padding: 8px 18px;
  border-radius: 30px;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.btn-ghost-nav:hover {
  border-color: var(--pink);
  color: var(--pink-d);
  background: var(--pink-p);
  box-shadow: 0 0 0 3px var(--pink-p);
}

.btn-solid-nav {
  background: linear-gradient(135deg, var(--blue), var(--blue-d));
  color: #fff;
  border: none;
  border-bottom: 3px solid var(--blue-dd);
  padding: 8px 18px;
  border-radius: 30px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.18s;
  box-shadow: 0 4px 16px rgba(28, 176, 246, 0.32);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.btn-solid-nav:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-blue);
}

.btn-solid-nav:active {
  transform: translateY(1px);
  border-bottom-width: 1px;
}

/* ══ HERO ══ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 106px;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%,
      rgba(28, 176, 246, 0.12) 0%,
      transparent 60%),
    radial-gradient(ellipse 45% 40% at 10% 75%,
      rgba(88, 204, 2, 0.1) 0%,
      transparent 60%),
    radial-gradient(ellipse 40% 35% at 55% 85%,
      rgba(243, 141, 238, 0.11) 0%,
      transparent 55%);
}

.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
}

.blob-g {
  width: 600px;
  height: 600px;
  background: var(--green);
  top: -100px;
  right: -100px;
  animation: blobDrift 14s ease-in-out infinite;
}

.blob-b {
  width: 500px;
  height: 500px;
  background: var(--blue);
  bottom: -60px;
  left: -120px;
  animation: blobDrift 17s ease-in-out 3s infinite reverse;
}

.blob-p {
  width: 400px;
  height: 400px;
  background: var(--pink);
  top: 30%;
  right: 20%;
  animation: blobDrift 11s ease-in-out 6s infinite;
}

@keyframes blobDrift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(28px, -18px) scale(1.05);
  }

  66% {
    transform: translate(-18px, 28px) scale(0.96);
  }
}

.hero-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle 1.8px,
      rgba(14, 17, 23, 0.09) 0%,
      transparent 100%);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%,
      black 30%,
      transparent 100%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 60px 0% 80px;
  position: relative;
  z-index: 2;
}

/* HERO BADGE */
.hero-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--pink-p), var(--blue-p));
  color: var(--blue-d);
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  border: 1.5px solid var(--blue-b);
  box-shadow: 0 2px 12px rgba(28, 176, 246, 0.15);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--pink);
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.3;
    transform: scale(0.7);
  }
}

/* HERO HEADLINE */
.hero h1 {
  font-family: var(--fh);
  font-size: clamp(3.4rem, 5.2vw, 6rem);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 26px;
  font-weight: 800;
}

.hero h1 .hl-green {
  color: var(--green);
  position: relative;
  display: inline-block;
}

.hero h1 .hl-green::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: -8px;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  border-radius: 50px;
  transform: rotate(-1.5deg);
}

.hero h1 .hl-blue {
  color: var(--blue);
  position: relative;
  display: inline-block;
}

.hero h1 .hl-pink {
  color: var(--pink-d);
  position: relative;
  display: inline-block;
}

.hero h1 .hl-underline {
  position: relative;
  display: inline-block;
  margin-left: 30px;
}

.hero h1 .hl-underline::before {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: 2px;
  top: 5px;
  background: linear-gradient(135deg,
      rgba(243, 141, 238, 0.28),
      rgba(28, 176, 246, 0.18));
  border-radius: 10px;
  z-index: -1;
  transform: rotate(-0.8deg);
}

.hero-desc {
  font-size: 0.96rem;
  color: var(--ink-m);
  line-height: 1.92;
  margin-bottom: 36px;
  max-width: 510px;
  font-weight: 300;
}

.hero-desc strong {
  color: var(--ink);
  font-weight: 600;
}

/* BUTTONS */
.btn-primary {
  background: linear-gradient(135deg,
      var(--green) 0%,
      var(--green-d) 100%);
  color: #fff;
  border: none;
  border-bottom: 4px solid var(--green-dd);
  padding: 15px 30px;
  border-radius: 18px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.18s;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(88, 204, 2, 0.35);
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(88, 204, 2, 0.42);
}

.btn-primary:active {
  transform: translateY(1px);
  border-bottom-width: 2px;
}

.btn-blue {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-d) 100%);
  color: #fff;
  border: none;
  border-bottom: 4px solid var(--blue-dd);
  padding: 15px 30px;
  border-radius: 18px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.18s;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(28, 176, 246, 0.35);
  letter-spacing: 0.01em;
}

.btn-blue:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(28, 176, 246, 0.42);
}

.btn-blue:active {
  transform: translateY(1px);
  border-bottom-width: 2px;
}

.btn-pink {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-d) 100%);
  color: #fff;
  border: none;
  border-bottom: 4px solid var(--pink-dd);
  padding: 15px 30px;
  border-radius: 18px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.18s;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(243, 141, 238, 0.4);
  letter-spacing: 0.01em;
}

.btn-pink:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(243, 141, 238, 0.5);
}

.btn-pink:active {
  transform: translateY(1px);
  border-bottom-width: 2px;
}

.btn-green {
  background: #fff;
  color: var(--ink);
  padding: 15px 30px;
  border-radius: 18px;
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid var(--ink-f);
  border-bottom: 4px solid rgba(14, 17, 23, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.18s;
  text-decoration: none;
}

.btn-green:hover {
  border-color: var(--green);
  color: var(--green-d);
  transform: translateY(-3px);
  background: var(--green-p);
  box-shadow: var(--sh-pink);
}

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

.btn-secondary {
  background: #fff;
  color: var(--ink);
  padding: 15px 30px;
  border-radius: 18px;
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid var(--ink-f);
  border-bottom: 4px solid rgba(14, 17, 23, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.18s;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--pink);
  color: var(--pink-d);
  transform: translateY(-3px);
  background: var(--pink-p);
  box-shadow: var(--sh-pink);
}

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

.btn-secondary-green {
  background: #fff;
  color: var(--ink);
  padding: 15px 30px;
  border-radius: 18px;
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid var(--ink-f);
  border-bottom: 4px solid rgba(14, 17, 23, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.18s;
  text-decoration: none;
}

.btn-secondary-green:hover {
  border-color: var(--green);
  color: var(--green-d);
  transform: translateY(-3px);
  background: var(--green-p);
  box-shadow: var(--sh-green);
}

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

.btn-secondary-blue {
  background: #fff;
  color: var(--ink);
  padding: 15px 30px;
  border-radius: 18px;
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid var(--ink-f);
  border-bottom: 4px solid rgba(14, 17, 23, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.18s;
  text-decoration: none;
}

.btn-secondary-blue:hover {
  border-color: var(--blue);
  color: var(--blue-d);
  transform: translateY(-3px);
  background: var(--blue-p);
  box-shadow: var(--sh-blue);
}

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

.btn-bluee {
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 700;
  background: #fff;
  color: var(--ink);
  padding: 15px 30px;
  border-radius: 18px;
  cursor: pointer;
  border: 2px solid var(--ink-f);
  border-bottom: 4px solid rgba(14, 17, 23, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.18s;
  text-decoration: none;
}

.btn-bluee:hover {
  border-color: var(--blue);
  color: var(--blue-d);
  transform: translateY(-3px);
  background: var(--blue-p);
  box-shadow: var(--sh-pink);
}

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

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  align-items: center;
}

.hero-note {
  font-size: 0.73rem;
  color: var(--ink-m);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 44px;
}

.hero-note-check {
  width: 22px;
  height: 22px;
  background: var(--blue-pm);
  border: 2px solid var(--blue-b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.66rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(28, 176, 246, 0.2);
}

/* STAT CHIPS */
.hero-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hst {
  padding: 13px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #fff;
  border-radius: 18px;
  border: 2px solid var(--ink-f);
  border-bottom: 4px solid rgba(14, 17, 23, 0.09);
  transition:
    transform 0.22s,
    box-shadow 0.22s,
    border-color 0.22s;
  cursor: default;
}

.hst:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-card);
}

.hst:nth-child(1) {
  border-color: var(--green-b);
  border-bottom-color: var(--green-d);
}

.hst:nth-child(2) {
  border-color: var(--blue-b);
  border-bottom-color: var(--blue-d);
}

.hst:nth-child(3) {
  border-color: var(--pink-b);
  border-bottom-color: var(--pink-d);
}

.hst:nth-child(4) {
  border-color: var(--green-b);
  border-bottom-color: var(--green-d);
}

.hst:nth-child(1):hover {
  box-shadow: var(--sh-green);
}

.hst:nth-child(2):hover {
  box-shadow: var(--sh-blue);
}

.hst:nth-child(3):hover {
  box-shadow: var(--sh-pink);
}

.hst-val {
  font-family: var(--fh);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 800;
}

.hst:nth-child(1) .hst-val {
  color: var(--green);
}

.hst:nth-child(2) .hst-val {
  color: var(--blue);
}

.hst:nth-child(3) .hst-val {
  color: var(--pink-d);
}

.hst:nth-child(4) .hst-val {
  color: var(--green);
}

.hst-val em {
  font-size: 1.3rem;
  font-style: normal;
}

.hst-lbl {
  font-size: 0.62rem;
  color: var(--ink-m);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

/* ══ HERO VISUAL ══ */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 560px;
}

.hero-card-wrap {
  position: relative;
  z-index: 2;
  animation: floatCard 7s ease-in-out infinite;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0) rotate(-0.5deg);
  }

  50% {
    transform: translateY(-14px) rotate(0.5deg);
  }
}

.hero-main-card {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  width: 270px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(26, 26, 46, 0.06);
  box-shadow:
    0 4px 0 rgba(26, 26, 46, 0.05),
    0 8px 0 rgba(26, 26, 46, 0.03),
    0 20px 60px rgba(26, 26, 46, 0.12),
    0 4px 20px rgba(28, 176, 246, 0.1);
}

.hero-main-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg,
      var(--green) 33%,
      var(--blue) 66%,
      var(--pink) 100%);
}

.hero-main-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.6),
      transparent);
  border-radius: 28px 28px 0 0;
  pointer-events: none;
}

.hmc-label {
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--ink-m);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-family: var(--fb);
}

.hmc-subjects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.hmc-sub {
  background: var(--ink-ff);
  border: 2px solid var(--ink-f);
  border-bottom: 3px solid rgba(26, 26, 46, 0.1);
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--ink-m);
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--fb);
}

.hmc-sub:hover,
.hmc-sub.on {
  border-color: var(--blue);
  border-bottom-color: var(--blue-d);
  background: var(--blue-p);
  color: var(--ink);
}

.hmc-sub .si {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 4px;
}

.hmc-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1.5px solid var(--ink-f);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-base-icon{
  height: 35px;
  width: 35px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: grid;
  place-items: center;
  color:white;
  transition: all 0.2s ease-in-out
}
.main-base-icon:hover{
  background-color:#58cc02;
  border:1px solid #58cc02;
}
.hmc-foot-lbl {
  font-size: 0.67rem;
  color: var(--ink-m);
  font-weight: 400;
}

.hmc-foot-val {
  font-family: var(--fh);
  font-size: 1.1rem;
  color: var(--green);
  font-weight: 800;
}

.hmc-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  margin-right: 4px;
  animation: blink 1.5s ease-in-out infinite;
}

.hq {
  width: 100%;
  max-width: 220px;
  position: absolute;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(26, 26, 46, 0.12);
  font-family: var(--fb);
  font-size: 0.76rem;
  font-weight: 600;
  display: flex;
  /*flex-direction: column;*/
  align-items: start;
  gap: 10px;
  white-space: nowrap;
  z-index: 3;
  padding: 25px 16px;
  border: 2px solid rgba(26, 26, 46, 0.05);
}

.hq-math {
  border-bottom: 4px solid var(--green);
}

.hq-eng {
  border-bottom: 4px solid var(--blue);
}

.hq-sci {
  border-bottom: 4px solid var(--pink);
}

.hq-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.hq-math .hq-icon {
  background: var(--green-pm);
}

.hq-eng .hq-icon {
  background: var(--blue-pm);
}

.hq-sci .hq-icon {
  background: var(--pink-pm);
}

.hq-text {
  color: var(--ink) !important;
  font-weight: 700;
  font-size: 0.99rem;
  font-family: var(--fh);
  line-height: 1.2;
}

.hq-sub {
  font-size: 0.69rem;
  color: var(--ink-m);
  font-weight: 500;
  margin-top: 1px;
  font-family: var(--fb);
}

.hq1 {
  top: -2%;
  left: 4%;
  animation: flt1 5s ease-in-out infinite;
}

.hq2 {
  top: 20%;
  left: 4%;
  animation: flt2 6s ease-in-out 0.8s infinite;
}

.hq3 {
  top: -2%;
  right: 3%;
  animation: flt3 5.5s ease-in-out 0.3s infinite;
}

.hq4 {
  top: 20%;
  right: 2%;
  animation: flt1 7s ease-in-out 1.2s infinite;
}

.hq5 {
  top: 40%;
  right: 3%;
  animation: flt2 5s ease-in-out 0.5s infinite;
}

.hq6 {
  top: 40%;
  left: 5%;
  animation: flt3 6.5s ease-in-out 0.9s infinite;
}

.hq7 {
  top: 60%;
  left: 5%;
  animation: flt3 6.5s ease-in-out 0.9s infinite;
}

.hq8 {
  top: 60%;
  right: 3%;
  animation: flt3 6.5s ease-in-out 0.9s infinite;
}
.hq9{
  top: 80%;
  left: 5%;
  animation: flt3 6.5s ease-in-out 0.9s infinite;
}

.hq10 {
  top: 80%;
  right: 3%;
  animation: flt3 6.5s ease-in-out 0.9s infinite;
}

@keyframes flt1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes flt2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes flt3 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hq-line {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /*background-image:
    linear-gradient(rgba(90, 80, 180, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 80, 180, 0.10) 1px, transparent 1px);*/
  background-size: 38px 38px;
  background-position: -1px -1px;
  padding: 25px;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  width: 100%;
  max-width: 50%;
  margin-left: auto;
}

/* ══ TRUST BAR ══ */
.trust-bar {
  background: linear-gradient(90deg,
      #0e1117 0%,
      #0a2840 50%,
      #0e1117 100%);
  padding: 16px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.77rem;
  font-weight: 500;
}

.trust-item .ti-g {
  color: var(--green);
  font-size: 0.85rem;
}

.trust-item .ti-b {
  color: var(--blue);
  font-size: 0.85rem;
}

.trust-item .ti-p {
  color: var(--pink);
  font-size: 0.85rem;
}

.trust-sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}

/* ══ SECTIONS ══ */
section {
  padding: 92px 5%;
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green-d);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: var(--fb);
  background: var(--green-p);
  padding: 5px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--green-b);
}

.sec-tag.blue {
  color: var(--blue-d);
  background: var(--blue-p);
  border-color: var(--blue-b);
}

.sec-tag.pink {
  color: var(--pink-d);
  background: var(--pink-p);
  border-color: var(--pink-b);
}

.sec-h {
  font-family: var(--fh);
  font-size: clamp(2.1rem, 3.4vw, 3.3rem);
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 800;
}

.sec-h .cl-green {
  color: var(--green);
}

.sec-h .cl-blue {
  color: var(--blue);
}

.sec-h .cl-pink {
  color: var(--pink-d);
}

.cl-blue {
  color: var(--blue);
}

.sec-d {
  font-size: 0.91rem;
  color: var(--ink-m);
  line-height: 1.88;
  max-width: 560px;
  font-weight: 300;
}

.sec-dd {
  font-size: 0.91rem;
  color: var(--ink-m);
  line-height: 1.88;
  font-weight: 300;
  margin: 0;
}

.tc {
  text-align: center;
}

.tc .sec-d {
  margin: 0 auto;
}

/* ══ TWO COL ══ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.feat-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: var(--green-pm);
  border: 1.5px solid var(--green-b);
  transition: transform 0.2s;
}

.feat-item:hover .feat-icon {
  transform: scale(1.08) rotate(-3deg);
}

.feat-icon.fi-blue {
  background: var(--blue-pm);
  border-color: var(--blue-b);
}

.feat-icon.fi-pink {
  background: var(--pink-pm);
  border-color: var(--pink-b);
}

.feat-text h4 {
  font-family: var(--fb);
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 4px;
}

.feat-text p {
  font-size: 0.82rem;
  color: var(--ink-m);
  line-height: 1.74;
}

/* ══ DASHBOARD VISUAL ══ */
.dash-visual {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.dv-card {
  background: #fff;
  border: 1.5px solid var(--ink-f);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--sh-soft);
  display: flex;
  align-items: center;
  gap: 14px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  cursor: default;
}

.dv-card:hover {
  transform: translateX(8px);
  box-shadow: var(--sh-card);
}

.dv-card:nth-child(1):hover {
  border-color: var(--green-b);
}

.dv-card:nth-child(2):hover {
  border-color: var(--blue-b);
}

.dv-card:nth-child(3):hover {
  border-color: var(--pink-b);
}

.dv-card:nth-child(4):hover {
  border-color: var(--green-b);
}

.dv-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  background: var(--green-pm);
  border: 1.5px solid var(--green-b);
}

.dv-icon.bl {
  background: var(--blue-pm);
  border-color: var(--blue-b);
}

.dv-icon.pk {
  background: var(--pink-pm);
  border-color: var(--pink-b);
}

.dv-name {
  font-family: var(--fb);
  font-size: 0.84rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
}

.dv-detail {
  font-size: 0.72rem;
  color: var(--ink-m);
}

.dv-badge {
  margin-left: auto;
  padding: 4px 11px;
  border-radius: 50px;
  font-size: 0.64rem;
  font-weight: 700;
  font-family: var(--fb);
  flex-shrink: 0;
}

.dv-badge.good {
  background: var(--green-pm);
  color: var(--green-d);
  border: 1px solid var(--green-b);
}

.dv-badge.live {
  background: var(--blue-pm);
  color: var(--blue-d);
  border: 1px solid var(--blue-b);
}

.dv-badge.new {
  background: var(--pink-pm);
  color: var(--pink-d);
  border: 1px solid var(--pink-b);
}

/* ══ AUDIENCE CARDS ══ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.aud-card {
  background: #fff;
  border: 1.5px solid var(--ink-f);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: var(--sh-soft);
  transition:
    transform 0.28s,
    box-shadow 0.28s;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.aud-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lift);
}

.aud-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.aud-card:nth-child(1)::before {
  background: var(--green);
}

.aud-card:nth-child(2)::before {
  background: var(--blue);
}

.aud-card:nth-child(3)::before {
  background: var(--pink);
}

.aud-card:nth-child(1):hover {
  border-color: var(--green-b);
  box-shadow: 0 24px 60px rgba(88, 204, 2, 0.12);
}

.aud-card:nth-child(2):hover {
  border-color: var(--blue-b);
  box-shadow: 0 24px 60px rgba(28, 176, 246, 0.12);
}

.aud-card:nth-child(3):hover {
  border-color: var(--pink-b);
  box-shadow: 0 24px 60px rgba(243, 141, 238, 0.12);
}

.aud-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 18px;
  background: var(--green-pm);
  border: 2px solid var(--green-b);
}

.aud-card:nth-child(2) .aud-icon-wrap {
  background: var(--blue-pm);
  border-color: var(--blue-b);
}

.aud-card:nth-child(3) .aud-icon-wrap {
  background: var(--pink-pm);
  border-color: var(--pink-b);
}

.aud-title {
  font-family: var(--fb);
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 8px;
}

.aud-desc {
  font-size: 0.83rem;
  color: var(--ink-m);
  line-height: 1.74;
  margin-bottom: 20px;
}

.aud-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.aud-item {
  font-size: 0.8rem;
  color: var(--ink-m);
  padding-left: 20px;
  position: relative;
}

.aud-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.75rem;
}

.aud-card:nth-child(2) .aud-item::before {
  color: var(--blue);
}

.aud-card:nth-child(3) .aud-item::before {
  color: var(--pink-d);
}

/* ══ PRODUCT CARDS ══ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.prod-card {
  background: #fff;
  border: 1.5px solid var(--ink-f);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--sh-soft);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.prod-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.prod-card:nth-child(1)::after,
.prod-card:nth-child(4)::after {
  background: var(--green);
}

.prod-card:nth-child(2)::after {
  background: var(--blue);
}

.prod-card:nth-child(3)::after {
  background: var(--pink);
}

.prod-card:nth-child(5)::after {
  background: var(--blue);
}

.prod-card:hover {
  /* transform: translateY(-6px);*/
  box-shadow: var(--sh-card);
  /* -webkit-transform: translateY(-6px);
        -moz-transform: translateY(-6px);
        -ms-transform: translateY(-6px);
        -o-transform: translateY(-6px);*/
}

.prod-card:hover::after {
  transform: scaleX(1);
}

.pc-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.pc-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--ink);
  border-bottom: 4px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.2);
}

.pc-icon.pi-green {
  background: linear-gradient(135deg, var(--green), var(--green-d));
  border-bottom-color: var(--green-dd);
}

.pc-icon.pi-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-d));
  border-bottom-color: var(--blue-d);
}

.pc-icon.pi-pink {
  background: linear-gradient(135deg, var(--pink), var(--pink-d));
  border-bottom-color: var(--pink-d);
}

.pc-title {
  font-family: var(--fb);
  font-size: 0.96rem;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 2px;
}

.pc-sub {
  font-size: 0.74rem;
  color: var(--ink-m);
  font-weight: 400;
}

.pc-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}

.pc-feats li {
  font-size: 0.81rem;
  color: var(--ink-m);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.prod-card:nth-child(1) .pc-feats li::before,
.prod-card:nth-child(4) .pc-feats li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
}

.prod-card:nth-child(2) .pc-feats li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
}

.prod-card:nth-child(3) .pc-feats li::before,
.prod-card:nth-child(5) .pc-feats li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--pink-d);
  font-size: 0.75rem;
  font-weight: 700;
}

/*.pc-link {
        font-family: var(--fb);
        font-size: 0.78rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 4px;
      }
      .prod-card:nth-child(1) .pc-link,
      .prod-card:nth-child(4) .pc-link {
        color: var(--green);
      }
      .prod-card:nth-child(2) .pc-link {
        color: var(--blue);
      }
      .prod-card:nth-child(3) .pc-link,
      .prod-card:nth-child(5) .pc-link {
        color: var(--pink-d);
      }*/

/* ══ TESTIMONIALS ══ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.testi-card {
  background: #fff;
  border: 1.5px solid var(--ink-f);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--sh-soft);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.testi-card:nth-child(1)::before {
  background: var(--green);
}

.testi-card:nth-child(2)::before {
  background: var(--blue);
}

.testi-card:nth-child(3)::before {
  background: var(--pink);
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-card);
}

.testi-card.tc-featured {
  background: linear-gradient(135deg, #0c1a3a 0%, #0a2840 100%);
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.18);
}

.testi-card.tc-featured::before {
  background: linear-gradient(90deg,
      var(--green),
      var(--blue),
      var(--pink));
}

.testi-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.86rem;
  color: var(--ink-m);
  line-height: 1.82;
  margin-bottom: 18px;
  font-style: italic;
}

.tc-featured .testi-text {
  color: rgba(255, 255, 255, 0.75);
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green-pm);
  border: 2px solid var(--green-b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.testi-card:nth-child(2) .testi-av {
  background: var(--blue-pm);
  border-color: var(--blue-b);
}

.testi-card:nth-child(3) .testi-av,
.tc-featured .testi-av {
  background: var(--pink-pm);
  border-color: var(--pink-b);
}

.testi-name {
  font-family: var(--fb);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
}

.tc-featured .testi-name {
  color: #fff;
}

.testi-role {
  font-size: 0.71rem;
  color: var(--ink-m);
}

.tc-featured .testi-role {
  color: rgba(255, 255, 255, 0.5);
}

/* ══ IMPACT SECTION ══ */
.impact-section {
  background: linear-gradient(135deg,
      #0c1a3a 0%,
      #0a2840 60%,
      #0e1117 100%);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(28, 176, 246, 0.12) 0%,
      transparent 70%);
}

.impact-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(243, 141, 238, 0.08) 0%,
      transparent 70%);
}

.impact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 1px solid rgba(28, 176, 246, 0.2);
  border-radius: 22px;
  overflow: hidden;
}

.impact-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(28, 176, 246, 0.12);
  position: relative;
  z-index: 2;
  transition: background 0.25s;
}

.impact-item:hover {
  background: rgba(28, 176, 246, 0.06);
}

.impact-item:last-child {
  border-right: none;
}

.impact-val {
  font-family: var(--fh);
  font-size: 2.6rem;
  color: #fff;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.impact-item:nth-child(1) .impact-val em {
  color: var(--green);
}

.impact-item:nth-child(2) .impact-val em {
  color: var(--blue);
}

.impact-item:nth-child(3) .impact-val em {
  color: var(--pink);
}

.impact-item:nth-child(4) .impact-val em {
  color: var(--green);
}

.impact-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--fb);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ══ CTA SECTION ══ */
.cta-section {
  /*background: linear-gradient(135deg, #0c1a3a 0%, #0a2840 100%);*/
  background-color: #F8F7F3;
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;

}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
}

.cta-section-pink::before {
  background: radial-gradient(circle, rgb(218 109 213 / 8%) 0%, #d668d138 70%);
}

.cta-section-pink::after {
  background: radial-gradient(circle, rgb(218 109 213 / 8%) 0%, #d668d138 70%);
}

.cta-section-green::before {
  background: radial-gradient(circle, rgb(218 210 109 / 8%) 0%, #68d67638 70%);
}

.cta-section-green::after {
  background: radial-gradient(circle, rgb(218 210 109 / 8%) 0%, #68d67638 70%);
}

.cta-section-blue::before {
  background: radial-gradient(circle, rgb(109 193 218 / 8%) 0%, #68add638 70%);
}

.cta-section-blue::after {
  background: radial-gradient(circle, rgb(109 193 218 / 8%) 0%, #68add638 70%);
}

.cta-h {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 700;
}

.cta-d {
  font-size: 0.92rem;
  /*color: rgba(255, 255, 255, 0.6);*/
  color: var(--ink-m);
  line-height: 1.88;
  max-width: 580px;
  margin-bottom: 28px;
}

.cta-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cta-pill {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.77rem;
  color: #6b1616e6;
  font-family: var(--fb);
  font-weight: 500;
}

.cta-pill:nth-child(1) {
  background: rgba(88, 204, 2, 0.12);
  border: 1px solid rgba(88, 204, 2, 0.25);
}

.cta-pill:nth-child(2) {
  background: rgba(28, 176, 246, 0.12);
  border: 1px solid rgba(28, 176, 246, 0.25);
}

.cta-pill:nth-child(3) {
  background: rgba(243, 141, 238, 0.12);
  border: 1px solid rgba(243, 141, 238, 0.25);
}

.cta-pill:nth-child(4) {
  background: rgba(88, 204, 2, 0.12);
  border: 1px solid rgba(88, 204, 2, 0.25);
}

.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: var(--ink);
  border: none;
  padding: 14px 28px;
  border-radius: 18px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
}

.btn-transp {
  background: rgba(28, 176, 246, 0.1);
  color: #fff;
  border: 1.5px solid rgba(28, 176, 246, 0.25);
  padding: 13px 24px;
  border-radius: 18px;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-transp:hover {
  background: rgba(28, 176, 246, 0.2);
}

.heroo-section {
  background: linear-gradient(135deg, #e8fadb 0%, #d0f5ff 50%, #ffe9d0 100%);
  padding: 100px 5% 60px;
  display: grid;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;

}

.heroo-section {
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

/* subtle radial glow behind heading */
.heroo-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(88, 204, 2, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ══ PAGE HEROES ══ */
.page-hero {
  background: linear-gradient(135deg,
      #0c1a3a 0%,
      #0a2840 70%,
      #0e1117 100%);
  padding: 230px 5% 150px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(28, 176, 246, 0.12) 0%,
      transparent 70%);
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(243, 141, 238, 0.08) 0%,
      transparent 70%);
}

.page-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.page-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-family: var(--fb);
}

.page-tag.green {
  background: rgba(88, 204, 2, 0.12);
  border: 1px solid rgba(88, 204, 2, 0.25);
  color: var(--green);
}

.page-tag.blue {
  background: rgba(28, 176, 246, 0.12);
  border: 1px solid rgba(28, 176, 246, 0.25);
  color: var(--blue);
}

.page-tag.pink {
  background: rgba(243, 141, 238, 0.12);
  border: 1px solid rgba(243, 141, 238, 0.25);
  color: var(--pink);
}

.page-hero h1 {
  font-family: var(--fh);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 18px;
}

.page-hero p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.84;
  margin-bottom: 28px;
  max-width: 520px;
}

.page-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section-white {
  background: #fff;
}

.section-alt {
  background: rgba(26, 26, 46, 0.016);
}

/* ══ SEARCH BOX ══ */
.search-hero {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 24px;
}

.search-hero-label {
  font-family: var(--fb);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.search-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.search-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 11px;
  padding: 11px 14px;
  color: #fff;
  font-family: var(--fb);
  font-size: 0.83rem;
  outline: none;
  transition: border-color 0.15s;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.search-input:focus {
  border-color: rgba(28, 176, 246, 0.5);
}

.search-btn {
  background: linear-gradient(135deg, var(--blue), var(--blue-d));
  color: #fff;
  border: none;
  border-radius: 11px;
  padding: 11px 20px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
  box-shadow: 0 4px 14px rgba(28, 176, 246, 0.3);
}

.search-btn:hover {
  opacity: 0.9;
}

.filter-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.ftag {
  padding: 6px 14px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.71rem;
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--fb);
  font-weight: 500;
}

.ftag:hover,
.ftag.on {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(28, 176, 246, 0.12);
}

/* ══ TUTOR CARDS ══ */
.tutors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.tutor-card {
  background: #fff;
  border: 1.5px solid var(--ink-f);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  box-shadow: var(--sh-soft);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.tutor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.tutor-card:nth-child(1)::before,
.tutor-card:nth-child(4)::before {
  background: var(--green);
}

.tutor-card:nth-child(2)::before,
.tutor-card:nth-child(5)::before {
  background: var(--blue);
}

.tutor-card:nth-child(3)::before,
.tutor-card:nth-child(6)::before {
  background: var(--pink);
}

.tutor-card:nth-child(1):hover,
.tutor-card:nth-child(4):hover {
  transform: translateY(10px);
  box-shadow: var(--sh-green);
  border-color: var(--green-b);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
}

.tutor-card:nth-child(2):hover,
.tutor-card:nth-child(5):hover {
  transform: translateY(10px);
  box-shadow: var(--sh-blue);
  border-color: var(--blue-b);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
}

.tutor-card:nth-child(3):hover,
.tutor-card:nth-child(6):hover {
  transform: translateY(10px);
  box-shadow: var(--sh-pink);
  border-color: var(--pink-b);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
}

.tc-av {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.tc-av-star {
  font-size: 18px;
}

.tutor-card:nth-child(1) .tc-av,
.tutor-card:nth-child(4) .tc-av {
  background: var(--green-pm);
  border: 2px solid var(--green-b);
  box-shadow: 0 4px 16px rgba(88, 204, 2, 0.2);
}

.tutor-card:nth-child(2) .tc-av,
.tutor-card:nth-child(5) .tc-av {
  background: var(--blue-pm);
  border: 2px solid var(--blue-b);
  box-shadow: 0 4px 16px rgba(28, 176, 246, 0.2);
}

.tutor-card:nth-child(3) .tc-av,
.tutor-card:nth-child(6) .tc-av {
  background: var(--pink-pm);
  border: 2px solid var(--pink-b);
  box-shadow: 0 4px 16px rgba(243, 141, 238, 0.2);
}

.tc-name {
  font-family: var(--fb);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 3px;
}

.tc-subject {
  font-size: 0.74rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.tutor-card:nth-child(1) .tc-subject,
.tutor-card:nth-child(4) .tc-subject {
  color: var(--green);
}

.tutor-card:nth-child(2) .tc-subject,
.tutor-card:nth-child(5) .tc-subject {
  color: var(--blue);
}

.tutor-card:nth-child(3) .tc-subject,
.tutor-card:nth-child(6) .tc-subject {
  color: var(--pink-d);
}

.tc-rating {
  font-size: 0.72rem;
  color: var(--ink-m);
  margin-bottom: 10px;
}

.tc-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 14px;
}

.tc-tag {
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.62rem;
  font-family: var(--fb);
  font-weight: 600;
}

.tutor-card:nth-child(1) .tc-tag,
.tutor-card:nth-child(4) .tc-tag {
  background: var(--green-p);
  border: 1px solid var(--green-b);
  color: var(--green-d);
}

.tutor-card:nth-child(2) .tc-tag,
.tutor-card:nth-child(5) .tc-tag {
  background: var(--blue-p);
  border: 1px solid var(--blue-b);
  color: var(--blue-d);
}

.tutor-card:nth-child(3) .tc-tag,
.tutor-card:nth-child(6) .tc-tag {
  background: var(--pink-p);
  border: 1px solid var(--pink-b);
  color: var(--pink-d);
}

.tc-price {
  font-family: var(--fh);
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 900;
  margin-bottom: 14px;
}

.tc-price em {
  font-size: 0.74rem;
  font-weight: 400;
  color: var(--ink-m);
  font-style: normal;
}

.tc-btn {
  width: 100%;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 0.79rem;
  cursor: pointer;
  transition: all 0.15s;
  border-bottom: 3px solid rgba(0, 0, 0, 0.25);
}

.tutor-card:nth-child(1) .tc-btn:hover,
.tutor-card:nth-child(4) .tc-btn:hover {
  background: var(--green);
  border-bottom-color: var(--green-d);
}

.tutor-card:nth-child(2) .tc-btn:hover,
.tutor-card:nth-child(5) .tc-btn:hover {
  background: var(--blue);
  border-bottom-color: var(--blue-d);
}

.tutor-card:nth-child(3) .tc-btn:hover,
.tutor-card:nth-child(6) .tc-btn:hover {
  background: var(--pink);
  border-bottom-color: var(--pink-d);
}

/* ══ STEPS ══ */
.demand-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.step-card {
  background: #fff;
  border: 1.5px solid var(--ink-f);
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: var(--sh-soft);
  text-align: center;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-card);
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.step-card:nth-child(1)::before {
  background: var(--green);
}

.step-card:nth-child(2)::before {
  background: var(--blue);
}

.step-card:nth-child(3)::before {
  background: var(--pink);
}

.step-card:nth-child(4)::before {
  background: var(--green);
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--fh);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.step-card:nth-child(1) .step-num {
  background: linear-gradient(135deg, var(--green), var(--green-d));
  box-shadow: 0 4px 14px rgba(88, 204, 2, 0.3);
}

.step-card:nth-child(2) .step-num {
  background: linear-gradient(135deg, var(--blue), var(--blue-d));
  box-shadow: 0 4px 14px rgba(28, 176, 246, 0.3);
}

.step-card:nth-child(3) .step-num {
  background: linear-gradient(135deg, var(--pink), var(--pink-d));
  box-shadow: 0 4px 14px rgba(243, 141, 238, 0.3);
}

.step-card:nth-child(4) .step-num {
  background: linear-gradient(135deg, var(--green), var(--green-d));
  box-shadow: 0 4px 14px rgba(88, 204, 2, 0.3);
}

.step-title {
  font-family: var(--fh);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 800;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.82rem;
  color: var(--ink-m);
  line-height: 1.74;
}

/* ══ HOBBY GRID ══ */
.hobby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(192px, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.hobby-card {
  background: #fff;
  border: 1.5px solid var(--ink-f);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--sh-soft);
  cursor: pointer;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.hobby-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: transform 0.3s;
}

.hobby-card:nth-child(3n + 1)::after {
  background: var(--green);
}

.hobby-card:nth-child(3n + 2)::after {
  background: var(--blue);
}

.hobby-card:nth-child(3n)::after {
  background: var(--pink);
}

.hobby-card:nth-child(3n + 1):hover {
  /*transform: translateY(-6px);*/
  box-shadow: var(--sh-green);
  border-color: var(--green-b);
}

.hobby-card:nth-child(3n + 2):hover {
  /*transform: translateY(-6px);*/
  box-shadow: var(--sh-blue);
  border-color: var(--blue-b);
}

.hobby-card:nth-child(3n):hover {
  /*transform: translateY(-6px);*/
  box-shadow: var(--sh-pink);
  border-color: var(--pink-b);
}

.hobby-card:hover::after {
  transform: scaleX(1);
}

.hc-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

.hc-name {
  font-family: var(--fh);
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 800;
  margin-bottom: 5px;
}

.hc-count {
  font-size: 0.71rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.hobby-card:nth-child(3n + 1) .hc-count {
  color: var(--green);
}

.hobby-card:nth-child(3n + 2) .hc-count {
  color: var(--blue);
}

.hobby-card:nth-child(3n) .hc-count {
  color: var(--pink-d);
}

.hc-price {
  font-size: 0.68rem;
  color: var(--ink-m);
}

/* ══ PAPERS ══ */
.papers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.paper-card {
  background: #fff;
  border: 1.5px solid var(--ink-f);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--sh-soft);
  cursor: pointer;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}

.paper-card:nth-child(3n + 1):hover {
  border-color: var(--green-b);
  box-shadow: var(--sh-green);
}

.paper-card:nth-child(3n + 2):hover {
  border-color: var(--blue-b);
  box-shadow: var(--sh-blue);
}

.paper-card:nth-child(3n):hover {
  border-color: var(--pink-b);
  box-shadow: var(--sh-pink);
}

.paper-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.paper-card:nth-child(3n + 1) .paper-icon {
  background: var(--green-pm);
  border: 1.5px solid var(--green-b);
}

.paper-card:nth-child(3n + 2) .paper-icon {
  background: var(--blue-pm);
  border: 1.5px solid var(--blue-b);
}

.paper-card:nth-child(3n) .paper-icon {
  background: var(--pink-pm);
  border: 1.5px solid var(--pink-b);
}

.paper-title {
  font-family: var(--fb);
  font-size: 0.84rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 3px;
}

.paper-meta {
  font-size: 0.7rem;
  color: var(--ink-m);
  margin-bottom: 7px;
}

.paper-dl {
  font-size: 0.7rem;
  font-weight: 700;
}

.paper-card:nth-child(3n + 1) .paper-dl {
  color: var(--green);
}

.paper-card:nth-child(3n + 2) .paper-dl {
  color: var(--blue);
}

.paper-card:nth-child(3n) .paper-dl {
  color: var(--pink-d);
}

.board-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.btag {
  padding: 6px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--ink-f);
  background: #fff;
  font-size: 0.71rem;
  color: var(--ink-m);
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--fb);
  font-weight: 500;
}

.btag:hover,
.btag.on {
  border-color: var(--blue);
  color: var(--blue-d);
  background: var(--blue-p);
}

.tabs-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tnav-btn {
  padding: 8px 18px;
  border-radius: 50px;
  background: #fff;
  border: 1.5px solid var(--ink-f);
  font-family: var(--fb);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--ink-m);
  cursor: pointer;
  transition: all 0.15s;
}

.tnav-btn:hover,
.tnav-btn.on {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* ══ NETWORK / PROFILE CARDS ══ */
.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.profile-card {
  background: #fff;
  border: 1.5px solid var(--ink-f);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--sh-soft);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.profile-card:nth-child(3n + 1)::before {
  background: var(--green);
}

.profile-card:nth-child(3n + 2)::before {
  background: var(--blue);
}

.profile-card:nth-child(3n)::before {
  background: var(--pink);
}

.profile-card:nth-child(3n + 1):hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-green);
}

.profile-card:nth-child(3n + 2):hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-blue);
}

.profile-card:nth-child(3n):hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-pink);
}

.pc-av-lg {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.profile-card:nth-child(3n + 1) .pc-av-lg {
  background: var(--green-pm);
  border: 2px solid var(--green-b);
}

.profile-card:nth-child(3n + 2) .pc-av-lg {
  background: var(--blue-pm);
  border: 2px solid var(--blue-b);
}

.profile-card:nth-child(3n) .pc-av-lg {
  background: var(--pink-pm);
  border: 2px solid var(--pink-b);
}

.pc-nm {
  font-family: var(--fb);
  font-size: 0.93rem;
  color: var(--ink);
  font-weight: 700;
}

.pc-role {
  font-size: 0.71rem;
  margin: 2px 0 10px;
  font-weight: 600;
}

.profile-card:nth-child(3n + 1) .pc-role {
  color: var(--green);
}

.profile-card:nth-child(3n + 2) .pc-role {
  color: var(--blue);
}

.profile-card:nth-child(3n) .pc-role {
  color: var(--pink-d);
}

.pc-badges {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.pc-badge {
  padding: 3px 9px;
  border-radius: 50px;
  font-size: 0.6rem;
  font-family: var(--fb);
  font-weight: 600;
}

.profile-card:nth-child(3n + 1) .pc-badge {
  background: var(--green-p);
  border: 1px solid var(--green-b);
  color: var(--green-d);
}

.profile-card:nth-child(3n + 2) .pc-badge {
  background: var(--blue-p);
  border: 1px solid var(--blue-b);
  color: var(--blue-d);
}

.profile-card:nth-child(3n) .pc-badge {
  background: var(--pink-p);
  border: 1px solid var(--pink-b);
  color: var(--pink-d);
}

.pc-stats {
  display: flex;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--ink-m);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.pc-connect {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--ink-f);
  color: var(--ink);
  border-radius: 11px;
  padding: 9px;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 0.76rem;
  cursor: pointer;
  transition: all 0.18s;
}

.profile-card:nth-child(3n + 1) .pc-connect:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-p);
}

.profile-card:nth-child(3n + 2) .pc-connect:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-p);
}

.profile-card:nth-child(3n) .pc-connect:hover {
  border-color: var(--pink);
  color: var(--pink-d);
  background: var(--pink-p);
}

/* ══ MODAL ══ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(14, 17, 23, 0.75);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #fff;
  border: 1.5px solid var(--ink-f);
  border-radius: 28px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 24px 80px rgba(14, 17, 23, 0.2);
  position: relative;
  overflow: hidden;
  transform: scale(0.94) translateY(10px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg,
      var(--green) 33%,
      var(--blue) 66%,
      var(--pink) 100%);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink-ff);
  border: 1.5px solid var(--ink-f);
  color: var(--ink-m);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s,
    color 0.15s;
  z-index: 10;
}

.modal-close:hover {
  background: var(--ink-f);
  color: var(--ink);
}

.modal-head {
  padding: 30px 28px 0;
  text-align: center;
}

.modal-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 5px;
}

.modal-tagline {
  font-size: 0.72rem;
  color: var(--ink-m);
  margin-top: 6px;
}

.modal-tabs {
  display: flex;
  border-bottom: 1.5px solid var(--ink-f);
  margin: 14px 28px 0;
}

.modal-tab {
  flex: 1;
  padding: 12px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--ink-m);
  cursor: pointer;
  margin-bottom: -1.5px;
  transition:
    color 0.15s,
    border-color 0.15s;
}

.modal-tab.on {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.modal-body {
  padding: 22px 28px 28px;
}

.modal-pane {
  display: none;
}

.modal-pane.on {
  display: block;
}

.mfield {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

.mfield label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.03em;
  font-family: var(--fb);
}

.mfield input {
  background: var(--ink-ff);
  border: 1.5px solid var(--ink-f);
  border-radius: 11px;
  padding: 10px 14px;
  color: var(--ink);
  font-family: var(--fb);
  font-size: 0.83rem;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}

.mfield input::placeholder {
  color: var(--ink-m);
}

.mfield input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-p);
}

.mfield-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mbtn {
  width: 100%;
  background: linear-gradient(135deg, var(--blue), var(--blue-d));
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 16px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  transition: all 0.15s;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(28, 176, 246, 0.3);
}

.mbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(28, 176, 246, 0.38);
}

.modal-switch {
  font-size: 0.74rem;
  color: var(--ink-m);
  text-align: center;
}

.modal-switch a {
  color: var(--blue);
  cursor: pointer;
  font-weight: 700;
}

.m-divider {
  text-align: center;
  font-size: 0.73rem;
  color: var(--ink-m);
  margin: 12px 0;
  position: relative;
}

.m-divider::before,
.m-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: var(--ink-f);
}

.m-divider::before {
  left: 0;
}

.m-divider::after {
  right: 0;
}

.role-label {
  font-size: 0.73rem;
  color: var(--ink-m);
  font-weight: 500;
  margin-bottom: 10px;
}

.role-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.role-btn {
  background: var(--ink-ff);
  border: 1.5px solid var(--ink-f);
  border-radius: 12px;
  padding: 10px 8px;
  font-family: var(--fb);
  font-weight: 500;
  font-size: 0.76rem;
  color: var(--ink-m);
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}

.role-btn:hover,
.role-btn.sel {
  border-color: var(--blue);
  color: var(--blue-d);
  background: var(--blue-p);
}

.role-btn-icon {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 4px;
}

/* ══ INFO BOX ══ */
.info-box {
  background: var(--blue-p);
  border: 1.5px solid var(--blue-b);
  border-radius: 18px;
  padding: 22px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-box-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.info-box-text h4 {
  font-family: var(--fb);
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 5px;
}

.info-box-text p {
  font-size: 0.82rem;
  color: var(--ink-m);
  line-height: 1.72;
  margin-bottom: 0;
}

/* ══ WHY CARDS ══ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.why-card {
  background: #fff;
  border: 1.5px solid var(--ink-f);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--sh-soft);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.why-card:nth-child(3n + 1)::before {
  background: var(--green);
}

.why-card:nth-child(3n + 2)::before {
  background: var(--blue);
}

.why-card:nth-child(3n)::before {
  background: var(--pink);
}

.why-card:nth-child(3n + 1):hover {
  transform: translateY(20px);
  box-shadow: var(--sh-green);
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
}

.why-card:nth-child(3n + 2):hover {
  transform: translateY(20px);
  box-shadow: var(--sh-blue);
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
}

.why-card:nth-child(3n):hover {
  transform: translateY(20px);
  box-shadow: var(--sh-pink);
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
}

.why-icon {
  font-size: 1.9rem;
  margin-bottom: 14px;
  display: block;
}

.why-title {
  font-family: var(--fb);
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 7px;
}

.why-desc {
  font-size: 0.8rem;
  color: var(--ink-m);
  line-height: 1.72;
}

/* ══ SUBJECT PILLS ══ */
.subject-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.subj-pill {
  padding: 8px 18px;
  border-radius: 50px;
  background: #fff;
  border: 1.5px solid var(--ink-f);
  font-size: 0.77rem;
  color: var(--ink);
  font-family: var(--fb);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.subj-pill:nth-child(3n + 1):hover {
  border-color: var(--green);
  color: var(--green-d);
  background: var(--green-p);
}

.subj-pill:nth-child(3n + 2):hover {
  border-color: var(--blue);
  color: var(--blue-d);
  background: var(--blue-p);
}

.subj-pill:nth-child(3n):hover {
  border-color: var(--pink);
  color: var(--pink-d);
  background: var(--pink-p);
}

/* ══ COMPARISON TABLE ══ */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--sh-card);
  margin-top: 36px;
}

.compare-table th {
  background: linear-gradient(135deg, #0c1a3a, #0a2840);
  color: #fff;
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 16px 20px;
  text-align: left;
  letter-spacing: 0.03em;
}

.compare-table td {
  padding: 14px 20px;
  font-size: 0.83rem;
  color: var(--ink-m);
  border-bottom: 1px solid var(--ink-f);
  background: #fff;
  line-height: 1.5;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table td:first-child {
  font-weight: 600;
  color: var(--ink);
}

.compare-table .yes {
  color: var(--green);
  font-weight: 700;
}

.compare-table .no {
  color: #e11d48;
}

/* ══ FAQ ══ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 36px;
}

.faq-item {
  background: #fff;
  border: 1.5px solid var(--ink-f);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--sh-soft);
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--blue-b);
}

.faq-item.open {
  border-color: var(--blue-b);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-family: var(--fb);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--ink);
}

.faq-q .faq-arrow {
  color: var(--blue);
  font-size: 1rem;
  transition: transform 0.28s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-arrow{
  transition: all 0.5s ease !important;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.38s ease,
    padding 0.28s;
  font-size: 0.83rem;
  color: var(--ink-m);
  line-height: 1.8;
  padding: 0 22px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 22px 18px;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    opacity: 0;

    padding: 0 22px;

    transition:
        max-height 0.6s ease,
        opacity 0.4s ease,
        padding 0.4s ease;
}

.faq-item.open .faq-a {
    max-height: 500px; /* answer se bada value */
    opacity: 1;
    padding: 0 22px 18px;
}
.drop-arrow{
   transition: all 48s ease;
   /* transform: translate(-10px); */
}

/* ══ STAT ROW ══ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.stat-box {
  background: #fff;
  border: 1.5px solid var(--ink-f);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  box-shadow: var(--sh-soft);
}

.stat-val {
  font-family: var(--fh);
  font-size: 2.1rem;
  color: var(--ink);
  font-weight: 900;
  line-height: 1;
}

.stat-box:nth-child(1) .stat-val em {
  color: var(--green);
  font-style: normal;
}

.stat-box:nth-child(2) .stat-val em {
  color: var(--blue);
  font-style: normal;
}

.stat-box:nth-child(3) .stat-val em {
  color: var(--pink-d);
  font-style: normal;
}

.stat-lbl {
  font-size: 0.72rem;
  color: var(--ink-m);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ══ TIMELINE ══ */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom,
      var(--green-b),
      var(--blue-b),
      var(--pink-b));
}

.tl-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 28px;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--fh);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.tl-item:nth-child(1) .tl-dot {
  background: linear-gradient(135deg, var(--green), var(--green-d));
  box-shadow: 0 4px 14px rgba(88, 204, 2, 0.3);
}

.tl-item:nth-child(2) .tl-dot {
  background: linear-gradient(135deg, var(--blue), var(--blue-d));
  box-shadow: 0 4px 14px rgba(28, 176, 246, 0.3);
}

.tl-item:nth-child(3) .tl-dot {
  background: linear-gradient(135deg, var(--pink), var(--pink-d));
  box-shadow: 0 4px 14px rgba(243, 141, 238, 0.3);
}

.tl-item:nth-child(4) .tl-dot {
  background: linear-gradient(135deg, var(--green), var(--green-d));
  box-shadow: 0 4px 14px rgba(88, 204, 2, 0.3);
}

.tl-content {
  padding-top: 8px;
}

.tl-title {
  font-family: var(--fb);
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 5px;
}

.tl-desc {
  font-size: 0.81rem;
  color: var(--ink-m);
  line-height: 1.7;
}

/* ══ EARNINGS CARD ══ */
.earnings-card {
  background: linear-gradient(135deg, #0c1a3a, #0a2840);
  border-radius: 22px;
  padding: 28px;
  color: #fff;
}

.earnings-card h4 {
  font-family: var(--fb);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.earn-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.earn-row:last-child {
  border-bottom: none;
}

.earn-label {
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.6);
}

.earn-val {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 800;
  color: var(--green);
}

/* ══ BANNER ══ */
.green-banner {
  background: linear-gradient(90deg,
      var(--blue) 0%,
      var(--green) 50%,
      var(--pink) 100%);
  background-size: 200%;
  animation: stripShimmer 5s linear infinite;
  padding: 18px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.green-banner p {
  font-family: var(--fb);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
}

.banner-btn {
  background: #fff;
  color: var(--blue-d);
  border: none;
  border-radius: 12px;
  padding: 9px 22px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.banner-btn:hover {
  transform: scale(1.03);
}

/* ══ COURSE CARD ══ */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.course-card {
  background: #fff;
  border: 1.5px solid var(--ink-f);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sh-soft);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
}

.course-card:nth-child(1):hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-green);
}

.course-card:nth-child(2):hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-blue);
}

.course-card:nth-child(3):hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-pink);
}

.course-thumb {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.course-card:nth-child(1) .course-thumb {
  background: linear-gradient(135deg, #0f3d1a, #1a5c26);
}

.course-card:nth-child(2) .course-thumb {
  background: linear-gradient(135deg, #0a2840, #0d4e7a);
}

.course-card:nth-child(3) .course-thumb {
  background: linear-gradient(135deg, #3d0a3a, #7a0d74);
}

.course-body {
  padding: 18px;
}

.course-tag {
  font-size: 0.61rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  font-family: var(--fb);
}

.course-card:nth-child(1) .course-tag {
  color: var(--green);
}

.course-card:nth-child(2) .course-tag {
  color: var(--blue);
}

.course-card:nth-child(3) .course-tag {
  color: var(--pink-d);
}

.course-name {
  font-family: var(--fb);
  font-size: 0.91rem;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.course-meta {
  font-size: 0.71rem;
  color: var(--ink-m);
  margin-bottom: 10px;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-price {
  font-family: var(--fh);
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 800;
}

.course-rating {
  font-size: 0.71rem;
  color: var(--ink-m);
}

/* ══ HIGHLIGHT STRIP ══ */
.highlight-strip {
  background: linear-gradient(135deg, #0c1a3a, #0a2840);
  border-radius: 24px;
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 48px;
  box-shadow: 0 16px 48px rgba(14, 17, 23, 0.15);
}

.hs-text h3 {
  font-family: var(--fh);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 8px;
}

.hs-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.72;
  max-width: 480px;
}

/* ══ DEMAND HERO INFO ══ */
.demand-hero-info {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 24px;
}

.demand-stat {
  margin-bottom: 20px;
}

.demand-stat:last-child {
  margin-bottom: 0;
}

.demand-stat-val {
  font-family: var(--fh);
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
}

.demand-stat:nth-child(1) .demand-stat-val {
  color: var(--green);
}

.demand-stat:nth-child(2) .demand-stat-val {
  color: var(--blue);
}

.demand-stat:nth-child(3) .demand-stat-val {
  color: var(--pink);
}

.demand-stat-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.58);
  margin-top: 4px;
}

/* ══ FOOTER ══ */
footer {
  background: #0c1a3a;
  padding: 56px 5% 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto;
  padding-bottom: 48px;
}

.fb-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 16px;
}

.fb-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.78;
  max-width: 320px;
  margin-bottom: 20px;
}

.fb-socials {
  display: flex;
  gap: 8px;
}

.fb-social {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s;
}

.fb-social:nth-child(1):hover {
  background: rgba(88, 204, 2, 0.2);
  border-color: rgba(88, 204, 2, 0.3);
}

.fb-social:nth-child(2):hover {
  background: rgba(28, 176, 246, 0.2);
  border-color: rgba(28, 176, 246, 0.3);
}

.fb-social:nth-child(3):hover {
  background: rgba(243, 141, 238, 0.2);
  border-color: rgba(243, 141, 238, 0.3);
}

.fb-social:nth-child(4):hover {
  background: rgba(88, 204, 2, 0.2);
  border-color: rgba(88, 204, 2, 0.3);
}

.fc-h {
  font-family: var(--fb);
  font-size: 0.74rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.9;
}

.fc-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fc-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55) !important;
  cursor: pointer;
  transition: color 0.15s;
  text-decoration: none;
}

.fc-links a:hover {
  color: var(--blue);
}

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.38);
}

.footer-badges {
  display: flex;
  gap: 8px;
}

.fb-badge {
  padding: 4px 11px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--fb);
}

/* ══ MOBILE NAV ══ */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1.5px solid var(--ink-f);
  padding: 8px 0 12px;
}

.mobile-nav-inner {
  display: flex;
  justify-content: space-around;
  max-width: 480px;
  margin: 0 auto;
}

.mnav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 12px;
  transition: background 0.15s;
}

.mnav-item.active {
  background: var(--blue-p);
}

.mnav-icon {
  font-size: 1.2rem;
}

.mnav-label {
  font-size: 0.55rem;
  color: var(--ink-m);
  font-family: var(--fb);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mnav-item.active .mnav-label {
  color: var(--blue-d);
}

/* ══ PRICING CARDS ══ */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.pricing-card {
  background: #fff;
  border: 1.5px solid var(--ink-f);
  border-radius: 22px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--sh-soft);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.pricing-card:nth-child(1)::before {
  background: var(--green);
}

.pricing-card:nth-child(2)::before {
  background: var(--blue);
}

.pricing-card:nth-child(3)::before {
  background: var(--pink);
}

.pricing-card:nth-child(1):hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-green);
}

.pricing-card:nth-child(2):hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-blue);
}

.pricing-card:nth-child(3):hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-pink);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #0c1a3a, #0a2840);
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(14, 17, 23, 0.2);
}

.pricing-card.featured:hover {
  box-shadow: 0 24px 64px rgba(28, 176, 246, 0.2);
}

.pricing-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.pricing-tier {
  font-family: var(--fb);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-m);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-tier {
  color: rgba(255, 255, 255, 0.55);
}

.pricing-amount {
  font-family: var(--fh);
  font-size: 2.2rem;
  color: var(--ink);
  font-weight: 900;
  line-height: 1;
}

.pricing-card.featured .pricing-amount {
  color: #fff;
}

.pricing-duration {
  font-size: 0.71rem;
  color: var(--ink-m);
  margin: 6px 0 16px;
}

.pricing-card.featured .pricing-duration {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-desc {
  font-size: 0.79rem;
  color: var(--ink-m);
  line-height: 1.72;
  margin-bottom: 20px;
}

.pricing-card.featured .pricing-desc {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--blue);
  color: #fff;
  font-family: var(--fb);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
}

/* ══ JOB BOARD CARDS ══ */
.papers-grid .paper-card .paper-dl {
  color: var(--blue);
}

/* ══ MISC ══ */
.section-alt {
  background: rgba(26, 26, 46, 0.016);
}

.caveat-label {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--pink-d);
  transform: rotate(-2deg);
  display: inline-block;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .impact-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 60px;
  }

  .hero-visual {
    display: none;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  section {
    padding: 64px 5%;
  }

  .demand-steps {
    grid-template-columns: 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .highlight-strip {
    flex-direction: column;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }
}



/********************/
:root {
  --blue: #1cb0f6;
  --blue-d: #0d8fc8;
  --blue-p: rgba(28, 176, 246, 0.09);
  --blue-pm: rgba(28, 176, 246, 0.18);
  --blue-b: rgba(28, 176, 246, 0.3);
  --sh-blue: 0 10px 36px rgba(28, 176, 246, 0.32);
  --white: #ffffff;
  --ink: #0e1117;
  --r: 14px;
  --rl: 20px;
  --fb: "Lexend", sans-serif;
  --fh: "Caveat", cursive;
}

.teacher-section .ts-wrap {
  background: linear-gradient(135deg, #0c1a3a 0%, #0a2840 60%, #0e1117 100%);
  color: var(--white);
  padding: 56px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.teacher-section .ts-wrap::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 176, 246, .12) 0%, transparent 70%);
  pointer-events: none;
}

.teacher-section .ts-inner {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.teacher-section .ts-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--ink);
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 36px;
  box-shadow: var(--sh-blue);
}

.teacher-section .headline {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.teacher-section .headline em {
  font-style: italic;
  color: var(--blue);
  font-size: clamp(32px, 5.5vw, 58px);
}

.teacher-section .subtext {
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 14px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.teacher-section .ts-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}

.teacher-section .ts-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(28, 176, 246, 0.25);
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .2s, background .2s;
  flex-shrink: 0;
}

.teacher-section .ts-dot:hover {
  transform: scale(1.12);
}

.teacher-section .ts-dot.active {
  transform: scale(1.18);
  background: var(--blue);
  box-shadow: 0 0 0 6px var(--blue-b), var(--sh-blue);
}

.teacher-section .ts-line {
  flex: 1;
  height: 3px;
  max-width: 120px;
  background: repeating-linear-gradient(90deg, var(--blue-b) 0, var(--blue-b) 8px, transparent 8px, transparent 16px);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.teacher-section .ts-fill {
  height: 100%;
  background: var(--blue);
  width: 0%;
  transition: width .5s ease;
  border-radius: 2px;
}


.teacher-section .card-num {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-blue);
}

.teacher-section .ts-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media(max-width:900px) {
  .teacher-section .ts-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:520px) {
  .teacher-section .ts-cards {
    grid-template-columns: 1fr;
  }

  .ts-line {
    max-width: 40px;
  }
}

.teacher-section .ts-card {
  background: rgba(255, 255, 255, .04);
  border: 1.5px solid rgba(255, 255, 255, .07);
  border-radius: var(--rl);
  padding: 24px 18px 24px;
  text-align: left;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .28s cubic-bezier(.34, 1.56, .64, 1), border-color .22s, background .22s, box-shadow .22s;
}

.teacher-section .ts-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, var(--blue-p) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}

.teacher-section .ts-card:hover::before,
.ts-card.active::before {
  opacity: 1;
}

.teacher-section .ts-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue-b);
  background: rgba(28, 176, 246, .06);
  box-shadow: var(--sh-blue);
}

.teacher-section .ts-card.active {
  border-color: var(--blue);
  background: rgba(28, 176, 246, .09);
  box-shadow: var(--sh-blue);
  transform: translateY(-6px);
}

.teacher-section .ts-card-label {
  font-family: var(--fb);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  line-height: 1.5;
  margin-top: 25px;
}

.teacher-section .ts-card-heading {
  font-family: var(--fb);
  font-size: clamp(13px, 1.6vw, 17px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}

.teacher-section .ts-card-body {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
}

.teacher-section .ts-card-expand {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-pm);
  border: 1.5px solid var(--blue-b);
  display: none;
  align-items: center;
  justify-content: center;
  margin: 14px auto 0;
  transition: background .2s, transform .3s;
}

.teacher-section .ts-card.active .ts-card-expand {
  background: var(--blue);
  transform: rotate(180deg);
}