*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ink: #0D0D14;
  --paper: #F9F9F6;
  --orange: #F4511E;
  --orange2: #FF7043;
  --gold: #FFA726;
  --blue: #1A237E;
  --blue2: #283593;
  --green: #00C853;
  --wa: #25D366;
  --muted: #64748B;
  --border: rgba(0,0,0,0.09);
  --radius: 18px;
  /* Improved base font sizes */
  --fs-base: 18px;
  --fs-sm: 15px;
  --fs-xs: 14px;
}

html { scroll-behavior: smooth; font-size: var(--fs-base); }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.7;
  font-size: var(--fs-base);
  padding-bottom: 90px;
}
h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; }
a { text-decoration: none; color: inherit; }

/* NOISE */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.5;
}

/* CTA BUTTON */
.cta-btn {
  position: relative; display: inline-flex; align-items: center;
  justify-content: center; gap: 10px;
  padding: 17px 36px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px;
  border: none; border-radius: 50px; cursor: pointer; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s; z-index: 1; text-decoration: none;
}
.cta-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange2), var(--gold), var(--orange));
  background-size: 300% 300%; z-index: -1;
}
.cta-btn::after {
  content: ''; position: absolute; inset: -3px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  background-size: 300% 300%;
  border-radius: 54px; z-index: -2; filter: blur(12px); opacity: 0.3;
}
.cta-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 50px rgba(244,81,30,0.45); }
.cta-btn .btn-text { color: #fff; position: relative; z-index: 2; }
.cta-btn .btn-arrow {
  width: 28px; height: 28px; background: rgba(255,255,255,0.22);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: transform 0.3s;
}
.cta-btn:hover .btn-arrow { transform: translateX(4px); }
.cta-btn .shimmer {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg); z-index: 3;
}
@keyframes gradShift { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
@keyframes shimmerSweep { 0%{left:-100%} 60%,100%{left:150%} }

.cta-wa {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; background: var(--wa); color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px;
  border-radius: 50px; border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s; text-decoration: none;
}
.cta-wa:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(37,211,102,0.38); }

@keyframes pulseRing { 0%{transform:scale(1);opacity:0.7} 100%{transform:scale(2.4);opacity:0} }
.pulse-wrap { position: relative; display: inline-flex; }
.pulse-wrap::before, .pulse-wrap::after {
  content: ''; position: absolute; inset: -5px; border-radius: 54px;
  background: var(--orange); display: none;
}

/* ANNOUNCEMENT BAR */
.nav-announce {
  background: linear-gradient(90deg, var(--blue) 0%, #3949AB 50%, var(--blue2) 100%);
  color: #fff; font-size: 16px; font-weight: 500;
  padding: 11px 5%; position: sticky; top: 0; z-index: 201;
}
.nav-announce-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto;
}
.nav-announce-dot {
  width: 8px; height: 8px; background: var(--green); border-radius: 50%;
  flex-shrink: 0; animation: livePulse 2s ease-in-out infinite;
}
.nav-announce-cta {
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.4);
  color: #fff; border-radius: 20px; padding: 4px 16px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: background 0.2s; white-space: nowrap;
}
.nav-announce-cta:hover { background: rgba(255,255,255,0.3); }

/* NAV */
nav {
  position: sticky; top: 40px; z-index: 200;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 0 4%; display: flex; align-items: center; justify-content: space-between;
  height: auto; min-height: 90px; gap: 16px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
/* Glowing gradient underline */
nav::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--gold), var(--orange), var(--blue));
  background-size: 300% 100%; animation: navLineShift 6s linear infinite;
}
@keyframes navLineShift { 0%{background-position:0% 0%} 100%{background-position:300% 0%} }

/* NAV CENTER LINKS */
.nav-center {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 600;
  color: var(--ink); padding: 9px 16px; border-radius: 10px;
  text-decoration: none; transition: all 0.2s; white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--orange); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.25s;
}
.nav-link:hover { color: var(--orange); background: rgba(244,81,30,0.06); }
.nav-link:hover::after { transform: scaleX(1); }

/* NAV CTA BUTTON */
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border: none; border-radius: 50px; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700;
  color: #fff; white-space: nowrap;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  background-size: 200% 200%; animation: gradShift 5s ease infinite;
  box-shadow: 0 4px 18px rgba(244,81,30,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-100%) skewX(-20deg);
  animation: btnShimmer 3.5s ease-in-out infinite;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(244,81,30,0.45); }

/* LOGO STYLES */
.nav-logo-link {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
  transition: transform 0.3s ease; cursor: pointer; flex-shrink: 0;
}
.nav-logo-link:hover { transform: scale(1.03); }
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.logo-img {
  height: 110px; width: auto; object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
  transition: filter 0.3s ease;
}
.nav-logo-link:hover .logo-img {
  filter: drop-shadow(0 4px 12px rgba(244,81,30,0.3));
}
.logo-text {
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
}
.logo-tagline {
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: 0.01em; line-height: 1.2;
}
.logo-trust {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 500; color: var(--muted);
}
.logo-trust-dot {
  width: 6px; height: 6px; background: var(--green); border-radius: 50%;
  flex-shrink: 0; animation: livePulse 2.5s ease-in-out infinite;
}
.logo-trust-sep { opacity: 0.4; }

