@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

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

:root {
  --kenz-blue: #2B5EA7;
  --kenz-blue-dark: #1E4A8A;
  --kenz-blue-light: #EBF0FA;
  --kenz-red: #D63031;
  --kenz-red-dark: #B71C1C;
  --kenz-navy: #0d1b2a;
  --kenz-dark: #1b2838;
  --kenz-grey: #6b7280;
  --kenz-light: #f3f3f3;
  --kenz-bg: #fbfbfb;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', 'Plus Jakarta Sans', system-ui, sans-serif;
}

::selection {
  background: var(--kenz-blue);
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--kenz-dark);
  background: var(--kenz-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--kenz-navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .container { padding: 0 32px; }
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--kenz-blue);
  color: #fff;
  font-weight: 600;
  border-radius: 9999px;
  padding: 16px 32px;
  font-size: 15px;
  transition: all 0.3s;
  border: none;
}
.btn-primary:hover {
  background: var(--kenz-blue-dark);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--kenz-red);
  color: #fff;
  font-weight: 600;
  border-radius: 9999px;
  padding: 16px 32px;
  font-size: 15px;
  transition: all 0.3s;
  border: none;
}
.btn-accent:hover {
  background: var(--kenz-red-dark);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--kenz-blue);
  color: var(--kenz-blue);
  font-weight: 600;
  border-radius: 9999px;
  padding: 14px 32px;
  font-size: 15px;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--kenz-blue);
  color: #fff;
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 700;
  border-radius: 9999px;
  padding: 16px 40px;
  font-size: 15px;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-white:hover { background: rgba(255,255,255,0.2); }

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--kenz-blue);
  font-weight: 700;
  border-radius: 9999px;
  padding: 16px 40px;
  font-size: 15px;
  transition: all 0.3s;
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
.btn-cta-white:hover {
  background: var(--kenz-red);
  color: #fff;
}

