:root {
  --bg: #0a0d14;
  --surface: #12161f;
  --surface-strong: #1a1f2e;
  --surface-card: #1e2534;
  --border: #2a3245;
  --text: #e8edf8;
  --text-secondary: #a8b4cc;
  --muted: #6b7a99;
  --purple: #a78bfa;
  --blue: #60a5fa;
  --yellow: #fbbf24;
  --orange: #fb923c;
  --green: #34d399;
  --red: #f87171;
  --accent: #6366f1;
  --accent-glow: rgba(99, 102, 241, 0.25);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.3);
  --radius: 20px;
  --radius-sm: 12px;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes btn-pulse {
  0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.6); transform: scale(1); }
  70% { box-shadow: 0 0 0 15px rgba(251, 191, 36, 0); transform: scale(1.03); }
  100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); transform: scale(1); }
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.logo-track.reverse {
  animation: scroll-reverse 40s linear infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-zoom.active {
  opacity: 1;
  transform: scale(1);
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0b0d17;
  background-image: 
    radial-gradient(circle at 10% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 24px 24px;
  background-attachment: fixed;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar-wrapper {
  padding: 24px;
  display: flex;
  justify-content: center;
}

.navbar {
  width: 100%;
  max-width: 1300px;
  background: var(--surface);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  box-shadow: var(--shadow-sm);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links {
  display: flex;
  margin-left: auto;
  margin-right: 32px;
}

.nav-links.hidden-mobile {
  display: flex;
}

@media (max-width: 1100px) {
  .nav-links.hidden-mobile {
    display: none !important;
  }
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
}

.fynd-logo-img {
  height: clamp(60px, 8vw, 110px);
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.edge-logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
}

.fynd-logo-img:hover {
  transform: scale(1.05);
}

.brand-icon {
  width: 28px;
  height: 28px;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav-link:hover, .nav-links a:hover {
  color: var(--yellow) !important;
  opacity: 1;
  transform: translateY(-1px);
}

.nav-links a {
  transition: all 0.2s;
}

.btn-nav {
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--yellow);
  color: #000;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}

.btn-nav:hover {
  transform: translateY(-2px);
  background: #ffb800;
}

.btn-login-yellow {
  padding: 8px 18px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.88rem;
  background: var(--yellow);
  color: #000;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
}

.btn-login-yellow:hover {
  transform: translateY(-2px);
  background: #ffb800;
}

.btn-yellow {
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  background: var(--yellow);
  color: #000;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.2);
  animation: btn-pulse 3s infinite;
}

.btn-yellow:hover {
  transform: translateY(-4px) scale(1.02);
  background: #ffb800;
  box-shadow: 0 12px 32px rgba(251, 191, 36, 0.4);
}

.btn-glow {
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.4), 0 0 40px rgba(251, 191, 36, 0.2);
}

.btn-glow:hover {
  box-shadow: 0 0 25px rgba(251, 191, 36, 0.6), 0 0 50px rgba(251, 191, 36, 0.3);
  transform: translateY(-2px);
}

.user-menu {
  position: relative;
}

.btn-user-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-user-menu:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.4);
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  width: 170px;
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.user-dropdown.hidden {
  display: none !important;
}

.dropdown-item {
  padding: 12px 18px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: var(--surface-strong);
}

/* ===== LOGO COMPONENT ===== */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  position: relative;
  width: 44px;
  height: 44px;
}

.logo-handle {
  position: absolute;
  bottom: -2px;
  left: -2px;
  width: 14px;
  height: 20px;
  background: var(--purple);
  border-radius: 20px;
  transform: rotate(45deg);
  transform-origin: center;
  z-index: 1;
}

.logo-ring {
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: conic-gradient(from -45deg, var(--blue) 0%, var(--yellow) 30%, var(--orange) 55%, var(--purple) 80%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.logo-ring::after {
  content: '';
  position: absolute;
  inset: 6px;
  background: var(--surface);
  border-radius: 50%;
}

.logo-rupee {
  position: relative;
  z-index: 3;
  color: #FFa533;
  font-weight: 800;
  font-size: 1.15rem;
  margin-top: 1px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-budget {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 2px;
}

.logo-bottom {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.logo-fynd {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 0.45rem;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.5px;
  padding-bottom: 3px;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 32px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124, 92, 255, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(58, 120, 255, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 90% 60%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(124, 92, 255, 0.15);
  border: 1px solid rgba(124, 92, 255, 0.3);
  color: var(--purple-light);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--purple-light), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(124, 92, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(124, 92, 255, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--purple-light), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.hero-visual {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.float-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  min-width: 220px;
  animation: floatCard 4s ease-in-out infinite;
}

.float-card span {
  font-size: 1.6rem;
}

.float-card b {
  display: block;
  font-weight: 600;
}

.float-card small {
  color: var(--muted);
}

.card-2 {
  animation-delay: 1.5s;
}

.card-3 {
  animation-delay: 3s;
}

@keyframes floatCard {

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

  50% {
    transform: translateY(-8px);
  }
}

/* ===== FORM SECTION ===== */
#form-section {
  padding: 40px 24px;
  position: relative;
}

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

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-header p {
  color: var(--muted);
  font-size: 1rem;
}

input,
select,
textarea {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.15);
}

select option {
  background: var(--surface-strong);
  color: var(--text);
}

textarea {
  resize: vertical;
  min-height: 80px;
}

/* Checkbox group */
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s;
  user-select: none;
}

.checkbox-item:hover {
  border-color: var(--yellow);
  color: var(--text);
}

.checkbox-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-item:has(input:checked) {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #000;
}

/* Range slider */
.budget-slider-wrap {
  margin-bottom: 24px;
}

.budget-slider-wrap label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: block;
  margin-bottom: 10px;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.range-input {
  width: 100%;
  accent-color: var(--purple);
  height: 6px;
  cursor: pointer;
}

.slider-value {
  text-align: center;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--purple-light);
  font-weight: 600;
}

.generate-btn {
  font-size: 1.05rem;
  padding: 16px 36px;
}

.btn-loader {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.hidden {
  display: none !important;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== NEW LAYOUT: PREMIUM HERO ===== */
.premium-hero {
  padding: 50px 24px 30px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: flex-start;
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #a0aec0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-desc {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 90%;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-outline-light {
  background: var(--surface-card);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 14px 28px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  margin-top: 0;
}

.feature-box h4 {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

.trust-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 40px;
  max-width: 400px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.trust-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.trust-number {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 24px;
}

.trust-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.trust-tip {
  font-size: 0.85rem;
  color: #a0aec0;
  font-style: italic;
  display: block;
}

/* ===== CAROUSEL SECTION ===== */
.carousel-section {
  padding: 30px 24px;
  background: rgba(255,255,255,0.02);
  text-align: center;
}

.carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-title {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 12px;
}

.carousel-desc {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1rem;
}

.logo-track {
  display: flex;
  gap: 40px;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-box {
  width: 160px;
  height: 80px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  transition: background 0.3s ease;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: all 0.3s ease;
}

/* ===== ACTION BRIDGE ===== */
.action-bridge {
  padding: 40px 24px;
  background: var(--bg);
  text-align: center;
}

.bridge-container {
  max-width: 800px;
  margin: 0 auto;
}

.bridge-content h2 {
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 16px;
}

.bridge-content p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ===== INPUTS SECTION ===== */
.inputs-section {
  padding: 60px 24px 40px;
  background: var(--bg);
}

.inputs-header {
  max-width: 1200px;
  margin: 0 auto 40px;
  text-align: center;
}

.inputs-header h2 {
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 12px;
}

.inputs-header p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.premium-grid.app-column.trust-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* ===== FOOTER SECTION ===== */
.main-footer {
  background: var(--surface);
  padding: 40px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.footer-logo-desktop {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-desc {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-contact a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-links {
  display: contents;
}

.footer-col h4 {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}


/* ===== MAIN APP — TWO COLUMN LAYOUT ===== */
#main-app {
  background: transparent;
  padding: 10px 24px 40px;
  min-height: 80vh;
}

.app-columns {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 32px;
  align-items: start;
}

/* Column headers */
.col-header {
  margin-bottom: 24px;
}

.col-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.col-sub {
  font-size: 0.88rem;
  color: var(--muted);
}

/* LEFT COLUMN — input form */
.col-inputs {
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(124,92,255,0.3) transparent;
}

.col-inputs::-webkit-scrollbar { width: 4px; }
.col-inputs::-webkit-scrollbar-thumb { background: rgba(124,92,255,0.3); border-radius: 4px; }

/* Single form */
.feature-box {
  background: var(--surface);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-box:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.sf-section {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  margin-bottom: 40px;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}

.sf-section:hover {
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.sf-group input, .sf-group select {
  transition: all 0.3s ease;
}

.sf-group input:focus, .sf-group select:focus {
  transform: scale(1.01);
  box-shadow: 0 0 15px var(--accent-glow);
}

.sf-section-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.sf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sf-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Override global input styles for light form */
.single-form input,
.single-form select,
.single-form textarea {
  background: var(--surface-strong);
  border: none;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.875rem;
  transition: box-shadow 0.2s;
}

.single-form input:focus,
.single-form select:focus,
.single-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--blue);
}

.single-form select option {
  background: var(--surface-strong);
  color: var(--text);
}

.single-form .checkbox-group {
  grid-template-columns: 1fr 1fr;
}

.single-form .checkbox-item {
  background: var(--surface-strong);
  border: 2px solid transparent;
  color: var(--text);
  font-size: 0.82rem;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.single-form .checkbox-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
}

.single-form .checkbox-item:has(input:checked) {
  border-color: var(--blue);
  background: rgba(96, 165, 250, 0.15);
  color: var(--blue);
}

.single-form .checkbox-item:has(input:checked):hover {
  background: rgba(96, 165, 250, 0.25);
  color: #ffffff !important;
}

.single-form .budget-slider-wrap {
  margin-bottom: 0;
}

.single-form .budget-slider-wrap label {
  color: var(--text-secondary);
}

.single-form .slider-labels {
  color: var(--muted);
}

.single-form .slider-value {
  color: var(--blue);
}

.sf-textarea {
  width: 100%;
  resize: vertical;
  min-height: 72px;
}

.sf-actions {
  padding: 4px 0 8px;
}

.sf-actions .btn-yellow {
  width: 100%;
  text-align: center;
  font-size: 1.05rem;
  padding: 16px 24px;
  border-radius: 100px;
}

/* RIGHT COLUMN — report preview */
.col-report {
  min-width: 0;
}

.report-empty-state {
  background: var(--surface);
  border: none;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  box-shadow: var(--shadow-sm);
}

.report-empty-state .empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.report-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: 16px;
  padding: 10px 16px;
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}

.report-actions-bar .report-logo-bar {
  color: var(--text);
  font-weight: 800;
}



.report-action-btns {
  display: flex;
  gap: 10px;
}


/* ===== REPORT CONTROLS (outside paper) ===== */
#report-section {
  padding: 30px 24px 40px;
  background: #f0f2f5;
  overflow-x: auto;
}

.report-controls {
  max-width: 860px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.report-logo-bar {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.report-actions {
  display: flex;
  gap: 12px;
}

/* ===== REPORT PAPER (white document) ===== */
.report-paper {
  max-width: 860px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  color: var(--text);
}

/* Each page */
.rp-page {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);
  padding: 24px 28px;
  margin-bottom: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

/* Top bar */
.rp-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #1e3a8a;
  padding-bottom: 10px;
  margin-bottom: 24px;
}

.rp-brand {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1e3a8a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rp-version {
  font-size: 0.78rem;
  color: #4e67b0;
  font-weight: 600;
}

/* Title block */
.rp-title-block {
  background: #f0f4ff;
  border: 1px solid #c7d7ff;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 16px;
}

.rp-main-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #1e3a8a;
  line-height: 1.2;
  text-align: center;
}

/* Intro paragraph */
.rp-intro {
  font-size: 0.86rem;
  color: #444;
  line-height: 1.65;
  margin-bottom: 20px;
}

/* Student info table */
.rp-info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
  font-size: 0.87rem;
}

.rp-info-table td {
  padding: 10px 14px;
  border: 1px solid #d0d8f0;
}

.rp-label {
  font-weight: 700;
  background: #f4f6fb;
  color: #334;
  width: 18%;
  white-space: nowrap;
}

.rp-info-table td:not(.rp-label) {
  color: #222;
  font-weight: 500;
}

/* Metric boxes */
.rp-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.rp-metric-box {
  border: 1px solid #c7d7ff;
  border-radius: 8px;
  padding: 16px 18px;
  background: #f8faff;
}

.rp-metric-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #4e67b0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.rp-metric-value {
  font-size: 1.7rem;
  font-weight: 800;
  color: #1e3a8a;
  line-height: 1;
  margin-bottom: 4px;
}

.rp-region {
  font-size: 1.3rem;
}

.rp-metric-sub {
  font-size: 0.77rem;
  color: #666;
}

/* Section titles */
.rp-section-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 16px;
  padding-bottom: 6px;
  border-bottom: 2px solid #e0e8ff;
}

/* Charts row (page 1) */
.rp-charts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 8px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.rp-chart-box {
  background: #f8faff;
  border: 1px solid #dce6ff;
  border-radius: 8px;
  padding: 14px;
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.rp-chart-box canvas {
  max-width: 100%;
  display: block;
}

.rp-chart-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: #4e67b0;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
  text-align: center;
}

/* Progress bars */
.rp-bars-row {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rp-bar-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #334;
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.rp-bar-label span {
  font-weight: 700;
  color: #1e3a8a;
}

.rp-bar-track {
  height: 10px;
  background: #e4eaff;
  border-radius: 100px;
  overflow: hidden;
}

.rp-bar-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1.2s ease;
  width: 0%;
}

.rp-bar-purple {
  background: linear-gradient(90deg, #7c5cff, #3a78ff);
}

/* Radar summary text */
.rp-radar-summary {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.6;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #dce6ff;
}

/* Page 2 — insights charts */
.rp-insights-charts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.rp-half {
  background: #f8faff;
  border: 1px solid #dce6ff;
  border-radius: 8px;
  padding: 12px;
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.rp-half canvas {
  max-width: 100%;
  display: block;
}

.rp-salary-wrap {
  background: #f8faff;
  border: 1px solid #dce6ff;
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 8px;
  overflow: hidden;
  box-sizing: border-box;
}

.rp-uni-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.rp-uni-card {
  background: #fff;
  border: 1px solid #cbd5e1;
  padding: 8px;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rp-uni-name {
  font-size: 11px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 3px;
  line-height: 1.2;
}

.rp-uni-detail {
  font-size: 10px;
  color: #64748b;
  margin-bottom: 1px;
}

.rp-uni-detail strong {
  color: #334155;
}

/* Ranking table */
.rp-rank-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
  margin-bottom: 22px;
}

.rp-rank-table th {
  background: #1e3a8a;
  color: #fff;
  padding: 10px 12px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.rp-rank-table td {
  padding: 9px 12px;
  border-bottom: 1px solid #e0e8ff;
  color: #222;
  font-weight: 500;
}

.rp-rank-table tr:nth-child(even) td {
  background: #f8faff;
}

.rp-rank-table tr:hover td {
  background: #eef3ff;
}

/* Counsellor boxes */
.rp-counsel-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.rp-counsel-box {
  border: 1px solid #c7d7ff;
  border-radius: 8px;
  padding: 16px 18px;
  background: #f8faff;
}

.rp-counsel-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.rp-counsel-box p {
  font-size: 0.84rem;
  color: #333;
  line-height: 1.65;
}

/* Page footer */
.rp-page-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #d0d8f0;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #7a88c0;
  font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
  .app-columns {
    grid-template-columns: 1fr;
  }
  
  .col-inputs {
    position: relative;
    top: 0;
    max-height: none;
    overflow-y: visible;
  }
}

@media (max-width: 900px) {
  .hero-visual {
    display: none;
  }

  .rp-charts-row {
    grid-template-columns: 1fr;
  }

  .rp-insights-charts {
    grid-template-columns: 1fr;
  }

  .rp-counsel-row {
    grid-template-columns: 1fr;
  }

  .rp-metrics {
    grid-template-columns: 1fr;
  }
  
  .rp-uni-list {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-right {
    justify-content: center;
  }

  .premium-grid.app-columns {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer-brand-wrap {
    justify-content: center;
    margin-bottom: 15px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .navbar-wrapper {
    padding: 16px 12px;
  }

  .navbar {
    padding: 10px 12px;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .btn-nav {
    display: none !important;
  }

  .nav-brand {
    font-size: 1.15rem;
  }

  .fynd-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transform: none;
    margin: 0;
  }

  #hero {
    padding: 50px 16px 30px;
  }

  .form-container, .sf-section {
    padding: 16px 12px;
  }

  .form-grid, .sf-grid {
    grid-template-columns: 1fr;
  }

  .checkbox-group, .single-form .checkbox-group {
    grid-template-columns: 1fr 1fr;
  }

  .rp-page {
    padding: 16px 14px;
  }
  
  .report-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .report-actions {
    flex-direction: column;
  }
  
  .report-actions-bar {
    flex-direction: column;
    align-items: stretch;
  }
  
  .report-action-btns {
    flex-direction: column;
  }
  
  .report-action-btns button {
    width: 100%;
  }

  .rp-uni-list {
    grid-template-columns: 1fr;
  }
  
  .login-box, .reports-box {
    width: 90%;
    padding: 24px;
    margin: 20px auto;
  }
}

.report-hero-card {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.15), rgba(58, 120, 255, 0.1));
  border: 1px solid rgba(124, 92, 255, 0.25);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.report-hero-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.2), transparent);
}

.report-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.report-profile {
  flex: 1;
  min-width: 200px;
}

.report-profile h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.report-profile p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(124, 92, 255, 0.18);
  border: 1px solid rgba(124, 92, 255, 0.3);
  color: var(--purple-light);
}

/* Score circle */
.score-circle {
  position: relative;
  width: 130px;
  height: 130px;
  flex-shrink: 0;
  text-align: center;
  margin-left: auto;
}

.progress-ring {
  width: 130px;
  height: 130px;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 10;
}

.ring-fill {
  fill: none;
  stroke: url(#scoreGrad);
  stroke-width: 10;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.5s ease;
}

.score-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
}

.score-text span {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.score-text small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

.score-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: var(--muted);
  white-space: nowrap;
}

/* Info cards row */
.report-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple);
}

.info-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.info-card h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-bottom: 6px;
}

.info-card p {
  font-size: 1.05rem;
  font-weight: 700;
}

/* Charts */
.charts-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.chart-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.chart-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.chart-card canvas {
  max-height: 200px;
}

/* Section blocks */
.section-block {
  margin-bottom: 28px;
}

.block-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.2px;
}

/* University grid */
.uni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.uni-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.uni-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
}

