/* ══════════════════════════════════════════════════════
   BINALECT ACADEMY — About Us  |  Enhanced Dark Theme
   ══════════════════════════════════════════════════════ */

/* ── BASE ── */
body {
  margin: 0;
  color: var(--txt);
}


/* ── SECTION WRAPPER ── */
.section-wrap {
  width: 88%;
  max-width: 1260px;
  margin-inline: auto;
  margin-bottom: 9em;
}

/* ── PILL LABEL ── */
.pill-label {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 100px;
  padding: .35em 1.1em;
  margin-bottom: 1em;
}

.pill-label--dark {
  color: var(--green);
  background: rgba(0, 255, 136, .12);
  border-color: rgba(0, 255, 136, .25);
}

/* ── SECTION HEADINGS ── */
.sec-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 .5em;
  color: var(--txt);
}

.sec-sub {
  font-size: 1.2rem;
  color: var(--txt-sub);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 3em;
}

.g {
  color: var(--green);
  text-shadow: 0 0 30px rgba(0, 255, 136, .3);
}

/* ── SCROLL REVEAL ── */
.card-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.card-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ════════════════════════
   NAVBAR
════════════════════════ */
.navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  background: rgba(3, 18, 13, .4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
  padding: 1.1em 5em;
}

.navbar.nav-scrolled {
  background: rgba(3, 18, 13, .96);
  border-bottom-color: var(--green-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .55);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  min-width: 130px;
  width: 170px;
  object-fit: contain;
  object-position: center;
  transition: all 0.15s ease;
  cursor: pointer;
  height: 40px;
  filter: brightness(1.2);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.4em;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--txt-sub);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: width .3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--green);
  color: #03120d;
  font-size: .92rem;
  font-weight: 800;
  padding: .6em 1.5em;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: .5px;
  transition: background .25s, box-shadow .25s, transform .2s;
  box-shadow: 0 0 20px rgba(0, 255, 136, .25);
}

.nav-cta:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 255, 136, .4);
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: #00ff88;
  cursor: pointer;
}

.mobile-menu-toggle .close {
  display: none;
}

.mobile-nav-container {
  display: none;
  position: fixed;
  top: 70px;
  right: -100%;
  width: 300px;
  height: calc(100vh - 70px);
  background: rgba(3, 18, 13, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  transition: right 0.3s ease;
  border-left: 1px solid rgba(0, 255, 136, 0.2);
}

.mobile-nav-container.active {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1.5rem;
}

.mobile-nav-links a {
  color: #e5e7eb;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links .enroll-now-mobile {
  background: rgba(0, 255, 136, 0.1);
  color: var(--green);
}

/* ════════════════════════
   HERO
════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10em 2em 5em;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 136, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, .05) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 30%, transparent 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 136, .14) 0%, transparent 70%);
  top: -150px;
  left: -200px;
  animation: drift1 10s ease-in-out infinite;
}

.orb-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 196, 106, .1) 0%, transparent 70%);
  bottom: -100px;
  right: -150px;
  animation: drift1 13s ease-in-out infinite reverse;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 136, .07) 0%, transparent 70%);
  top: 40%;
  left: 60%;
  animation: drift1 8s ease-in-out infinite 2s;
}

@keyframes drift1 {

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

  50% {
    transform: translate(40px, -40px);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8em;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.2em;
  opacity: 0;
  animation: fadeUp .7s .2s forwards;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 .7em;
  color: var(--txt);
  opacity: 0;
  animation: fadeUp .7s .35s forwards;
}

.hero-title-accent {
  display: inline-block;
  background: linear-gradient(135deg, var(--green) 0%, #00c46a 60%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0, 255, 136, .4));
}

.hero-desc {
  font-size: 1.35rem;
  color: var(--txt-sub);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 2.5em;
  opacity: 0;
  animation: fadeUp .7s .5s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1.2em;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .7s .65s forwards;
}

.cta-primary {
  background: var(--green);
  color: #03120d;
  font-size: 1.05rem;
  font-weight: 800;
  padding: .85em 2.2em;
  border-radius: var(--r);
  text-decoration: none;
  letter-spacing: .5px;
  box-shadow: 0 0 30px rgba(0, 255, 136, .3);
  transition: background .25s, box-shadow .25s, transform .2s;
  display: inline-flex;
  align-items: center;
  gap: .5em;
}

.cta-primary:hover {
  background: var(--green-mid);
  box-shadow: 0 10px 40px rgba(0, 255, 136, .45);
  transform: translateY(-3px);
}

.cta-arrow {
  font-size: 1.2em;
  transition: transform .25s;
}

.cta-primary:hover .cta-arrow {
  transform: translateX(4px);
}

.cta-ghost {
  background: transparent;
  color: var(--green);
  font-size: 1.05rem;
  font-weight: 700;
  padding: .85em 2.2em;
  border-radius: var(--r);
  text-decoration: none;
  border: 2px solid rgba(0, 255, 136, .4);
  transition: background .25s, transform .2s, border-color .25s;
}

.cta-ghost:hover {
  background: var(--green-dim);
  border-color: var(--green);
  transform: translateY(-3px);
}

.cta-ghost--light {
  color: #03120d;
  border-color: rgba(3, 18, 13, .35);
}

.cta-ghost--light:hover {
  background: rgba(3, 18, 13, .12);
  border-color: rgba(3, 18, 13, .6);
}

/* Stats bar */
.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 3em;
  margin-top: 5em;
  padding: 2em 4em;
  background: rgba(0, 255, 136, .04);
  border: 1px solid var(--green-border);
  border-radius: var(--r-xl);
  backdrop-filter: blur(12px);
  opacity: 0;
  animation: fadeUp .8s .85s forwards;
}

