/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

:root {
  --primary: #0f172a;
  --primary-container: #1e293b;
  --on-primary: #ffffff;
  --secondary: #2563eb;
  --secondary-container: #bfdbfe;
  --tertiary: #7c3aed;
  --surface: #ffffff;
  --surface-container: #f8fafc;
  --surface-container-low: #f1f5f9;
  --surface-container-high: #e2e8f0;
  --surface-container-highest: #cbd5e1;
  --on-surface: #0f172a;
  --on-surface-variant: #475569;
  --outline: #cbd5e1;
  --outline-variant: #94a3b8;
  --primary-fixed: #dbeafe;
  --primary-fixed-dim: #93c5fd;
  --secondary-fixed: #bfdbfe;
  --error: #ef4444;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 30px 80px rgba(15, 23, 42, 0.12);
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--surface);
  color: var(--on-surface);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

/* ===== UTILITY ===== */
.video-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3,
h4 {
  font-family: 'Manrope', sans-serif;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.icon-svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  fill: currentColor;
}

.glow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--on-primary);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 62, 111, 0.35);
  transition: var(--transition);
  text-decoration: none;
}

.glow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 62, 111, 0.45);
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid var(--outline-variant);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.ghost-btn:hover {
  border-color: var(--primary);
  background: var(--surface-container-low);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-container-high);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.sec-head {
  text-align: center;
  margin-bottom: 64px;
}

.sec-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.sec-head p {
  font-size: 17px;
  color: var(--on-surface-variant);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== GLASS PANELS ===== */
.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.glass:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* ===== BACKGROUND DECORATORS ===== */
.bg-deco {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  background: var(--surface-container-low);
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ===== MOBILE PERFORMANCE OPTIMIZATIONS ===== */
@media (max-width: 768px) {
  .bg-blob {
    display: none !important;
  }

  .glass,
  .video-panel {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04) !important;
  }

  .browser-frame,
  .video-card,
  .feat-card {
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04) !important;
  }

  .hero-phone {
    animation: none !important;
  }

  .showcase-card .deco-blur {
    display: none !important;
  }

  .nav {
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
  }

  .phone-mockup {
    filter: none !important;
  }

  .fade-layer {
    animation-duration: 8s !important;
  }

  * {
    transition-duration: 0.2s !important;
  }
}

.bg-blob-1 {
  width: 600px;
  height: 600px;
  background: var(--primary-fixed-dim);
  top: -150px;
  left: -100px;
}

.bg-blob-2 {
  width: 500px;
  height: 500px;
  background: rgba(124, 58, 237, 0.3);
  bottom: -150px;
  right: -100px;
  animation-delay: -12s;
}

.bg-blob-3 {
  width: 400px;
  height: 400px;
  background: rgba(37, 99, 235, 0.2);
  top: 40%;
  left: 30%;
  animation-duration: 30s;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  100% {
    transform: translate(150px, 150px) scale(1.2) rotate(45deg);
  }
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(193, 199, 210, 0.3);
  transition: var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 40, 75, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.nav-brand span {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--on-surface-variant);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 8px;
}

/* Hide mobile-only nav items and icons on desktop */
.mobile-only-item {
  display: none;
}

.nav-link-icon {
  display: none;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--primary);
}

