/* ==================== ROOT & RESET ==================== */
:root {
  --bg: #0a0f1b;
  --text: #e7eaf0;
  --muted: #a6b0c3;
  --stroke: #1e2a42;
  --card: #0f172a;
  --grad: linear-gradient(135deg, #8b5cf6, #22d3ee 55%, #34d399);
  --accent: #ffb454;
  --accent2: #ff914d;
  --success: #34d399;
  --error: #f87171;
  --shadow: rgba(0, 0, 0, 0.35);
  --shadow-intense: rgba(0, 0, 0, 0.45);
  --shine: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ==================== NAVIGATION ==================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 15, 27, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--stroke);
}

.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}

.logo {
  width: 28px;
  height: 28px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: pulse 2s infinite;
}

/* Brand image (header/banner). Image file is 1080×318 in the images folder. */
.brand-image {
  display: inline-block;
  max-width: 320px;
  /* scale to fit the nav */
  max-height: 55px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* For places where you want the banner full-size, add .banner */
.brand-image.banner {
  max-width: 1080px;
  max-height: 318px;
  width: 100%;
  height: auto;
  aspect-ratio: 1080/318;
}

.brand-name {
  font-weight: 800;
  font-size: 18px;
  color: inherit;
}

.brand-name.hidden {
  display: none !important;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: #c9d3e6;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.nav-links a.btn.secondary {
  padding: 10px 16px;
}

.hamb {
  display: none;
  cursor: pointer;
  border: 1px solid #2b3652;
  border-radius: 10px;
  padding: 8px 10px;
  background: transparent;
  transition: border-color 0.2s ease;
}

.hamb:hover {
  border-color: var(--accent);
}

.hamb span {
  display: block;
  width: 22px;
  height: 2px;
  background: #c9d3e6;
  margin: 5px 0;
  border-radius: 2px;
  transition: background-color 0.2s ease;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .hamb {
    display: block;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 64px 0 auto 0;
  background: rgba(9, 14, 24, 0.98);
  border-top: 1px solid var(--stroke);
  display: none;
  z-index: 999;
}

.mobile-menu.on {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.mobile-menu a {
  display: block;
  padding: 16px 18px;
  border-bottom: 1px solid #142036;
  color: #d5def1;
  font-weight: 700;
  transition: background-color 0.2s ease;
}

.mobile-menu a:hover,
.mobile-menu a:focus {
  background: rgba(255, 255, 255, 0.05);
}

/* ==================== HERO ==================== */
.hero {
  padding: 70px 0;
  background: radial-gradient(1200px 600px at 80% -10%, rgba(167, 139, 250, 0.20), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(34, 211, 238, 0.18), transparent 60%);
  position: relative;
  overflow: hidden;
}

/* Subtle animated background particles */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="70" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
  animation: float 20s infinite linear;
  pointer-events: none;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-5px, -10px);
  }

  50% {
    transform: translate(5px, -5px);
  }

  75% {
    transform: translate(10px, 5px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.eyebrow {
  display: inline-block;
  padding: 7px 12px;
  border: 1px solid #2a344f;
  border-radius: 999px;
  color: #b5c1d8;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 600;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(139, 92, 246, 0.2);
  }

  50% {
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
  }
}

h1 {
  font-family: Poppins, system-ui, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 6.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.hl2 {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    filter: hue-rotate(0deg);
  }

  50% {
    filter: hue-rotate(10deg);
  }
}

.video-card {
  margin: 16px 0;
}

.yt-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #25304a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.yt-embed:hover {
  transform: scale(1.02);
}

.yt-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.kpis {
  color: #cfd7e9;
  margin: 10px 0 18px;
  font-size: clamp(14px, 3vw, 18px);
}

.kpis b {
  color: var(--accent);
}

.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 6px 0 16px;
}

.btn {
  padding: 13px 18px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  border: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn.primary {
  background: var(--grad);
  color: #06101d;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.35);
}

.btn.primary:hover {
  transform: scale(1.04);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.55);
}