/* ---------- GRADIENTS ---------- */
.gradient-blue { background: linear-gradient(135deg, #2B5EA7, #1E4A8A); }
.gradient-red { background: linear-gradient(135deg, #D63031, #B71C1C); }
.gradient-dark { background: linear-gradient(135deg, #0d1b2a, #1a3a5c); }

/* ---------- SECTION BADGE ---------- */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(43,94,167,0.1);
  color: var(--kenz-blue);
  border-radius: 9999px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section-badge svg { width: 14px; height: 14px; }

/* ---------- CARD ---------- */
.card {
  background: #fff;
  border-radius: 16px;
  transition: all 0.3s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.card-bg {
  background: var(--kenz-bg);
  border-radius: 16px;
  transition: all 0.3s;
}
.card-bg:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* ---------- FLOATING SHAPES ---------- */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* ---------- SLIDE-UP ANIMATION ---------- */
.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- ICON BOXES ---------- */
.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.icon-box-sm {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- GRID HELPERS ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.grid-2-col { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) {
  .grid-2-col { grid-template-columns: 1fr 1fr; gap: 64px; }
}

/* ---------- FLEXBOX HELPERS ---------- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 20px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.shrink-0 { flex-shrink: 0; }

/* ---------- TEXT HELPERS ---------- */
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-blue { color: var(--kenz-blue); }
.text-red { color: var(--kenz-red); }
.text-navy { color: var(--kenz-navy); }
.text-grey { color: var(--kenz-grey); }
.text-white-70 { color: rgba(255,255,255,0.7); }
.text-white-80 { color: rgba(255,255,255,0.8); }
.text-white-60 { color: rgba(255,255,255,0.6); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

/* ---------- SPACING ---------- */
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.py-24 { padding-top: 96px; padding-bottom: 96px; }
.pt-32 { padding-top: 128px; }
.pb-20 { padding-bottom: 80px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 20px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-16 { margin-bottom: 64px; }
.mb-20 { margin-bottom: 80px; }
.mt-5 { margin-top: 20px; }
.mt-auto { margin-top: auto; }

/* ---------- MISC HELPERS ---------- */
.w-full { width: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.z-10 { position: relative; z-index: 10; }
.rounded-3xl { border-radius: 24px; }
.rounded-2xl { border-radius: 16px; }
.rounded-xl { border-radius: 12px; }
.rounded-full { border-radius: 9999px; }
.shadow-lg { box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.shadow-md { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.hidden-mobile { display: none; }
@media (min-width: 1024px) {
  .hidden-mobile { display: block; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.3s;
  padding: 16px 0;
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 8px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo img { height: 70px; width: auto; }
.header-nav {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 1024px) { .header-nav { display: flex; } }
.header-nav a {
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
  color: var(--kenz-navy);
}
.header-nav a:hover, .header-nav a.active {
  color: var(--kenz-blue);
  background: rgba(43,94,167,0.08);
}
.header-actions {
  display: none;
  align-items: center;
  gap: 16px;
}
@media (min-width: 1024px) { .header-actions { display: flex; } }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--kenz-grey);
  font-size: 14px;
  transition: color 0.3s;
}
.header-phone:hover { color: var(--kenz-blue); }
.header-phone-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(43,94,167,0.1);
  display: flex; align-items: center; justify-content: center;
}
.mobile-toggle {
  display: flex;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(43,94,167,0.1);
  align-items: center; justify-content: center;
  color: var(--kenz-navy);
}
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 40;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--kenz-light);
}
.mobile-menu-header img { height: 48px; }
.mobile-menu-close {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--kenz-light);
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  gap: 4px;
}
.mobile-menu nav a {
  padding: 16px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--kenz-navy);
  transition: all 0.3s;
}
.mobile-menu nav a:hover, .mobile-menu nav a.active {
  color: var(--kenz-blue);
  background: rgba(43,94,167,0.08);
}
.mobile-menu-bottom {
  margin-top: auto;
  padding: 0 20px 32px;
}
.mobile-menu-bottom .btn-accent { width: 100%; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-cta {
  padding: 64px 0;
  position: relative;
}
.footer-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer-cta-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-main {
  background: var(--kenz-navy);
  color: #fff;
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 64px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; }
.footer-brand img { height: 56px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 13px; font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s;
}
.footer-socials a:hover { background: var(--kenz-blue); color: #fff; }
.footer-col h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a,
.footer-col ul li {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--kenz-red); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.6); font-size: 14px; }
.footer-contact-item svg { color: var(--kenz-red); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--kenz-red); }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--kenz-bg);
}
.hero-content { max-width: 560px; }
.hero-content .section-badge { margin-bottom: 24px; }
.hero-content h1 {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 24px;
}
@media (min-width: 640px) { .hero-content h1 { font-size: 48px; } }
@media (min-width: 1024px) { .hero-content h1 { font-size: 56px; } }
.hero-content p {
  font-size: 17px;
  color: var(--kenz-grey);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-image {
  position: relative;
  display: none;
}
@media (min-width: 1024px) { .hero-image { display: block; } }
.hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}
.hero-image .dashed-border {
  position: absolute;
  z-index: -1;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  top: -20px; left: -20px;
  border-radius: 40px;
  border: 2px dashed rgba(43,94,167,0.2);
}
.hero-badge {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  z-index: 20;
}
.hero-badge-bottom {
  bottom: -24px; left: -24px;
  display: flex; align-items: center; gap: 16px;
}
.hero-badge-top { top: -16px; right: -16px; }
.hero-badge-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}
.avatar-stack {
  display: flex;
}
.avatar-stack span {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(43,94,167,0.2);
  border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  color: var(--kenz-blue);
  margin-left: -12px;
}
.avatar-stack span:first-child { margin-left: 0; }
.stars { display: flex; gap: 2px; }
.stars svg { color: #f59e0b; fill: #f59e0b; width: 14px; height: 14px; }

/* Page hero (for inner pages) */
.page-hero {
  position: relative;
  padding-top: 128px;
  padding-bottom: 80px;
  background: var(--kenz-blue-light);
  overflow: hidden;
  text-align: center;
}
.page-hero h1 {
  font-size: 40px;
  margin-top: 20px;
  margin-bottom: 24px;
}
@media (min-width: 1024px) { .page-hero h1 { font-size: 52px; } }
.page-hero p {
  color: var(--kenz-grey);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Results hero with background image */
.page-hero-img {
  position: relative;
  padding-top: 128px;
  padding-bottom: 80px;
  overflow: hidden;
  text-align: center;
}
.page-hero-img .hero-bg {
  position: absolute; inset: 0;
}
.page-hero-img .hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-img .hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(13,27,42,0.8);
}
.page-hero-img h1 { color: #fff; margin-top: 20px; margin-bottom: 24px; font-size: 40px; }
@media (min-width: 1024px) { .page-hero-img h1 { font-size: 52px; } }
.page-hero-img p { color: rgba(255,255,255,0.7); font-size: 17px; max-width: 640px; margin: 0 auto; line-height: 1.7; }
.page-hero-img .section-badge {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { padding: 64px 0; position: relative; overflow: hidden; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-item .stat-num {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 1024px) { .stat-item .stat-num { font-size: 48px; } }
.stat-item .stat-label { color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 4px; }
.stat-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(43,94,167,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--kenz-blue);
  margin: 0 auto 16px;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.feature-card {
  padding: 32px;
}
.feature-card .icon-box { margin-bottom: 24px; }
.feature-card h3 { font-size: 20px; margin-bottom: 12px; }
.feature-card p { color: var(--kenz-grey); font-size: 14px; line-height: 1.7; }

/* ============================================================
   COURSE CARDS
   ============================================================ */
.course-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.course-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.course-card:hover .course-card-img img { transform: scale(1.05); }
.course-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}
.course-card-img .badge-overlay {
  position: absolute;
  bottom: 12px; left: 16px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  color: var(--kenz-blue);
  font-size: 11px;
  font-weight: 700;
  border-radius: 9999px;
  padding: 4px 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}
.course-card-body {
  padding: 28px;
}
.course-card-body h3 { font-size: 22px; margin-bottom: 8px; }
.course-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--kenz-grey);
  font-size: 13px;
}
.course-card-meta span { display: flex; align-items: center; gap: 6px; }
.course-card-body > p { color: var(--kenz-grey); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.course-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.course-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--kenz-dark);
}
.course-features li svg { color: var(--kenz-blue); flex-shrink: 0; }
.course-card.highlight { outline: 2px solid var(--kenz-red); }
.course-card .recommended-bar {
  text-align: center;
  padding: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.testimonial-card { padding: 32px; position: relative; }
.testimonial-quote {
  font-size: 48px;
  font-family: Georgia, serif;
  color: var(--kenz-blue);
  line-height: 1;
  margin-bottom: 16px;
}
.testimonial-card p { color: var(--kenz-dark); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.testimonial-author strong { font-size: 15px; color: var(--kenz-navy); display: block; }
.testimonial-author span { font-size: 13px; color: var(--kenz-blue); }

/* ============================================================
   TOPPER CARDS
   ============================================================ */
.topper-card {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.topper-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.topper-info h3 { font-size: 16px; margin-bottom: 2px; }
.topper-info .rank { font-size: 14px; font-weight: 600; color: var(--kenz-red); }
.topper-info .exam { font-size: 13px; color: var(--kenz-grey); }

/* ============================================================
   YEAR-WISE CARDS
   ============================================================ */
.year-card { padding: 32px; text-align: center; }
.year-badge {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 9999px;
  background: rgba(43,94,167,0.1);
  color: var(--kenz-blue);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.year-card .total { font-size: 36px; font-weight: 700; color: var(--kenz-navy); }
.year-card .total-label { font-size: 13px; color: var(--kenz-grey); margin-bottom: 16px; }
.year-card .divider { height: 1px; background: var(--kenz-light); margin-bottom: 16px; }
.year-card .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.year-card .split-num { font-size: 22px; font-weight: 700; color: var(--kenz-navy); }
.year-card .split-label { font-size: 12px; color: var(--kenz-grey); }

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-section {
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .cta-grid { grid-template-columns: 1fr 1fr; }
}
.cta-content { padding: 48px; position: relative; z-index: 10; }
@media (min-width: 1024px) { .cta-content { padding: 64px; } }
.cta-content h2 { color: #fff; font-size: 32px; margin-bottom: 20px; }
@media (min-width: 1024px) { .cta-content h2 { font-size: 40px; } }
.cta-content p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.cta-image {
  display: none;
  height: 100%;
}
@media (min-width: 1024px) { .cta-image { display: block; } }
.cta-image img { width: 100%; height: 100%; min-height: 350px; object-fit: cover; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 16px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
  padding: 24px;
  text-align: center;
}
.contact-info-card .icon-circle {
  margin: 0 auto 16px;
  background: rgba(43,94,167,0.1);
  color: var(--kenz-blue);
}
.contact-info-card h3 { font-size: 16px; margin-bottom: 8px; }
.contact-info-card p { color: var(--kenz-grey); font-size: 14px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 3fr 2fr; }
}

.form-group { margin-bottom: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--kenz-navy);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 20px;
  background: var(--kenz-bg);
  border: 1px solid var(--kenz-light);
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s;
  color: var(--kenz-dark);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--kenz-blue);
  box-shadow: 0 0 0 3px rgba(43,94,167,0.15);
}
.form-textarea { resize: none; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-error { color: var(--kenz-red); font-size: 14px; margin-top: 12px; }

.quick-contact-card { padding: 32px; }
.quick-contact-card h3 { font-size: 20px; margin-bottom: 16px; }
.quick-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  color: var(--kenz-dark);
  transition: color 0.3s;
}
.quick-contact-item:hover { color: var(--kenz-blue); }
.quick-contact-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(43,94,167,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--kenz-blue);
  transition: all 0.3s;
  flex-shrink: 0;
}
.quick-contact-item:hover .quick-contact-icon {
  background: var(--kenz-blue);
  color: #fff;
}
.quick-contact-item strong { display: block; font-size: 15px; }
.quick-contact-item span { font-size: 13px; color: var(--kenz-grey); }

.office-hours-card { padding: 32px; }
.office-hours-card h3 { font-size: 20px; margin-bottom: 16px; }
.office-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 12px 0;
}
.office-row + .office-row { border-top: 1px solid var(--kenz-light); }
.office-row .day { color: var(--kenz-grey); }
.office-row .time { font-weight: 600; color: var(--kenz-navy); }
.office-row .time.closed { color: var(--kenz-red); }

.demo-card {
  padding: 32px;
  color: #fff;
  border-radius: 16px;
}
.demo-card h3 { font-size: 20px; color: #fff; margin-bottom: 12px; }
.demo-card p { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 20px; }
.demo-card .btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--kenz-blue);
  font-weight: 700;
  font-size: 14px;
  border-radius: 9999px;
  padding: 12px 24px;
  transition: all 0.3s;
}
.demo-card .btn-call:hover { background: var(--kenz-navy); color: #fff; }

.map-embed { border-radius: 16px; overflow: hidden; height: 400px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Success state */
.success-state {
  background: var(--kenz-blue-light);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}
.success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.success-state h3 { font-size: 28px; margin-bottom: 12px; }
.success-state p { color: var(--kenz-grey); font-size: 16px; max-width: 400px; margin: 0 auto 24px; }

/* ============================================================
   ABOUT PAGE EXTRAS
   ============================================================ */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.about-stat {
  background: var(--kenz-bg);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.about-stat .num { font-size: 28px; font-weight: 700; color: var(--kenz-navy); }
.about-stat .label { font-size: 13px; color: var(--kenz-grey); }

.mission-card-img { height: 200px; overflow: hidden; border-radius: 16px 16px 0 0; }
.mission-card-img img { width: 100%; height: 100%; object-fit: cover; }
.mission-card-body { padding: 32px; }
.mission-card-body .icon-box {
  margin-top: -56px;
  position: relative;
  z-index: 10;
  margin-bottom: 24px;
}
.mission-card-body h3 { font-size: 24px; margin-bottom: 16px; }
.mission-card-body p { color: var(--kenz-grey); font-size: 15px; line-height: 1.7; }

.value-card { padding: 32px; }
.value-card .icon-box-sm {
  background: rgba(43,94,167,0.1);
  color: var(--kenz-blue);
  margin-bottom: 20px;
}
.value-card h3 { font-size: 18px; margin-bottom: 12px; }
.value-card p { color: var(--kenz-grey); font-size: 14px; line-height: 1.7; }

.campus-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 80px;
}
@media (min-width: 640px) { .campus-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .campus-gallery { grid-template-columns: repeat(3, 1fr); } }
.campus-gallery-item {
  border-radius: 20px;
  overflow: hidden;
  height: 250px;
}
.campus-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.campus-gallery-item:hover img { transform: scale(1.05); }

.check-list { display: flex; flex-direction: column; gap: 16px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--kenz-dark);
}
.check-list li svg { color: var(--kenz-blue); flex-shrink: 0; }

/* ============================================================
   IMAGE SECTION ON ABOUT PAGE
   ============================================================ */
.about-image-wrapper {
  position: relative;
}
.about-image-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
.about-image-wrapper .deco-border {
  position: absolute;
  width: 100%; height: 100%;
  bottom: -24px; right: -24px;
  border-radius: 28px;
  border: 2px solid rgba(43,94,167,0.2);
  z-index: -1;
}
.about-image-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--kenz-blue);
  color: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.15);
}
.about-image-badge .num { font-size: 32px; font-weight: 700; }
.about-image-badge .label { font-size: 13px; color: rgba(255,255,255,0.8); }

/* ============================================================
   SPINNER
   ============================================================ */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Responsive - general section backgrounds */
.bg-blue-light { background: var(--kenz-blue-light); }
.bg-white { background: #fff; }
.bg-kenz-bg { background: var(--kenz-bg); }