/* ===== HERO ===== */
.hero {
  padding: 120px 0 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero>.wrap {
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 102, 136, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content,
.hero-visual {
  opacity: 1 !important;
  transform: none !important;
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-content h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--secondary) 0%, #00a4d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 18px;
  color: var(--on-surface-variant);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(15, 23, 42, 0.12);
  flex-shrink: 0;
}

.hero-stat strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.hero-stat span {
  font-size: 13px;
  color: var(--on-surface-variant);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  perspective: 1200px;
}

.hero-mockup {
  position: relative;
  transform: rotateY(-1.5deg) rotateX(1deg);
  transform-style: preserve-3d;
}

/* Browser Mockup Shell */
.browser-frame {
  background: #1e293b;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: var(--transition);
}

.browser-header {
  background: #0f172a;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  user-select: none;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.br-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.br-dot.red {
  background: #ef4444;
}

.br-dot.yellow {
  background: #eab308;
}

.br-dot.green {
  background: #22c55e;
}

.browser-address {
  background: #1e293b;
  color: #94a3b8;
  font-size: 11px;
  padding: 3px 16px;
  border-radius: var(--radius-sm);
  flex-grow: 1;
  max-width: 260px;
  text-align: center;
  margin: 0 auto;
  font-family: monospace;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-body {
  position: relative;
  width: 100%;
  aspect-ratio: 800/520;
  overflow: hidden;
  background: #0f172a;
}

/* Carousel Container & Slides */
.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.carousel-nav {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  background: rgba(15, 23, 42, 0.7);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #ffffff;
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* Phone Mockup Container (Shape is now in the image itself) */
.phone-mockup {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Floating phone mockups positioning */
.hero-phone {
  position: absolute;
  width: 150px;
  height: 310px;
  animation: float 6s ease-in-out infinite;
  z-index: 12;
}

.hero-phone-1 {
  bottom: -40px;
  left: -65px;
  animation-delay: 0s;
}

.hero-phone-2 {
  top: -30px;
  right: -55px;
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ===== TRUST BAR ===== */
.trust {
  padding: 40px 0;
  border-top: 1px solid rgba(193, 199, 210, 0.25);
  border-bottom: 1px solid rgba(193, 199, 210, 0.25);
  background: var(--surface-container-low);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 15px;
  color: var(--on-surface-variant);
}

.trust-inner b {
  background: var(--surface-container-high);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
}

/* ===== VIDEO DEMO SECTION ===== */
.video-section {
  padding: 100px 0;
  position: relative;
}

.video-panel {
  background: rgba(250, 248, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 32px;
  padding: 56px;
  box-shadow:
    0 20px 60px -15px rgba(0, 40, 75, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

/* Soft glowing aura behind the video inside the panel */
.video-panel::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  z-index: 0;
  pointer-events: none;
}

.video-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.video-info {
  display: flex;
  flex-direction: column;
}

.video-info .eyebrow {
  align-self: flex-start;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  border: 1px solid rgba(37, 99, 235, 0.15);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.video-info h2 {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 850;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.video-info p {
  font-size: 15px;
  color: var(--on-surface-variant);
  margin-bottom: 32px;
  line-height: 1.6;
}

.video-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-highlights li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 18px;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  cursor: pointer;
}

.video-highlights li:hover {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.04);
  transform: translate3d(4px, 0, 0);
}

/* Highlight the first item as the active default tab look */
.video-highlights li:first-child {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}

.highlight-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 4px 10px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.highlight-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.highlight-text strong {
  font-size: 14px;
  color: var(--primary);
  font-weight: 700;
}

.highlight-text span {
  font-size: 12px;
  color: var(--on-surface-variant);
  line-height: 1.5;
}

.video-player-container {
  position: relative;
  width: 100%;
}

.video-card {
  background: #090d16;
  border-radius: 24px;
  overflow: hidden;
  z-index: 1;
  aspect-ratio: 3/2;
  box-shadow:
    0 30px 70px -10px rgba(15, 23, 42, 0.15),
    0 0 0 1px rgba(15, 23, 42, 0.04);
  position: relative;
}

.video-card video {
  width: 101%;
  height: 101%;
  object-fit: cover;
  display: block;
  border: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}

.video-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
  z-index: 2;
}

/* ===== FEATURES (BENTO GRID) ===== */
.features {
  padding: 100px 0;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.feat-card {
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.feat-card.span-6 {
  grid-column: span 6;
}

.feat-card.span-8 {
  grid-column: span 8;
}

.feat-card.span-4 {
  grid-column: span 4;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0.15;
  transition: var(--transition);
}

.feat-card:hover::before {
  transform: scale(1.5);
  opacity: 0.25;
}

.feat-card .feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
}

.feat-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.feat-card p {
  font-size: 14px;
  color: var(--on-surface-variant);
  line-height: 1.6;
  margin-bottom: auto;
}

/* Bento visual content styles */
.feat-card-split {
  display: flex;
  gap: 32px;
  width: 100%;
  height: 100%;
  align-items: center;
}

.feat-card-content {
  flex: 1.2;
}

.feat-card-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  width: 100%;
}

.mock-attendance {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  box-shadow: var(--shadow-sm);
}

.mock-attendance-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.mock-attendance-row:hover {
  background: rgba(37, 99, 235, 0.03);
}

/* Staggered slide-in for attendance rows */
.mock-attendance-row:nth-child(1) {
  transition-delay: 0.15s;
}

.mock-attendance-row:nth-child(2) {
  transition-delay: 0.3s;
}

.mock-attendance-row:nth-child(3) {
  transition-delay: 0.45s;
}

.visible .mock-attendance-row {
  opacity: 1;
  transform: translateX(0);
}

.mock-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

.mock-name {
  flex-grow: 1;
  font-weight: 500;
  color: var(--primary);
}

.mock-status {
  padding: 1px 6px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 600;
}

.mock-status.present {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.mock-status.late {
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
}

.mock-status.absent {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.mock-fees {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  box-shadow: var(--shadow-sm);
}

.mock-fees-summary {
  display: flex;
  justify-content: space-between;
}

.mock-fee-stat {
  display: flex;
  flex-direction: column;
}

.mock-stat-label {
  font-size: 10px;
  color: var(--on-surface-variant);
}

.mock-stat-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.mock-progress-bar {
  height: 5px;
  background: var(--surface-container-high);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.mock-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--tertiary) 100%);
  border-radius: var(--radius-full);
  width: 0 !important;
  transition: width 1s cubic-bezier(0.25, 1, 0.5, 1) 0.3s;
}

.visible .mock-progress-fill {
  width: 95% !important;
}

.mock-fees-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.mock-fee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.mock-fee-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fee-student-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.fee-student-info strong {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
}

.fee-student-info span {
  font-size: 9px;
  color: var(--on-surface-variant);
}

.mock-badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 9px;
}

.mock-badge-error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 9px;
}

.mock-timetable {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-md);
  padding: 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.mock-tt-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  font-size: 9px;
  font-weight: 600;
  color: var(--on-surface-variant);
  margin-bottom: 2px;
}

.mock-tt-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.mock-tt-cell {
  background: var(--surface);
  border: 1px dashed var(--outline);
  border-radius: var(--radius-sm);
  padding: 4px 2px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 42px;
  color: var(--on-surface-variant);
}

.mock-tt-cell small {
  font-size: 8px;
  font-weight: 400;
  opacity: 0.8;
}

.mock-tt-cell.active-cell {
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--secondary);
}

.mock-tt-cell.active-cell.sec-cell {
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.25);
  color: var(--tertiary);
}

.mock-tt-cell.sub-cell {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #d97706;
}

.mock-tt-cell.active-cell.third-cell {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #10b981;
}

.mock-tt-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 600;
  color: #10b981;
  margin-top: 2px;
}

