/* ==================== ROOT & RESET ==================== */
:root {
  --bg:            #f0f5ff;
  --bg2:           #ffffff;
  --text:          #0d1b2e;
  --muted:         #5a6a85;
  --stroke:        #ccdaf5;
  --card:          #ffffff;
  --grad:          linear-gradient(135deg, #1a6fd4 0%, #38bdf8 100%);
  --grad-deep:     linear-gradient(135deg, #0f4fa8 0%, #1a6fd4 60%, #38bdf8 100%);
  --accent:        #1a6fd4;
  --accent2:       #0f4fa8;
  --accent-light:  #e8f0fe;
  --success:       #22c55e;
  --error:         #ef4444;
  --shadow:        rgba(26, 111, 212, 0.10);
  --shadow-intense:rgba(26, 111, 212, 0.18);
  --shine:         linear-gradient(90deg, transparent, rgba(255,255,255,0.45), 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(255, 255, 255, 0.90);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--stroke);
  box-shadow: 0 2px 16px rgba(26, 111, 212, 0.07);
}

.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;
  max-height: 55px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.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: var(--accent2);
}

.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: 4px;
}

.nav-links a {
  color: #2d3d55;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--accent);
  background: var(--accent-light);
  outline: none;
}

.nav-links a.btn.secondary {
  padding: 10px 16px;
}