.stat-item {
  text-align: center;
  display: inline;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--green);
  text-shadow: 0 0 25px rgba(0, 255, 136, .5);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: .95rem;
  color: var(--txt-sub);
  font-weight: 500;
  margin-top: .3em;
  white-space: nowrap;
}

.stat-sep {
  width: 1px;
  height: 55px;
  background: var(--green-border);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5em;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5em;
  color: var(--txt-dim);
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
  opacity: 0;
  animation: fadeUp .7s 1.1s forwards;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .3;
    transform: scaleY(.8);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ════════════════════════
   INTRO BANNER
════════════════════════ */
.intro-banner {
  background: var(--bg-card);
  border: 1px solid var(--green-border);
  border-radius: var(--r-xl);
  margin-bottom: 9em;
  overflow: hidden;
}

.intro-banner-inner {
  width: 88%;
  max-width: 1260px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4em;
  padding: 5em 0;
  align-items: center;
}

.intro-heading {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin: .5em 0 .8em;
  color: var(--txt);
}

.intro-body {
  font-size: 1.15rem;
  color: var(--txt-sub);
  line-height: 1.75;
  margin-bottom: 2em;
}

.intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .7em;
}

.tag {
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  color: var(--green);
  font-size: .9rem;
  font-weight: 600;
  padding: .35em 1em;
  border-radius: 100px;
  letter-spacing: .5px;
}

/* Code card */
.intro-code-card {
  background: #060f08;
  border: 1px solid var(--green-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 255, 136, .08);
  font-family: 'Courier New', monospace;
}

.code-header {
  display: flex;
  align-items: center;
  gap: .5em;
  padding: .9em 1.4em;
  background: #0a1a10;
  border-bottom: 1px solid var(--green-border);
}

.intro-banner .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.intro-banner .dot.r {
  background: #ff5f57;
}

.intro-banner .dot.y {
  background: #ffbd2e;
}

.intro-banner .dot.g {
  background: #28c941;
}

.code-filename {
  margin-left: .5em;
  font-size: .88rem;
  color: var(--txt-sub);
  font-family: 'Courier New', monospace;
}

.code-body {
  padding: 1.6em 1.8em;
  font-size: 1rem;
  line-height: 1.9;
}

.code-line {
  white-space: nowrap;
}

.code-indent {
  padding-left: 1.8em;
}

.kw {
  color: #ff79c6;
}

.vr {
  color: #50fa7b;
}

.op {
  color: #ccc;
}

.fn {
  color: #8be9fd;
}

.br {
  color: #fff;
}

.punc {
  color: #aaa;
}

.str {
  color: #f1fa8c;
}

.pr {
  color: #bd93f9;
}

.num {
  color: #ffb86c;
}

.cm {
  color: #6272a4;
  font-style: italic;
}

.code-cursor {
  display: inline-block;
  color: var(--green);
  animation: blink 1.1s step-end infinite;
  font-size: 1.2rem;
  line-height: 1;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

/* ════════════════════════
   VMV
════════════════════════ */
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8em;
  margin-top: 1em;
}

.vmv-card {
  background: var(--bg-card);
  border: 1px solid var(--green-border);
  border-radius: var(--r-xl);
  padding: 3em 2.5em;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease);
}

