/* =========================================================
   SATHEE JEE — AdWords landing page styles
   Framework: Bootstrap 5.3 + Muli + Font Awesome 6
   ========================================================= */

:root {
  --ssc-primary: #2563eb;
  --ssc-primary-dark: #1e40af;
  --ssc-accent: #0ea5e9;
  --ssc-success: #198754;
  --ssc-warning: #fee613;
  --ssc-danger: #ea0500;
  --ssc-dark: #1e293b;
  --ssc-muted: #64748b;
  --ssc-bg-soft: #f8fafc;
  --ssc-bg-alt: #eef4f9;
  --ssc-border: #e2e8f0;
}

.jee-landing {
  font-family: 'Muli', 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ssc-dark);
  padding-top: 70px; /* compensate for fixed navbar */
  background: #fff;
  overflow-x: hidden;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.jee-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 2px solid transparent;
  line-height: 1.2;
  cursor: pointer;
}
.jee-btn--primary {
  background: linear-gradient(135deg, var(--ssc-primary) 0%, var(--ssc-primary-dark) 100%);
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(37, 99, 235, .3);
}
.jee-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, .45);
  color: #fff !important;
}
.jee-btn--ghost {
  background: transparent;
  border-color: #cbd5e1;
  color: var(--ssc-dark) !important;
}
.jee-btn--ghost:hover {
  border-color: var(--ssc-primary);
  color: var(--ssc-primary) !important;
  background: #fff;
}
.jee-btn--xl {
  padding: 18px 40px;
  font-size: 18px;
  border-radius: 12px;
}

/* ─── HERO ───────────────────────────────────────────────── */
.jee-hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef4f9 0%, #ffffff 100%);
}
.jee-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(37, 99, 235, .18) 0%, transparent 40%),
    radial-gradient(circle at 15% 85%, rgba(14, 165, 233, .12) 0%, transparent 40%);
  z-index: 0;
}
.jee-hero > .container { position: relative; z-index: 1; }
.jee-hero__eyebrow {
  display: inline-block;
  background: rgba(37, 99, 235, .08);
  color: var(--ssc-primary);
  border: 1px solid rgba(37, 99, 235, .2);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.jee-hero__headline {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.jee-hero__subheadline {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.5;
  color: var(--ssc-muted);
  margin-bottom: 32px;
  max-width: 560px;
}
.jee-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.jee-hero__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.jee-hero__trust li {
  font-size: 14px;
  color: var(--ssc-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.jee-hero__trust i { color: var(--ssc-success); }

.jee-hero__card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 30px 80px -20px rgba(15, 23, 42, .25);
  border: 1px solid var(--ssc-border);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform .4s ease;
}
.jee-hero__card:hover { transform: perspective(1000px) rotateY(0) rotateX(0); }
.jee-hero__card-header {
  font-size: 13px;
  font-weight: 600;
  color: var(--ssc-muted);
  margin-bottom: 10px;
}
.jee-hero__card-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fef2f2;
  color: var(--ssc-danger);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}
.jee-hero__live-dot {
  width: 8px;
  height: 8px;
  background: var(--ssc-danger);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.4); }
  100% { opacity: 1; transform: scale(1); }
}
.jee-hero__card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--ssc-dark);
}
.jee-hero__card-meta {
  font-size: 13px;
  color: var(--ssc-muted);
  margin-bottom: 20px;
}
.jee-hero__card-stats {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--ssc-border);
  border-bottom: 1px solid var(--ssc-border);
  margin-bottom: 20px;
}
.jee-hero__card-stats > div { flex: 1; }
.jee-hero__card-stats strong {
  display: block;
  font-size: 20px;
  color: var(--ssc-primary);
}
.jee-hero__card-stats span {
  font-size: 12px;
  color: var(--ssc-muted);
}

/* ─── TRUST STRIP ────────────────────────────────────────── */
.jee-trust-strip {
  background: #fff;
  border-top: 1px solid var(--ssc-border);
  border-bottom: 1px solid var(--ssc-border);
  padding: 24px 0;
}
.jee-trust-strip__title {
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ssc-muted);
  margin-bottom: 12px;
}
.jee-trust-strip__logos {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.jee-trust-strip__logos img { height: 40px; opacity: .8; }
.jee-trust-strip__partner {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--ssc-dark);
  padding: 8px 16px;
  border: 1px solid var(--ssc-border);
  border-radius: 6px;
}