/* Mock Library Management */
.mock-library {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  box-shadow: var(--shadow-sm);
}

.mock-book-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(226, 232, 240, 0.5);
  font-size: 11px;
}

.book-cover-icon {
  font-size: 14px;
}

.book-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  line-height: 1.2;
}

.book-info strong {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
}

.book-info span {
  font-size: 8.5px;
  color: var(--on-surface-variant);
}

.mock-badge-warning {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 9px;
}

.mock-progress {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  box-shadow: var(--shadow-sm);
}

.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 36px;
  flex-grow: 1;
}

.mock-bar-item {
  flex: 1;
  height: 100%;
  background: var(--surface-container-high);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.mock-bar-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, var(--secondary) 0%, var(--tertiary) 100%);
  border-radius: 3px;
  height: 0 !important;
  transition: height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Staggered animation delays */
.mock-bar-item:nth-child(1) span {
  transition-delay: 0.1s;
}

.mock-bar-item:nth-child(2) span {
  transition-delay: 0.25s;
}

.mock-bar-item:nth-child(3) span {
  transition-delay: 0.4s;
}

.mock-bar-item:nth-child(4) span {
  transition-delay: 0.55s;
}

/* When the parent card is visible, animate bars to their target height */
.visible .mock-bar-item:nth-child(1) span {
  height: 40% !important;
}

.visible .mock-bar-item:nth-child(2) span {
  height: 65% !important;
}

.visible .mock-bar-item:nth-child(3) span {
  height: 85% !important;
}

.visible .mock-bar-item:nth-child(4) span {
  height: 95% !important;
}

.mock-progress-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.mock-progress-summary span {
  font-size: 10px;
  color: var(--on-surface-variant);
}

.mock-progress-summary strong {
  font-size: 16px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--tertiary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.mock-hpc {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  box-shadow: var(--shadow-sm);
}

.hpc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.hpc-tag {
  padding: 1px 6px;
  border-radius: var(--radius-full);
  font-size: 9px;
  font-weight: 600;
}

.hpc-tag.found {
  background: rgba(37, 99, 235, 0.08);
  color: var(--secondary);
}

.hpc-tag.prep {
  background: rgba(124, 58, 237, 0.08);
  color: var(--tertiary);
}

.hpc-tag.mid {
  background: rgba(219, 39, 119, 0.08);
  color: #db2777;
}

.hpc-tag.sec {
  background: rgba(5, 150, 105, 0.08);
  color: #059669;
}

.hpc-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  color: var(--on-surface-variant);
}

.hpc-radar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #db2777;
  box-shadow: 0 0 6px #db2777;
}

.mock-profile {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  box-shadow: var(--shadow-sm);
}

.mock-search-bar {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  font-size: 10px;
  color: var(--outline-variant);
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}

.visible .mock-search-bar {
  opacity: 1;
  transform: translateY(0);
}

.mock-profile-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(226, 232, 240, 0.85);
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.3s;
}

.visible .mock-profile-card {
  opacity: 1;
  transform: translateX(0);
}

.mock-profile-card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.mock-profile-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #4f46e5;
  color: white;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-profile-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mock-profile-details strong {
  font-size: 11px;
  color: var(--primary);
}

.mock-profile-details span {
  font-size: 8px;
  color: var(--on-surface-variant);
}

.mock-profile-view-btn {
  font-size: 9px;
  font-weight: 700;
  color: var(--secondary);
  background: rgba(37, 99, 235, 0.06);
  padding: 1px 6px;
  border-radius: var(--radius-full);
}

.mock-points {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-shadow: var(--shadow-sm);
}

.points-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.points-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.points-user {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.points-user strong {
  font-size: 12px;
  color: var(--primary);
}

.points-user span {
  font-size: 9px;
  color: var(--on-surface-variant);
}

.points-score {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--surface);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.score-star {
  font-size: 11px;
  animation: spin-pulse 2s infinite alternate ease-in-out;
}

.points-score strong {
  font-size: 12px;
  color: #d97706;
}

.points-score small {
  font-size: 9px;
  color: var(--on-surface-variant);
}

.points-speech-bubble {
  position: relative;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.3s;
}

.visible .points-speech-bubble {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.bubble-arrow {
  position: absolute;
  top: -6px;
  left: 16px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-left: 1px solid rgba(226, 232, 240, 0.85);
  border-top: 1px solid rgba(226, 232, 240, 0.85);
  transform: rotate(45deg);
}

.bubble-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bubble-desc {
  font-size: 11px;
  font-weight: 500;
  color: var(--on-surface-variant);
}

.bubble-points {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

@keyframes spin-pulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15);
  }
}