.vmv-card:hover {
  border-color: rgba(0, 255, 136, .5);
  box-shadow: 0 12px 50px rgba(0, 255, 136, .15);
  transform: translateY(-6px);
}

.vmv-card--hero {
  background: linear-gradient(145deg, var(--fill-green-light) 0%, var(--fill-green) 100%);
  border-color: var(--fill-green-bdr);
  box-shadow: 0 0 40px rgba(0, 255, 136, .1);
}

.vmv-card--hero:hover {
  box-shadow: 0 16px 60px rgba(0, 255, 136, .2);
}

.vmv-number {
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--green-border);
  font-family: monospace;
}

.vmv-card--hero .vmv-number {
  color: rgba(168, 240, 198, .2);
}

.vmv-icon-box {
  width: 72px;
  height: 72px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vmv-icon-box--dark {
  background: rgba(0, 255, 136, .12);
  border-color: rgba(0, 255, 136, .25);
}

.vmv-icon-box img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, .5));
}

.vmv-icon-box--dark img {
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, .6));
}

.vmv-tag {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--green);
}

.vmv-tag--dark {
  color: var(--green);
}

.vmv-body {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--txt-sub);
  margin: 0;
  flex: 1;
}

.vmv-body--dark {
  color: var(--fill-green-text);
}

.vmv-bottom-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--green), transparent);
  border-radius: 2px;
  margin-top: auto;
}

.vmv-badge {
  position: absolute;
  top: 1.5em;
  right: 1.5em;
  background: rgba(3, 18, 13, .2);
  color: #03120d;
  font-size: .78rem;
  font-weight: 800;
  padding: .3em .9em;
  border-radius: 100px;
  letter-spacing: .5px;
}

.vmv-badge--dark {
  position: absolute;
  top: 1.2em;
  right: 1.2em;
  background: var(--green);
  color: #03120d;
  font-size: .73rem;
  font-weight: 800;
  padding: .28em .85em;
  border-radius: 100px;
  letter-spacing: .5px;
}

/* ════════════════════════
   WHY CHOOSE US
════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8em;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--green-border);
  border-radius: var(--r-xl);
  padding: 3em 2.5em;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease);
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.why-card:hover {
  border-color: rgba(0, 255, 136, .5);
  box-shadow: 0 12px 50px rgba(0, 255, 136, .15);
  transform: translateY(-6px);
}

.why-card:hover::after {
  opacity: 1;
}

.why-card--center {
  background: linear-gradient(145deg, #0d2b1c, #091a10);
  border-color: rgba(0, 255, 136, .35);
  box-shadow: inset 0 0 60px rgba(0, 255, 136, .03), 0 0 30px rgba(0, 255, 136, .08);
}

.why-featured-label {
  position: absolute;
  top: 1.2em;
  right: 1.2em;
  background: var(--green);
  color: #03120d;
  font-size: .73rem;
  font-weight: 800;
  padding: .28em .85em;
  border-radius: 100px;
  letter-spacing: .5px;
}

.why-num {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--green-border);
  font-family: monospace;
}

.why-num--dark {
  color: rgba(0, 255, 136, .4);
}

.why-icon {
  width: 68px;
  height: 68px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon--dark {
  background: rgba(0, 255, 136, .15);
  border-color: rgba(0, 255, 136, .3);
}

.why-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, .45));
}

.why-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--txt);
  margin: 0;
}

.why-title--dark {
  color: var(--green);
}

.why-body {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--txt-sub);
  margin: 0;
  flex: 1;
}

.why-body--dark {
  color: var(--txt-sub);
}

.why-arrow {
  font-size: 1.5rem;
  color: var(--green-border);
  transition: color .25s, transform .25s;
  width: fit-content;
}

.why-card:hover .why-arrow {
  color: var(--green);
  transform: translateX(5px);
}

.why-arrow--dark {
  color: rgba(0, 255, 136, .3);
}

.why-card--center:hover .why-arrow {
  color: var(--green);
}

/* ════════════════════════
   ABOUT DETAIL
════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 56% 40%;
  gap: 2em;
  justify-content: center;
}

.about-box {
  border-radius: var(--r-xl);
  padding: 3em;
  transition: transform .3s var(--ease), box-shadow .3s;
}

.about-box:hover {
  transform: translateY(-4px);
}

.about-box--dark {
  background: var(--bg-card);
  border: 1px solid var(--green-border);
  box-shadow: inset 0 0 40px rgba(0, 255, 136, .02);
}

.about-box--dark:hover {
  box-shadow: 0 10px 40px rgba(0, 255, 136, .1);
}

.about-box--green {
  background: linear-gradient(145deg, var(--fill-green-light) 0%, var(--fill-green) 100%);
  border: 1px solid var(--fill-green-bdr);
  box-shadow: 0 8px 50px rgba(0, 255, 136, .1);
}

.about-box--green:hover {
  box-shadow: 0 16px 60px rgba(0, 255, 136, .2);
}

.about-box-label {
  display: flex;
  align-items: center;
  gap: .7em;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.8em;
}

.about-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  flex-shrink: 0;
}

.about-dot--dark {
  background: var(--green);
  box-shadow: 0 0 8px rgba(0, 255, 136, .5);
}

.about-list {
  padding-left: 1.4em;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--txt-sub);
}

.about-list li {
  margin-bottom: 1em;
}

.about-list li::marker {
  color: var(--green);
}

.about-list--dark {
  color: var(--fill-green-text);
  font-weight: 500;
}

.about-list--dark li::marker {
  color: var(--green);
}

/* ════════════════════════
   INSIGHTS
════════════════════════ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6em;
}

.insight-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5em;
  padding: 2.2em 2em;
  background: var(--bg-card);
  border: 1px solid var(--green-border);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color .3s, transform .3s var(--ease);
}

.insight-card:hover {
  border-color: rgba(0, 255, 136, .45);
  transform: translateY(-4px);
}

.insight-card:hover .insight-glow {
  opacity: 1;
}

.insight-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 255, 136, .06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}

.insight-icon-wrap {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, border-color .3s;
}

.insight-card:hover .insight-icon-wrap {
  background: rgba(0, 255, 136, .18);
  border-color: rgba(0, 255, 136, .4);
}

.insight-icon-wrap img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, .4));
}

.insight-content h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--txt);
  margin: 0 0 .4em;
}

.insight-content p {
  font-size: 1rem;
  color: var(--txt-sub);
  line-height: 1.6;
  margin: 0;
}

/* Testimonial Section */