.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-pill {
  display: flex; align-items: center; gap: 8px; padding: 12px 22px;
  border-radius: 40px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 16px;
  cursor: pointer; transition: all 0.2s; border: none; text-decoration: none; white-space: nowrap;
}
.nav-pill.phone { background: #EEF2FF; color: var(--blue); border: 1.5px solid #C7D2FE; }
.nav-pill.phone:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.nav-pill.wa { background: #E8FBF0; color: #1B5E20; border: 1.5px solid #BBF7D0; }
.nav-pill.wa:hover { background: var(--wa); color: #fff; border-color: var(--wa); }

/* TICKER */
.ticker {
  background: linear-gradient(90deg, #0D1B4B 0%, #1A237E 30%, #283593 60%, #0D1B4B 100%);
  background-size: 200% 100%;
  color: #fff; font-size: 15px; font-weight: 600;
  padding: 0; overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
/* fade edges */
.ticker::before, .ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, #0D1B4B, transparent); }
.ticker::after  { right: 0; background: linear-gradient(-90deg, #0D1B4B, transparent); }

.ticker-inner { display: inline-flex; align-items: center; animation: ticker 55s linear infinite; }
.ticker-inner:hover { animation-play-state: paused; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

.ticker-item {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.ticker-item:hover { background: rgba(255,255,255,0.07); }

/* IPU badge items */
.ticker-item.ipu {
  color: #FFD54F;
}
.ticker-item.ipu .ticker-dot { background: #FFD54F; box-shadow: 0 0 6px #FFD54F; }

/* Featured/highlight items */
.ticker-item.hot { color: #FFAB91; }
.ticker-item.hot .ticker-dot { background: #FF7043; box-shadow: 0 0 6px #FF7043; }

.ticker-dot {
  display: inline-block; width: 7px; height: 7px;
  background: var(--gold); border-radius: 50%;
  flex-shrink: 0;
}
.ticker-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(255,255,255,0.15); border-radius: 4px; padding: 2px 7px;
  color: rgba(255,255,255,0.75);
}

/* HERO */
.hero {
  min-height: 96vh;
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(99,40,180,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(244,81,30,0.4) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 60% 10%, rgba(26,35,126,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 30% 90%, rgba(0,200,83,0.18) 0%, transparent 55%),
    linear-gradient(135deg, #06001A 0%, #0D0826 40%, #130520 70%, #050010 100%);
}
/* Subtle dot grid overlay */
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-blob1 {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(244,81,30,0.18) 0%, transparent 65%);
  top: -120px; right: -100px; border-radius: 50%;
  animation: blobFloat 16s ease-in-out infinite; z-index: 1;
}
.hero-blob2 {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(63,81,181,0.22) 0%, transparent 65%);
  bottom: -80px; left: -60px; border-radius: 50%;
  animation: blobFloat 20s ease-in-out infinite reverse; z-index: 1;
}
.hero-blob3 {
  position: absolute; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,167,38,0.12) 0%, transparent 65%);
  top: 50%; left: 30%; border-radius: 50%;
  animation: blobFloat 14s ease-in-out infinite 3s; z-index: 1;
}
@keyframes blobFloat { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(16px,-12px) scale(1.04)} }

.hero-left { padding: 70px 4% 70px 6%; position: relative; z-index: 2; }

/* Headline */
.hero h1 {
  font-size: clamp(36px, 4vw, 62px); font-weight: 800; line-height: 1.12;
  color: #fff; margin-bottom: 22px; letter-spacing: -1px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 .highlight {
  display: block;
  position: relative; min-height: 1.15em;
}

/* Rotating text — carries the gradient itself */
.rotating-text {
  display: inline-block;
  background: linear-gradient(135deg, #FF8A00, #FF4E50, #FFD700);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 5s ease infinite, textIn 0.45s cubic-bezier(0.22,1,0.36,1) both;
}
.rotating-text.exit {
  -webkit-text-fill-color: transparent;
  animation: gradShift 5s ease infinite, textOut 0.35s ease both;
}
@keyframes textIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes textOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to   { opacity: 0; transform: translateY(-20px) scale(0.97); }
}

.hero-h1-sub {
  font-size: clamp(22px, 2.5vw, 38px); font-weight: 600;
  color: rgba(255,255,255,0.7); letter-spacing: -0.3px;
  -webkit-text-fill-color: rgba(255,255,255,0.7);
}

.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.72); line-height: 1.85;
  margin-bottom: 28px; max-width: 520px; animation: fadeUp 0.6s 0.2s ease both;
}
.hero-sub strong { color: #fff; }

/* Urgency timer */
.hero-urgency {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,80,50,0.15); border: 1px solid rgba(255,80,50,0.4);
  border-radius: 14px; padding: 12px 20px; margin-bottom: 28px;
  animation: fadeUp 0.6s 0.25s ease both;
}
.hero-urgency-icon { font-size: 24px; }
.hero-urgency-text { display: flex; flex-direction: column; gap: 2px; }
.hero-urgency-label { font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.hero-urgency-timer { font-size: 22px; font-weight: 800; color: #FF8A80; letter-spacing: 2px; font-family: 'Poppins', monospace; }

/* Trust chips — removed from hero, kept for other sections */
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.trust-chip {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 40px; padding: 9px 16px; font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.88); backdrop-filter: blur(8px); transition: all 0.2s;
}
.trust-chip:hover {
  background: rgba(244,81,30,0.22); border-color: rgba(244,81,30,0.5);
  color: #fff; transform: translateY(-2px);
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; animation: fadeUp 0.6s 0.35s ease both; margin-bottom: 36px; }

/* Social proof */
.hero-social-proof {
  display: flex; align-items: center; gap: 16px;
  animation: fadeUp 0.6s 0.45s ease both;
}
.hero-avatars { display: flex; }
.hero-av {
  width: 40px; height: 40px; border-radius: 50%;
  color: #fff; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2.5px solid rgba(255,255,255,0.25);
  margin-left: -10px; font-family: 'Poppins', sans-serif;
  flex-shrink: 0;
}
.hero-avatars .hero-av:first-child { margin-left: 0; }
.hero-proof-text { font-size: 13.5px; color: rgba(255,255,255,0.75); line-height: 1.5; }
.hero-proof-text strong { color: #fff; }
.hero-stars { font-size: 13px; color: #FFA726; margin-top: 3px; }
.hero-stars span { color: rgba(255,255,255,0.6); font-size: 12px; }

@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* HERO RIGHT — form */
.hero-right {
  padding: 36px 4% 36px 0;
  position: relative; z-index: 2;
  display: flex; justify-content: flex-end; align-items: center;
}
.form-card {
  background: #fff; border-radius: 28px; padding: 0;
  box-shadow: 0 28px 90px rgba(0,0,0,0.55);
  width: 100%; max-width: 620px; position: relative; overflow: hidden;
  animation: cardPulseGlow 3s ease-in-out infinite;
}
.form-card::before {
  content: ''; position: absolute; top: -3px; left: -3px; right: -3px; bottom: -3px;
  background: conic-gradient(from 0deg, #FF8A00, #FF4E50, #7C3AED, #00C8FF, #00E676, #FF8A00);
  border-radius: 31px; z-index: -1;
  animation: spinBorder 4s linear infinite;
}
.form-card::after {
  content: ''; position: absolute; top: 3px; left: 3px; right: 3px; bottom: 3px;
  background: #fff; border-radius: 26px; z-index: -1;
}
@keyframes spinBorder {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes cardPulseGlow {
  0%,100% { box-shadow: 0 28px 90px rgba(0,0,0,0.55), 0 0 0 0 rgba(244,81,30,0); }
  50%     { box-shadow: 0 28px 90px rgba(0,0,0,0.55), 0 0 40px 8px rgba(244,81,30,0.35); }
}

/* Form urgency header */
.form-urgency-header {
  background: linear-gradient(135deg, #C62828, #FF6F00);
  padding: 13px 26px; display: flex; align-items: center; justify-content: space-between;
}
.form-urgency-left {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700; color: #fff;
}
.form-fire { font-size: 20px; }
.form-slots-live {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.2); border-radius: 20px;
  padding: 5px 14px; font-size: 14px; font-weight: 700; color: #fff;
}
.form-slot-dot {
  width: 8px; height: 8px; background: #fff; border-radius: 50%;
}

.form-card-header { padding: 22px 28px 14px; }
.form-header-layout {
  display: flex; align-items: center; gap: 18px;
}

/* Circular countdown timer */
.form-circle-timer {
  position: relative; flex-shrink: 0;
  width: 80px; height: 80px;
}
.form-timer-svg {
  width: 80px; height: 80px;
  transform: rotate(-90deg);
}
.form-timer-track {
  fill: none; stroke: rgba(244,81,30,0.15); stroke-width: 5;
}
.form-timer-ring {
  fill: none;
  stroke: url(#timerGrad); stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 213.6; /* 2π × 34 */
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
}
.form-timer-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: row; gap: 1px;
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: 11px; color: var(--orange); letter-spacing: 0;
  line-height: 1;
}
.form-timer-colon { font-size: 11px; color: var(--orange); margin: 0 1px; }
.form-timer-hh, .form-timer-mm, .form-timer-ss {
  font-size: 11px; font-weight: 800; color: var(--ink);
}

.form-header-text { flex: 1; text-align: left; }
.form-card-badge {
  display: inline-block;
  background: linear-gradient(135deg, #EEF2FF, #FFF0EB);
  color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
  border: 1px solid rgba(26,35,126,0.15);
  text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 8px;
}
.form-card h3 { font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.form-card > .form-card-header > .form-header-layout > .form-header-text > p { font-size: 13px; color: var(--muted); }
.form-card > .form-card-header > .form-header-layout > .form-header-text > p strong { color: var(--orange); }

/* Form body */
#mainForm { padding: 0 28px 24px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 7px; letter-spacing: 0.02em; }
.form-group input, .form-group select {
  width: 100%; height: 52px; border: 2px solid #E2E8F0;
  border-radius: 12px; padding: 0 16px; font-size: 16px;
  font-family: 'Poppins', sans-serif; color: var(--ink); background: #F8FAFC;
  outline: none; transition: all 0.2s; appearance: none;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--orange); background: #fff;
  box-shadow: 0 0 0 4px rgba(244,81,30,0.1);
}
.form-group input.error, .form-group select.error { border-color: #ef4444; background: #FFF5F5; }
/* "Other" text input */
#fcourseOther {
  width: 100%; height: 52px; border: 2px solid #E2E8F0; border-radius: 12px;
  padding: 0 16px; font-size: 16px; font-family: 'Poppins', sans-serif;
  color: var(--ink); background: #F8FAFC; outline: none; transition: all 0.2s;
  margin-top: 8px;
}
#fcourseOther:focus { border-color: var(--orange); background: #fff; box-shadow: 0 0 0 4px rgba(244,81,30,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.submit-btn-main {
  width: 100%; height: 60px; border: none; border-radius: 14px;
  font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 800;
  cursor: pointer; color: #fff; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #FF8A00, #FF4E50);
  transition: transform 0.2s, box-shadow 0.2s; margin-top: 6px;
  box-shadow: 0 8px 30px rgba(244,81,30,0.45);
}
.submit-btn-main:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(244,81,30,0.5); }
.submit-btn-main:disabled { opacity: 0.6; cursor: not-allowed; }

/* Micro-copy trust row */
.form-trust-row {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-size: 12.5px; color: var(--muted); margin-top: 12px; flex-wrap: wrap;
}
.form-trust-row span { display: flex; align-items: center; gap: 4px; }

.status-msg { font-size: 13.5px; text-align: center; margin-top: 10px; padding: 10px 14px; border-radius: 10px; display: none; }
.status-msg.success { background: #D1FAE5; color: #065F46; display: block; }
.status-msg.error { background: #FEE2E2; color: #991B1B; display: block; }
.status-msg.info { background: #DBEAFE; color: #1E40AF; display: block; }
.btn-loading { display: none; width: 20px; height: 20px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto; }
@keyframes spin { to{transform:rotate(360deg)} }

/* SUCCESS */
.success-overlay { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 28px; min-height: 360px; }
.success-overlay.show { display: flex; }
.success-check {
  width: 80px; height: 80px; background: linear-gradient(135deg, var(--green), #00E676);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; animation: popIn 0.5s cubic-bezier(0.68,-0.55,0.265,1.55);
  box-shadow: 0 8px 32px rgba(0,200,83,0.35);
}
@keyframes popIn { 0%{transform:scale(0)} 100%{transform:scale(1)} }
.success-check svg { width: 40px; height: 40px; stroke: #fff; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.success-overlay h3 { font-size: 24px; font-weight: 800; color: #065F46; margin-bottom: 8px; }
.success-overlay p { font-size: 15px; color: var(--muted); margin-bottom: 22px; line-height: 1.75; }

/* URGENCY BOTTOM STRIP */
.bottom-strip {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 250; display: flex; justify-content: center;
  pointer-events: none;
  padding: 0 12px 12px;
}
.bottom-strip-btn {
  pointer-events: auto; width: 100%; max-width: 960px;
  background: linear-gradient(135deg, #FF8A00 0%, #FF4E50 50%, #FF8A00 100%);
  background-size: 300% 300%; animation: urgencyBtnGlow 4s ease infinite;
  color: #fff; border: none; border-radius: 20px;
  padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; font-family: 'Poppins', sans-serif; font-weight: 800;
  box-shadow: 0 8px 32px rgba(255,80,50,0.45), 0 2px 8px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s; cursor: pointer;
  border-top: 1.5px solid rgba(255,255,255,0.22);
}
.bottom-strip-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(255,80,50,0.5); }
.bottom-strip-left { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.bottom-strip-title { font-size: clamp(16px, 2.2vw, 22px); line-height: 1.25; letter-spacing: -0.3px; white-space: nowrap; }
.bottom-strip-subtitle {
  display: flex; align-items: center; gap: 10px;
  font-size: clamp(13px, 1.5vw, 16px); font-weight: 600; opacity: 0.95;
}
.bottom-strip-cta {
  flex-shrink: 0;
  background: rgba(255,255,255,0.22); border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50px; padding: 12px 28px;
  font-size: clamp(15px, 1.8vw, 19px); font-weight: 800; white-space: nowrap;
  letter-spacing: 0.01em; transition: background 0.2s;
}
.bottom-strip-btn:hover .bottom-strip-cta { background: rgba(255,255,255,0.32); }
@keyframes urgencyBtnGlow { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
.urgency-timer {
  font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 800;
  background: rgba(255,255,255,0.18); padding: 5px 16px; border-radius: 8px;
  letter-spacing: 2px; border: 1px solid rgba(255,255,255,0.28);
}
.slot-dots { display: flex; gap: 5px; align-items: center; }
.slot-dot { width: 10px; height: 10px; border-radius: 50%; background: #fff; transition: all 0.3s; flex-shrink: 0; }
.slot-dot.empty { background: rgba(255,255,255,0.3); }

/* STATS */
.stats-bar {
  background: var(--blue); padding: 32px 6%;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
}
.stat-item { text-align: center; padding: 30px 20px; border-right: 1px solid rgba(255,255,255,0.1); color: #fff; }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Poppins', sans-serif; font-size: clamp(36px, 4.5vw, 56px); font-weight: 900;
  background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  background-size: 300% 300%; animation: statGlow 3s ease infinite;
  line-height: 1; margin-bottom: 10px; display: inline-block; letter-spacing: -1px;
}
.stat-label { font-size: 15px; opacity: 0.78; font-weight: 600; letter-spacing: 0.02em; }
@keyframes statGlow { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }

/* SECTION */
.section { padding: 84px 6%; }
.section.light { background: linear-gradient(135deg, #F0F4FF 0%, #FFF7F4 100%); }
.section-eyebrow {
  font-family: 'Poppins', sans-serif; font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 10px; display: flex; align-items: center; gap: 9px;
}
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--orange); border-radius: 2px; }
.section-title { font-size: clamp(28px, 3.2vw, 46px); font-weight: 800; color: var(--ink); margin-bottom: 16px; letter-spacing: -0.5px; line-height: 1.15; }
.section-sub { font-size: 16px; color: var(--muted); max-width: 580px; line-height: 1.85; }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }
.step-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: 24px;
  padding: 36px 28px; text-align: center; transition: all 0.3s; cursor: default;
}
.step-card:hover { transform: translateY(-8px); box-shadow: 0 22px 56px rgba(0,0,0,0.09); border-color: transparent; }
.step-num {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff; border-radius: 50%; font-family: 'Poppins', sans-serif;
  font-size: 24px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 8px 22px rgba(244,81,30,0.28);
  transition: transform 0.3s;
}
.step-card:hover .step-num { transform: scale(1.1) rotate(5deg); }
.step-card h4 { font-size: 19px; font-weight: 700; margin-bottom: 12px; color: var(--ink); }
.step-card p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* COURSES GRID */
.courses-section { background: #fff; }
.courses-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px; margin-top: 40px;
}
.course-card {
  background: linear-gradient(135deg, #F0F4FF, #FFF7F4);
  border: 1.5px solid var(--border); border-radius: 18px;
  padding: 24px 18px; text-align: center;
  transition: all 0.25s; cursor: default;
}
.course-card:hover {
  border-color: var(--orange); transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(244,81,30,0.12);
  background: linear-gradient(135deg, #FFF0EB, #FFFDE7);
}
.course-icon { font-size: 34px; margin-bottom: 12px; display: block; }
.course-name { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.course-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* COLLEGES CAROUSEL */
.carousel-section { overflow: hidden; background: var(--paper); padding: 84px 0; }
.carousel-header { text-align: center; padding: 0 6%; margin-bottom: 50px; }
.colleges-track-wrap { overflow: hidden; position: relative; padding: 0 6%; }
.colleges-track-wrap::before, .colleges-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.colleges-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--paper), transparent); }
.colleges-track-wrap::after { right: 0; background: linear-gradient(-90deg, var(--paper), transparent); }
.colleges-track { display: flex; gap: 18px; animation: slideTrack 60s linear infinite; width: max-content; }
.colleges-track:hover { animation-play-state: paused; }
.college-logo-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: 16px;
  padding: 24px 28px; display: flex; flex-direction: column; align-items: center;
  gap: 12px; min-width: 170px; transition: all 0.25s; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06); text-decoration: none; color: inherit;
}
.college-logo-card:hover { border-color: var(--blue); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(26,35,126,0.15); }
.college-abbr {
  width: 62px; height: 62px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff; font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; text-align: center;
  letter-spacing: -0.5px; line-height: 1.2; box-shadow: 0 4px 14px rgba(26,35,126,0.18);
}
.college-abbr.orange { background: linear-gradient(135deg, var(--orange), var(--gold)); box-shadow: 0 4px 14px rgba(244,81,30,0.18); }
.college-abbr.green { background: linear-gradient(135deg, #00897B, #00C853); box-shadow: 0 4px 14px rgba(0,200,83,0.18); }
.college-abbr.purple { background: linear-gradient(135deg, #6A1B9A, #9C27B0); }
.college-abbr.teal { background: linear-gradient(135deg, #00695C, #00BFA5); }
.college-name-text { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; color: var(--ink); text-align: center; line-height: 1.3; }
.college-type-tag { font-size: 12px; color: var(--muted); font-weight: 500; }
@keyframes slideTrack { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* GGSIPU SECTION */
.ipu-section { background: linear-gradient(135deg, #EEF2FF, #F0F9FF); }
.ipu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-top: 40px; }
.ipu-card {
  background: #fff; border: 1.5px solid rgba(26,35,126,0.15);
  border-radius: 18px; padding: 20px 22px;
  display: flex; align-items: flex-start; gap: 15px;
  transition: all 0.25s;
}
.ipu-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(26,35,126,0.1); }
.ipu-icon {
  width: 48px; height: 48px; border-radius: 13px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.ipu-card-content h4 { font-family: 'Poppins', sans-serif; font-size: 15.5px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.ipu-card-content p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.ipu-card-content a { font-size: 12px; color: var(--blue); font-weight: 600; text-decoration: underline; margin-top: 5px; display: inline-block; }
.ipu-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff; padding: 11px 22px; border-radius: 40px;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700;
  margin-top: 32px; margin-bottom: 8px;
}

/* TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 50px; }
.testi-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: 24px;
  padding: 30px; transition: all 0.3s; position: relative; overflow: hidden;
}
.testi-card::before {
  content: '"'; position: absolute; top: -8px; right: 18px;
  font-size: 120px; font-family: 'Poppins', sans-serif; color: var(--orange);
  opacity: 0.055; line-height: 1;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 22px 56px rgba(0,0,0,0.09); border-color: transparent; }
.stars { color: #F59E0B; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.testi-footer { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  color: #fff; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}
.testi-name { font-weight: 700; font-size: 15px; }
.testi-course { font-size: 12.5px; color: var(--muted); margin-top: 3px; }

/* FAQ — two columns */
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; margin-top: 40px; }
.faq-col { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden; background: #fff; transition: border-color 0.2s; }
.faq-item:hover { border-color: rgba(244,81,30,0.28); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15.5px; color: var(--ink);
  background: #fff; transition: background 0.2s; user-select: none;
}
.faq-q:hover { background: #FFFAF8; }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; transition: transform 0.25s; font-weight: 300; min-width: 26px;
}
.faq-icon.open { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
.faq-a.open { max-height: 260px; padding: 0 22px 20px; }
.faq-a p { font-size: 15px; color: var(--muted); line-height: 1.8; }

/* CTA STRIP */
.cta-strip {
  background: linear-gradient(135deg, var(--blue) 0%, #283593 50%, #1A237E 100%);
  padding: 84px 6%; text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(244,81,30,0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(255,184,0,0.15) 0%, transparent 60%);
}
.cta-strip-inner { position: relative; z-index: 1; }
.cta-strip h2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 800; margin-bottom: 14px; letter-spacing: -0.5px; }
.cta-strip p { font-size: 17px; opacity: 0.78; margin-bottom: 36px; line-height: 1.7; }
.cta-strip-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; background: rgba(255,255,255,0.12);
  color: #fff; border: 2px solid rgba(255,255,255,0.35);
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px;
  border-radius: 50px; cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.cta-phone-btn:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.6); }

/* PROOF POPUP */
.proof-popup {
  position: fixed; bottom: 96px; left: 18px;
  background: #fff; border: 1.5px solid var(--border); border-radius: 18px;
  padding: 15px 18px; box-shadow: 0 8px 36px rgba(0,0,0,0.13);
  font-size: 13px; max-width: 256px; z-index: 999;
  transform: translateX(-300px) scale(0.96);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
  opacity: 0; pointer-events: none;
}
.proof-popup.show { transform: translateX(0) scale(1); opacity: 1; }
.proof-popup-inner { display: flex; align-items: center; gap: 12px; }
.proof-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  color: #fff; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}
.proof-text strong { display: block; font-weight: 600; color: var(--ink); font-size: 13px; }
.proof-text span { color: var(--muted); font-size: 11.5px; }
.proof-live { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--green); font-weight: 600; margin-top: 4px; }
.proof-live-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: livePulse 3s infinite; }

/* MOBILE STICKY */
.mobile-sticky {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 10px 14px; z-index: 200; gap: 9px;
}
.ms-call {
  flex: 1; background: #EEF2FF; color: var(--blue); border: 2px solid #C7D2FE;
  border-radius: 12px; padding: 13px; font-weight: 700; font-size: 14px;
  text-align: center; cursor: pointer; font-family: 'Poppins', sans-serif;
}
.ms-form {
  flex: 2; border: none; border-radius: 12px; padding: 13px;
  font-weight: 700; font-size: 15px; text-align: center; cursor: pointer;
  font-family: 'Poppins', sans-serif; color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  background-size: 200% 200%; animation: gradShift 6s ease infinite;
  position: relative; overflow: hidden;
}

/* SEO KEYWORDS SECTION */
.seo-section {
  background: var(--blue); padding: 52px 6%; text-align: center;
}
.seo-section h2 {
  font-size: clamp(20px, 2vw, 28px); font-weight: 800; color: #fff; margin-bottom: 20px; opacity: 0.92;
}
.keyword-cloud {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 1100px; margin: 0 auto;
}
.keyword-tag {
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 40px;
  padding: 8px 18px; font-size: 14px; font-weight: 500;
  transition: all 0.2s; cursor: default;
}
.keyword-tag:hover {
  background: rgba(255,255,255,0.2); color: #fff;
  border-color: rgba(255,255,255,0.4); transform: translateY(-2px);
}
.keyword-tag.highlight-kw {
  background: rgba(244,81,30,0.25); border-color: rgba(244,81,30,0.5); color: #FFCBB3;
}

/* FOOTER */
footer {
  background: linear-gradient(180deg, #060D1F 0%, #0B1120 60%, #050810 100%);
  color: #CBD5E1; position: relative; overflow: hidden;
}
footer::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 28px 28px;
}
.footer-wave { line-height: 0; background: var(--paper); }
.footer-wave svg { display: block; width: 100%; height: 60px; }

.footer-inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding: 64px 6% 48px;
  position: relative; z-index: 1;
}

/* Brand column */
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo-link { display: inline-flex; transition: transform 0.3s; }
.footer-logo-link:hover { transform: scale(1.04); }
.footer-logo-img {
  height: 90px; width: auto; object-fit: contain;
  background: #fff;
  border-radius: 16px;
  padding: 10px 16px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
  transition: filter 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.footer-logo-link:hover .footer-logo-img {
  filter: drop-shadow(0 6px 20px rgba(244,81,30,0.3));
  box-shadow: 0 8px 32px rgba(244,81,30,0.25);
}
.footer-desc {
  font-size: 15px; line-height: 1.85; color: #94A3B8; max-width: 340px;
}
.footer-desc strong { color: #E2E8F0; }

/* Contact buttons */
.footer-contact-btns { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 18px; border-radius: 12px; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: all 0.2s; width: fit-content;
}
.footer-contact-btn.phone {
  background: rgba(26,35,126,0.35); color: #A5B4FC;
  border: 1px solid rgba(99,102,241,0.3);
}
.footer-contact-btn.phone:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.footer-contact-btn.wa {
  background: rgba(37,211,102,0.12); color: #6EE7B7;
  border: 1px solid rgba(37,211,102,0.25);
}
.footer-contact-btn.wa:hover { background: #25D366; color: #fff; border-color: #25D366; }
.footer-contact-btn.email {
  background: rgba(244,81,30,0.12); color: #FDBA74;
  border: 1px solid rgba(244,81,30,0.25);
}
.footer-contact-btn.email:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* Social icons */
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s; text-decoration: none; color: #94A3B8;
}
.social-btn:hover { transform: translateY(-4px); border-color: transparent; }
.social-btn.wa-btn:hover  { background: #25D366; color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,0.35); }
.social-btn.insta-btn:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; box-shadow: 0 8px 20px rgba(220,39,67,0.35); }
.social-btn.yt-btn:hover  { background: #FF0000; color: #fff; box-shadow: 0 8px 20px rgba(255,0,0,0.35); }
.social-btn.fb-btn:hover  { background: #1877F2; color: #fff; box-shadow: 0 8px 20px rgba(24,119,242,0.35); }
.social-btn.tw-btn:hover  { background: #000; color: #fff; box-shadow: 0 8px 20px rgba(0,0,0,0.4); }
.social-btn.li-btn:hover  { background: #0A66C2; color: #fff; box-shadow: 0 8px 20px rgba(10,102,194,0.35); }

/* Footer columns */
.footer-col { display: flex; flex-direction: column; gap: 0; }
.footer-col h5 {
  font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 800;
  color: #fff; margin-bottom: 20px; letter-spacing: 0.02em;
  position: relative; padding-bottom: 12px;
}
.footer-col h5::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 2px;
}
.footer-col a {
  display: flex; align-items: center; gap: 8px;
  font-size: 14.5px; line-height: 1; color: #94A3B8;
  margin-bottom: 13px; transition: all 0.2s; cursor: pointer;
  text-decoration: none;
}
.footer-col a:hover { color: #fff; transform: translateX(4px); }

/* Address card */
.footer-address-card {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 16px; margin-bottom: 14px;
  font-size: 14px; line-height: 1.8; color: #94A3B8;
}
.footer-address-card strong { color: #E2E8F0; display: block; margin-bottom: 4px; }
.footer-addr-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.footer-hours {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: #6EE7B7; font-weight: 600; margin-bottom: 14px;
}
.footer-hours-dot {
  width: 8px; height: 8px; background: #00E676; border-radius: 50%;
  box-shadow: 0 0 8px #00E676; animation: livePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.footer-map-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 10px; font-size: 14px; font-weight: 600;
  background: rgba(244,81,30,0.15); color: #FDBA74;
  border: 1px solid rgba(244,81,30,0.3); text-decoration: none;
  transition: all 0.2s;
}
.footer-map-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* Bottom bar */
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  padding: 20px 6%;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 14px; color: #64748B;
  position: relative; z-index: 1;
}
.footer-bottom-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-bottom-sep { opacity: 0.4; }
.footer-bottom-right { display: flex; gap: 20px; }
.footer-bottom-right a { color: #64748B; text-decoration: none; transition: color 0.2s; font-size: 14px; }
.footer-bottom-right a:hover { color: #fff; }
/* RESPONSIVE */
@media(max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 0; }
  .hero-left { padding: 48px 5% 24px; text-align: center; }
  .hero-urgency { justify-content: center; }
  .hero h1 .highlight { display: inline; min-height: unset; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-right { padding: 0 5% 60px; justify-content: center; }
  .form-card { max-width: 100%; }
  .steps-grid { grid-template-columns: 1fr; gap: 18px; }
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; padding: 48px 5% 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-logo-img { height: 80px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-bottom-right { gap: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .mobile-sticky { display: flex; }
  body { padding-bottom: 160px; }
  .ipu-grid { grid-template-columns: 1fr 1fr; }
  .courses-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .faq-cols { grid-template-columns: 1fr; gap: 10px; }
  /* Nav responsive */
  .nav-announce { top: 0; font-size: 14px; padding: 9px 4%; }
  nav { top: 40px; min-height: 84px; }
  .nav-center { display: none; }
  .logo-img { height: 80px; }
  .nav-right { gap: 8px; }
  .nav-pill { padding: 10px 16px; font-size: 14px; }
  .nav-cta { padding: 11px 20px; font-size: 15px; }
  /* Carousel */
  .carousel-section { padding: 56px 0; }
  .carousel-header { margin-bottom: 32px; }
}

@media(max-width: 640px) {
  :root { --fs-base: 16px; }
  .ipu-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-pill.phone { display: none; }

  /* Hero mobile */
  .hero { min-height: auto; }
  .hero-left { padding: 28px 5% 16px; }
  .hero h1 { font-size: clamp(28px, 8vw, 40px); letter-spacing: -0.5px; margin-bottom: 16px; }
  .hero h1 .highlight { display: inline; min-height: unset; }
  .hero-h1-sub { font-size: clamp(18px, 5vw, 26px); }
  .hero-sub { font-size: 16px; margin-bottom: 20px; }
  .hero-urgency { padding: 10px 14px; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
  .hero-urgency-timer { font-size: 16px; letter-spacing: 1px; }
  .hero-urgency-label { font-size: 11px; }
  .hero-btns { gap: 10px; margin-bottom: 24px; }
  .cta-btn { padding: 14px 22px; font-size: 15px; }
  .cta-wa { padding: 13px 20px; font-size: 15px; }
  .hero-social-proof { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .hero-proof-text { text-align: center; font-size: 13px; }
  .hero-av { width: 36px; height: 36px; font-size: 11px; }

  /* Form mobile */
  .hero-right { padding: 0 4% 56px; }
  .form-card { border-radius: 20px; }
  .form-card::before { border-radius: 23px; }
  .form-card::after { border-radius: 18px; }
  .form-urgency-header { padding: 10px 16px; }
  .form-urgency-left { font-size: 13px; }
  .form-slots-live { font-size: 12px; padding: 4px 10px; }
  .form-card-header { padding: 14px 16px 10px; }
  .form-header-layout { gap: 12px; }
  .form-circle-timer { width: 68px; height: 68px; }
  .form-timer-svg { width: 68px; height: 68px; }
  .form-timer-hh, .form-timer-mm, .form-timer-ss, .form-timer-colon { font-size: 10px; }
  .form-card h3 { font-size: 18px; }
  .form-card-badge { font-size: 10px; padding: 4px 10px; }
  #mainForm { padding: 0 14px 18px; }
  .form-group label { font-size: 13px; }
  .form-group input, .form-group select { height: 48px; font-size: 15px; }
  .submit-btn-main { height: 54px; font-size: 16px; }
  .form-trust-row { font-size: 12px; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }

  /* Nav mobile */
  .nav-announce { font-size: 12.5px; padding: 8px 3%; }
  .nav-announce-inner { gap: 6px; }
  nav { top: 36px; min-height: 68px; padding: 0 3%; gap: 8px; }
  .logo-img { height: 62px; }
  .nav-center { display: none; }
  .nav-right { gap: 5px; }
  .nav-pill.wa { padding: 9px 14px; font-size: 13px; }
  .nav-cta { padding: 9px 15px; font-size: 13px; gap: 5px; }
  .nav-cta svg { display: none; }

  /* Bottom strip mobile */
  .bottom-strip { padding: 0 8px 8px; }
  .bottom-strip-btn { padding: 12px 14px; border-radius: 14px; gap: 8px; }
  .bottom-strip-title { white-space: normal; font-size: 13px; }
  .bottom-strip-subtitle { font-size: 11px; }
  .bottom-strip-cta { padding: 9px 14px; font-size: 13px; }
  .slot-dots { display: none; }

  /* Sections mobile */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 36px 5% 28px; }
  .footer-logo-img { height: 70px; }
  .footer-contact-btns { gap: 8px; }
  .footer-contact-btn { font-size: 13px; padding: 10px 14px; }
  .footer-bottom { padding: 16px 5%; flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-bottom-right { gap: 12px; flex-wrap: wrap; }
  .section { padding: 56px 5%; }
  .section-title { font-size: clamp(24px, 6vw, 36px); }
  .steps-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .course-card { padding: 18px 12px; }
  .course-icon { font-size: 28px; }
  .course-name { font-size: 13px; }
  .course-desc { font-size: 12px; }
  .ipu-grid { grid-template-columns: 1fr; }
  .faq-cols { grid-template-columns: 1fr; }
  .keyword-cloud { gap: 8px; }
  .keyword-tag { font-size: 12px; padding: 6px 12px; }
  .testi-grid { grid-template-columns: 1fr; }
  .mobile-sticky { display: flex; }
  .ms-call { font-size: 13px; }
  .ms-form { font-size: 14px; }
}

/* CWV: reduce layout shift with explicit sizes */
img { max-width: 100%; height: auto; }