.mock-announcements {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mock-noti {
  background: var(--surface);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-left: 3px solid var(--secondary);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.mock-noti:nth-child(1) {
  transition-delay: 0.15s;
}

.mock-noti:nth-child(2) {
  transition-delay: 0.35s;
}

.visible .mock-noti {
  opacity: 1;
  transform: translateY(0);
}

.mock-noti:hover {
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.noti-icon {
  font-size: 18px;
  color: var(--secondary);
}

.mock-noti-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mock-noti-text strong {
  font-size: 11px;
  color: var(--primary);
}

.mock-noti-text span {
  font-size: 9px;
  color: var(--on-surface-variant);
}

.mock-noti-time {
  font-size: 8px;
  color: var(--outline-variant);
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
  margin-top: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.live-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #ef4444;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.live-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #ef4444;
  animation: live-pulse 1.8s infinite cubic-bezier(0.24, 0, 0.38, 1);
}

.live-dot.green {
  background: #10b981;
}

.live-dot.green::after {
  box-shadow: 0 0 0 1px #10b981;
}

@keyframes live-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

/* Colors and gradient effects */
.feat-card:nth-child(1)::before {
  background: var(--secondary);
}

.feat-card:nth-child(1) .feat-icon {
  background: rgba(0, 102, 136, 0.1);
  color: var(--secondary);
}

.feat-card:nth-child(2)::before {
  background: #7c3aed;
}

.feat-card:nth-child(2) .feat-icon {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.feat-card:nth-child(3)::before {
  background: #059669;
}

.feat-card:nth-child(3) .feat-icon {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
}

.feat-card:nth-child(4)::before {
  background: #d97706;
}

.feat-card:nth-child(4) .feat-icon {
  background: rgba(217, 119, 6, 0.1);
  color: #d97706;
}

.feat-card:nth-child(5)::before {
  background: #dc2626;
}

.feat-card:nth-child(5) .feat-icon {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.feat-card:nth-child(6)::before {
  background: var(--primary);
}

.feat-card:nth-child(6) .feat-icon {
  background: rgba(0, 40, 75, 0.1);
  color: var(--primary);
}

.feat-card:nth-child(7)::before {
  background: #db2777;
}

.feat-card:nth-child(7) .feat-icon {
  background: rgba(219, 39, 119, 0.1);
  color: #db2777;
}

.feat-card:nth-child(8)::before {
  background: #0d9488;
}

.feat-card:nth-child(8) .feat-icon {
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
}

/* ===== APP SHOWCASE (3 Apps) ===== */
.showcase {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-container-low) 50%, var(--surface) 100%);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.showcase-card {
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.showcase-card .deco-blur {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.4;
  transition: opacity 0.4s ease;
}

.showcase-card:hover .deco-blur {
  opacity: 0.6;
}

/* Admin Panel — spans 12 cols */
.sc-admin {
  grid-column: span 12;
  display: flex;
  gap: 48px;
  align-items: center;
  padding: 32px 40px !important;
}

.sc-admin .deco-blur {
  top: -40px;
  right: -40px;
  background: var(--primary-fixed-dim);
}

.sc-admin-info {
  flex: 1;
  position: relative;
  z-index: 2;
}

.sc-admin-info .sc-app-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 40, 75, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sc-admin-info h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.sc-admin-info p {
  font-size: 15px;
  color: var(--on-surface-variant);
  line-height: 1.7;
  margin-bottom: 20px;
}

.sc-admin-info .check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sc-admin-info .check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--on-surface-variant);
}

.sc-admin-info .check-list .icon-svg {
  color: var(--secondary);
  width: 20px;
  height: 20px;
}

.sc-admin-visual {
  flex: 1.1;
  max-width: 480px;
  position: relative;
  z-index: 2;
}

.sc-admin-visual .browser-frame {
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  transform: translate3d(0, 0, 0);
  aspect-ratio: 16/10;
  width: 100%;
}

.sc-admin:hover .sc-admin-visual .browser-frame {
  transform: translate3d(0, -6px, 0);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Admin slide crossfade animation */
.admin-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #090d16;
}

.admin-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: adminFade 16s infinite ease-in-out;
  will-change: opacity;
}

.admin-slide:nth-child(1) {
  animation-delay: 0s;
}

.admin-slide:nth-child(2) {
  animation-delay: 4s;
}

.admin-slide:nth-child(3) {
  animation-delay: 8s;
}

.admin-slide:nth-child(4) {
  animation-delay: 12s;
}

@keyframes adminFade {

  0%,
  100% {
    opacity: 0;
    z-index: 1;
  }

  2%,
  23% {
    opacity: 1;
    z-index: 2;
  }

  25%,
  98% {
    opacity: 0;
    z-index: 1;
  }
}

/* Teacher App — spans 6 cols */
.sc-teacher {
  grid-column: span 6;
  display: flex;
  align-items: center;
  gap: 24px;
}

.sc-teacher .deco-blur {
  bottom: -40px;
  right: -40px;
  background: var(--secondary-container);
}

.sc-teacher-info {
  flex: 1;
  position: relative;
  z-index: 2;
}

.sc-teacher-info .sc-app-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 102, 136, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sc-teacher-info h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.sc-teacher-info p {
  font-size: 14px;
  color: var(--on-surface-variant);
  line-height: 1.6;
  margin-bottom: 16px;
}

.sc-teacher-info .feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sc-teacher-info .feat-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--on-surface-variant);
  font-weight: 500;
}

.sc-teacher-info .feat-list .icon-svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
}

