/* ============================================================
   myCampus — Theme Override
   Applies myCampus design language on top of redesign.css
   Deep Indigo · Saffron Orange · White/Light · Noto Sans
   ============================================================ */

/* ── Font ───────────────────────────────────────────────────── */
body,
.hero-title, .hero-desc, .hero-badge,
.section-title, .section-subtitle, .section-tag,
.btn-primary-mc, .btn-outline-mc, .btn-demo, .btn-contact-nav,
.nav-links a, .feature-card h3, .feature-card p,
.ai-card h3, .ai-card p,
.stat-item .label, .faq-question, .faq-answer {
  font-family: 'Noto Sans', system-ui, -apple-system, sans-serif;
}

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  --primary:        #332f82;
  --primary-dark:   #211d5e;
  --primary-light:  #4c47a8;
  --primary-50:     #eaeaf2;
  --primary-100:    #d6d5e6;

  --accent:         #e88532;       /* saffron orange replaces cyan */
  --accent-dark:    #c46a1a;
  --accent-light:   #f0a55e;

  --purple:         #613AF5;       /* accent blue-violet */
  --purple-light:   #a07fff;
  --green:          #3C9718;
  --orange:         #e88532;

  --dark:           #1a1839;       /* deep indigo-navy */
  --dark2:          #2d2b55;
  --gray:           #5a6080;
  --gray-light:     #f8f8f8;
  --white:          #ffffff;

  /* Gradients — indigo to saffron */
  --gradient:       linear-gradient(135deg, #211d5e 0%, #332f82 55%, #4c47a8 100%);
  --gradient-ai:    linear-gradient(135deg, #332f82 0%, #613AF5 100%);
  --gradient-hero:  linear-gradient(160deg, #0d0b2e 0%, #1a1760 40%, #332f82 75%, #4c47a8 100%);
  --gradient-warm:  linear-gradient(135deg, #e88532 0%, #f0a500 100%);

  /* Shadows */
  --shadow-sm:      0 2px 8px rgba(51,47,130,0.08);
  --shadow-md:      0 8px 32px rgba(51,47,130,0.14);
  --shadow-lg:      0 20px 60px rgba(51,47,130,0.20);

  --radius:         16px;
  --radius-sm:      10px;
  --radius-lg:      24px;
  --transition:     0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── Navbar ─────────────────────────────────────────────────── */
#navbar .mc-nav {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(51,47,130,0.08);
}
.nav-brand img {
  height: 56px;
  width: auto;
}
.nav-links a:hover {
  background: rgba(51,47,130,0.07);
  color: var(--primary);
}
.btn-demo {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 4px 16px rgba(51,47,130,0.3);
}
.btn-demo:hover {
  box-shadow: 0 6px 24px rgba(51,47,130,0.45);
}
.btn-contact-nav:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(51,47,130,0.05);
}
.mobile-nav a:hover {
  background: rgba(51,47,130,0.07);
  color: var(--primary);
}

/* ── Hero Section ───────────────────────────────────────────── */
#hero-section {
  background: var(--gradient-hero);
}
#hero-section::before {
  background: radial-gradient(circle, rgba(97,58,245,0.15) 0%, transparent 70%);
}
#hero-section::after {
  background: radial-gradient(circle, rgba(232,133,50,0.10) 0%, transparent 70%);
}
.hero-orb-1 {
  background: radial-gradient(circle, rgba(97,58,245,0.2) 0%, transparent 70%);
}
.hero-orb-2 {
  background: radial-gradient(circle, rgba(232,133,50,0.15) 0%, transparent 70%);
}
.hero-orb-3 {
  background: radial-gradient(circle, rgba(51,47,130,0.2) 0%, transparent 70%);
}
.hero-badge {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #ffb07a;
}
.hero-badge .dot {
  background: #ffb07a;
}
.hero-title .highlight {
  background: linear-gradient(90deg, #ffb07a, #f0a500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat .stat-number span {
  background: linear-gradient(90deg, #ffb07a, #f0a500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-actions .btn-primary-mc {
  background: linear-gradient(135deg, var(--accent), #f0a500);
  box-shadow: 0 8px 30px rgba(232,133,50,0.35);
}
.hero-actions .btn-primary-mc:hover {
  box-shadow: 0 12px 40px rgba(232,133,50,0.5);
}

/* ── Stats Banner ───────────────────────────────────────────── */
#stats-section {
  background: var(--primary);
}
#stats-section::before {
  background: radial-gradient(ellipse 80% 150% at 50% 50%, rgba(97,58,245,0.25) 0%, transparent 70%);
}
.stat-item .number {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #ffffff;
  background-clip: unset;
  color: #ffffff;
}
.stat-item .label {
  color: rgba(255,255,255,0.85);
}
.stat-item {
  border-right-color: rgba(255,255,255,0.12);
}

/* ── Section Tags ───────────────────────────────────────────── */
.section-tag {
  background: rgba(51,47,130,0.08);
  color: var(--primary);
}
.section-tag.ai {
  background: rgba(97,58,245,0.1);
  color: #613AF5;
}

/* ── Gradient Text ──────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), #613AF5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary-mc {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 4px 20px rgba(51,47,130,0.3);
}
.btn-primary-mc:hover {
  box-shadow: 0 8px 30px rgba(51,47,130,0.45);
}
.btn-outline-mc {
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-mc:hover {
  background: var(--primary);
  color: var(--white);
}

/* ── Features Section ───────────────────────────────────────── */
#features-section {
  background: var(--white);
}
.feature-card {
  border-color: rgba(51,47,130,0.08);
}
.feature-card::before {
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.feature-card:hover {
  border-color: rgba(51,47,130,0.15);
  box-shadow: var(--shadow-lg);
}

/* ── AI Features Section ────────────────────────────────────── */
#ai-features-section {
  background: linear-gradient(160deg, #0d0b2e 0%, #1a1760 50%, #211d5e 100%);
}
.ai-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
}
.ai-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(232,133,50,0.35);
  box-shadow: 0 20px 60px rgba(232,133,50,0.12);
}
.ai-card-icon {
  background: linear-gradient(135deg, rgba(51,47,130,0.4), rgba(97,58,245,0.3));
}

