/**
 * IMAT EDGES Landing Page CSS (Light Theme Redesign)
 * Brand color palette:
 * - Orange Accent: #ed5024 (hover: #c63d19)
 * - Vibrant Green: #26ad5f
 * - Navy/Slate (Text & Contrast): #0f172a
 * - Slate Grey (Body Text): #334155
 * - Soft Background Light: #f8fafc
 * - Pure White: #ffffff
 */

:root {
  --ke-orange: #ed5024;
  --ke-orange-hover: #c63d19;
  --ke-green: #26ad5f;
  --ke-charcoal: #334155;
  --ke-navy: #0f172a;
  --ke-light-gray: #f8fafc;
  --ke-border: #e2e8f0;
  --ke-border-glow: rgba(237, 80, 36, 0.15);
  --ke-text-muted: #64748b;
  --ke-white: #ffffff;
  --font-primary: 'Montserrat', system-ui, -apple-system, sans-serif !important;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.03), 0 2px 4px -1px rgba(15, 23, 42, 0.02);
  --shadow-md: 0 12px 20px -3px rgba(15, 23, 42, 0.05), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
  --shadow-lg: 0 25px 35px -5px rgba(15, 23, 42, 0.06), 0 12px 15px -5px rgba(15, 23, 42, 0.03);
  --shadow-orange-glow: 0 12px 28px rgba(237, 80, 36, 0.18);
  --shadow-green-glow: 0 12px 28px rgba(38, 173, 95, 0.15);
}

/* ==================== GENERAL AND LAYOUT ==================== */
.ke-imat-edges-page {
  font-family: var(--font-primary) !important;
  color: var(--ke-charcoal) !important;
  line-height: 1.7;
  background-color: var(--ke-white);
  overflow-x: hidden;
}

.ke-imat-edges-page * {
  box-sizing: border-box;
  font-family: var(--font-primary) !important;
}

.ke-imat-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.ke-imat-section {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
  position: relative;
  background-color: var(--ke-white);
}

.ke-imat-section--alt {
  background-color: var(--ke-light-gray);
  border-top: 1px solid var(--ke-border);
  border-bottom: 1px solid var(--ke-border);
}

.ke-imat-section-title {
  font-size: clamp(2rem, 4.5vw, 2.85rem) !important;
  font-weight: 900 !important;
  color: var(--ke-navy) !important;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.ke-imat-section-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem) !important;
  color: var(--ke-text-muted) !important;
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.6;
}

/* Viewport Reveal Effect */
.ke-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ke-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.ke-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 36px;
  font-weight: 800 !important;
  font-size: 0.92rem;
  border-radius: 10px;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.ke-btn--primary {
  background-color: var(--ke-orange);
  color: var(--ke-white) !important;
  box-shadow: var(--shadow-orange-glow);
}

.ke-btn--primary:hover {
  background-color: var(--ke-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(237, 80, 36, 0.28);
}

.ke-btn--secondary {
  background-color: transparent;
  color: var(--ke-navy) !important;
  border-color: var(--ke-navy);
}

.ke-btn--secondary:hover {
  background-color: var(--ke-navy);
  color: var(--ke-white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ==================== HERO SECTION (LIGHT THEME) ==================== */
.ke-hero {
  background: radial-gradient(circle at 80% 20%, rgba(237, 80, 36, 0.04), transparent 50%),
              radial-gradient(circle at 15% 80%, rgba(38, 173, 95, 0.04), transparent 50%),
              var(--ke-light-gray);
  color: var(--ke-navy);
  padding: clamp(5rem, 11vw, 9rem) 0;
  position: relative;
  border-bottom: 1px solid var(--ke-border);
}

.ke-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.ke-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(237, 80, 36, 0.08);
  border: 1px solid rgba(237, 80, 36, 0.2);
  color: var(--ke-orange);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.ke-hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem) !important;
  font-weight: 900 !important;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--ke-navy) !important;
  margin-bottom: 16px;
}

.ke-hero-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem) !important;
  font-weight: 800 !important;
  color: var(--ke-green) !important;
  margin-bottom: 28px;
  line-height: 1.35;
}