.uni-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
}

.uni-flag {
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: block;
}

.uni-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.uni-country {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.uni-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.uni-badge {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.73rem;
  font-weight: 600;
  background: rgba(58, 120, 255, 0.15);
  color: var(--blue);
  border: 1px solid rgba(58, 120, 255, 0.25);
}

.uni-badge.match {
  background: rgba(0, 229, 135, 0.15);
  color: var(--green);
  border-color: rgba(0, 229, 135, 0.25);
}

.uni-badge.budget {
  background: rgba(255, 204, 68, 0.15);
  color: var(--yellow);
  border-color: rgba(255, 204, 68, 0.25);
}

/* Finance grid */
.finance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.finance-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.fi-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.fi-value {
  font-size: 1.3rem;
  font-weight: 800;
}

.fi-value.green {
  color: var(--green);
}

.fi-value.yellow {
  color: var(--yellow);
}

.fi-value.red {
  color: var(--red);
}

/* Insights */
.insights-box {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.08), rgba(0, 212, 255, 0.05));
  border: 1px solid rgba(124, 92, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 18px;
}

.insight-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.insight-item:last-child {
  margin-bottom: 0;
}

.insight-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.insight-text {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.65;
}

.insight-label {
  font-weight: 700;
  margin-bottom: 2px;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple), var(--cyan));
}