.testimonial-section {
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--foreground);
  margin-bottom: 15px;
  font-weight: 600;
}

.section-header .highlight {
  color: var(--review-accent);
}

.section-header p {
  color: var(--review-text);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  padding: 20px 60px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 30px;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  background: var(--gradient-card);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 35px 30px;
  position: relative;
  transition: all 0.5s ease;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--review-accent);
  box-shadow: 0 20px 40px var(--accent-glow);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 8rem;
  height: 8rem;
  background: var(--review-accent);
  opacity: 0.1;
  border-radius: 50%;
  transition: all 0.5s ease;
}

.testimonial-card:hover::before {
  transform: scale(1.1);
  opacity: 0.2;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--review-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  box-shadow: 0 0 15px var(--accent-glow);
}

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

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.card-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--review-accent-light);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--review-text);
  flex-shrink: 0;
}

.review-card .icon {
  width: 1rem;
  height: 1rem;
}

.testimonial-card .star-rating {
  display: flex;
  flex-shrink: 0;
}

.testimonial-card .star {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  stroke-width: 1px;
}

.testimonial-card .star.filled {
  color: var(--star-color);
}

.testimonial-card .star.empty {
  color: transparent;
  stroke: var(--star-color);
}

.testimonial-text {
  color: var(--review-text);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 35px;
  min-height: 100px;
}

.author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  position: relative;
  width: 55px;
  height: 55px;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--review-accent-light);
}

.status-indicator {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: var(--review-accent);
  border-radius: 50%;
  border: 2px solid var(--review-card);
}