.ke-hero-tagline {
  background: var(--ke-white);
  border-left: 5px solid var(--ke-orange);
  padding: 24px 28px;
  border-radius: 0 16px 16px 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ke-charcoal);
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ke-border);
  border-left-width: 5px;
}

.ke-hero-tagline blockquote {
  font-style: italic;
  font-weight: 600;
  color: var(--ke-navy);
  margin-bottom: 10px;
  line-height: 1.5;
}

.ke-hero-tagline blockquote span {
  color: var(--ke-orange);
}

.ke-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Store Buttons on Hero */
.ke-hero-buttons .ke-btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ke-white);
  border: 1px solid var(--ke-border);
  padding: 10px 22px;
  border-radius: 10px;
  color: var(--ke-navy);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800 !important;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.ke-hero-buttons .ke-btn-store:hover {
  background: var(--ke-white);
  border-color: var(--ke-orange);
  color: var(--ke-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.ke-hero-buttons .ke-btn-store i {
  font-size: 1.5rem;
  color: var(--ke-orange);
}

/* REALISTIC 3D BOOK COVER MOCKUP */
.ke-hero-mockup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

.ke-book-perspective {
  position: relative;
  width: 290px;
  height: 410px;
  perspective: 1400px;
}

.ke-3d-book {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateX(10deg) rotateY(-20deg) rotateZ(0deg);
  transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  animation: bookFloatShowcase 14s ease-in-out infinite;
}

@keyframes bookFloatShowcase {
  0% { 
    transform: rotateX(10deg) rotateY(-20deg) translateY(0); 
  }
  50% { 
    transform: rotateX(14deg) rotateY(200deg) translateY(-15px); 
  }
  100% { 
    transform: rotateX(10deg) rotateY(-20deg) translateY(0); 
  }
}

.ke-book-perspective:hover .ke-3d-book {
  animation-play-state: paused;
  transform: rotateX(8deg) rotateY(-25deg) translateY(-5px) scale(1.05); /* Show front and pages */
}

.ke-book-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.15), 0 0 5px rgba(0,0,0,0.1);
}

.ke-book-front {
  transform: translateZ(20px);
  border-radius: 2px 14px 14px 2px;
  z-index: 2;
}

.ke-book-front::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 30%, rgba(0,0,0,0.05) 70%, rgba(0,0,0,0.3) 100%);
  border-radius: 2px 14px 14px 2px;
  pointer-events: none;
}

.ke-book-back {
  transform: rotateY(180deg) translateZ(20px);
  border-radius: 14px 2px 2px 14px;
}

.ke-book-back::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(285deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 30%, rgba(0,0,0,0.05) 70%, rgba(0,0,0,0.3) 100%);
  border-radius: 14px 2px 2px 14px;
  pointer-events: none;
}

.ke-book-face-spine {
  position: absolute;
  top: 0;
  left: -20px; /* Centered at X=0 relative to left edge */
  width: 40px;
  height: 100%;
  transform: rotateY(-90deg);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.3);
}