.sc-teacher-visual {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sc-teacher-visual .phone-mockup {
  width: 165px;
  height: 330px;
  transform: translate3d(0, 15px, 0);
  transition: transform var(--transition);
}

.sc-teacher:hover .sc-teacher-visual .phone-mockup {
  transform: translate3d(0, 0, 0);
}

/* Student & Parent — spans 6 cols */
.sc-student {
  grid-column: span 6;
  display: flex;
  align-items: center;
  gap: 24px;
}

.sc-student-info {
  flex: 1;
  position: relative;
  z-index: 2;
}

.sc-student-info .sc-app-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(12, 0, 142, 0.06);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--tertiary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sc-student-info h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.sc-student-info p {
  font-size: 14px;
  color: var(--on-surface-variant);
  line-height: 1.6;
  margin-bottom: 16px;
}

.sc-student-info .feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sc-student-info .feat-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--on-surface-variant);
  font-weight: 500;
}

.sc-student-info .feat-list .icon-svg {
  width: 18px;
  height: 18px;
  color: var(--tertiary);
}

.sc-student-visual {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sc-student-visual .phone-mockup {
  width: 165px;
  height: 330px;
  transform: translate3d(0, 15px, 0);
  transition: transform var(--transition);
}

.sc-student:hover .sc-student-visual .phone-mockup {
  transform: translate3d(0, 0, 0);
}



/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 120px 0;
  position: relative;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.step-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 28px;
  padding: 40px 36px 44px;
  text-align: left;
  box-shadow: 0 15px 40px -10px rgba(15, 23, 42, 0.03), 0 1px 3px rgba(15, 23, 42, 0.01);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.08);
}

.step-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  width: 100%;
}

/* Icon circles */
.step-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.step-icon-blue {
  background: rgba(37, 99, 235, 0.06);
  color: #2563eb;
}

.step-icon-purple {
  background: rgba(124, 58, 237, 0.06);
  color: #7c3aed;
}

.step-icon-emerald {
  background: rgba(16, 185, 129, 0.06);
  color: #10b981;
}

.step-card:hover .step-icon-blue {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.step-card:hover .step-icon-purple {
  background: #7c3aed;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
}

.step-card:hover .step-icon-emerald {
  background: #10b981;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.step-icon-wrap svg {
  stroke-width: 2.2px;
  transition: stroke 0.3s ease;
}

/* Big background/header number text */
.step-number-text {
  font-size: 36px;
  font-weight: 900;
  font-family: 'Manrope', sans-serif;
  color: rgba(15, 23, 42, 0.08);
  letter-spacing: -0.03em;
  transition: all 0.3s ease;
}

.step-card:hover .step-number-text {
  color: rgba(15, 23, 42, 0.15);
  transform: scale(1.05);
}

.step-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.step-card p {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 28px;
}

/* Bottom dynamic progress indicators */
.step-progress-indicator {
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: #e2e8f0;
  transition: all 0.4s ease;
}

.step-card:hover .step-progress-indicator.bar-blue {
  background: #2563eb;
  width: 80px;
}

.step-card:hover .step-progress-indicator.bar-purple {
  background: #7c3aed;
  width: 80px;
}

.step-card:hover .step-progress-indicator.bar-emerald {
  background: #10b981;
  width: 80px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .steps-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-card {
    padding: 32px 28px;
  }
}

/* ===== PRICING TEASER ===== */
.pricing {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-container-low) 100%);
  position: relative;
  overflow: hidden;
}

.pricing-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.pricing-info {
  display: flex;
  flex-direction: column;
}

.pricing-info .price-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.1);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 750;
  color: var(--secondary);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-info h2 {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 850;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.pricing-info p {
  font-size: 16px;
  color: var(--on-surface-variant);
  line-height: 1.65;
  margin-bottom: 32px;
}

.pricing-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.pricing-benefits .material-symbols-outlined {
  color: #059669;
  font-size: 20px;
}

/* Pricing card graphic styling */
.pricing-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  padding: 48px;
  box-shadow:
    0 30px 70px -10px rgba(0, 40, 75, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 #fff;
  text-align: center;
  position: relative;
}

/* Glow ring behind card */
.pricing-card::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
  filter: blur(15px);
  z-index: -1;
  pointer-events: none;
}

.p-card-header {
  margin-bottom: 24px;
}

.p-card-header span {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--secondary);
  display: block;
  margin-bottom: 6px;
}

.p-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.p-card-price strong {
  font-size: 48px;
  font-weight: 850;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.p-card-price span {
  font-size: 15px;
  color: var(--on-surface-variant);
  font-weight: 600;
}

.p-card-desc {
  font-size: 13px;
  color: var(--on-surface-variant);
  line-height: 1.5;
  margin-bottom: 32px;
}

.pricing-card .glow-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-weight: 700;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 75% at 50% 50%, rgba(37, 99, 235, 0.07) 0%, transparent 75%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto;
}

.cta-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  padding: 52px 48px;
  box-shadow:
    0 30px 80px -15px rgba(37, 99, 235, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 #ffffff;
  text-align: center;
  position: relative;
}

.cta-header {
  max-width: 600px;
  margin: 0 auto 36px;
}