.btn.secondary {
  background: #0f1526;
  border: 1px solid #303a57;
  color: #d7def0;
}

.btn.secondary:hover {
  transform: scale(1.03);
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.35);
}

.panel {
  border: 1px solid var(--stroke);
  background: #0f1628;
  border-radius: 14px;
  padding: 12px;
  color: #aeb9ce;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==================== BRAND TICKER ==================== */
.bnc {
  padding: 32px 0 18px;
}

.bnc h3 {
  color: #aeb8cc;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
}

.bnc-band {
  position: relative;
  overflow: hidden;
  border: 1px solid #273047;
  background: linear-gradient(180deg, #0f172a, #0b0f1a);
  border-radius: 22px;
  padding: 10px 6px;
}

.bnc-track {
  display: flex;
  gap: 14px;
  animation: marq 15s linear infinite;
}

.bnc-track2 {
  display: flex;
  gap: 14px;
  animation: marq 15s linear infinite reverse;
}

.bnc-item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 16px;
  min-width: 130px;
  border-radius: 14px;
  font: 800 14px/1 Inter, sans-serif;
  border: 1px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.bnc-item:hover {
  transform: scale(1.05);
}

@keyframes marq {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.brand-idp {
  background: #2597d3;
  color: #02121d;
  border-color: #2aa7f0;
}

.brand-mt {
  background: linear-gradient(135deg, #ff7a1f, #ff5a00);
  color: #1a0a02;
}

.brand-biz {
  background: linear-gradient(135deg, #b5141b, #d4a017);
  color: #1b0b03;
}

.brand-leadsguru {
  background: #fed100;
  color: #0a0c18;
}

.brand-gyangrowth {
  background: #fe9d63;
  color: #140903;
}

.brand-richind {
  background: linear-gradient(135deg, #995fbc, #95d4f2);
  color: #0c0a18;
}

.brand-forever {
  background: #fec500;
  color: #0e0c06;
}

/* ==================== FEATURES (NORMAL FLOW + SHINE + 3D) ==================== */
.stacked {
  padding: 60px 0;
}

.stk-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 18px;
}

.stk-title {
  margin: 0 0 8px;
  font: 800 34px/1.15 Inter, sans-serif;
  color: #e8edf7;
}

.stk-sub {
  margin: 0 0 18px;
  color: #9fb0c9;
  font-size: 18px;
}

.stk-grid {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.stk-card {
  position: relative;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid #273047;
  background: linear-gradient(180deg, #0f172a, #0b0f1a);
  box-shadow: 0 6px 14px var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  /* 3D perspective */
  transform-style: preserve-3d;
  perspective: 1000px;
}

.stk-card:hover {
  transform: translateY(-4px) rotateX(5deg);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

/* SHINING EFFECT */
.stk-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--shine);
  transform: rotate(30deg) translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.stk-card.on::before {
  animation: shine 1.2s ease-out;
}

@keyframes shine {
  0% {
    opacity: 0;
    transform: rotate(30deg) translateY(-100%);
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(30deg) translateY(100%);
  }
}

/* Animated border gradient */
.stk-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: var(--grad);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.stk-card:hover::after {
  opacity: 0.3;
}

.stk-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid #2a3657;
  font-size: 20px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.stk-card:hover .stk-icon {
  transform: scale(1.1) rotate(5deg);
}

.stk-card h3 {
  margin: 4px 0 6px;
  font: 800 20px/1.2 Inter, sans-serif;
  color: var(--text);
}

.stk-card p {
  margin: 0;
  color: #9fb0c9;
}

/* ==================== EXPERT ==================== */
.exp1 {
  padding: 60px 0;
}

/* ==================== LEARNING PROMO ==================== */
.learn {
  padding: 30px 0 10px;
}

.learn-wrap {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  gap: 14px;
  align-items: center;
  justify-items: center;
}

.learn-frame {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #273047;
  background: #0b0f1a;
  box-shadow: 0 14px 36px var(--shadow-intense), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: transform 0.3s ease;
}

.learn-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  animation: ken 18s ease-in-out infinite alternate, floaty 8s ease-in-out infinite;
  transform-origin: center;
}

/* Desktop: show wide image, hide square */
.learn-wide {
  display: block;
}

.learn-square {
  display: none;
  max-width: 420px;
}

.learn-cta {
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 980px) {

  /* On smaller screens show square and hide wide */
  .learn-wrap {
    max-width: 520px;
  }

  .learn-wide {
    display: none;
  }

  .learn-square {
    display: block;
  }

  .learn-frame {
    border-radius: 16px;
  }
}


.ex-wrap {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

@media (max-width: 980px) {
  .ex-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.ex-copy h2 {
  margin: 0 0 8px;
  font: 800 36px/1.15 Inter, sans-serif;
}

.ex-sub {
  margin: 0 0 16px;
  color: #9fb0c9;
  font-size: 18px;
}

.name-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.ex-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #273047;
  background: #0b0f1a;
  box-shadow: 0 14px 36px var(--shadow-intense), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease;
}

.ex-frame:hover {
  transform: scale(1.02);
}

.ex-frame img {
  width: 100%;
  display: block;
  transform-origin: center;
  animation: ken 18s ease-in-out infinite alternate, floaty 8s ease-in-out infinite;
}

@keyframes ken {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.12);
  }
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0) scale(1.08);
  }

  50% {
    transform: translateY(-6px) scale(1.1);
  }
}

.ex-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 12px 0 18px;
}

@media (max-width: 520px) {
  .ex-stats {
    grid-template-columns: 1fr;
  }
}

.ex-stat {
  border: 1px solid #273047;
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(180deg, #0f172a, #0b0f1a);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: transform 0.2s ease;
}

.ex-stat:hover {
  transform: translateY(-2px);
}

.ex-stat .num {
  font: 800 40px/1 Inter, sans-serif;
  color: var(--accent);
}

.ex-stat .lbl {
  margin-top: 6px;
  color: #9fb0c9;
}

.ex-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--grad);
  color: #000;
  font: 800 15px/1.1 Inter, sans-serif;
  border: none;
  box-shadow: 0 8px 22px rgba(34, 211, 238, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

.ex-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(34, 211, 238, 0.35);
}

.ex-btn .name-grad {
  color: #000;
  background: none;
  -webkit-background-clip: initial;
}

/* ==================== TESTIMONIALS ==================== */
.tcarousel {
  padding: 50px 0;
}

.tc-title {
  font: 800 32px/1.2 Inter, sans-serif;
  margin-bottom: 6px;
}

.tc-sub {
  color: #9fb0c9;
  margin-bottom: 14px;
}

/* .tc-track {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      padding-bottom: 8px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      scrollbar-color: var(--accent) transparent;
    } */

.tc-track::-webkit-scrollbar {
  height: 6px;
}

.tc-track::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

/* .tc-card {
  flex: 0 0 auto;
  width: 200px;
  scroll-snap-align: start;
  background: linear-gradient(180deg, #0f172a, #0b0f1a);
  border-radius: 14px;
  border: 1px solid #273047;
  box-shadow: 0 6px 14px var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  padding: 8px;
  transition: transform 0.2s ease;
} */

/* .tc-card:hover {
  transform: translateY(-4px);
} */

/* .tc-shot {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #273047;
  aspect-ratio: 9/19.5;
} */

/* .tc-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
} */

/* ==================== PLANS (NORMAL FLOW + SHINE + 3D) ==================== */
.plans {
  padding: 60px 0;
}

.plans-title {
  font: 800 32px/1.2 Inter, sans-serif;
  margin-bottom: 6px;
}

.plans-sub {
  color: #9fb0c9;
  margin-bottom: 22px;
}

.plan-grid {
  display: grid;
  gap: 24px;
  margin-top: 30px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.plan-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid #273047;
  background: radial-gradient(1200px 500px at 10% -10%, rgba(255, 180, 84, 0.06), transparent 45%),
    linear-gradient(180deg, #0f172a, #0b0f1a);
  box-shadow: 0 10px 28px var(--shadow-intense), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  padding: 26px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  /* 3D perspective */
  transform-style: preserve-3d;
  perspective: 1000px;
}

.plan-card:hover {
  transform: translateY(-4px) rotateX(5deg);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

/* SHINING EFFECT FOR PLAN CARDS */
.plan-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--shine);
  transform: rotate(30deg) translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.plan-card.on::before {
  animation: shine 1.2s ease-out;
}

/* Price with gradient and shine */
.price {
  font: 800 30px/1.1 Inter, sans-serif;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  overflow: hidden;
}

.price::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--shine);
  transform: rotate(30deg) translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.plan-card:hover .price::before {
  animation: shine 1.2s ease-out;
}

/* Animated border gradient */
.plan-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: var(--grad);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.plan-card:hover::after {
  opacity: 0.3;
}

.plan-card .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.plan-name {
  font: 800 22px/1.2 Inter, sans-serif;
  color: var(--text);
}

.strike {
  color: #8aa0c6;
  text-decoration: line-through;
  margin-right: 8px;
}

.plan-list {
  margin: 14px 0 16px;
  color: #b7c3da;
}

.plan-list li {
  margin: 6px 0;
  list-style: none;
  position: relative;
  padding-left: 24px;
}

.plan-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.plan-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.plan-btn {
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--grad);
  color: #0b0f1a;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 180, 84, 0.35);
}

.plan-btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ==================== FAQ ==================== */
.faq {
  padding: 60px 0;
}

.faq h2 {
  font: 800 32px/1.2 Inter, sans-serif;
  margin-bottom: 12px;
}

details {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 10px 0;
  background: var(--card);
  transition: border-color 0.2s ease;
}

details:hover {
  border-color: #3a8bd8;
}

summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  outline: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  color: #9fb0c9;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--stroke);
}