/* Realistic inside paper page edges */
.ke-book-face-pages-right {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 269px; /* Center at X=287 (W:290 - 3px inset) -> 269 + 18(half-width) = 287 */
  width: 36px;
  transform: rotateY(90deg);
  background-image: repeating-linear-gradient(90deg, #fdfdfd, #fdfdfd 2px, #eaeaea 2px, #eaeaea 4px);
  box-shadow: inset 0 0 8px rgba(0,0,0,0.15);
  border-radius: 1px;
}

.ke-book-face-pages-top {
  position: absolute;
  top: -15px; /* Center at Y=3 (3px inset) -> -15 + 18(half-height) = 3 */
  left: 1px;
  width: 286px;
  height: 36px;
  transform: rotateX(90deg);
  background-image: repeating-linear-gradient(0deg, #fdfdfd, #fdfdfd 2px, #eaeaea 2px, #eaeaea 4px);
  box-shadow: inset 0 0 8px rgba(0,0,0,0.15);
  border-radius: 1px;
}

.ke-book-face-pages-bottom {
  position: absolute;
  bottom: -15px; /* Center at 3px from bottom -> -15 + 18(half-height) = 3 */
  left: 1px;
  width: 286px;
  height: 36px;
  transform: rotateX(-90deg);
  background-image: repeating-linear-gradient(0deg, #fdfdfd, #fdfdfd 2px, #eaeaea 2px, #eaeaea 4px);
  box-shadow: inset 0 0 8px rgba(0,0,0,0.15);
  border-radius: 1px;
}

.ke-book-shadow {
  position: absolute;
  bottom: -45px;
  left: 5%;
  width: 90%;
  height: 25px;
  background: rgba(15, 23, 42, 0.25);
  border-radius: 50%;
  filter: blur(10px);
  transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1.5s ease;
  animation: shadowPulseShowcase 14s ease-in-out infinite;
}

@keyframes shadowPulseShowcase {
  0% { transform: scale(1) translateY(0); opacity: 0.8; }
  50% { transform: scale(0.85) translateY(8px); opacity: 0.4; }
  100% { transform: scale(1) translateY(0); opacity: 0.8; }
}

.ke-book-perspective:hover .ke-book-shadow {
  animation-play-state: paused;
  transform: scale(0.8) rotateZ(3deg);
  opacity: 0.5;
}

/* ==================== STATS SECTION ==================== */
.ke-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.ke-stat-card {
  background: var(--ke-white);
  border: 1px solid var(--ke-border);
  padding: 40px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.ke-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(38, 173, 95, 0.25);
}

.ke-stat-number {
  font-size: 3.8rem !important;
  font-weight: 900 !important;
  color: var(--ke-orange);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  display: block;
}

.ke-stat-label {
  font-size: 0.9rem;
  font-weight: 800 !important;
  color: var(--ke-navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==================== FOUNDERS LETTER SECTION ==================== */
.ke-founders-grid-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.ke-founders-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.ke-founders-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ke-intro-badge {
  display: inline-block;
  background: rgba(237, 80, 35, 0.08);
  color: var(--ke-orange);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.ke-founders-intro .ke-imat-section-title {
  text-align: left;
  margin-left: 0;
  margin-bottom: 10px;
  font-size: 2.2rem;
  line-height: 1.25;
}

.ke-founders-intro .ke-imat-section-subtitle {
  text-align: left;
  margin-left: 0;
  margin-bottom: 30px;
  font-size: 1.05rem;
  color: var(--ke-text-muted);
}

.ke-intro-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ke-charcoal);
  margin-bottom: 20px;
}

.ke-intro-content p strong {
  color: var(--ke-navy);
}

.ke-founders-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ke-faculty-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--ke-white);
  border: 1px solid var(--ke-border);
  border-left: 5px solid rgba(237, 80, 35, 0.4);
  padding: 36px;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.01);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, border-left-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.ke-faculty-card:hover {
  transform: translateY(-5px);
  border-color: rgba(237, 80, 35, 0.25);
  border-left-color: var(--ke-orange);
  box-shadow: 0 25px 50px rgba(237, 80, 35, 0.08), 0 2px 5px rgba(0, 0, 0, 0.02);
}

.ke-faculty-image-wrapper {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ke-orange) 0%, var(--ke-green) 100%);
  border: 3px solid var(--ke-white);
  box-shadow: 0 10px 25px rgba(237, 80, 35, 0.15);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.ke-faculty-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ke-faculty-card:hover .ke-faculty-image-wrapper img {
  transform: scale(1.1);
}

.ke-faculty-content {
  flex-grow: 1;
  position: relative;
}

.ke-quote-icon {
  font-size: 6.5rem;
  font-family: Georgia, serif;
  line-height: 1;
  color: rgba(237, 80, 35, 0.05);
  position: absolute;
  top: -32px;
  left: -12px;
  user-select: none;
  z-index: 1;
  transition: transform 0.4s ease, color 0.4s ease;
}

.ke-faculty-card:hover .ke-quote-icon {
  color: rgba(237, 80, 35, 0.12);
  transform: scale(1.1) rotate(-8deg);
}

.ke-faculty-quote {
  font-size: 0.96rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.65;
  color: var(--ke-charcoal);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  text-align: justify;
  padding-left: 16px;
  border-left: 2px solid rgba(0, 0, 0, 0.05);
  transition: border-left-color 0.4s ease;
}

.ke-faculty-card:hover .ke-faculty-quote {
  border-left-color: rgba(237, 80, 35, 0.25);
}

.ke-faculty-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 2;
  padding-left: 16px;
}