.cta-heading {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 850;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--tertiary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtext {
  font-size: 15.5px;
  color: var(--on-surface-variant);
  line-height: 1.6;
}

.cta-form {
  width: 100%;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
  text-align: left;
}

.cta-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cta-field-group.full-width {
  grid-column: span 2;
}

.cta-input-box {
  background: #ffffff;
  border: 1.5px solid var(--surface-container-high);
  border-radius: 14px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.02);
}

.cta-input-box.textarea-box {
  align-items: flex-start;
  padding-top: 14px;
  padding-bottom: 14px;
}

.cta-input-box.textarea-box .cta-field-icon {
  margin-top: 2px;
}

.cta-input-box:focus-within {
  border-color: var(--secondary);
  box-shadow:
    0 6px 20px rgba(37, 99, 235, 0.08),
    0 0 0 3px rgba(37, 99, 235, 0.12);
}

.cta-field-icon {
  color: var(--secondary);
  font-size: 20px;
  flex-shrink: 0;
  user-select: none;
  opacity: 0.85;
}

.cta-input-box input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--primary);
  padding: 13px 0;
  width: 100%;
}

.cta-input-box textarea {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--primary);
  resize: none;
  height: 72px;
  min-height: 72px;
  width: 100%;
  line-height: 1.5;
  padding: 0;
  margin: 0;
}

.cta-input-box input::placeholder,
.cta-input-box textarea::placeholder {
  color: var(--outline-variant);
  font-weight: 400;
}

.cta-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 44px;
  font-size: 15.5px;
  font-weight: 750;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #7c3aed 100%);
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  color: #ffffff;
  margin-top: 8px;
}

.cta-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(37, 99, 235, 0.45);
}

.cta-submit-btn .btn-arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.cta-submit-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.cta-status-message {
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 0px;
  transition: all 0.3s ease;
  text-align: center;
}

.cta-status-message.success {
  color: #059669;
}

.cta-status-message.error {
  color: #dc2626;
}

/* ===== FOOTER ===== */
.footer {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--on-surface-variant);
  padding: 48px 0 24px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      rgba(37, 99, 235, 0) 0%,
      rgba(37, 99, 235, 0.1) 30%,
      rgba(124, 58, 237, 0.1) 70%,
      rgba(124, 58, 237, 0) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
  align-items: start;
}

.footer-brand p {
  font-size: 13.5px;
  color: var(--on-surface-variant);
  line-height: 1.65;
  max-width: 300px;
  opacity: 0.8;
}

.footer-contact {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--on-surface-variant);
}