/* ==================== FORM ==================== */
#getstart {
  padding: 60px 0;
}

.form-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: start;
}

@media (max-width: 980px) {
  .form-wrap {
    grid-template-columns: 1fr;
  }
}

.form-card {
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, #0f172a, #0b0f1a);
  border-radius: 16px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  grid-row: 1 / 3;
}

@media (max-width: 980px) {
  .form-card {
    grid-row: auto;
  }
}

.form-card h3 {
  font: 800 26px/1.2 Inter, sans-serif;
  margin-bottom: 6px;
}

label {
  display: block;
  margin: 10px 0 6px;
  color: #bfc9de;
  font-weight: 600;
}

select,
input {
  width: 100%;
  background: #0c1426;
  border: 1px solid #2a3552;
  border-radius: 12px;
  color: #e6ecf7;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select:focus,
input:focus {
  border-color: #3a8bd8;
  box-shadow: 0 0 0 3px rgba(58, 139, 216, 0.2);
}

.form-note {
  margin: 8px 0 2px;
  color: #9fb0c9;
  font-size: 14px;
}

.form-btn {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #25d366;
  color: #061016;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.form-btn:focus {
  outline: 2px solid #25d366;
  outline-offset: 2px;
}

.form-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.form-hint {
  color: #93a4c6;
  margin-left: 8px;
  font-size: 14px;
}

/* Right Stats Box */
.right-box {
  border: 1px solid var(--stroke);
  background: #0f172a;
  border-radius: 16px;
  padding: 18px;
}

.right-box h3 {
  font: 800 24px/1.2 Inter, sans-serif;
  margin-bottom: 4px;
}

.right-box p {
  color: #9fb0c9;
  margin-bottom: 14px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.stat {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  background: #0d1527;
  transition: transform 0.2s ease;
}

.stat:hover {
  transform: translateY(-2px);
}

.stat .num {
  font: 800 28px/1 Inter, sans-serif;
  color: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

.stat .lbl {
  color: #9fb0c9;
  margin-top: 4px;
  font-size: 14px;
}

/* Results Navigation Box */
.results-nav-box {
  border: 1px solid var(--stroke);
  background: #0f172a;
  border-radius: 16px;
  padding: 18px;
}

.results-nav-box h3 {
  font: 800 24px/1.2 Inter, sans-serif;
  margin-bottom: 4px;
}

.results-nav-box p {
  color: #9fb0c9;
  margin-bottom: 14px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.result-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--grad);
  color: #0b0f1a;
  font-weight: 800;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.result-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.result-btn:active::before {
  width: 300px;
  height: 300px;
}

.result-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.45);
}

.result-btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.result-icon {
  font-size: 18px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.result-label {
  font: 800 14px/1.3 Inter, sans-serif;
  color: #0b0f1a;
  position: relative;
  z-index: 1;
}

/* Mobile responsive: 2 columns */
/* @media (max-width: 768px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .result-btn {
    padding: 10px 12px;
    font-size: 13px;
  }

  .result-icon {
    font-size: 16px;
  }

  .result-label {
    font-size: 13px;
  }
} */

/* Back to top button */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #000;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.5);
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 999;
}

#backToTop:hover {
  transform: translateY(-5px);
}