.ke-faculty-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ke-navy);
}

.ke-faculty-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ke-orange);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .ke-founders-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ke-founders-intro .ke-imat-section-title,
  .ke-founders-intro .ke-imat-section-subtitle {
    text-align: center;
    margin: 0 auto 10px auto;
  }
  .ke-founders-intro .ke-imat-section-subtitle {
    margin-bottom: 24px;
  }
  .ke-founders-intro {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .ke-faculty-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
  }
  .ke-faculty-quote {
    text-align: center;
  }
  .ke-quote-icon {
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
  }
}

/* ==================== UNIVERSITY MARQUEE (TICKER) ==================== */
.ke-marquee-section {
  padding: 2.5rem 0;
  background-color: var(--ke-white);
  border-bottom: 1px solid var(--ke-border);
  overflow: hidden;
}

.ke-marquee-section-label {
  font-size: 0.78rem;
  font-weight: 800 !important;
  color: var(--ke-text-muted);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.ke-marquee-container {
  width: 100%;
  display: flex;
  overflow: hidden;
  user-select: none;
  padding: 10px 0;
}

.ke-marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
  min-width: 100%;
}

.ke-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ke-light-gray);
  border: 1px solid var(--ke-border);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 800 !important;
  font-size: 0.95rem;
  color: var(--ke-navy);
  text-decoration: none !important;
  transition: var(--transition-smooth);
}

.ke-marquee-item:hover {
  border-color: var(--ke-orange);
  color: var(--ke-orange);
  transform: scale(1.03);
}

.ke-marquee-item .uni-logo {
  height: 32px;
  width: auto;
  max-width: 45px;
  object-fit: contain;
  display: block;
  filter: contrast(1.2) saturate(1.1) brightness(0.85);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.ke-marquee-item:hover .uni-logo {
  filter: contrast(1.3) saturate(1.2) brightness(0.8);
}

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

/* ==================== INSIGHTS / WHY THIS BOOK ==================== */
.ke-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.ke-why-card {
  background: var(--ke-white);
  border: 1px solid var(--ke-border);
  border-radius: 20px;
  padding: 44px 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border-top: 5px solid var(--ke-orange);
}

.ke-why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--ke-green);
}

.ke-why-card h3 {
  font-size: 1.35rem !important;
  font-weight: 900 !important;
  color: var(--ke-navy) !important;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.ke-why-card p {
  color: var(--ke-text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0;
}

/* ==================== FEATURES / WHAT'S INSIDE ==================== */
.ke-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.ke-feature-card {
  background: var(--ke-white);
  border: 1px solid var(--ke-border);
  border-left: 5px solid var(--ke-orange);
  border-radius: 16px;
  padding: 36px 28px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.ke-feature-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: var(--ke-border);
  border-left-color: var(--ke-green);
}

.ke-feature-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  display: block;
}

.ke-feature-card h3 {
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  color: var(--ke-navy) !important;
  margin-bottom: 12px;
}

.ke-feature-card p {
  font-size: 0.92rem;
  color: var(--ke-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ==================== MEET THE FACULTY ==================== */
.ke-faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
}

.ke-faculty-card {
  background: var(--ke-white);
  border: 1px solid var(--ke-border);
  border-radius: 24px;
  padding: 44px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.ke-faculty-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(237, 80, 36, 0.25);
}

.ke-faculty-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ke-orange) 0%, var(--ke-navy) 100%);
  color: var(--ke-white);
  font-size: 1.95rem !important;
  font-weight: 900 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
}

.ke-faculty-card h3 {
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: var(--ke-navy) !important;
  margin-bottom: 6px;
}