.footer-contact-item .icon-svg {
  color: var(--secondary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: var(--secondary);
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-socials .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.05);
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-socials .social-icon:hover {
  background: var(--secondary);
  color: var(--on-primary);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-col a {
  display: block;
  color: var(--on-surface-variant);
  text-decoration: none;
  font-size: 13.5px;
  margin-bottom: 10px;
  transition: var(--transition);
  font-weight: 500;
}

.footer-col a:hover {
  color: var(--secondary);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--on-surface-variant);
  font-weight: 500;
  opacity: 0.7;
}

.footer-bottom-links {
  display: none;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Auto crossfade animation for phones */
.phone-mockup .fade-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  animation: fadeCycle 6s infinite alternate ease-in-out;
}

@keyframes fadeCycle {

  0%,
  35% {
    opacity: 0;
  }

  65%,
  100% {
    opacity: 1;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-phone {
    display: none;
  }

  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feat-card.span-6,
  .feat-card.span-8,
  .feat-card.span-4 {
    grid-column: span 2;
  }

  .feat-card-split {
    flex-direction: column;
    align-items: stretch;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .sc-admin,
  .sc-teacher,
  .sc-student,
  .sc-cta {
    grid-column: span 1;
  }

  .sc-admin,
  .sc-teacher,
  .sc-student {
    flex-direction: column !important;
    align-items: stretch;
    padding: 32px 24px !important;
  }

  .sc-admin-visual,
  .sc-teacher-visual,
  .sc-student-visual {
    width: 100%;
    max-width: 480px;
    margin: 32px auto 0;
    display: flex;
    justify-content: center;
  }

  .sc-teacher-visual .phone-mockup,
  .sc-student-visual .phone-mockup {
    width: 165px;
    height: 330px;
    transform: none !important;
  }

  .sc-teacher:hover .sc-teacher-visual .phone-mockup,
  .sc-student:hover .sc-student-visual .phone-mockup {
    transform: none !important;
  }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps-row::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
    margin-bottom: 12px;
  }

  .video-panel {
    padding: 32px;
    border-radius: 24px;
  }

  .video-split {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .video-highlights {
    max-width: 500px;
    margin: 0 auto;
  }

  .pricing-split {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .pricing-info .price-badge {
    align-self: center;
  }

  .pricing-benefits {
    align-items: center;
  }

  .pricing-card {
    max-width: 480px;
    margin: 0 auto;
    padding: 36px;
  }
}



@media (max-width: 640px) {

  /* ---- MOBILE NAV ---- */
  .nav-inner {
    height: 56px !important;
    padding: 0 16px !important;
  }

  .nav-brand img {
    height: 32px !important;
  }

  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 12px 24px;
    gap: 0;
    box-shadow: 0 15px 35px rgba(0, 40, 75, 0.1);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
    z-index: 999;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: flex !important;
    align-items: center !important;
    padding: 14px 0 !important;
    font-size: 15px !important;
    font-weight: 550 !important;
    color: var(--primary) !important;
    background: transparent !important;
    border-radius: 0;
    transition: color 0.2s ease !important;
  }

  .nav-links a:active {
    color: var(--secondary) !important;
  }

  .nav-links.open {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: all !important;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: transparent !important;
    border: none !important;
    transition: transform 0.2s ease;
  }

  .nav-toggle:active {
    transform: scale(0.9);
  }

  .nav-toggle .icon-svg {
    width: 24px !important;
    height: 24px !important;
    color: var(--primary);
  }

  .nav-cta-desktop {
    display: none;
  }

  /* Show mobile-only items */
  .mobile-only-item {
    display: list-item !important;
  }

  .nav-link-icon {
    display: inline-flex !important;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    color: var(--secondary);
    flex-shrink: 0;
  }

  .nav-links a::after {
    display: none !important;
  }



  /* ---- MOBILE TYPOGRAPHY ---- */
  h1 {
    font-size: 30px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
  }

  h2,
  .sec-head h2,
  .video-info h2 {
    font-size: 22px !important;
    line-height: 1.25 !important;
  }

  .wrap {
    padding: 0 16px !important;
  }

  /* ---- MOBILE HERO ---- */
  .hero {
    padding: 88px 0 40px !important;
  }

  .hero-content p {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
  }

  .hero-btns .glow-btn,
  .hero-btns .ghost-btn {
    padding: 12px 24px !important;
    font-size: 14px !important;
  }

  .hero-stats {
    flex-direction: row !important;
    justify-content: center;
    gap: 16px !important;
    flex-wrap: nowrap !important;
    margin-top: 8px;
  }

  .stat-divider {
    height: 24px !important;
  }

  .hero-stat {
    text-align: center;
  }

  .hero-stat strong {
    font-size: 20px !important;
  }

  .hero-stat span {
    font-size: 11px !important;
  }

  .hero-visual {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .hero-mockup {
    transform: none !important;
  }

  .browser-body {
    aspect-ratio: 1.48 !important;
  }

  .hero-phone {
    display: block !important;
    width: 85px !important;
    height: 175px !important;
  }

  .hero-phone-1 {
    bottom: -35px !important;
    left: -12px !important;
  }

  .hero-phone-2 {
    top: -15px !important;
    right: -10px !important;
  }

  .browser-frame {
    border-radius: 16px !important;
  }

  .browser-header {
    padding: 8px 12px !important;
    gap: 8px !important;
  }

  .br-dot {
    width: 7px !important;
    height: 7px !important;
  }

  .browser-address {
    font-size: 9px !important;
    padding: 3px 10px !important;
    max-width: 180px !important;
  }

  .carousel-nav {
    bottom: 8px !important;
    padding: 5px 10px !important;
    gap: 6px !important;
  }

  .carousel-dot {
    width: 8px !important;
    height: 8px !important;
  }

  .carousel-dot.active {
    width: 20px !important;
    border-radius: 4px !important;
    transform: none !important;
  }

  /* ---- TRUST BAR ---- */
  .trust {
    padding: 24px 0 !important;
  }

  .trust-inner {
    font-size: 12px !important;
    gap: 8px !important;
  }

  .trust-inner b {
    font-size: 11px !important;
    padding: 4px 10px !important;
  }

  /* ---- SECTIONS SPACING ---- */
  .features,
  .showcase,
  .how-it-works,
  .final-cta,
  .video-section {
    padding: 40px 0 !important;
  }

  .sec-head {
    margin-bottom: 24px !important;
  }

  .sec-head p {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  .eyebrow {
    font-size: 11px !important;
    padding: 5px 12px !important;
    margin-bottom: 12px !important;
  }

  /* ---- VIDEO SECTION ---- */
  .video-panel {
    padding: 20px 10px !important;
    border-radius: 20px !important;
  }

  .video-split {
    gap: 24px !important;
  }

  .video-info .eyebrow {
    align-self: center !important;
  }

  .video-info p {
    font-size: 13.5px !important;
    margin-bottom: 20px !important;
  }

  .video-card {
    border-radius: 16px !important;
    aspect-ratio: 3/2 !important;
  }

  .video-highlights {
    gap: 8px !important;
  }

  .video-highlights li {
    padding: 10px 12px !important;
    border-radius: 12px !important;
    gap: 12px !important;
  }

  .highlight-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
  }

  .highlight-icon .icon-svg {
    width: 18px !important;
    height: 18px !important;
  }

  .highlight-text strong {
    font-size: 13px !important;
  }

  .highlight-text span {
    font-size: 11px !important;
  }

  /* ---- FEATURES BENTO GRID ---- */
  .feat-grid {
    grid-template-columns: 1fr;
    gap: 12px !important;
  }

  .feat-card.span-6,
  .feat-card.span-8,
  .feat-card.span-4 {
    grid-column: span 1;
  }

  .feat-card {
    padding: 20px 18px !important;
    min-height: auto !important;
    border-radius: 20px !important;
  }

  .feat-card .feat-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    margin-bottom: 14px !important;
    font-size: 22px !important;
  }

  .feat-card h3 {
    font-size: 16px !important;
  }

  .feat-card p {
    font-size: 13px !important;
  }

  /* ---- APP SHOWCASE ---- */
  .showcase-grid {
    gap: 16px !important;
  }

  .sc-admin,
  .sc-teacher,
  .sc-student {
    flex-direction: column !important;
    padding: 24px 18px !important;
    border-radius: 20px !important;
  }

  .sc-admin h3,
  .sc-teacher h3,
  .sc-student h3 {
    font-size: 18px !important;
  }

  .sc-admin p,
  .sc-teacher p,
  .sc-student p {
    font-size: 13.5px !important;
  }

  .sc-admin-visual {
    width: 100% !important;
    margin-top: 20px !important;
  }

  .sc-admin-visual .browser-frame {
    border-radius: 14px !important;
  }

  .sc-teacher-visual,
  .sc-student-visual {
    width: 100% !important;
    max-width: 200px !important;
    margin: 24px auto 0 !important;
    display: flex !important;
    justify-content: center !important;
  }

  .sc-teacher-visual .phone-mockup,
  .sc-student-visual .phone-mockup {
    width: 180px !important;
    height: auto !important;
    transform: none !important;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.1)) !important;
  }

  .sc-teacher:hover .phone-mockup,
  .sc-student:hover .phone-mockup {
    transform: none !important;
  }

  .sc-cta {
    padding: 28px 20px !important;
    border-radius: 20px !important;
  }

  .sc-cta-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* ---- HOW IT WORKS ---- */
  .steps-row {
    gap: 16px !important;
  }

  .step-card {
    padding: 20px 18px !important;
    border-radius: 16px !important;
  }

  .step-num {
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
    margin-bottom: 12px !important;
  }

  .step-card h3 {
    font-size: 15px !important;
    margin-bottom: 4px !important;
  }

  .step-card p {
    font-size: 13px !important;
  }

  /* ---- CTA / CONTACT FORM ---- */
  /* ---- CTA / CONTACT FORM ---- */
  .final-cta {
    padding: 60px 0 !important;
  }

  .cta-card {
    padding: 32px 20px !important;
    border-radius: 24px !important;
  }

  .cta-header {
    margin-bottom: 24px !important;
  }

  .cta-heading {
    font-size: 24px !important;
  }

  .cta-subtext {
    font-size: 14px !important;
  }

  .cta-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
  }

  .cta-field-group.full-width {
    grid-column: span 1 !important;
  }

  .cta-input-box {
    padding: 0 14px !important;
  }

  .cta-input-box input {
    padding: 12px 0 !important;
    font-size: 14px !important;
  }

  .cta-input-box.textarea-box {
    align-items: flex-start !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }

  .cta-input-box.textarea-box .cta-field-icon {
    margin-top: 2px !important;
  }

  .cta-input-box textarea {
    font-size: 14px !important;
    height: 72px !important;
    min-height: 72px !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .cta-submit-btn {
    width: 100% !important;
    padding: 14px 28px !important;
    font-size: 14.5px !important;
  }

  .contact-grid-premium {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .contact-field-group-premium.full-width {
    grid-column: span 1 !important;
  }

  .contact-card-premium {
    padding: 28px 16px 36px !important;
    border-radius: 20px !important;
  }

  .contact-container-premium {
    padding: 0 4px !important;
  }

  .contact-header-premium {
    margin-bottom: 14px !important;
  }

  .contact-title-premium {
    font-size: 22px !important;
  }

  .contact-subtitle-premium {
    font-size: 13px !important;
  }

  .contact-separator {
    margin: 12px 0 !important;
  }

  .contact-input-box-premium {
    padding: 11px 14px !important;
    gap: 12px !important;
    border-radius: 12px !important;
  }

  .contact-input-icon-premium svg {
    width: 20px !important;
    height: 20px !important;
  }

  .contact-input-label-premium {
    font-size: 11px !important;
  }

  .contact-field-premium {
    font-size: 14px !important;
  }

  .contact-input-box-premium.textarea-box textarea {
    min-height: 50px !important;
  }

  .contact-submit-btn-premium {
    width: 100% !important;
    padding: 14px 28px !important;
    font-size: 14.5px !important;
    margin: 20px 0 0 !important;
    border-radius: 14px !important;
  }

  /* ---- PRICING ---- */
  .pricing-card {
    padding: 24px 18px !important;
    border-radius: 20px !important;
  }

  /* ---- FOOTER (COMPACT) ---- */
  .footer {
    padding: 32px 0 16px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }

  .footer-brand {
    grid-column: span 2 !important;
    margin-bottom: 0 !important;
  }

  .footer-brand img {
    height: 34px !important;
  }

  .footer-brand p {
    font-size: 12.5px !important;
    max-width: none !important;
  }

  .footer-contact {
    margin-top: 12px !important;
    gap: 6px !important;
  }

  .footer-contact-item {
    font-size: 12px !important;
  }

  .footer-socials {
    margin-top: 12px !important;
  }

  .footer-socials .social-icon {
    width: 32px !important;
    height: 32px !important;
  }

  /* Hide ALL link columns on mobile — only brand + socials + bottom bar visible */
  .footer-col {
    display: none !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 6px !important;
    text-align: center !important;
    padding-top: 16px !important;
    font-size: 11.5px !important;
  }

  .footer-bottom-links {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }

  .footer-bottom-links a {
    color: var(--on-surface-variant);
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 500;
    transition: var(--transition);
  }

  .footer-bottom-links a:hover {
    color: var(--secondary);
  }
}