.tl-item {
  position: relative;
  margin-bottom: 24px;
}

.tl-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  border: 3px solid var(--bg);
}

.tl-month {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.tl-task {
  font-size: 0.92rem;
  color: var(--text);
}

/* Report Footer */
.report-footer {
  text-align: center;
  padding: 16px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
}

/* Responsive */
@media (max-width: 900px) {
  .charts-row {
    grid-template-columns: 1fr;
  }

  .report-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-visual {
    display: none;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 16px 20px;
  }

  #hero {
    padding: 100px 20px 60px;
  }

  .form-container {
    padding: 16px 12px;
  }

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

  .checkbox-group {
    grid-template-columns: 1fr 1fr;
  }

  .report-grid-3 {
    grid-template-columns: 1fr;
  }

  .report-hero-card {
    flex-direction: column;
  }

  .score-circle {
    margin: 0 auto;
  }
}

/* ===== ADMIN DASHBOARD MODAL ===== */
.admin-dashboard-box {
  background: var(--surface);
  width: 95%;
  max-width: 1200px;
  max-height: 90vh;
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(6, 39, 64, 0.25);
}

.admin-dashboard-box .modal-header {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.admin-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.admin-search-wrap {
  position: relative;
  flex: 1;
  min-width: 280px;
}

.admin-search-wrap .search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1rem;
}