.ke-faculty-role {
  font-size: 0.8rem;
  font-weight: 800 !important;
  color: var(--ke-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  display: block;
}

.ke-faculty-card p {
  font-size: 0.96rem;
  color: var(--ke-charcoal);
  font-style: italic;
  line-height: 1.75;
  margin: 0;
}

/* ==================== TESTIMONIALS SLIDER / CAROUSEL ==================== */
.ke-slider-outer {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

.ke-slider-container {
  overflow: hidden;
  width: 100%;
}

.ke-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.ke-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
}

.ke-testimonial-card {
  background: var(--ke-white);
  border: 1px solid var(--ke-border);
  border-left: 6px solid var(--ke-green);
  border-radius: 0 24px 24px 0;
  padding: 44px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.ke-testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-left-color: var(--ke-orange);
}

.ke-testimonial-stars {
  color: #fbbf24;
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.ke-testimonial-card p {
  font-size: 1.05rem;
  color: var(--ke-charcoal);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 24px;
}

.ke-testimonial-author {
  font-size: 0.95rem;
  font-weight: 800 !important;
  color: var(--ke-navy);
  display: block;
}

/* Slider arrows */
.ke-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ke-white);
  border: 1px solid var(--ke-border);
  color: var(--ke-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  z-index: 10;
}

.ke-slider-arrow:hover {
  background: var(--ke-orange);
  border-color: var(--ke-orange);
  color: var(--ke-white);
  box-shadow: var(--shadow-md);
}

.ke-slider-arrow--left {
  left: -15px;
}

.ke-slider-arrow--right {
  right: -15px;
}

.ke-slider-arrow i {
  font-size: 1.4rem;
  line-height: 1;
}

/* Slider dots */
.ke-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.ke-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--ke-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-smooth);
}

.ke-slider-dot:hover {
  background-color: var(--ke-text-muted);
}

.ke-slider-dot.active {
  background-color: var(--ke-orange);
  width: 24px;
  border-radius: 5px;
}

/* ==================== PRICING SECTION ==================== */
.ke-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: stretch;
}

.ke-price-card {
  background: var(--ke-white);
  border: 1px solid var(--ke-border);
  border-radius: 24px;
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.ke-price-card.featured {
  border: 2px solid var(--ke-orange);
  background: linear-gradient(180deg, rgba(237, 80, 36, 0.03) 0%, var(--ke-white) 350px);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}

.ke-price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.ke-price-card.featured:hover {
  transform: scale(1.04) translateY(-8px);
}

.ke-price-card .badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--ke-orange);
  color: var(--ke-white);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: var(--shadow-orange-glow);
}

.ke-price-card h3 {
  font-size: 1.75rem !important;
  font-weight: 800 !important;
  color: var(--ke-navy) !important;
  margin-bottom: 12px;
  text-align: center;
}

.ke-price-amount {
  font-size: 3.2rem !important;
  font-weight: 900 !important;
  color: var(--ke-orange);
  text-align: center;
  margin: 18px 0;
  letter-spacing: -0.03em;
}

.ke-price-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 40px 0;
}

.ke-price-card li {
  font-size: 0.96rem;
  font-weight: 700 !important;
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--ke-charcoal);
}

.ke-price-card li::before {
  content: "\f270";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: var(--ke-green);
  font-weight: 900;
  font-size: 1.1rem;
}

.ke-price-card .ke-btn {
  width: 100%;
  margin-top: auto;
}

/* E-Book Split Buy Buttons */
.ke-ebook-buy-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.ke-btn-store-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 800 !important;
  font-size: 0.88rem;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: var(--transition-smooth);
  width: 100%;
  border: 1px solid transparent;
}

.ke-btn-store-inline--google {
  background-color: #01875f;
  color: var(--ke-white) !important;
  box-shadow: 0 6px 14px rgba(1, 135, 95, 0.15);
}

.ke-btn-store-inline--google:hover {
  background-color: #006e4e;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(1, 135, 95, 0.28);
}

.ke-btn-store--google {
  background-color: #01875f !important;
  color: var(--ke-white) !important;
  border-color: transparent !important;
  box-shadow: 0 6px 14px rgba(1, 135, 95, 0.15) !important;
}