.author-info h4 {
  color: var(--foreground);
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.author-info p {
  color: var(--review-text-light);
  font-size: 0.9rem;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: var(--review-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: var(--review-text);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
  background: var(--review-accent);
  border-color: var(--review-accent);
  color: var(--review-bg);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 5px;
}

.carousel-nav.next {
  right: 5px;
}

.carousel-nav svg {
  width: 24px;
  height: 24px;
  stroke: #00d98e;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.testimonial-section .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--review-text-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-section .dot.active {
  background: var(--review-accent);
  width: 30px;
  border-radius: 5px;
  box-shadow: 0 0 10px var(--accent-glow);
}

.trust-indicators {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.trust-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0.6;
  font-size: 0.875rem;
  color: var(--review-text-light);
}

.bullet {
  width: 0.25rem;
  height: 0.25rem;
  background: var(--review-text-light);
  border-radius: 50%;
}

/* Color classes for icons - Updated for Binalect theme */
.text-green-500 {
  color: var(--review-accent);
}

.text-yellow-500 {
  color: #fbbf24;
}

.text-blue-500 {
  color: #3b82f6;
}

.text-purple-500 {
  color: #a855f7;
}

.text-indigo-500 {
  color: #6366f1;
}

.text-orange-500 {
  color: #f97316;
}

@media (max-width: 1300px) {
  .card-header {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Tablet styles */
@media (max-width: 1100px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }

  .carousel-container {
    padding: 20px 50px;
  }

  .card-header {
    flex-direction: row;
    gap: 0;
  }
}

@media (max-width: 900px) {
  .card-header {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }

  .carousel-container {
    padding: 20px 45px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .card-header {
    flex-direction: row;
    gap: 0;
  }

  .testimonial-text {
    min-height: auto;
    font-size: 1rem;
  }

  .card-badge {
    font-size: 0.85rem;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
  }

  .trust-content {
    gap: 1rem;
    font-size: 0.8rem;
  }

  .bullet {
    display: none;
  }

  .trust-content>div {
    flex: 0 0 100%;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .card-header {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    padding: 20px 40px;
  }

  .testimonial-card {
    padding: 25px 20px;
  }

  .carousel-nav {
    width: 35px;
    height: 35px;
  }

  .carousel-nav svg {
    width: 20px;
    height: 20px;
  }

  .trust-indicators {
    margin-top: 2rem;
  }
}



/* ════════════════════════
   TEAM
════════════════════════ */
.team-section {
  text-align: left;
}

.team-grid {
  display: flex;
  gap: 2.5em;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1em;
}

.team-card {
  width: 340px;
  background: var(--bg-card);
  border: 1px solid var(--green-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease);
}

.team-card:hover {
  border-color: rgba(0, 255, 136, .45);
  box-shadow: 0 16px 60px rgba(0, 255, 136, .15);
  transform: translateY(-8px);
}

.team-card-bg {
  height: 160px;
  background: linear-gradient(135deg, #0d2e1d 0%, #071610 100%);
  position: relative;
}

.team-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300ff88' fill-opacity='0.04'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.team-img-frame {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 130px;
  z-index: 2;
}

.team-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--bg-card);
  box-shadow: 0 0 0 3px var(--green-border);
  transition: box-shadow .3s;
}

.team-card:hover .team-img-frame img {
  box-shadow: 0 0 0 3px var(--green), 0 0 25px rgba(0, 255, 136, .3);
}

.team-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(0, 255, 136, .2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.team-ring-1 {
  width: 150px;
  height: 150px;
  animation: spinR 15s linear infinite;
}

.team-ring-2 {
  width: 170px;
  height: 170px;
  animation: spinR 20s linear infinite reverse;
  border-style: dotted;
  opacity: .5;
}

@keyframes spinR {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.team-body {
  padding: 4.5em 2em 2em;
  text-align: center;
}

.team-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--txt);
  letter-spacing: .5px;
  margin-bottom: .3em;
}

.team-role {
  font-size: 1rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 1em;
}

.team-bio {
  font-size: 1rem;
  color: var(--txt-sub);
  line-height: 1.65;
  margin-bottom: 1.5em;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: .9em;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, border-color .25s, transform .2s;
}

.social-btn:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}

.social-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(.6);
  transition: filter .25s;
}

.social-btn:hover img {
  filter: brightness(0);
}

/* ════════════════════════
   CTA BANNER
════════════════════════ */
.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-banner-inner {
  background: linear-gradient(135deg, var(--fill-green-light) 0%, var(--fill-green) 100%);
  border-radius: var(--r-xl);
  border: 1px solid var(--fill-green-bdr);
  padding: 6em 5em;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0, 255, 136, .12);
}

.cta-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 136, .12) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -150px;
  pointer-events: none;
}

.cta-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--txt);
  margin: .4em 0 .5em;
  line-height: 1.1;
}

.cta-heading .g {
  color: var(--green);
  text-shadow: 0 0 20px rgba(0, 255, 136, .4);
  text-decoration: underline;
  text-decoration-color: rgba(0, 255, 136, .3);
  text-underline-offset: 5px;
}