/* ─── STATS BAND ─────────────────────────────────────────── */
.jee-stats {
  background: linear-gradient(135deg, var(--ssc-primary) 0%, var(--ssc-primary-dark) 100%);
  color: #fff;
  padding: 40px 0;
}
.jee-stats__num {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.jee-stats__label {
  font-size: 13px;
  opacity: .9;
  margin-top: 6px;
  letter-spacing: .5px;
}

/* ─── SECTION SCAFFOLD ───────────────────────────────────── */
.jee-section { padding: 80px 0; }
.jee-section--alt { background: var(--ssc-bg-soft); }
.jee-section--dark {
  background: #0f172a;
  color: #fff;
}
.jee-section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.jee-section__header h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--ssc-dark);
}
.jee-section--dark .jee-section__header h2 { color: #fff; }
.jee-section__header p {
  font-size: 17px;
  color: var(--ssc-muted);
  line-height: 1.5;
}
.jee-section--dark .jee-section__header p { color: #cbd5e1; }

/* ─── FEATURE CARDS ──────────────────────────────────────── */
.jee-feature {
  background: #fff;
  padding: 28px 24px;
  border-radius: 14px;
  border: 1px solid var(--ssc-border);
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.jee-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, .18);
  border-color: transparent;
}
.jee-feature__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.jee-feature h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ssc-dark);
}
.jee-feature p {
  font-size: 14px;
  color: var(--ssc-muted);
  line-height: 1.55;
  margin: 0;
}

/* ─── EXAM CARDS ─────────────────────────────────────────── */
.jee-exam-card {
  display: block;
  background: #fff;
  border: 1px solid var(--ssc-border);
  border-radius: 12px;
  padding: 22px 18px;
  height: 100%;
  text-decoration: none !important;
  color: var(--ssc-dark);
  position: relative;
  transition: all .25s ease;
  overflow: hidden;
}
.jee-exam-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ssc-primary), var(--ssc-accent));
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 0;
}
.jee-exam-card:hover::before { opacity: 1; }
.jee-exam-card:hover { color: #fff; border-color: transparent; transform: translateY(-3px); box-shadow: 0 16px 32px -12px rgba(37, 99, 235, .35); }
.jee-exam-card > * { position: relative; z-index: 1; }
.jee-exam-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(37, 99, 235, .1);
  color: var(--ssc-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  transition: background .25s, color .25s;
}
.jee-exam-card:hover .jee-exam-card__icon { background: rgba(255, 255, 255, .2); color: #fff; }
.jee-exam-card__name {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 2px;
}
.jee-exam-card__full {
  font-size: 13px;
  font-weight: 600;
  opacity: .75;
  margin-bottom: 8px;
}
.jee-exam-card__tag {
  font-size: 12px;
  color: var(--ssc-muted);
  transition: color .25s;
}
.jee-exam-card:hover .jee-exam-card__tag { color: rgba(255, 255, 255, .85); }
.jee-exam-card__arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .25s ease, transform .25s ease;
  font-size: 14px;
}
.jee-exam-card:hover .jee-exam-card__arrow { opacity: 1; transform: translateX(0); }

/* ─── HOW IT WORKS / STEPS ───────────────────────────────── */
.jee-step {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  position: relative;
  border: 2px dashed var(--ssc-border);
}
.jee-step__num {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ssc-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 6px 16px rgba(37, 99, 235, .4);
}
.jee-step__icon {
  font-size: 38px;
  color: var(--ssc-primary);
  margin: 12px 0 18px;
}
.jee-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.jee-step p {
  color: var(--ssc-muted);
  font-size: 15px;
  margin: 0;
}

/* ─── MOBILE APP ─────────────────────────────────────────── */
.jee-app__title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
}
.jee-app__subtitle {
  font-size: 17px;
  color: #cbd5e1;
  margin-bottom: 28px;
  line-height: 1.5;
}
.jee-app__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.jee-app__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: #e2e8f0;
}
.jee-app__features li span {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(37, 99, 235, .2);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}
.jee-app__stores {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.jee-app__store img {
  height: 48px;
  transition: transform .2s ease;
}
.jee-app__store:hover img { transform: translateY(-2px); }
.jee-app__qr {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 8px 16px 8px 8px;
  border-radius: 10px;
  color: var(--ssc-dark);
}
.jee-app__qr img { height: 56px; width: 56px; }
.jee-app__qr span {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.jee-app-phone {
  position: relative;
  display: inline-block;
}
.jee-app-phone__frame {
  width: 280px;
  max-width: 100%;
  border-radius: 40px;
  overflow: hidden;
  border: 10px solid #1e293b;
  background: #1e293b;
  box-shadow: 0 40px 100px -20px rgba(37, 99, 235, .5);
}
.jee-app-phone__frame img {
  width: 100%;
  display: block;
  border-radius: 30px;
}
.jee-app-phone__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #1e293b;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.jee-testimonial {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  height: 100%;
  border: 1px solid var(--ssc-border);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.jee-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, .15);
}
.jee-testimonial__stars {
  color: var(--ssc-warning);
  margin-bottom: 14px;
  font-size: 14px;
}
.jee-testimonial__stars i + i { margin-left: 2px; }
.jee-testimonial blockquote {
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
  margin: 0 0 20px;
  flex: 1;
  font-style: normal;
  quotes: "“" "”";
}
.jee-testimonial blockquote::before { content: open-quote; color: var(--ssc-primary); font-size: 24px; margin-right: 2px; }
.jee-testimonial blockquote::after { content: close-quote; color: var(--ssc-primary); font-size: 24px; }
.jee-testimonial__who {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--ssc-border);
}
.jee-testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.jee-testimonial__who strong {
  display: block;
  font-size: 15px;
  color: var(--ssc-dark);
}
.jee-testimonial__who span {
  font-size: 13px;
  color: var(--ssc-muted);
}