.ke-btn-store--google i {
  color: var(--ke-white) !important;
}

.ke-btn-store--google:hover {
  background-color: #006e4e !important;
  color: var(--ke-white) !important;
  border-color: transparent !important;
  box-shadow: 0 12px 24px rgba(1, 135, 95, 0.28) !important;
}

.ke-btn-store-inline--kindle {
  background-color: #ff9900;
  color: #111111 !important;
  box-shadow: 0 6px 14px rgba(255, 153, 0, 0.15);
}

.ke-btn-store-inline--kindle:hover {
  background-color: #e68a00;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 153, 0, 0.28);
}

.ke-btn-store-inline i {
  font-size: 1.3rem;
}

/* Guarantee Card */
.ke-guarantee-card {
  background: var(--ke-white);
  border-left: 5px solid var(--ke-green);
  border-radius: 0 20px 20px 0;
  padding: 44px;
  margin-top: 60px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--ke-border);
  border-left-width: 5px;
}

.ke-guarantee-icon {
  font-size: 3.8rem;
  color: var(--ke-green);
  line-height: 1;
  display: block;
}

.ke-guarantee-info h3 {
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: var(--ke-navy) !important;
  margin-bottom: 8px;
}

.ke-guarantee-info p {
  font-size: 0.98rem;
  color: var(--ke-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ==================== FAQ SINGLE COLUMN & ACCORDION ==================== */
.ke-faq-container {
  max-width: 850px;
  margin: 0 auto;
  width: 100%;
}

.ke-faq-whatsapp-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, rgba(237, 80, 36, 0.03) 0%, rgba(38, 173, 95, 0.03) 100%);
  border: 1px solid var(--ke-border);
  border-left: 5px solid var(--ke-orange);
  border-radius: 16px;
  padding: 24px 32px;
  margin-top: 40px;
  box-shadow: var(--shadow-sm);
}

.ke-faq-whatsapp-banner p {
  margin: 0;
  color: var(--ke-charcoal);
  font-weight: 700;
  font-size: 0.95rem;
}