.hamb {
  display: none;
  cursor: pointer;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 8px 10px;
  background: transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hamb:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

.hamb span {
  display: block;
  width: 22px;
  height: 2px;
  background: #2d3d55;
  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(255, 255, 255, 0.98);
  border-top: 1px solid var(--stroke);
  border-bottom: 2px solid var(--accent);
  display: none;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(26, 111, 212, 0.12);
}

.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 var(--stroke);
  color: #2d3d55;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-menu a:hover,
.mobile-menu a:focus {
  background: var(--accent-light);
  color: var(--accent);
}

/* ==================== HERO ==================== */
.hero {
  padding: 70px 0;
  background:
    radial-gradient(900px 500px at 90% 0%, rgba(26, 111, 212, 0.12), transparent 65%),
    radial-gradient(600px 400px at -5% 60%, rgba(56, 189, 248, 0.10), transparent 60%),
    var(--bg);
  position: relative;
  overflow: hidden;
}

/* Subtle animated background orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,111,212,0.13) 0%, transparent 70%);
  animation: float 18s infinite ease-in-out;
  pointer-events: none;
}

@keyframes float {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-15px, -20px); }
  50%  { transform: translate(10px, -10px); }
  75%  { transform: translate(20px,  10px); }
  100% { transform: translate(0, 0); }
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1.5px solid rgba(26, 111, 212, 0.30);
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-light);
  margin-bottom: 12px;
  margin-right: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 6px rgba(26, 111, 212, 0.15); }
  50%       { box-shadow: 0 0 18px rgba(26, 111, 212, 0.35); }
}

h1 {
  font-family: Poppins, system-ui, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 5.5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--text);
}

.hl2 {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { filter: hue-rotate(0deg); }
  50%       { filter: hue-rotate(15deg); }
}

.video-card { margin: 16px 0; }

.yt-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: 0 10px 30px var(--shadow);
  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: var(--muted);
  margin: 12px 0 18px;
  font-size: clamp(14px, 2.8vw, 17px);
  font-weight: 600;
}

.kpis b {
  color: var(--accent);
  font-size: 1.15em;
}

.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 6px 0 16px;
}

/* ==================== BUTTONS ==================== */
.btn {
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  border: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn.primary {
  background: var(--grad);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(26, 111, 212, 0.35);
}

.btn.primary:hover {
  transform: scale(1.04) translateY(-1px);
  box-shadow: 0 8px 28px rgba(26, 111, 212, 0.50);
}

.btn.secondary {
  background: #ffffff;
  border: 1.5px solid var(--stroke);
  color: var(--accent);
  box-shadow: 0 2px 8px var(--shadow);
}

.btn.secondary:hover {
  transform: scale(1.03) translateY(-1px);
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(26, 111, 212, 0.18);
}

.panel {
  border: 1.5px solid var(--stroke);
  background: var(--accent-light);
  border-radius: 14px;
  padding: 12px 16px;
  color: var(--accent2);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: max-content;
}

/* ==================== BRAND TICKER ==================== */
.bnc {
  padding: 32px 0 18px;
}

.bnc h3 {
  color: var(--muted);
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bnc-band {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, #ffffff, #f0f5ff);
  border-radius: 22px;
  padding: 10px 6px;
  box-shadow: 0 2px 12px var(--shadow);
}

.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: 50px;
  padding: 0 16px;
  min-width: 130px;
  border-radius: 14px;
  font: 800 13px/1 Inter, sans-serif;
  border: 1px solid transparent;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.bnc-item:hover { transform: scale(1.06); }

@keyframes marq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand-idp        { background: #1a6fd4; color: #fff; border-color: #2a80e8; }          /* electric blue */
.brand-mt         { background: linear-gradient(135deg, #0f4fa8, #1a6fd4); color: #fff; } /* deep → mid blue */
.brand-biz        { background: linear-gradient(135deg, #0e3d8a, #1558c0); color: #fff; } /* navy → royal blue */
.brand-leadsguru  { background: #38bdf8; color: #0c2340; }                               /* sky blue */
.brand-gyangrowth { background: linear-gradient(135deg, #0891b2, #38bdf8); color: #fff; } /* teal → sky */
.brand-richind    { background: linear-gradient(135deg, #4f46e5, #818cf8); color: #fff; } /* indigo */
.brand-forever    { background: linear-gradient(135deg, #1a6fd4, #60a5fa); color: #fff; } /* blue → light blue */

/* ==================== FEATURES ==================== */
.stacked {
  padding: 70px 0;
}

.stk-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 18px;
  text-align: center;
}

.stk-title {
  margin: 0 0 8px;
  font: 800 36px/1.15 Inter, sans-serif;
  color: var(--text);
}

.stk-sub {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
}

.stk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 36px;
  text-align: left;
}

.stk-card {
  position: relative;
  padding: 28px 24px;
  border-radius: 20px;
  border: 1.5px solid var(--stroke);
  background: var(--card);
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.stk-card:hover {
  transform: translateY(-6px) rotateX(3deg);
  box-shadow: 0 14px 40px var(--shadow-intense);
  border-color: rgba(26, 111, 212, 0.40);
}

/* 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 on hover */
.stk-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: var(--grad);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.stk-card:hover::after { opacity: 0.20; }

.stk-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-light);
  border: 1.5px solid rgba(26, 111, 212, 0.20);
  font-size: 22px;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}

.stk-card:hover .stk-icon {
  transform: scale(1.12) 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: var(--muted);
  font-size: 15px;
}

/* ==================== EXPERT ==================== */
.exp1 {
  padding: 70px 0;
  background: linear-gradient(135deg, #eef4ff 0%, #f8fbff 100%);
}

.ex-wrap {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

@media (max-width: 980px) {
  .ex-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.ex-copy h2 {
  margin: 0 0 10px;
  font: 800 38px/1.15 Inter, sans-serif;
  color: var(--text);
}

.ex-sub {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.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: 2px solid var(--stroke);
  background: var(--bg);
  box-shadow: 0 18px 50px var(--shadow-intense);
  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.10); }
}

.ex-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 16px 0 20px;
}

@media (max-width: 520px) {
  .ex-stats { grid-template-columns: 1fr; }
}

.ex-stat {
  border: 1.5px solid var(--stroke);
  border-radius: 16px;
  padding: 18px;
  background: var(--card);
  box-shadow: 0 4px 14px var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ex-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow-intense);
}

.ex-stat .num {
  font: 800 42px/1 Inter, sans-serif;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ex-stat .lbl {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.ex-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 14px;
  background: var(--grad);
  color: #fff;
  font: 800 15px/1.1 Inter, sans-serif;
  border: none;
  box-shadow: 0 8px 24px rgba(26, 111, 212, 0.30);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

.ex-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(26, 111, 212, 0.45);
}

.ex-btn .name-grad {
  color: #fff;
  background: none;
  -webkit-background-clip: initial;
}

/* ==================== TESTIMONIALS ==================== */
.tcarousel {
  padding: 70px 0;
}

.tc-title {
  font: 800 34px/1.2 Inter, sans-serif;
  margin-bottom: 6px;
  color: var(--text);
  text-align: center;
}

.tc-sub {
  color: var(--muted);
  margin-bottom: 20px;
  text-align: center;
  font-size: 16px;
}

.tc-track::-webkit-scrollbar { height: 6px; }

.tc-track::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

/* ==================== 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: 1.5px solid var(--stroke);
  background: var(--card);
  box-shadow: 0 14px 40px var(--shadow-intense);
  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) {
  .learn-wrap   { max-width: 520px; }
  .learn-wide   { display: none; }
  .learn-square { display: block; }
  .learn-frame  { border-radius: 16px; }
}

/* ==================== PLANS ==================== */
.plans {
  padding: 70px 0;
  background: linear-gradient(180deg, #f0f5ff 0%, #ffffff 100%);
}

.plans-title {
  font: 800 34px/1.2 Inter, sans-serif;
  margin-bottom: 6px;
  color: var(--text);
  text-align: center;
}

.plans-sub {
  color: var(--muted);
  margin-bottom: 22px;
  text-align: center;
  font-size: 16px;
}

.plan-grid {
  display: grid;
  gap: 24px;
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.plan-card {
  position: relative;
  border-radius: 20px;
  border: 1.5px solid var(--stroke);
  background: var(--card);
  box-shadow: 0 6px 24px var(--shadow);
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.plan-card:hover {
  transform: translateY(-6px) rotateX(3deg);
  box-shadow: 0 18px 48px var(--shadow-intense);
  border-color: rgba(26, 111, 212, 0.40);
}

/* 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 */
.price {
  font: 800 32px/1.1 Inter, sans-serif;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  overflow: hidden;
}

/* Animated border gradient */
.plan-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: var(--grad);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.plan-card:hover::after { opacity: 0.15; }

.plan-card .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.plan-name {
  font: 800 23px/1.2 Inter, sans-serif;
  color: var(--text);
}

.strike {
  color: #a0aec0;
  text-decoration: line-through;
  margin-right: 8px;
  font-size: 15px;
}

.plan-list {
  margin: 16px 0 18px;
  color: var(--muted);
}

.plan-list li {
  margin: 8px 0;
  list-style: none;
  position: relative;
  padding-left: 26px;
  font-size: 15px;
}

.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: 12px 20px;
  border-radius: 10px;
  background: var(--grad);
  color: #ffffff;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  font-size: 15px;
}

.plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 111, 212, 0.38);
}

.plan-btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ==================== FAQ ==================== */
.faq {
  padding: 70px 0;
}

.faq h2 {
  font: 800 34px/1.2 Inter, sans-serif;
  margin-bottom: 14px;
  color: var(--text);
  text-align: center;
}

details {
  border: 1.5px solid var(--stroke);
  border-radius: 14px;
  padding: 16px 20px;
  margin: 12px 0;
  background: var(--card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 10px var(--shadow);
}

details:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 18px var(--shadow-intense);
}

summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  outline: none;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

summary::after {
  content: '+';
  font-size: 20px;
  color: var(--accent);
  font-weight: 700;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

details[open] summary::after {
  transform: rotate(45deg);
}

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

details p {
  color: var(--muted);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--stroke);
  font-size: 15px;
  line-height: 1.7;
}

/* ==================== FORM ==================== */
#getstart {
  padding: 70px 0;
  background: linear-gradient(135deg, #eef4ff 0%, #f8fbff 100%);
}

.form-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 980px) {
  .form-wrap { grid-template-columns: 1fr; }
}

.form-card {
  border: 1.5px solid var(--stroke);
  background: var(--card);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  grid-row: 1 / 3;
  box-shadow: 0 8px 32px var(--shadow);
}

@media (max-width: 980px) {
  .form-card { grid-row: auto; }
}

.form-card h3 {
  font: 800 26px/1.2 Inter, sans-serif;
  margin-bottom: 6px;
  color: var(--text);
}

label {
  display: block;
  margin: 12px 0 6px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}

select,
input {
  width: 100%;
  background: #f7faff;
  border: 1.5px solid var(--stroke);
  border-radius: 12px;
  color: var(--text);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-size: 15px;
  font-family: inherit;
}

select option {
  background: #ffffff;
  color: var(--text);
}

select:focus,
input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 111, 212, 0.15);
  background: #ffffff;
}

.form-note {
  margin: 8px 0 4px;
  color: var(--muted);
  font-size: 14px;
}

.form-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 12px;
  background: #25d366;
  color: #ffffff;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  font-size: 15px;
  font-family: inherit;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.30);
}

.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.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: var(--muted);
  margin-left: 4px;
  font-size: 13px;
}

/* Right Stats Box */
.right-box {
  border: 1.5px solid var(--stroke);
  background: var(--card);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 6px 24px var(--shadow);
}

.right-box h3 {
  font: 800 22px/1.2 Inter, sans-serif;
  margin-bottom: 4px;
  color: var(--text);
}

.right-box p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 15px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.stat {
  border: 1.5px solid var(--stroke);
  border-radius: 14px;
  padding: 16px 10px;
  text-align: center;
  background: var(--accent-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px var(--shadow-intense);
}

.stat .num {
  font: 800 26px/1 Inter, sans-serif;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: pulseText 2s infinite;
}

@keyframes pulseText {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.78; }
}

.stat .lbl {
  color: var(--muted);
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
}

/* Results Navigation Box */
.results-nav-box {
  border: 1.5px solid var(--stroke);
  background: var(--card);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 6px 24px var(--shadow);
}

.results-nav-box h3 {
  font: 800 22px/1.2 Inter, sans-serif;
  margin-bottom: 4px;
  color: var(--text);
}

.results-nav-box p {
  color: var(--muted);
  margin-bottom: 14px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.result-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 12px;
  background: var(--grad);
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  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.25);
  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 6px 20px rgba(26, 111, 212, 0.40);
}

.result-btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.result-icon {
  font-size: 16px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.result-label {
  font: 800 13px/1.3 Inter, sans-serif;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

/* ==================== FLOATING BUTTONS ==================== */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 52px;
  height: 52px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(26, 111, 212, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1.5px solid var(--stroke);
}

.float-btn:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 10px 28px rgba(26, 111, 212, 0.30);
}

.float-btn img {
  width: 30px;
  height: 30px;
}

/* 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: #fff;
  box-shadow: 0 4px 16px rgba(26, 111, 212, 0.40);
  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 var(--stroke);
  margin-top: 40px;
  background: #ffffff;
}

.foot {
  max-width: 1150px;
  margin: 0 auto;
  padding: 20px 18px 28px;
  color: var(--muted);
}

.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: 1.5px solid var(--stroke);
  border-radius: 10px;
  padding: 8px 12px;
  transition: border-color 0.2s ease, background 0.2s ease;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.ig:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.ig svg {
  width: 16px;
  height: 16px;
}

.terms {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.2s ease;
  font-size: 14px;
}

.terms:hover { color: var(--accent2); }

small { color: var(--muted); font-size: 14px; }

/* ==================== REVEAL ANIMATION ==================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s 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;
}

/* ==================== HERO BANNER IMAGE ==================== */
/* Override learn-frame defaults specifically for the hero banner */
.hero-banner-frame {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 20px;
  overflow: visible;
  max-width: 900px;
  margin: 16px auto 0;
  position: relative;
}

.hero-banner-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;        /* show the full image — no cropping */
  border-radius: 20px;
  animation: heroBannerFloat 6s ease-in-out infinite;  /* gentle float only */
  transform-origin: center bottom;
  box-shadow:
    0 20px 60px rgba(26, 111, 212, 0.18),
    0 6px 20px rgba(26, 111, 212, 0.10);
  display: block;
}

@keyframes heroBannerFloat {
  0%, 100% { transform: translateY(0px) scale(1);     }
  50%       { transform: translateY(-8px) scale(1.005); }
}

/* On mobile: a bit tighter */
@media (max-width: 640px) {
  .hero-banner-frame {
    border-radius: 14px;
    margin-top: 12px;
  }
  .hero-banner-frame img {
    border-radius: 14px;
  }
}

/* Keep learn-wide hidden on mobile even if it has hero-banner-frame class */
@media (max-width: 980px) {
  .learn-wide.hero-banner-frame {
    display: none;
  }
}