#backToTop.show {
  display: flex;
}

/* ==================== FOOTER ==================== */
footer {
  border-top: 1px solid #233149;
  margin-top: 40px;
}

.foot {
  max-width: 1150px;
  margin: 0 auto;
  padding: 16px 18px 26px;
  color: #aeb8cc;
}

.foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.foot-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #2c3a5c;
  border-radius: 10px;
  padding: 8px 12px;
  transition: border-color 0.2s ease;
}

.ig:hover {
  border-color: var(--grad);
}

.ig svg {
  width: 16px;
  height: 16px;
}

.terms {
  color: #9fc5ff;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.terms:hover {
  color: var(--accent);
}

small {
  color: #8292b6;
}

/* ==================== REVEAL ANIMATION ==================== */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.on {
  opacity: 1;
  transform: none;
}

/* ==================== UTILITY CLASSES ==================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.loading {
  pointer-events: none;
  opacity: 0.7;
}

/* ==================== MAGNETIC CURSOR EFFECT ==================== */
.magnetic {
  transition: transform 0.3s ease;
}

/* ==================== DARK MODE SUPPORT REMOVED ==================== */
/* This block has been removed to maintain dark theme on all devices */

/* ===============================
   EXPERT SECTION (BALANCED LAYOUT)
   =============================== */

   .exp1 {
    padding: 80px 20px;
  }
  
  .ex-wrap {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .ex-photo {
    display: flex;
    justify-content: center;
  }
  
  .ex-frame {
    width: 100%;
    max-width: 380px;
    border-radius: 18px;
    overflow: hidden;
  }
  
  .expert-img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  /* TEXT */
  .ex-copy h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
  }
  
  .ex-sub {
    font-size: 18px;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 32px;
  }
  
  /* STATS */
  .ex-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
  }
  
  .ex-stat .num {
    font-size: 36px;
    font-weight: 800;
  }
  
  .ex-stat .lbl {
    font-size: 14px;
    opacity: 0.7;
  }
  
  /* BUTTON */
  .ex-btn {
    font-size: 16px;
    padding: 14px 26px;
    border-radius: 12px;
  }
  
  /* MOBILE */
  @media (max-width: 900px) {
    .ex-wrap {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .ex-frame {
      max-width: 280px;
      margin: auto;
    }
  
    .ex-copy h2 {
      font-size: 32px;
    }
  
    .ex-sub {
      font-size: 16px;
      margin: auto;
    }
  
    .ex-stats {
      justify-content: center;
    }
  }
  