.ke-faq-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ke-white);
  border: 1px solid var(--ke-border);
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none !important;
  color: var(--ke-navy) !important;
  font-weight: 800 !important;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.ke-faq-whatsapp-btn:hover {
  border-color: var(--ke-orange);
  color: var(--ke-orange) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.ke-faq-whatsapp-btn i {
  font-size: 1.3rem;
  color: #25d366;
}

@media (max-width: 768px) {
  .ke-faq-whatsapp-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  .ke-faq-whatsapp-btn {
    width: 100%;
    justify-content: center;
  }
}

.ke-faq-item {
  background: var(--ke-white);
  border: 1px solid var(--ke-border);
  border-left: 4px solid var(--ke-green);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.ke-faq-item:hover {
  border-color: rgba(15, 23, 42, 0.12);
  transform: translateX(4px);
}

.ke-faq-question {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800 !important;
  font-size: 1rem;
  color: var(--ke-navy);
  text-align: left;
  transition: var(--transition-smooth);
}

.ke-faq-question:hover {
  color: var(--ke-orange);
}

.ke-faq-question.active {
  background: rgba(237, 80, 36, 0.03);
  color: var(--ke-orange);
  border-bottom: 1px solid var(--ke-border);
}

.ke-faq-toggle {
  font-size: 1.2rem;
  color: var(--ke-orange);
  transition: transform 0.3s ease;
}

.ke-faq-question.active .ke-faq-toggle {
  transform: rotate(180deg);
  color: var(--ke-orange);
}

.ke-faq-answer {
  max-height: 0;
  overflow: hidden;
  background: var(--ke-white);
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ke-faq-answer.active {
  max-height: 600px;
}

.ke-faq-answer-content {
  padding: 24px 28px;
  color: var(--ke-charcoal);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ==================== FINAL CTA & LEAD FORM ==================== */
.ke-final-cta {
  background: radial-gradient(circle at 80% 80%, rgba(38, 173, 95, 0.04), transparent 50%),
              radial-gradient(circle at 20% 20%, rgba(237, 80, 36, 0.04), transparent 50%),
              var(--ke-light-gray);
  color: var(--ke-navy);
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  border-top: 1px solid var(--ke-border);
}

.ke-final-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.ke-final-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem) !important;
  font-weight: 900 !important;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.ke-final-copy p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ke-charcoal);
  margin-bottom: 36px;
}

.ke-final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.ke-final-cta-buttons .ke-btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ke-white);
  border: 1px solid var(--ke-border);
  padding: 10px 22px;
  border-radius: 10px;
  color: var(--ke-navy);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800 !important;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.ke-final-cta-buttons .ke-btn-store:hover {
  background: var(--ke-white);
  border-color: var(--ke-orange);
  color: var(--ke-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.ke-final-cta-buttons .ke-btn-store i {
  font-size: 1.5rem;
  color: var(--ke-orange);
}

.ke-final-badges {
  font-size: 0.9rem;
  color: var(--ke-text-muted);
  font-weight: 700;
}

/* Enquiry Form Card */
.ke-lead-card {
  background: var(--ke-white);
  border-radius: 24px;
  padding: 44px;
  box-shadow: var(--shadow-lg);
  color: var(--ke-charcoal);
  border: 1px solid var(--ke-border);
}

.ke-lead-card h3 {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: var(--ke-navy) !important;
  margin-bottom: 8px;
  text-align: center;
}

.ke-lead-card-subtitle {
  font-size: 0.9rem;
  color: var(--ke-text-muted);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.5;
}

.ke-lead-form .form-group {
  margin-bottom: 18px;
}

.ke-lead-form label {
  font-size: 0.8rem;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ke-text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ke-lead-form label i {
  color: var(--ke-orange);
  font-size: 0.95rem;
}

.ke-lead-form .form-control {
  width: 100% !important;
  padding: 14px 18px !important;
  border-radius: 10px !important;
  border: 1.5px solid var(--ke-border) !important;
  font-size: 0.95rem !important;
  color: var(--ke-charcoal) !important;
  background-color: var(--ke-light-gray) !important;
  transition: var(--transition-smooth) !important;
}

.ke-lead-form .form-control:focus {
  border-color: var(--ke-orange) !important;
  background-color: var(--ke-white) !important;
  box-shadow: 0 0 0 4px rgba(237, 80, 36, 0.15) !important;
  outline: none !important;
}

.ke-lead-form textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.ke-lead-form .ke-btn {
  width: 100%;
  margin-top: 10px;
}

/* Success State */
.ke-lead-success-msg {
  background: var(--ke-green);
  color: var(--ke-white);
  padding: 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-green-glow);
  animation: scaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ke-lead-success-msg i {
  font-size: 2.6rem;
  margin-bottom: 14px;
  display: block;
}

.ke-lead-success-msg h4 {
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  margin-bottom: 6px;
}

.ke-lead-success-msg p {
  font-size: 0.92rem;
  opacity: 0.95;
  margin: 0;
  line-height: 1.5;
}

@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 991px) {
  .ke-marquee-track {
    animation: marquee 10s linear infinite;
  }

  .ke-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  
  .ke-hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
  
  .ke-hero-tagline {
    border-left: none;
    border-top: 5px solid var(--ke-orange);
    border-radius: 0 0 16px 16px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .ke-hero-buttons {
    justify-content: center;
  }
  
  .ke-pricing-grid {
    gap: 48px;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .ke-price-card.featured {
    transform: none;
  }
  
  .ke-price-card.featured:hover {
    transform: translateY(-8px);
  }
  
  .ke-final-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .ke-final-copy {
    text-align: center;
  }
  
  .ke-final-cta-buttons {
    justify-content: center;
  }
  
  .ke-lead-card {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .ke-slider-outer {
    padding: 0 15px;
  }
  
  .ke-slider-arrow {
    display: none !important; /* Hide navigation arrows on tablet/mobile slider */
  }
}

@media (max-width: 768px) {
  .ke-imat-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
  }
  
  .ke-why-grid, .ke-faculty-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .ke-guarantee-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 32px 24px;
  }
  
  .ke-guarantee-icon {
    font-size: 3.2rem;
  }
}