/* ─── PRICING ────────────────────────────────────────────── */
.jee-section--pricing {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #2563eb 100%);
  color: #fff;
}
.jee-pricing { text-align: center; }
.jee-pricing__tag {
  display: inline-block;
  background: var(--ssc-warning);
  color: #1e293b;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.jee-pricing h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
}
.jee-pricing__sub {
  font-size: 17px;
  color: #cbd5e1;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.5;
}
.jee-pricing__list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px 24px;
  text-align: left;
}
.jee-pricing__list li {
  color: #e2e8f0;
  font-size: 15px;
  padding: 6px 0;
}
.jee-pricing__list i {
  color: #4ade80;
  margin-right: 10px;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.jee-faq { display: flex; flex-direction: column; gap: 12px; }
.jee-faq__item {
  background: #fff;
  border: 1px solid var(--ssc-border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.jee-faq__item[open] { box-shadow: 0 8px 20px -10px rgba(15, 23, 42, .15); }
.jee-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ssc-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.jee-faq__item summary::-webkit-details-marker { display: none; }
.jee-faq__item summary i {
  color: var(--ssc-primary);
  transition: transform .25s ease;
}
.jee-faq__item[open] summary i { transform: rotate(180deg); }
.jee-faq__a {
  padding: 0 24px 20px;
}
.jee-faq__a p {
  color: var(--ssc-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ─── FINAL CTA ──────────────────────────────────────────── */
.jee-final-cta {
  background: linear-gradient(135deg, var(--ssc-primary) 0%, var(--ssc-accent) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.jee-final-cta h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.jee-final-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, .9);
  max-width: 560px;
  margin: 0 auto 32px;
}
.jee-final-cta .jee-btn--primary {
  background: #fff;
  color: var(--ssc-primary) !important;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .25);
}
.jee-final-cta .jee-btn--primary:hover {
  background: var(--ssc-warning);
  color: #1e293b !important;
}
.jee-final-cta__contact {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.jee-final-cta__contact a {
  color: #fff !important;
  text-decoration: none !important;
  opacity: .9;
  font-size: 15px;
  font-weight: 500;
}
.jee-final-cta__contact a:hover { opacity: 1; text-decoration: underline !important; }

/* ─── STICKY MOBILE CTA ──────────────────────────────────── */
.jee-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 999;
  background: linear-gradient(135deg, var(--ssc-primary), var(--ssc-primary-dark));
  color: #fff !important;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none !important;
  box-shadow: 0 10px 30px rgba(37, 99, 235, .5);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .jee-hero { padding: 60px 0 70px; }
  .jee-section { padding: 60px 0; }
  .jee-section__header { margin-bottom: 36px; }
  .jee-app__stores { justify-content: flex-start; }
}

@media (max-width: 575px) {
  .jee-hero { padding: 40px 0 60px; }
  .jee-hero__ctas { flex-direction: column; align-items: stretch; }
  .jee-hero__ctas .jee-btn { width: 100%; }
  .jee-hero__trust { gap: 10px; }
  .jee-section { padding: 48px 0; }
  .jee-stats { padding: 28px 0; }
  .jee-stats .col-6 { margin-bottom: 14px; }
  .jee-landing { padding-bottom: 80px; /* room for sticky CTA */ }
  .jee-app__stores { flex-direction: column; align-items: flex-start; }
}

/* ─── DARK MODE overrides ────────────────────────────────── */
[data-theme="dark"] .jee-landing {
  background: #0a0f1a;
  color: #e2e8f0;
}
[data-theme="dark"] .jee-hero {
  background: linear-gradient(135deg, #0a0f1a 0%, #111827 100%);
}
[data-theme="dark"] .jee-hero__headline {
  background: linear-gradient(135deg, #f1f5f9 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
[data-theme="dark"] .jee-hero__card,
[data-theme="dark"] .jee-feature,
[data-theme="dark"] .jee-testimonial,
[data-theme="dark"] .jee-exam-card,
[data-theme="dark"] .jee-step,
[data-theme="dark"] .jee-faq__item {
  background: #111827;
  border-color: #1e293b;
  color: #e2e8f0;
}
[data-theme="dark"] .jee-feature h3,
[data-theme="dark"] .jee-testimonial__who strong,
[data-theme="dark"] .jee-step h3,
[data-theme="dark"] .jee-faq__item summary,
[data-theme="dark"] .jee-exam-card__name,
[data-theme="dark"] .jee-hero__card h3 { color: #f1f5f9; }
[data-theme="dark"] .jee-trust-strip { background: #0a0f1a; border-color: #1e293b; }
[data-theme="dark"] .jee-trust-strip__partner { color: #f1f5f9; border-color: #1e293b; }
[data-theme="dark"] .jee-section--alt { background: #0f172a; }
[data-theme="dark"] .jee-section__header h2 { color: #f1f5f9; }