.cta-sub {
  font-size: 1.2rem;
  color: var(--fill-green-text);
  margin-bottom: 2.5em;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 1.2em;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .cta-primary {
  background: var(--green);
  color: #03120d;
  box-shadow: 0 0 30px rgba(0, 255, 136, .3);
}

.cta-actions .cta-primary:hover {
  background: var(--green-mid);
  box-shadow: 0 10px 40px rgba(0, 255, 136, .5);
}

.cta-actions .cta-ghost--light {
  color: var(--fill-green-text);
  border-color: rgba(168, 240, 198, .25);
}

.cta-actions .cta-ghost--light:hover {
  background: rgba(0, 255, 136, .08);
  border-color: rgba(168, 240, 198, .5);
  color: var(--txt);
}

/* ════════════════════════
   CONTACT FORM
════════════════════════ */
/* ════════════════════════
   CONTACT FORM
════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 38% 58%;
  gap: 3em;
  align-items: start;
}

.contact-info {
  padding-top: .5em;
}

.contact-desc {
  font-size: 1.15rem;
  color: var(--txt-sub);
  line-height: 1.7;
  margin-bottom: 2.5em;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2em;
  margin-bottom: 1.8em;
}

.cd-icon {
  font-size: 1.4rem;
  margin-top: .1em;
}

.cd-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--txt-dim);
  margin-bottom: .2em;
}

.cd-val {
  font-size: 1.05rem;
  color: var(--txt);
  text-decoration: none;
  transition: color .25s;
}

.cd-val:hover {
  color: var(--green);
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--green-border);
  border-radius: var(--r-xl);
  padding: 3em;
  box-shadow: 0 0 60px rgba(0, 255, 136, .05);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4em;
}

.form-group{
  margin-bottom: 10px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: .5em;
  margin-bottom: 1.4em;
}

.fg label {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
}

.inquiry-form input,
.inquiry-form textarea {
  background: rgba(0, 255, 136, .04);
  border: 1px solid var(--green-border);
  color: var(--txt);
  padding: .85em 1.1em;
  font-size: 1rem;
  border-radius: var(--r);
  outline: none;
  font-family: inherit;
  transition: border-color .25s, box-shadow .25s;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: rgba(0, 255, 136, .6);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, .07);
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: var(--txt-dim);
}

.inquiry-form textarea {
  resize: none;
  min-height: 140px;
}

.form-submit {
  width: 100%;
  padding: 1em;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .8px;
  border-radius: var(--r);
  border: none;
  background: var(--green);
  color: #03120d;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(0, 255, 136, .25);
  transition: background .25s, box-shadow .25s, transform .2s;
  margin-top: .3em;
}

.form-submit:hover {
  background: var(--green-mid);
  box-shadow: 0 10px 35px rgba(0, 255, 136, .4);
  transform: translateY(-2px);
}

.inquiry-form-section .error {
    border-color: #ff4444 !important;
}

.inquiry-form-section .error-message {
    display: none;
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid #ff4444;
    color: #ff4444;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
}

.inquiry-form-section .success-message {
    display: none;
    background: rgba(0, 255, 163, 0.1);
    border: 2px solid #00ffa3;
    color: #00ffa3;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
}

/* ════════════════════════
   RESPONSIVE
════════════════════════ */
@media (max-width: 1100px) {
  .navbar {
    padding: 1em 2.5em;
  }

  .section-wrap {
    width: 92%;
  }

  .intro-banner-inner {
    grid-template-columns: 1fr;
    gap: 2.5em;
  }

  .intro-visual-col {
    display: flex;
    justify-content: center;
  }

  .intro-code-card {
    max-width: 480px;
    width: 100%;
  }

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

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

@media (max-width: 1000px) {

  .vmv-grid,
  .why-grid,
  .insights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-nav-container {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .hero-stats {
    gap: 2em;
    padding: 2em;
  }
}

@media (max-width: 720px) {

  .vmv-grid,
  .why-grid,
  .insights-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-inline: auto;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.2em;
  }

  .stat-sep {
    width: 60px;
    height: 1px;
  }

  .hero-title {
    font-size: 2.6rem;
  }

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

  .contact-form-wrap {
    padding: 2em 1.5em;
  }

  .cta-banner-inner {
    padding: 4em 2em;
  }

  .team-card {
    width: 300px;
  }
}

@media (max-width: 520px) {
  .navbar {
    padding: 1em 1.5em;
  }

  .section-wrap {
    width: 94%;
  }

  .hero-section {
    padding: 7em 1.5em 4em;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-desc {
    font-size: 1.1rem;
  }

  .sec-heading {
    font-size: 1.8rem;
  }

  .cta-banner-inner {
    padding: 3em 1.5em;
  }
}