/* ── CTA Banner ─────────────────────────────────────────────── */
#cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
}

/* ── Clients Section ────────────────────────────────────────── */
#clients-section {
  background: var(--gray-light);
}

/* ── Testimonial Section ────────────────────────────────────── */
#testimonial-section {
  background: var(--white);
}

/* ── FAQ Section ────────────────────────────────────────────── */
#faq-section {
  background: var(--gray-light);
}
.faq-item {
  border-color: rgba(51,47,130,0.1);
}
.faq-item.active,
.faq-item:hover {
  border-color: rgba(51,47,130,0.25);
}
.faq-question {
  color: var(--dark);
}
.faq-icon {
  color: var(--primary);
}

/* ── Contact Section ────────────────────────────────────────── */
#contact-section {
  background: linear-gradient(160deg, #f0f0f8 0%, #faf9ff 50%, #f5f0ff 100%);
  position: relative;
  overflow: hidden;
}
#contact-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(51,47,130,0.07) 0%, transparent 70%);
  pointer-events: none;
}
#contact-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(232,133,50,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cs-heading-row {
  margin-bottom: 40px;
}
.cs-heading-row .section-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Cards use myCampus color accent */
.cs-card {
  border-color: rgba(51,47,130,0.08);
  box-shadow: 0 4px 24px rgba(51,47,130,0.08);
  position: relative;
  overflow: hidden;
}
.cs-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cs-card-touch::before  { background: linear-gradient(90deg, var(--primary), #4c47a8); }
.cs-card-services::before { background: linear-gradient(90deg, #613AF5, #a07fff); }
.cs-card-app::before    { background: linear-gradient(90deg, #059669, #10b981); }
.cs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(51,47,130,0.14);
  border-color: rgba(51,47,130,0.15);
}
.cs-card:hover::before { opacity: 1; }
/* Card header icons — myCampus brand colors */
.cs-card-touch .cs-header-icon   { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.cs-card-services .cs-header-icon { background: linear-gradient(135deg, #613AF5, #a07fff); }
.cs-card-app .cs-header-icon      { background: linear-gradient(135deg, #059669, #10b981); }
/* Contact icon pills — myCampus tones */
.ci-pill-blue   { background: rgba(51,47,130,0.08); color: var(--primary); }
.ci-pill-purple { background: rgba(97,58,245,0.08); color: var(--purple); }
.ci-pill-green  { background: rgba(5,150,105,0.08); color: #059669; }
/* Demo CTA button */
.cs-inline-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  box-shadow: 0 4px 16px rgba(51,47,130,0.28);
}
.cs-inline-cta:hover {
  box-shadow: 0 8px 28px rgba(51,47,130,0.40);
}
/* Service tags — myCampus brand */
.service-tag {
  background: rgba(51,47,130,0.05);
  color: var(--primary);
  border-color: rgba(51,47,130,0.12);
}
.service-tag:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.service-tag-ai {
  background: rgba(97,58,245,0.06);
  color: var(--purple);
  border-color: rgba(97,58,245,0.15);
}
.service-tag-ai:hover {
  background: var(--purple);
  border-color: var(--purple);
}
/* App download buttons */
.app-btn-play .app-btn-icon  { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.app-btn:hover {
  box-shadow: 0 10px 32px rgba(51,47,130,0.15);
  border-color: rgba(51,47,130,0.25);
}
/* App stats bar */
.cs-app-stats {
  background: linear-gradient(135deg, rgba(51,47,130,0.04), rgba(97,58,245,0.04));
  border: 1px solid rgba(51,47,130,0.08);
  border-radius: 14px;
}
.cs-app-stat-num {
  color: var(--primary-dark);
}
/* Section label tag */
.cs-top-label .section-tag {
  border-color: rgba(51,47,130,0.18);
}
.contact-card {
  border-color: rgba(51,47,130,0.1);
}
.contact-card:hover {
  border-color: rgba(51,47,130,0.2);
  box-shadow: var(--shadow-md);
}

/* ── Above Footer / Download Banner ─────────────────────────── */
.above-footer-section,
.download-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

/* ── Footer ─────────────────────────────────────────────────── */
footer,
#footer {
  background: var(--primary-dark);
}
.footer-link:hover { color: var(--accent-light); }
.social-icon:hover { color: var(--accent); }

/* ── Blue Banner ────────────────────────────────────────────── */
.blue-banner,
.blue-banner-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

/* ── Back to Top ────────────────────────────────────────────── */
.back-to-top-mc {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 4px 16px rgba(51,47,130,0.35);
}
.back-to-top-mc:hover {
  box-shadow: 0 6px 24px rgba(51,47,130,0.5);
}

/* ── Alternating section backgrounds (light / white pattern) ── */
#features-section    { background: #ffffff; }
#screenshots-section { background: #f8f8f8; }
#clients-section     { background: #ffffff; }
#testimonial-section { background: #f8f8f8; }
#faq-section         { background: #ffffff; }
/* contact-section background set above in the contact block */

/* ── Feature icon background accents ───────────────────────── */
.feature-icon {
  background: var(--primary-50) !important;
}

/* ── Demo Modal ─────────────────────────────────────────────── */
.modal-header-mc,
.demo-modal-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(51,47,130,0.1);
}
.btn-submit-mc,
.btn-modal-submit {
  background: linear-gradient(135deg, var(--accent), #f0a500);
  box-shadow: 0 4px 16px rgba(232,133,50,0.3);
}
.btn-submit-mc:hover {
  box-shadow: 0 6px 24px rgba(232,133,50,0.5);
}

/* ── Hero Slider ────────────────────────────────────────────── */
#hero-section {
  position: relative;
  overflow: hidden;
}
.hs-slider {
  position: relative;
  width: 100%;
}
.hs-slide {
  display: none;
  animation: hsFadeIn 0.55s ease;
}
.hs-slide.active {
  display: block;
}
@keyframes hsFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Keep all slides the same height — lock hero-container */
.hs-slide .hero-container {
  min-height: 480px;
  align-items: center;
}

/* Fix all hero images to same height */
.hs-slide .hero-img-wrapper {
  max-width: 520px;
  background: #ffffff;
  border-radius: 16px;
}
.hs-slide .hero-img-wrapper img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  border-radius: 16px;
}

/* Smoother, smaller float animation for all hero cards */
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
@keyframes floatCard3 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
.hs-slide .hero-float-card {
  animation-duration: 5s;
  animation-timing-function: cubic-bezier(0.45, 0, 0.55, 1);
}

/* Move only card-3 (mid-left) to lower-left — partially outside image */
.hs-slide .hero-float-card-3 {
  top: auto;
  bottom: -18px;
  left: -24px;
  right: auto;
  transform: none;
}

/* Smaller hero buttons */
.hs-slide .hero-actions .btn-primary-mc,
.hs-slide .hero-actions .btn-ghost {
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* Reduce hero title size so long titles fit on one/two lines */
.hs-slide .hero-title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

/* Uniform description — clamp to 3 lines */
.hs-slide .hero-desc {
  font-size: 0.97rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 24px;
}

/* Fixed height stats row so all slides align */
.hs-slide .hero-stats {
  margin-top: 24px;
}
.hs-slide .hero-stat .stat-number span {
  font-size: 1.4rem;
}
.hs-slide .hero-stat .stat-label {
  font-size: 0.75rem;
  white-space: nowrap;
}
.hs-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}
.hs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.hs-dot.active {
  background: #ffffff;
  transform: scale(1.35);
}
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.hs-arrow:hover {
  background: rgba(255,255,255,0.28);
}
.hs-arrow-prev { left: 16px; }
.hs-arrow-next { right: 16px; }

/* ── Screenshots slider — full mobile view ───────────────────── */
.slide-item {
  width: 200px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(51,47,130,0.15);
  border: 6px solid #e8e8f0;
  background: #fff;
}
.slide-item img {
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
  border-radius: 14px;
}

/* ── AI Section CTA — white ──────────────────────────────────── */
.ai-section-cta {
  background: #ffffff;
  border-color: rgba(51,47,130,0.12);
}
.ai-section-cta h3 { color: var(--primary-dark, #211d5e); }
.ai-section-cta p  { color: #5a6080; }

/* ── AI Cards — compact size ─────────────────────────────────── */
.ai-slider-track .ai-card {
  padding: 22px 20px;
}
.ai-slider-track .ai-icon-wrapper {
  width: 48px; height: 48px;
  border-radius: 13px;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.ai-slider-track .ai-badge {
  font-size: 0.62rem;
  padding: 3px 9px;
  margin-bottom: 10px;
}
.ai-slider-track .ai-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.ai-slider-track .ai-card .ai-card-desc {
  font-size: 0.78rem;
  line-height: 1.55;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ai-slider-track .ai-features-list {
  gap: 6px;
  margin-bottom: 16px;
}
.ai-slider-track .ai-feat-item {
  font-size: 0.75rem;
  gap: 7px;
}
.ai-slider-track .ai-card-cta {
  font-size: 0.78rem;
  padding: 0;
}

/* Virtual Lab card glow & icon */
.ai-card-vlab .ai-card-glow { background: radial-gradient(circle, #00e5cc, transparent); }
.ai-icon-vlab { background: linear-gradient(135deg, #00b4d8, #00e5cc); }

/* ── AI Cards Slider ─────────────────────────────────────────── */
.ai-slider-wrap {
  position: relative;
  padding: 0 0 48px;
}
.ai-slider-viewport {
  overflow: hidden;
  padding: 12px 4px;
  margin: -12px -4px;
}
.ai-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.ai-slider-track .ai-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
}
.ai-sl-arr {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.ai-sl-arr:hover { background: rgba(255,255,255,0.28); }
.ai-sl-prev { left: -18px; }
.ai-sl-next { right: -18px; }
.ai-sl-dots {
  display: flex; justify-content: center; gap: 7px;
  position: absolute; bottom: 0; left: 0; right: 0;
}
.ai-sl-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.3); cursor: pointer; padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.ai-sl-dot.active { background: #fff; transform: scale(1.3); }

/* ── Features Slider ────────────────────────────────────────── */
.feat-slider-wrap {
  position: relative;
  padding: 0 0 48px;
}
.feat-slider-viewport {
  overflow: hidden;
  padding: 12px 4px;
  margin: -12px -4px;
}
.feat-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.feat-slider-track .feature-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
}
.feat-arr {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(51,47,130,0.18);
  background: #fff;
  color: var(--primary);
  font-size: 24px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(51,47,130,0.10);
  transition: background 0.2s, color 0.2s;
}
.feat-arr:hover { background: var(--primary); color: #fff; }
.feat-arr-prev { left: -18px; }
.feat-arr-next { right: -18px; }
.feat-dots {
  display: flex; justify-content: center; gap: 7px;
  position: absolute; bottom: 0; left: 0; right: 0;
}
.feat-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(51,47,130,0.2); cursor: pointer; padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.feat-dot.active { background: var(--primary); transform: scale(1.3); }

/* ── AI Showcase Carousel ───────────────────────────────────── */
#ai-showcase-section {
  background: var(--white);
  padding: 80px 0;
}
.ai-showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.aic-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(51,47,130,0.12);
}
.aic-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.aic-slide {
  min-width: 100%;
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.aic-img-wrap {
  flex: 0 0 58%;
  position: relative;
  background: #0d0b2e;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.aic-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.aic-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(51,47,130,0.85);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(6px);
}
.aic-info {
  flex: 1;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border-left: 1px solid rgba(51,47,130,0.08);
}
.aic-tag {
  display: inline-block;
  background: rgba(97,58,245,0.1);
  color: #613AF5;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.aic-info h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-dark, #211d5e);
  margin: 0 0 12px;
  line-height: 1.3;
}
.aic-info p {
  font-size: 14px;
  color: #5a6080;
  line-height: 1.7;
  margin: 0 0 20px;
}
.aic-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.aic-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #3a3a5c;
}
.aic-points li ion-icon {
  color: #3C9718;
  font-size: 16px;
  flex-shrink: 0;
}
.aic-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.95);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--primary-dark, #211d5e);
  box-shadow: 0 4px 16px rgba(51,47,130,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
}
.aic-btn:hover {
  background: var(--primary, #332f82);
  color: #fff;
  box-shadow: 0 6px 24px rgba(51,47,130,0.35);
}
.aic-prev { left: 14px; }
.aic-next { right: 14px; }
.aic-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0 4px;
  background: #fff;
  border-top: 1px solid rgba(51,47,130,0.06);
}
.aic-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(51,47,130,0.2);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}
.aic-dot.active {
  background: var(--primary, #332f82);
  transform: scale(1.3);
}

/* ── AI Workshop Section ─────────────────────────────────────── */
#ai-workshop-section {
  background: #ffffff;
  padding: 0 0 80px;
}

/* Hero banner */
.aiw-hero {
  background: linear-gradient(135deg, #0d0b2e 0%, #1a1760 40%, #332f82 75%, #4c47a8 100%);
  padding: 72px 24px 80px;
  position: relative;
  overflow: hidden;
}
.aiw-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(97,58,245,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.aiw-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,133,50,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.aiw-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.aiw-hero-text { color: #fff; }
.aiw-tag {
  background: rgba(255,255,255,0.12) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,0.2) !important;
  margin-bottom: 20px;
}
.aiw-title {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 16px;
}
.aiw-highlight {
  color: var(--accent);
  background: none;
  -webkit-text-fill-color: var(--accent);
}
.aiw-subtitle {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 520px;
}
.aiw-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.aiw-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}
.aiw-badge ion-icon { color: #4ade80; font-size: 0.95rem; }
.aiw-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.aiw-hero-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.aiw-hero-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  object-fit: contain;
}

/* Container */
.aiw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section labels */
.aiw-section-label {
  text-align: center;
  padding: 64px 0 40px;
}
.aiw-sub-heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--primary-dark);
  margin: 12px 0 8px;
}
.aiw-sub-desc {
  font-size: 0.95rem;
  color: var(--gray);
}

/* Audience cards */
.aiw-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.aiw-audience-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1.5px solid rgba(51,47,130,0.08);
  box-shadow: 0 4px 24px rgba(51,47,130,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.aiw-audience-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
}
.aiw-card-students::before  { background: linear-gradient(90deg, var(--primary), var(--primary-light)); }
.aiw-card-teachers::before  { background: linear-gradient(90deg, #613AF5, #a07fff); }
.aiw-card-institution::before { background: linear-gradient(90deg, var(--accent), #f0a500); }
.aiw-audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(51,47,130,0.13);
}
.aiw-audience-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}
.aiw-audience-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 10px;
}
.aiw-audience-card p {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 16px;
}
.aiw-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.aiw-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 500;
  color: #3a3a5c;
}
.aiw-list li ion-icon { color: #3C9718; font-size: 1rem; flex-shrink: 0; }
.aiw-card-tag {
  display: inline-block;
  background: var(--primary-50);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 12px;
  border-radius: 100px;
}
.aiw-card-teachers .aiw-card-tag  { background: rgba(97,58,245,0.08); color: #613AF5; }
.aiw-card-institution .aiw-card-tag { background: rgba(232,133,50,0.1); color: var(--accent-dark); }

/* CBSE notification banner */
.aiw-cbse-banner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, #fff8f0, #fff3e0);
  border: 1.5px solid rgba(232,133,50,0.3);
  border-left: 5px solid var(--accent);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 16px;
}
.aiw-cbse-banner-icon {
  width: 48px; height: 48px;
  background: rgba(232,133,50,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
}
.aiw-cbse-banner-content { flex: 1; }
.aiw-cbse-banner-content h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 8px;
}
.aiw-cbse-banner-content p {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}
.aiw-cbse-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  background: var(--accent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 100px;
  text-decoration: none;
  align-self: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.aiw-cbse-cta:hover { background: var(--accent-dark); color: #fff; }

/* Sessions grid */
.aiw-sessions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.aiw-session-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px 24px;
  border: 1.5px solid rgba(51,47,130,0.08);
  box-shadow: 0 4px 20px rgba(51,47,130,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.aiw-session-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(51,47,130,0.12);
}
.aiw-session-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.aiw-session-icon { font-size: 1.6rem; }
.aiw-session-type {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--primary-50);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 100px;
}
.aiw-session-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 8px;
}
.aiw-session-card p {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 16px;
}
.aiw-session-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.aiw-session-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-50);
  padding: 3px 10px;
  border-radius: 100px;
}
.aiw-session-meta span ion-icon { font-size: 0.85rem; }

/* Bottom CTA */
.aiw-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  border-radius: 20px;
  padding: 40px 48px;
}
.aiw-bottom-cta-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}
.aiw-bottom-cta-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}
.aiw-bottom-cta .btn-primary-mc {
  background: #fff;
  color: var(--primary-dark);
  white-space: nowrap;
  flex-shrink: 0;
}
.aiw-bottom-cta .btn-primary-mc:hover {
  background: var(--accent);
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .aiw-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .aiw-hero-img { display: none; }
  .aiw-audience-grid { grid-template-columns: repeat(2, 1fr); }
  .aiw-sessions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .aiw-hero { padding: 52px 20px 60px; }
  .aiw-audience-grid { grid-template-columns: 1fr; }
  .aiw-sessions-grid { grid-template-columns: 1fr; }
  .aiw-cbse-banner { flex-direction: column; }
  .aiw-bottom-cta { flex-direction: column; text-align: center; padding: 32px 24px; }
  .aiw-title { font-size: clamp(1.5rem, 6vw, 2rem); }
}
@media (max-width: 480px) {
  .aiw-hero-badges { gap: 8px; }
  .aiw-badge { font-size: 0.72rem; padding: 5px 10px; }
  .aiw-hero-cta { flex-direction: column; }
  .aiw-audience-card { padding: 24px 20px; }
  .aiw-session-card { padding: 20px 18px; }
}

/* ── Request Demo Modal ──────────────────────────────────────── */

#demoRequest .modal-dialog {
  max-width: 780px;
}
.dm-modal-content {
  display: flex !important;
  flex-direction: row !important;
  border-radius: 20px;
  overflow: hidden;
  border: none;
  box-shadow: 0 24px 80px rgba(51, 47, 130, 0.22);
  max-height: 92vh;
}

/* Left brand panel */
.dm-brand-panel {
  width: 38%;
  flex-shrink: 0;
  background: linear-gradient(160deg, #211d5e 0%, #332f82 55%, #4c47a8 100%);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.dm-brand-panel::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(232, 133, 50, 0.15);
}
.dm-brand-panel::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.dm-brand-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
}
.dm-brand-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.4;
}
.dm-brand-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  line-height: 1.6;
}
.dm-brand-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dm-brand-features li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  gap: 10px;
}
.dm-check {
  width: 20px; height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.dm-brand-tagline {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Right form panel */
.dm-form-panel {
  flex: 1;
  padding: 28px 28px 24px;
  background: #ffffff;
  position: relative;
  overflow-y: auto;
  min-width: 0;
}
.dm-close-btn {
  position: absolute;
  top: 16px; right: 18px;
  background: #f3f3f6;
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 0.85rem;
  color: #555;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}
.dm-close-btn:hover { background: #e0e0ea; color: #222; }

.dm-form-header { margin-bottom: 18px; }
.dm-form-icon {
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.dm-form-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.dm-form-subtitle {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}

.dm-field {
  margin-bottom: 16px;
}
.dm-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}
.dm-label ion-icon { font-size: 0.95rem; color: var(--primary); }
.dm-req { color: var(--accent); margin-left: 2px; }

.dm-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e2e2ee;
  border-radius: 10px;
  font-size: 0.88rem;
  color: #222;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.dm-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(51, 47, 130, 0.1);
  background: #fff;
}
.dm-input::placeholder { color: #bbb; }


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

.dm-message {
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
  padding: 0;
  margin-bottom: 0;
  min-height: 0;
}

.dm-actions { margin-top: 20px; }
.dm-submit-btn {
  width: 100%;
  padding: 13px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(51, 47, 130, 0.3);
}
.dm-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(51, 47, 130, 0.38);
}
.dm-submit-btn ion-icon { font-size: 1.1rem; }

.dm-privacy {
  font-size: 0.75rem;
  color: #aaa;
  text-align: center;
  margin: 10px 0 0;
}

/* Modal responsive */
@media (max-width: 768px) {
  #demoRequest .modal-dialog {
    margin: 10px auto;
    max-width: calc(100vw - 20px);
    min-height: unset;
    align-items: flex-start;
  }
  #demoRequest .modal-dialog-centered {
    align-items: flex-start;
    padding-top: 10px;
  }
  .dm-modal-content {
    flex-direction: column !important;
    max-height: calc(100vh - 40px);
    border-radius: 14px;
    overflow: hidden;
  }
  /* Compact header strip — hide everything except logo */
  .dm-brand-panel {
    width: 100% !important;
    flex-shrink: 0;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    min-height: unset;
    justify-content: flex-start;
  }
  .dm-brand-panel::before,
  .dm-brand-panel::after { display: none; }
  .dm-brand-logo { margin-bottom: 0; }
  .dm-brand-logo img { height: 28px; margin-bottom: 0; flex-shrink: 0; }
  .dm-brand-title { font-size: 0.9rem; font-weight: 600; margin-bottom: 0; line-height: 1.3; }
  .dm-brand-sub,
  .dm-brand-features,
  .dm-brand-tagline { display: none !important; }
  /* Scrollable form panel */
  .dm-form-panel {
    flex: 1;
    overflow-y: auto;
    padding: 18px 16px 16px;
    -webkit-overflow-scrolling: touch;
  }
  .dm-form-header { margin-bottom: 10px; }
  .dm-form-icon { font-size: 1.2rem; margin-bottom: 2px; }
  .dm-form-title { font-size: 1rem; margin-bottom: 3px; }
  .dm-form-subtitle { font-size: 0.78rem; }
  .dm-label { font-size: 0.78rem; }
  .dm-input { padding: 8px 12px; font-size: 0.85rem; border-radius: 8px; }
  .dm-field { margin-bottom: 10px; }
  .dm-row { grid-template-columns: 1fr; gap: 0; }
  .dm-submit-btn { padding: 11px 16px; font-size: 0.88rem; border-radius: 10px; margin-top: 4px; }
  .dm-privacy { font-size: 0.7rem; }
  .dm-close-btn { top: 10px; right: 10px; width: 28px; height: 28px; font-size: 0.78rem; }
}

@media (max-width: 400px) {
  #demoRequest .modal-dialog { margin: 6px auto; max-width: calc(100vw - 12px); }
  .dm-brand-panel { padding: 12px 14px; }
  .dm-brand-title { font-size: 0.82rem; }
  .dm-form-panel { padding: 14px 12px 12px; }
}

/* ── Mobile / Responsive Fixes ──────────────────────────────── */

@media (max-width: 1024px) {
  /* Feat & AI sliders: 2 cards visible on tablet */
  .feat-slider-track .feature-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
  .ai-slider-track .ai-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
  /* Hero slider title */
  .hs-slide .hero-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  /* Hide hero arrows on tablet — use dots */
  .hs-arrow { width: 36px; height: 36px; font-size: 22px; }
}

@media (max-width: 768px) {
  /* AI Showcase carousel */
  .aic-slide { flex-direction: column; }
  .aic-img-wrap { flex: 0 0 220px; min-height: 220px; }
  .aic-info { padding: 24px 20px; }
  .aic-info h3 { font-size: 18px; }
  #ai-showcase-section { padding: 60px 0; }

  /* Feat & AI sliders: 1 card visible on mobile */
  .feat-slider-track .feature-card {
    flex: 0 0 100%;
  }
  .ai-slider-track .ai-card {
    flex: 0 0 100%;
  }
  /* Hide side arrows on mobile — overlap is awkward on small screens */
  .feat-arr, .ai-sl-arr {
    display: none;
  }
  /* Hero slider */
  .hs-slide .hero-container {
    min-height: unset;
    padding: 48px 20px 80px;
  }
  .hs-slide .hero-title {
    font-size: clamp(1.4rem, 6vw, 1.9rem);
  }
  .hs-slide .hero-desc {
    font-size: 0.92rem;
    -webkit-line-clamp: 4;
  }
  .hs-arrow { display: none; }
  .hs-controls { bottom: 16px; }

  /* Contact section cards full width */
  .cs-card { padding: 28px 20px; }

  /* Service tags wrap nicely */
  .services-list { gap: 6px; }
  .service-tag { font-size: 0.73rem; padding: 4px 10px; }

  /* App download buttons */
  .app-btn { padding: 12px 14px; }

  /* Section titles */
  .section-title { font-size: clamp(1.4rem, 5vw, 2rem); }

  /* Stats section */
  #stats-section { padding: 32px 20px; }
}

@media (max-width: 480px) {
  /* Hero slider */
  .hs-slide .hero-title {
    font-size: clamp(1.25rem, 7vw, 1.6rem);
  }
  .hs-slide .hero-stats {
    flex-wrap: wrap;
    gap: 12px;
  }
  .hs-slide .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hs-slide .hero-actions .btn-primary-mc,
  .hs-slide .hero-actions .btn-ghost {
    text-align: center;
    justify-content: center;
  }

  /* AI Showcase */
  .aic-img-wrap { flex: 0 0 180px; min-height: 180px; }
  .aic-info { padding: 18px 16px; }
  .aic-info h3 { font-size: 16px; }
  .aic-info p { font-size: 13px; }
  .aic-points li { font-size: 12px; }

  /* Contact cards */
  .cs-card { padding: 24px 16px; }
  .cs-app-stats { padding: 12px 14px; }
  .cs-app-stat-num { font-size: 0.95rem; }

  /* Feat & AI sliders full width */
  .feat-slider-track { gap: 12px; }
  .ai-slider-track { gap: 12px; }

  /* Screenshots slider */
  .slide-item { width: 160px; }

  /* Navbar */
  #navbar .mc-nav { padding: 12px 16px; }
  .nav-logo img { height: 40px; }
  .nav-brand img { height: 44px; }

  /* Section padding tighten */
  #features-section, #ai-features-section { padding: 52px 16px; }
  #contact-section { padding: 52px 16px; }
  #faq-section { padding: 52px 16px; }
  #testimonial-section { padding: 52px 16px; }
}

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar-thumb {
  background: rgba(51,47,130,0.4);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}