.admin-search.sf-group input, .sf-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.sf-group input:focus, .sf-group select:focus {
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.06);
  transform: scale(1.01);
  box-shadow: 0 0 15px var(--accent-glow);
}

.admin-search-wrap input {
  width: 100%;
  padding: 12px 16px 12px 48px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.admin-search-wrap input:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(107, 191, 255, 0.1);
}

.admin-stats {
  display: flex;
  gap: 16px;
}

.stat-pill {
  padding: 8px 16px;
  background: var(--surface-strong);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
}

.admin-table-container {
  flex: 1;
  overflow-x: auto;
  overflow-y: auto;
  background: var(--surface-strong);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.admin-table th {
  padding: 16px 20px;
  background: #f8fafc;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
}

.admin-table td {
  padding: 16px 20px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.admin-table tr:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Status Badges */
.status-badge {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
}

.status-new { background: #e0f2fe; color: #0369a1; }
.status-contacted { background: #fef9c3; color: #a16207; }
.status-converted { background: #dcfce7; color: #15803d; }
.status-closed { background: #f1f5f9; color: #475569; }

/* Admin Tabs */
.admin-tabs {
  display: flex;
  background: var(--surface-strong);
  padding: 4px;
  border-radius: 12px;
  gap: 4px;
}

.admin-tabs button {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.admin-tabs button.active {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.admin-tab-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.admin-tab-content.hidden {
  display: none;
}

/* CRM Cells */
.cell-info { display: flex; flex-direction: column; gap: 4px; }
.cell-label { font-size: 0.75rem; color: var(--muted); }
.cell-value { font-weight: 600; }

.btn-action {
  padding: 6px 12px;
  font-size: 0.75rem;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-action:hover {
  border-color: var(--blue);
  color: var(--blue);
}

@media (max-width: 900px) {
  .admin-dashboard-box {
    padding: 14px;
  }
  .admin-controls {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ===== PDF EXPORT FORCING OVERRIDES ===== */
body.pdf-exporting .report-paper {
  width: 860px !important;
  max-width: 860px !important;
  margin: 0 auto !important;
  overflow: visible !important;
}
body.pdf-exporting .rp-charts-row,
body.pdf-exporting .rp-insights-charts,
body.pdf-exporting .rp-counsel-row {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  gap: 20px !important;
}
body.pdf-exporting .rp-charts-row > div,
body.pdf-exporting .rp-insights-charts > div,
body.pdf-exporting .rp-counsel-row > div {
  flex: 1 !important;
  min-width: 0 !important;
}
body.pdf-exporting .rp-metrics {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  gap: 16px !important;
}
body.pdf-exporting .rp-metrics > div {
  flex: 1 !important;
  min-width: 0 !important;
}
body.pdf-exporting .rp-uni-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
}
body.pdf-exporting .rp-uni-list > .rp-uni-card {
  width: calc(33.333% - 11px) !important;
  box-sizing: border-box !important;
}
body.pdf-exporting .rp-gradient-title {
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: initial !important;
  color: #22d3ee !important;
}
/* --- LOADING ANIMATION --- */

/* ===== NEW SAMPLE-MATCHING REPORT STYLES ===== */
.report-paper {
  background: #0d1117;
  font-family: 'Inter', sans-serif;
}

.rp-page {
  background: #0d1117;
  padding: 24px;
  margin-bottom: 32px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

/* Badge */
.rp-badge {
  display: inline-block;
  background: rgba(34, 211, 238, 0.12);
  color: #22d3ee;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(34, 211, 238, 0.25);
  margin-bottom: 24px;
}

/* Hero Title */
.rp-hero-title h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0;
}

.rp-gradient-title {
  background: linear-gradient(90deg, #22d3ee, #818cf8, #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rp-hero-desc {
  color: #8892a4;
  font-size: 1rem;
  line-height: 1.7;
  margin: 20px 0 28px;
  max-width: 680px;
}

/* 3 Metric Cards */
.rp-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.rp-metric-card {
  background: #161b2e;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 16px;
}

.rp-metric-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #8892a4;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.rp-metric-value {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.rp-metric-sub {
  font-size: 0.85rem;
  color: #8892a4;
  line-height: 1.5;
}

/* Global Positioning Card */
.rp-positioning-card {
  background: linear-gradient(135deg, #161b2e, #1e1b3a);
  border: 1px solid rgba(129, 140, 248, 0.2);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
}

.rp-positioning-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.rp-positioning-card p {
  color: #8892a4;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Score + Indicators Row */
.rp-score-indicators-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.rp-score-card, .rp-indicators-card {
  background: #161b2e;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 18px;
}

.rp-score-card-title, .rp-indicators-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

/* Donut Chart */
.rp-donut-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
}

.rp-donut-svg {
  width: 100%;
  height: 100%;
}

.rp-donut-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.rp-score-sub {
  font-size: 0.85rem;
  color: #8892a4;
  text-align: center;
  line-height: 1.5;
}

/* Core Indicators */
.rp-indicator-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: #8892a4;
}

.rp-ind-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
}

.rp-ind-fill {
  height: 100%;
  background: linear-gradient(90deg, #22d3ee, #818cf8);
  border-radius: 10px;
  transition: width 1s ease;
  width: 0;
}

/* Page Headings */
.rp-page-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.rp-page-desc {
  color: #8892a4;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.rp-sub-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 16px;
}

/* Destination Table */
.rp-dest-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  font-size: 0.9rem;
}

.rp-dest-table th {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #8892a4;
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.rp-dest-table td {
  color: #cbd5e1;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: top;
}

.rp-dest-table tr:last-child td {
  border-bottom: none;
}

/* Steps Row */
.rp-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.rp-step-card {
  background: #161b2e;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 16px;
}

.rp-step-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #8892a4;
  margin-bottom: 8px;
}

.rp-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.rp-step-card p {
  font-size: 0.88rem;
  color: #8892a4;
  line-height: 1.6;
}

/* Insight Card */
.rp-insight-card {
  background: linear-gradient(135deg, #161b2e, #1e1b3a);
  border: 1px solid rgba(129, 140, 248, 0.2);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
}

.rp-insight-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.rp-insight-card p { color: #8892a4; font-size: 0.95rem; line-height: 1.7; }

/* Warning Cards */
.rp-warning-card {
  background: #161b2e;
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 4px solid #ef4444;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
}

.rp-warning-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.rp-warning-card p { color: #8892a4; font-size: 0.88rem; line-height: 1.6; }

/* Smart Grid */
.rp-smart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.rp-smart-card {
  background: #161b2e;
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 4px solid #22c55e;
  border-radius: 14px;
  padding: 16px;
}

.rp-smart-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.rp-smart-card p { color: #8892a4; font-size: 0.85rem; line-height: 1.6; }

/* Benefits Grid */
.rp-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.rp-benefit-card {
  background: #161b2e;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 16px;
}

.rp-benefit-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #8892a4;
  margin-bottom: 8px;
}

.rp-benefit-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.rp-benefit-card p { color: #8892a4; font-size: 0.85rem; line-height: 1.6; }

/* Parent Card */
.rp-parent-card {
  background: linear-gradient(135deg, #3b1fa8, #7c3aed);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
}

.rp-parent-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.rp-parent-card p { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.7; margin-bottom: 10px; }

/* Final Card */
.rp-final-card {
  background: #161b2e;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 18px;
}

.rp-final-card p { color: #8892a4; font-size: 0.95rem; line-height: 1.7; margin-bottom: 10px; }

.rp-final-highlight {
  color: #22d3ee !important;
  font-weight: 600;
}

/* Page Footer */
.rp-page-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  color: #4a5568;
}

/* Chart Box */
.rp-chart-box {
  background: #161b2e;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 16px;
}

.rp-chart-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #8892a4;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.rp-charts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.rp-radar-summary {
  margin-top: 14px;
  font-size: 0.82rem;
  color: #8892a4;
  line-height: 1.6;
}

/* University Cards */
.rp-uni-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.rp-uni-card {
  background: #161b2e;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 12px;
}

.rp-uni-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.rp-uni-detail {
  font-size: 0.8rem;
  color: #8892a4;
  margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .rp-metrics-row { grid-template-columns: 1fr; }
  .rp-score-indicators-row { grid-template-columns: 1fr; }
  .rp-steps-row { grid-template-columns: 1fr; }
  .rp-benefits-grid { grid-template-columns: 1fr; }
  .rp-smart-grid { grid-template-columns: 1fr; }
  .rp-hero-title h1 { font-size: 1.8rem; }
  .rp-page-heading { font-size: 1.6rem; }
  .rp-page { padding: 16px; }
  .rp-charts-row { grid-template-columns: 1fr; }
}

/* ===== END NEW REPORT STYLES ===== */

/* --- LOADING ANIMATION --- */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.loader-content {
    text-align: center;
    max-width: 400px;
    padding: 2.5rem;
    background: rgba(30, 30, 40, 0.5);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-spinner {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.spinner-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: #c084fc;
    border-bottom-color: #c084fc;
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.spinner-outer {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 2px solid transparent;
    border-left-color: #22d3ee;
    border-right-color: #22d3ee;
    border-radius: 50%;
    animation: spin-reverse 2s linear infinite;
    opacity: 0.6;
}

.loader-logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(192, 132, 252, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.loader-logo {
    width: 60px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(192, 132, 252, 0.5));
}

.loader-status {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.loader-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.loader-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #c084fc, #22d3ee);
    box-shadow: 0 0 10px rgba(192, 132, 252, 0.5);
    transition: width 0.3s ease;
}

.loader-subtext {
    font-size: 0.9rem;
    color: #94a3b8;
    animation: pulse 2s infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ===== MONETIZATION: RAZORPAY & BLUR ===== */
.blur-masked {
  position: relative;
  transition: filter 0.5s ease;
}

.blur-masked.is-blurred {
  filter: blur(12px);
  pointer-events: none;
  user-select: none;
}

.payment-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: all;
}

.payment-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 24px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.7);
  animation: fadeInDown 0.6s ease-out;
  position: relative;
  z-index: 1000;
}

.pay-lock-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  background: rgba(251, 191, 36, 0.1);
  padding: 20px;
  border-radius: 50%;
}

.payment-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}

.payment-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pay-benefits {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 16px;
}

.pay-benefits li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  gap: 12px;
}

.pay-now-cta {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.3);
}

.pay-hint {
  font-size: 0.8rem !important;
  color: var(--muted) !important;
  margin-top: 16px;
  margin-bottom: 0 !important;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .payment-card {
    padding: 30px 20px;
  }
  .payment-card h3 {
    font-size: 1.5rem;
  }
}

/* ===== FAQ SECTION ===== */
.faq-container {
    max-width: 900px;
    margin: 60px auto 100px;
    padding: 0 20px;
}

.faq-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-item {
    margin-bottom: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--blue);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--blue);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(0,0,0,0.2);
}

.faq-item.active .faq-answer {
    max-height: 1000px; /* high enough for wrapped text on mobile */
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 1.8rem;
        margin-bottom: 24px;
    }
    .faq-container {
        margin: 40px auto 60px;
    }
    .faq-question {
        padding: 16px;
        font-size: 1rem;
    }
    .faq-item.active .faq-answer {
        padding: 0 16px 16px;
    }
    .about-mission-block {
        text-align: center;
        padding: 24px !important;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVENESS OVERRIDES
   ========================================================================== */

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-left {
        order: 1;
    }

    .hero-right {
        display: none !important;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 1100px) {
    .hidden-mobile {
        display: none !important;
    }

    .navbar {
        padding: 10px 16px;
        border-radius: 20px;
    }

    .fynd-logo-img {
        height: 75px;
        width: auto;
        object-fit: contain;
    }

    .edge-logo-img {
        height: 75px;
        width: auto;
        object-fit: contain;
    }

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

    .action-bridge .bridge-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 40px 24px;
    }

    .bridge-content h2 {
        font-size: 1.8rem;
    }

    .inputs-header h2 {
        font-size: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .btn-yellow, .btn-outline-light {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .bridge-content h2 {
        font-size: 1.5rem !important;
    }

    .trust-number {
        font-size: 3rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns button {
        width: 100%;
    }
}

/* Hamburger Menu & Drawer */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--surface);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 100px;
}

.mobile-menu-drawer.active {
    right: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
}

.mobile-menu-content a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-menu-content a:hover {
    color: var(--yellow);
}

@media (max-width: 1100px) {
    .hamburger-menu {
        display: flex;
    }
}

/* ===================================================
   REPORT: MOBILE RESPONSIVE + A4 PDF FIXES
   =================================================== */

/* ── Report wrapper ── */
.report-paper {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* ── rp-page mobile ── */
@media (max-width: 768px) {
  .rp-page {
    padding: 20px 14px !important;
    margin-bottom: 20px !important;
    border-radius: 14px !important;
  }

  .rp-hero-title h1 {
    font-size: 1.5rem !important;
    line-height: 1.25 !important;
  }

  .rp-gradient-title {
    font-size: 1.5rem !important;
  }

  .rp-hero-desc {
    font-size: 0.85rem !important;
  }

  /* Metric cards stack vertically */
  .rp-metrics-row {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .rp-metric-card {
    padding: 14px !important;
  }

  .rp-metric-value {
    font-size: 1.4rem !important;
  }

  /* Score + indicators stack */
  .rp-score-indicators-row {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .rp-donut-wrap {
    width: 120px !important;
    height: 120px !important;
  }


  /* Charts stack vertically */
  .rp-charts-row {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .rp-chart-box {
    padding: 14px !important;
  }

  /* Steps stack vertically */
  .rp-steps-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .rp-step-card {
    padding: 14px !important;
  }

  /* Smart grid stack */
  .rp-smart-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Benefits stack */
  .rp-benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Table horizontal scroll */
  .rp-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .rp-dest-table {
    min-width: 480px;
    font-size: 0.8rem !important;
  }

  .rp-dest-table th,
  .rp-dest-table td {
    padding: 8px 10px !important;
  }

  /* Page headings */
  .rp-page-heading {
    font-size: 1.4rem !important;
  }

  .rp-sub-heading {
    font-size: 1.05rem !important;
  }

  /* Indicator labels wrap */
  .rp-indicator-row {
    flex-wrap: wrap !important;
    gap: 6px !important;
  }

  .rp-indicator-row span {
    font-size: 0.78rem !important;
  }

  /* Payment card */
  .payment-card {
    padding: 24px 16px !important;
    max-width: 95vw !important;
  }

  .payment-card h3 {
    font-size: 1.3rem !important;
  }

  .pay-now-cta {
    font-size: 0.95rem !important;
    padding: 14px !important;
  }

  /* University list */
  .rp-uni-list {
    font-size: 0.82rem !important;
  }

  /* Warning + smart cards */
  .rp-warning-card,
  .rp-smart-card,
  .rp-insight-card,
  .rp-final-card,
  .rp-parent-card {
    padding: 14px !important;
    font-size: 0.85rem !important;
  }

  .rp-benefit-card {
    padding: 14px !important;
  }
}

/* ===================================================
   A4 PDF PRINT STYLES
   =================================================== */
@media print {
  /* Hide everything except the report */
  body > *:not(#reportContent),
  .app-section,
  header,
  footer,
  .faq-section,
  #faq-section,
  .about-section,
  #hero-section,
  .paymentOverlay,
  #paymentOverlay {
    display: none !important;
  }

  body {
    background: #fff !important;
    color: #111 !important;
    margin: 0;
    padding: 0;
  }

  .report-paper {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .rp-page {
    background: #fff !important;
    color: #111 !important;
    border: none !important;
    padding: 20mm 18mm !important;
    page-break-after: always;
    break-after: page;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .rp-page:last-child {
    page-break-after: avoid;
    break-after: avoid;
  }

  .blur-masked {
    filter: none !important;
  }

  .is-blurred {
    filter: none !important;
  }

  .payment-overlay {
    display: none !important;
  }
}

/* ===================================================
   PDF EXPORT CLASS (html2canvas)
   =================================================== */
.pdf-exporting .rp-page {
  page-break-after: always;
  break-after: page;
  display: flex !important;
  flex-direction: column !important;
  width: 860px !important;
  min-height: 1216px !important;
  border-radius: 0 !important;
  border: none !important;
  margin-bottom: 0 !important;
  box-sizing: border-box !important;
}

.pdf-exporting .rp-page-footer {
  margin-top: auto !important;
}


.pdf-exporting .blur-masked,
.pdf-exporting .is-blurred {
  filter: none !important;
}

.pdf-exporting .payment-overlay {
  display: none !important;
}

.pdf-exporting * {
  box-shadow: none !important;
}

/* Table wrap (ensure scrollable on mobile) */
.rp-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 1024px) {
  .inputs-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
  }

  .premium-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }

  .col-inputs {
    width: 100% !important;
    position: static !important;
    max-height: none !important;
    overflow-y: visible !important;
    padding-right: 0 !important;
  }

  .single-form {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
    align-items: start !important;
  }

  .sf-section {
    margin-bottom: 0 !important;
    height: 100% !important;
  }

  .sf-section:nth-of-type(5),
  .sf-actions {
    grid-column: span 2 !important;
  }


  .col-report {
    width: 100% !important;
    margin-top: 20px !important;
  }
}

/* ===================================================
   FREE OFFER CARD WITH COUNTDOWN TIMER
   =================================================== */

@keyframes offerPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4), 0 8px 40px rgba(251, 191, 36, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(251, 191, 36, 0), 0 8px 40px rgba(251, 191, 36, 0.35); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes timerFlip {
  0% { transform: rotateX(0deg); }
  50% { transform: rotateX(90deg); }
  100% { transform: rotateX(0deg); }
}

.offer-card {
  background: linear-gradient(135deg, rgba(15, 18, 30, 0.95) 0%, rgba(20, 14, 40, 0.98) 100%);
  border: 1.5px solid rgba(251, 191, 36, 0.45);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  animation: offerPulse 3s ease-in-out infinite;
  margin-bottom: 16px;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fbbf24, #f59e0b, #fbbf24, transparent);
  background-size: 200% auto;
  animation: shimmer 2.5s linear infinite;
}

.offer-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(251, 191, 36, 0.18);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #fbbf24;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.offer-headline {
  font-size: 1.55rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.offer-highlight {
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #fcd34d);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 2s linear infinite;
  font-size: 2rem;
}

.offer-subtext {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Timer */
.offer-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 10px;
  padding: 8px 12px;
  min-width: 52px;
  flex: 1;
}

.timer-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fbbf24;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-family: 'Inter', monospace;
}

.timer-lbl {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 3px;
}

.timer-sep {
  font-size: 1.4rem;
  font-weight: 900;
  color: rgba(251, 191, 36, 0.5);
  line-height: 1;
  margin-bottom: 14px;
  flex-shrink: 0;
}

/* CTA button */
.offer-cta {
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0a0d14;
  font-weight: 800;
  font-size: 0.95rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 6px 24px rgba(251, 191, 36, 0.4);
  letter-spacing: 0.3px;
}

.offer-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(251, 191, 36, 0.55);
  background: linear-gradient(135deg, #fcd34d, #fbbf24);
}

/* Expiry bar */
.offer-expiry-bar {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.offer-expiry-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  animation: offerPulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* Mobile responsive offer card */
@media (max-width: 1100px) {
  .offer-headline { font-size: 1.3rem; }
  .offer-highlight { font-size: 1.6rem; }
  .timer-num { font-size: 1.3rem; }
  .timer-block { min-width: 44px; padding: 6px 8px; }
}
/* Responsive Utilities */
@media (min-width: 1101px) {
    .hidden-desktop {
        display: none !important;
    }
}

/* Blur effects for unpaid report sections */
.blur-masked.is-blurred {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
  opacity: 0.8;
}

/* ===== NEW HERO SECTION ===== */
.premium-hero {
  background: linear-gradient(135deg, #0d1117 0%, #0f172a 50%, #111827 100%);
  display: flex;
  flex-direction: column;
  padding: 40px 0 0px; /* Minimal top and bottom padding */
  position: relative;
  overflow: hidden;
}

.premium-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124,92,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.premium-hero::after {
  content: '';
  position: absolute;
  bottom: 100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left column */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 540px;
}

.hero-tag-free {
  display: inline-flex;
  align-items: center;
  background: #111827;
  border: 1px solid #d97706;
  color: #fbbf24;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  width: fit-content;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: #f8fafc;
  margin: 0;
  letter-spacing: -0.5px;
}

.hero-title-yellow {
  color: #fbbf24;
}

.hero-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 500px;
  margin: 0;
}

/* Feature pills -> Now Horizontal Columns */
.hero-features-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 12px;
}

.hero-feat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #f1f5f9;
  text-align: center;
  flex: 1;
}

.feat-icon-bg {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.feat-blue { background: rgba(59,130,246,0.15); color: #60a5fa; }
.feat-grey { background: rgba(148,163,184,0.15); color: #94a3b8; }
.feat-green { background: rgba(34,197,94,0.15); color: #4ade80; }
.feat-purple { background: rgba(168,85,247,0.15); color: #c084fc; }

/* Trust row */
.hero-trust-row {
  display: flex;
  gap: 20px;
  margin-top: 4px;
  margin-bottom: 8px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #f8fafc;
  font-weight: 500;
}

/* Right column — Snapshot Card */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-snapshot-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: float-card 6s ease-in-out infinite;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.snapshot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.snapshot-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 1px;
}

.snapshot-sample {
  font-size: 0.7rem;
  color: #64748b;
  background: rgba(255,255,255,0.06);
  padding: 2px 8px;
  border-radius: 4px;
}

.snapshot-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.snapshot-score-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.snapshot-donut-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}

.snapshot-donut-svg {
  width: 100%;
  height: 100%;
}

.snapshot-donut-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.snapshot-score-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: #4ade80;
  line-height: 1;
}

.snapshot-score-lbl {
  font-size: 0.65rem;
  color: #4ade80;
  font-weight: 600;
  margin-top: 2px;
}

.snapshot-countries {
  flex: 1;
}

.snapshot-countries-label {
  font-size: 0.68rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.snapshot-flags-row {
  display: flex;
  gap: 16px;
}

.snapshot-flag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Snapshot stats table */
.snapshot-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
}

.snapshot-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.82rem;
}

.snapshot-stat-row:last-child { border-bottom: none; }

.snap-label {
  color: #64748b;
  font-weight: 500;
}

.snap-value {
  font-weight: 700;
}

.snap-white { color: #f1f5f9; }
.snap-yellow { color: #fbbf24; }
.snap-green  { color: #4ade80; }


/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px 0px;
  }
  .hero-right {
    order: -1;
  }
  .hero-snapshot-card {
    max-width: 100%;
  }
  .premium-hero {
    padding-top: 30px;
  }
  .hero-features-row {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .hero-feat-col {
    width: calc(33.333% - 14px);
  }
  .hero-trust-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* ===== PDF EXPORT LIGHT THEME ===== */
.pdf-exporting-light .rp-page {
  background: #ffffff !important;
  color: #111111 !important;
  border-color: #e2e8f0 !important;
  box-shadow: none !important;
}
.pdf-exporting-light .rp-page-heading {
  color: #111111 !important;
}
.pdf-exporting-light .rp-page-desc {
  color: #475569 !important;
}
.pdf-exporting-light .rp-badge {
  background: #f1f5f9 !important;
  color: #475569 !important;
  border-color: #cbd5e1 !important;
}
.pdf-exporting-light .rp-metric-card,
.pdf-exporting-light .rp-score-card,
.pdf-exporting-light .rp-indicators-card,
.pdf-exporting-light .rp-chart-box,
.pdf-exporting-light .rp-score-indicators-row > div {
  background: #f8fafc !important;
  border-color: #e2e8f0 !important;
}
.pdf-exporting-light .rp-metric-label,
.pdf-exporting-light .rp-chart-label,
.pdf-exporting-light .rp-score-card-title,
.pdf-exporting-light .rp-indicators-title {
  color: #475569 !important;
}
.pdf-exporting-light .rp-metric-value,
.pdf-exporting-light .rp-donut-text span {
  color: #0f172a !important;
}
.pdf-exporting-light .rp-metric-sub,
.pdf-exporting-light .rp-score-sub {
  color: #64748b !important;
}
.pdf-exporting-light .rp-indicator-row span {
  color: #334155 !important;
}
.pdf-exporting-light .rp-ind-track {
  background: #e2e8f0 !important;
}
.pdf-exporting-light .rp-ind-fill {
  background: #3b82f6 !important;
}
.pdf-exporting-light #donutCircle {
  stroke: #3b82f6 !important;
}
.pdf-exporting-light .rp-donut-svg circle:first-child {
  stroke: #e2e8f0 !important;
}
.pdf-exporting-light .rank-table th {
  background: #f1f5f9 !important;
  color: #475569 !important;
  border-bottom: 2px solid #cbd5e1 !important;
}
.pdf-exporting-light .rank-table td {
  border-bottom: 1px solid #e2e8f0 !important;
  color: #1e293b !important;
}
.pdf-exporting-light .rank-table tr:hover {
  background: transparent !important;
}
.pdf-exporting-light .fit-badge {
  background: #e2e8f0 !important;
  color: #1e293b !important;
}
.pdf-exporting-light .rp-gradient-title {
  background: none !important;
  -webkit-text-fill-color: #111 !important;
  color: #111 !important;
}
.pdf-exporting-light .rp-hero-title h1 {
  color: #111 !important;
}
.pdf-exporting-light .rank-card {
  background: #f8fafc !important;
  border-color: #e2e8f0 !important;
  color: #111 !important;
}
.pdf-exporting-light .rank-idx {
  background: #e2e8f0 !important;
  color: #475569 !important;
}
.pdf-exporting-light .uni-meta span {
  color: #475569 !important;
}
.pdf-exporting-light .uni-score-wrap {
  background: #f1f5f9 !important;
  color: #0f172a !important;
}
.pdf-exporting-light .blur-masked {
  filter: none !important;
  pointer-events: auto !important;
  user-select: auto !important;
}
.pdf-exporting-light #paymentOverlay {
  display: none !important;
}

/* University Shortlist Cards Light Theme */
.pdf-exporting-light .rp-uni-card {
  background: #f8fafc !important;
  border-color: #e2e8f0 !important;
}
.pdf-exporting-light .rp-uni-card h4 {
  color: #111111 !important;
}
.pdf-exporting-light .rp-uni-card p {
  color: #475569 !important;
}
.pdf-exporting-light .rp-uni-card > div:last-child {
  border-top-color: #e2e8f0 !important;
}
.pdf-exporting-light .rp-uni-card > div:last-child > div {
  background: #ffffff !important;
  color: #334155 !important;
}
.pdf-exporting-light .rp-uni-card > div:last-child > div span {
  color: #334155 !important;
}
.pdf-exporting-light .rp-uni-card > div:last-child > div span strong {
  color: #0f172a !important;
}
.pdf-exporting-light .rp-uni-card > div:first-child {
  background: #e2e8f0 !important;
}
.pdf-exporting-light .rp-uni-card > div:first-child i {
  color: #94a3b8 !important;
}

/* ===== SOCIAL PROOF SECTION ===== */
.social-proof-bar {
  background: #0d1117;
  padding: 10px 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: center;
}

.sp-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1100px;
  width: 100%;
}

.sp-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.sp-text {
  color: #f8fafc;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 500;
}

.sp-flags {
  display: flex;
  gap: 24px;
}

.sp-flag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.sp-emoji {
  font-size: 1.8rem;
}

.sp-flag-lbl {
  color: #f8fafc;
  font-size: 0.8rem;
  font-weight: 500;
}

.sp-divider {
  width: 1px;
  height: 90px;
  background: rgba(255, 255, 255, 0.1);
}

.sp-right {
  display: flex;
  align-items: center;
  gap: 50px;
}

.sp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.sp-stat-num {
  color: #fbbf24;
  font-size: 2rem;
  font-weight: 700;
}

.sp-stat-lbl {
  color: #f8fafc;
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .sp-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }
  .sp-left {
    align-items: center;
  }
  .sp-divider {
    width: 100%;
    height: 1px;
  }
  .sp-right {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 24px;
  }
  .sp-flags {
    justify-content: center;
    width: 100%;
  }
}
