/* ============================================
   SchoolSync.in — Premium SaaS Landing Page
   CSS Stylesheet
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --navy:     #0F172A;
  --blue:     #2563EB;
  --blue-lt:  #3B82F6;
  --green:    #22C55E;
  --green-dk: #16A34A;
  --bg:       #F8FAFC;
  --bg2:      #EFF6FF;
  --text:     #111827;
  --muted:    #6B7280;
  --border:   #E2E8F0;
  --white:    #FFFFFF;
  --card-bg:  #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(15,23,42,.08);
  --shadow-lg: 0 12px 40px rgba(15,23,42,.12);
  --shadow-xl: 0 24px 60px rgba(15,23,42,.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; line-height: 1.2; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* --- Utility --- */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue); background: rgba(37,99,235,.08);
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag .dot { width: 7px; height: 7px; background: var(--blue); border-radius: 50%; }

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800; color: var(--navy);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem; color: var(--muted);
  max-width: 560px; margin: 0 auto;
}

.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-blue  { color: var(--blue); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.2rem;
  color: var(--navy);
}
.logo-icon { display: flex; align-items: center; }
.logo-dot  { color: var(--green); }

.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-link {
  font-size: .9rem; font-weight: 500; color: var(--muted);
  transition: color .2s;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--blue); border-radius: 2px;
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s ease;
}
.nav-link:hover { color: var(--navy); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.btn-nav-outline {
  font-size: .875rem; font-weight: 600; color: var(--navy);
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 8px 18px; transition: all .2s;
}
.btn-nav-outline:hover { border-color: var(--blue); color: var(--blue); }

.btn-nav-primary {
  font-size: .875rem; font-weight: 600; color: #fff;
  background: var(--blue); border-radius: 10px;
  padding: 9px 20px;
  box-shadow: 0 2px 10px rgba(37,99,235,.3);
  transition: all .2s;
}
.btn-nav-primary:hover {
  background: #1D4ED8;
  box-shadow: 0 4px 16px rgba(37,99,235,.4);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-menu.open { display: flex; }
.mob-link {
  font-size: .95rem; font-weight: 500; color: var(--navy);
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.btn-mob-demo {
  margin-top: 12px; background: var(--blue); color: #fff;
  font-weight: 600; font-size: .95rem;
  padding: 12px 20px; border-radius: 12px; text-align: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 160px 0 100px;
  background: var(--bg);
  position: relative; overflow: hidden;
}

/* Abstract background shapes */
.hero-bg-shape {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.hero-bg-shape.s1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,.07) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero-bg-shape.s2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,.06) 0%, transparent 70%);
  bottom: -100px; left: -80px;
}
.hero-bg-dots {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(15,23,42,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .5;
}

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

/* Hero Left */
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  color: var(--blue); background: rgba(37,99,235,.09);
  padding: 5px 14px 5px 10px; border-radius: 50px;
  margin-bottom: 24px; border: 1px solid rgba(37,99,235,.15);
}
.hero-label-dot {
  width: 7px; height: 7px; background: var(--green);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900; color: var(--navy);
  line-height: 1.1; margin-bottom: 22px;
}
.hero-title .hl { color: var(--blue); }
.hero-title .hl-green { color: var(--green); }

.hero-sub {
  font-size: 1.08rem; color: var(--muted);
  line-height: 1.75; max-width: 500px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .95rem;
  padding: 14px 28px; border-radius: 12px;
  box-shadow: 0 4px 20px rgba(37,99,235,.35);
  transition: all .25s;
}
.btn-primary:hover {
  background: #1D4ED8; transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,99,235,.45);
}
.btn-primary .arrow { transition: transform .2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--navy);
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .95rem;
  padding: 13px 26px; border-radius: 12px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .25s;
}
.btn-secondary:hover {
  border-color: var(--blue); color: var(--blue);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 500; color: var(--muted);
  background: var(--white); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 50px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .b-icon { font-size: 1rem; }

/* Hero Right — Dashboard Mockup */
.hero-visual {
  position: relative;
  display: flex; justify-content: flex-end;
}

.dashboard-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  width: 100%; max-width: 540px;
  aspect-ratio: 4/3;
  position: relative;
}

/* Dashboard header bar */
.db-header {
  background: var(--navy);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
}
.db-dots { display: flex; gap: 6px; }
.db-dot { width: 10px; height: 10px; border-radius: 50%; }
.db-dot.r { background: #FF5F57; }
.db-dot.y { background: #FFBD2E; }
.db-dot.g { background: #28C840; }
.db-title-bar {
  flex: 1; background: rgba(255,255,255,.1);
  border-radius: 6px; height: 22px;
  display: flex; align-items: center; padding: 0 10px;
  font-size: .65rem; color: rgba(255,255,255,.5);
}

/* Dashboard body grid */
.db-body {
  padding: 14px; display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 10px; height: calc(100% - 46px);
}

.db-widget {
  background: var(--bg); border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 12px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.db-widget.span2 { grid-column: span 2; }
.db-widget.span3 { grid-column: span 3; }

.db-widget-label {
  font-size: .58rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted);
  margin-bottom: 4px;
}
.db-widget-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem; font-weight: 800; color: var(--navy);
}
.db-widget-sub {
  font-size: .6rem; color: var(--green); font-weight: 600; margin-top: 2px;
}

/* Mini bar chart */
.mini-bars {
  display: flex; align-items: flex-end; gap: 4px; height: 36px;
  margin-top: 6px;
}
.mini-bar {
  flex: 1; background: var(--blue); border-radius: 3px 3px 0 0; opacity: .7;
  transition: opacity .2s;
}
.mini-bar:last-child { opacity: 1; }

/* Mini image gallery */
.mini-gallery {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5px; margin-top: 5px;
}
.mini-gal-img {
  border-radius: 6px; height: 28px;
  background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
}

/* App preview strip */
.mini-app-row {
  display: flex; align-items: center; gap: 8px;
}
.mini-app-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-lt));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mini-app-info { flex: 1; }
.mini-app-title { font-size: .62rem; font-weight: 700; color: var(--navy); }
.mini-app-sub   { font-size: .55rem; color: var(--muted); }
.mini-app-badge {
  font-size: .55rem; font-weight: 700; color: var(--green);
  background: rgba(34,197,94,.1); padding: 2px 7px; border-radius: 20px;
}

/* Admission progress */
.progress-row { display: flex; flex-direction: column; gap: 6px; margin-top: 5px; }
.prog-item { display: flex; flex-direction: column; gap: 2px; }
.prog-label { display: flex; justify-content: space-between; font-size: .58rem; color: var(--muted); }
.prog-bar { height: 5px; background: var(--border); border-radius: 50px; overflow: hidden; }
.prog-fill { height: 100%; background: var(--blue); border-radius: 50px; }

/* Notice board */
.notice-list { display: flex; flex-direction: column; gap: 5px; margin-top: 4px; }
.notice-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .6rem; color: var(--navy); padding: 4px 6px;
  background: var(--white); border-radius: 5px; border: 1px solid var(--border);
}
.notice-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.notice-dot.blue   { background: var(--blue); }
.notice-dot.green  { background: var(--green); }
.notice-dot.orange { background: #F59E0B; }

/* Floating notification cards */
.float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
  animation: floatBob 3s ease-in-out infinite;
}
.float-card:nth-child(2) { animation-delay: .5s; }
.float-card:nth-child(3) { animation-delay: 1s; }
.float-card:nth-child(4) { animation-delay: 1.5s; }

@keyframes floatBob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.fc-icon {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.fc-icon.blue  { background: rgba(37,99,235,.1); }
.fc-icon.green { background: rgba(34,197,94,.1); }
.fc-icon.orange{ background: rgba(245,158,11,.1); }
.fc-icon.purple{ background: rgba(139,92,246,.1); }

.fc-text { display: flex; flex-direction: column; }
.fc-title { font-size: .72rem; font-weight: 700; color: var(--navy); }
.fc-sub   { font-size: .62rem; color: var(--muted); }

.float-card.fc1 { top: -24px; left: -50px; }
.float-card.fc2 { bottom: 40px; left: -60px; }
.float-card.fc3 { top: 20px; right: -40px; }
.float-card.fc4 { bottom: -20px; right: -20px; }

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  padding: 56px 0;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,.2) 0%, transparent 60%);
}

.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative; z-index: 1;
}
.stat-item {
  text-align: center; padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem; font-weight: 900; color: var(--white);
  line-height: 1;
}
.stat-number .stat-plus { color: var(--green); }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.55); margin-top: 6px; }

/* ============================================
   SCHOOL TYPES SECTION
   ============================================ */
.school-types { background: var(--white); }

.types-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}

.type-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all .3s ease;
  cursor: default;
}
.type-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
.type-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.type-icon.blue   { background: rgba(37,99,235,.1); }
.type-icon.green  { background: rgba(34,197,94,.1); }
.type-icon.orange { background: rgba(245,158,11,.1); }
.type-icon.purple { background: rgba(139,92,246,.1); }
.type-icon.red    { background: rgba(239,68,68,.1); }
.type-icon.teal   { background: rgba(20,184,166,.1); }

.type-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--navy); }
.type-desc { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ============================================
   FEATURES SECTION
   ============================================ */
.features { background: var(--bg); }

.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; margin-top: 56px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: all .3s;
  cursor: default;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37,99,235,.3);
}
.feat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(37,99,235,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 14px;
}
.feat-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .92rem; color: var(--navy); margin-bottom: 5px; }
.feat-desc { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works { background: var(--white); }

.steps-timeline {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 56px; position: relative;
}
.steps-timeline::before {
  content: ''; position: absolute;
  top: 36px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px; background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  border-radius: 2px;
}

.step-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 20px;
  text-align: center; position: relative;
  transition: all .3s;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; position: relative; z-index: 1;
  box-shadow: 0 0 0 6px var(--bg), 0 0 0 8px var(--blue);
}
.step-card:last-child .step-number { background: var(--green); box-shadow: 0 0 0 6px var(--bg), 0 0 0 8px var(--green); }

.step-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.step-desc  { font-size: .85rem; color: var(--muted); line-height: 1.6; }
.step-tag {
  display: inline-block; font-size: .7rem; font-weight: 700;
  color: var(--green); background: rgba(34,197,94,.1);
  padding: 3px 10px; border-radius: 20px; margin-top: 12px;
}

/* ============================================
   LIVE SCHOOL PREVIEW
   ============================================ */
.live-preview { background: var(--bg); }

.preview-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 56px;
}

.preview-card {
  border-radius: var(--radius-xl);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: all .4s ease;
  cursor: pointer;
  position: relative;
}
.preview-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-xl); }

.preview-header {
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.preview-header .url-bar {
  flex: 1; background: rgba(255,255,255,.15);
  border-radius: 6px; height: 24px; padding: 0 12px;
  font-size: .65rem; color: rgba(255,255,255,.7);
  display: flex; align-items: center; gap: 6px;
}
.url-lock { opacity: .6; }

.preview-body { padding: 0 14px 14px; }
.preview-hero-mock {
  border-radius: 12px; height: 120px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; font-size: .85rem; font-weight: 600;
  color: rgba(255,255,255,.8); letter-spacing: .03em;
}
.preview-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.preview-mini {
  border-radius: 8px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; color: rgba(0,0,0,.45);
  font-weight: 500; background: var(--bg);
}

/* Card specific colors */
.preview-card.rural .preview-header  { background: #166534; }
.preview-card.rural .preview-hero-mock { background: linear-gradient(135deg, #14532D, #166534); }

.preview-card.premium .preview-header { background: #1E3A5F; }
.preview-card.premium .preview-hero-mock { background: linear-gradient(135deg, #0F172A, #1E3A5F); }

.preview-card.modern .preview-header  { background: #1D4ED8; }
.preview-card.modern .preview-hero-mock { background: linear-gradient(135deg, #1E40AF, #2563EB); }

.preview-card.college .preview-header { background: #6D28D9; }
.preview-card.college .preview-hero-mock { background: linear-gradient(135deg, #4C1D95, #6D28D9); }

.preview-label {
  position: absolute; top: 14px; right: 14px;
  font-size: .7rem; font-weight: 700;
  background: rgba(255,255,255,.2); color: #fff;
  backdrop-filter: blur(8px);
  padding: 4px 12px; border-radius: 20px; border: 1px solid rgba(255,255,255,.3);
}

/* ============================================
   WHY CHOOSE US — COMPARISON
   ============================================ */
.why-us { background: var(--white); }

.compare-wrap {
  margin-top: 56px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 900px; margin-left: auto; margin-right: auto;
}

.compare-col {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.compare-col.ours { border-color: var(--blue); box-shadow: 0 8px 32px rgba(37,99,235,.15); }

.compare-header {
  padding: 20px 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.compare-col.ours .compare-header { background: var(--navy); }
.compare-title {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.05rem;
  color: var(--navy);
}
.compare-col.ours .compare-title { color: var(--white); }
.compare-badge {
  display: inline-block; font-size: .7rem; font-weight: 700;
  color: var(--green); background: rgba(34,197,94,.15);
  padding: 3px 10px; border-radius: 20px; margin-left: 10px;
}

.compare-list { padding: 8px 0; }
.compare-item {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 24px; border-bottom: 1px solid var(--border);
  font-size: .88rem;
}
.compare-item:last-child { border-bottom: none; }
.compare-item .ci-icon { font-size: 1rem; flex-shrink: 0; }
.ci-text { color: var(--navy); font-weight: 500; }
.ci-text.muted { color: var(--muted); text-decoration: line-through; font-weight: 400; }

/* ============================================
   PRICING
   ============================================ */
.pricing { background: var(--bg); }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px; align-items: start;
}

.pricing-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px 28px;
  position: relative; transition: all .3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--blue); border-width: 2px;
  box-shadow: 0 12px 40px rgba(37,99,235,.15);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-size: .72rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  background: var(--blue); color: #fff;
  padding: 4px 16px; border-radius: 20px;
  white-space: nowrap;
}

.plan-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-bottom: 6px; }
.plan-desc { font-size: .85rem; color: var(--muted); margin-bottom: 24px; }

.plan-price {
  display: flex; align-items: flex-end; gap: 4px;
  margin-bottom: 8px;
}
.plan-currency { font-size: 1.3rem; font-weight: 700; color: var(--navy); padding-bottom: 6px; }
.plan-amount   { font-family: 'Poppins', sans-serif; font-size: 3rem; font-weight: 900; color: var(--navy); line-height: 1; }
.plan-period   { font-size: .82rem; color: var(--muted); padding-bottom: 8px; }

.plan-divider  { height: 1px; background: var(--border); margin: 24px 0; }

.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.plan-feature  { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--navy); }
.pf-check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem;
}
.pf-check.yes { background: rgba(34,197,94,.15); color: var(--green); }
.pf-check.no  { background: rgba(107,114,128,.1); color: var(--muted); }

.btn-plan {
  width: 100%; text-align: center; padding: 13px;
  border-radius: 12px; font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: .92rem;
  transition: all .25s;
}
.btn-plan.outline {
  border: 1.5px solid var(--border); color: var(--navy);
  background: transparent;
}
.btn-plan.outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-plan.solid {
  background: var(--blue); color: #fff;
  box-shadow: 0 4px 16px rgba(37,99,235,.3);
}
.btn-plan.solid:hover { background: #1D4ED8; box-shadow: 0 6px 24px rgba(37,99,235,.4); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--white); }

.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 56px;
}

.testi-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: all .3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; color: #FBBF24; font-size: 1rem; }

.testi-quote {
  font-size: .9rem; color: var(--navy); line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
}
.testi-quote::before { content: '"'; font-size: 1.5rem; color: var(--blue); line-height: 0; vertical-align: -0.4em; margin-right: 2px; }
.testi-quote::after  { content: '"'; font-size: 1.5rem; color: var(--blue); line-height: 0; vertical-align: -0.4em; margin-left: 2px; }

.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .95rem; color: #fff;
}
.testi-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .88rem; color: var(--navy); }
.testi-role { font-size: .78rem; color: var(--muted); }
.testi-school { font-size: .75rem; color: var(--blue); font-weight: 600; }

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--bg); }

.faq-list { max-width: 760px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
}

.faq-question {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .95rem;
  color: var(--navy); text-align: left;
  transition: background .2s;
}
.faq-question:hover { background: var(--bg2); }

.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .3s;
  font-size: 1.1rem; color: var(--blue);
}
.faq-item.open .faq-icon { background: var(--blue); color: #fff; transform: rotate(45deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  font-size: .9rem; color: var(--muted); line-height: 1.7;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--navy);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; top: -200px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.2) 0%, transparent 70%);
}

.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
  position: relative; z-index: 1;
}

.contact-info { color: var(--white); }

.contact-info .section-tag { color: var(--green); background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.2); }
.contact-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.contact-sub   { color: rgba(255,255,255,.6); font-size: .95rem; line-height: 1.7; margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 14px; }
.cd-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.cd-label { font-size: .75rem; color: rgba(255,255,255,.45); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.cd-value {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 1.05rem; color: #fff;
}
.cd-value.phone { color: var(--green); text-shadow: 0 0 20px rgba(34,197,94,.4); }
.cd-office { font-size: .82rem; color: rgba(255,255,255,.5); margin-top: 2px; }

/* Contact Form */
.contact-form {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
}
.form-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.2rem; color: #fff; margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-label { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.6); }
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; padding: 12px 14px;
  color: #fff; font-family: 'Inter', sans-serif; font-size: .9rem;
  transition: border-color .2s;
  outline: none; width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,.3); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.2);
}
.form-select option { background: var(--navy); color: #fff; }
.form-textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%; padding: 14px;
  background: var(--blue); color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .95rem;
  border: none; border-radius: 12px; cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,99,235,.4);
  transition: all .25s;
}
.btn-submit:hover { background: #1D4ED8; transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37,99,235,.5); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #060D1A;
  color: rgba(255,255,255,.7);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-top: 64px; padding-bottom: 48px;
}

.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }

.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: all .2s;
}
.social-icon:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

.footer-heading { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 1px; }
.footer-link { font-size: .88rem; color: rgba(255,255,255,.55); padding: 5px 0; transition: color .2s; }
.footer-link:hover { color: var(--white); }

.footer-phone { color: var(--green) !important; font-weight: 700; font-family: 'Poppins', sans-serif; text-shadow: 0 0 16px rgba(34,197,94,.3); }
.footer-address { font-size: .82rem; color: rgba(255,255,255,.35); padding: 5px 0; }

.footer-whatsapp {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 600; color: var(--green);
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.2);
  padding: 7px 14px; border-radius: 8px; margin-top: 8px;
  transition: all .2s;
}
.footer-whatsapp:hover { background: rgba(34,197,94,.2); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px; padding-bottom: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.3); }
.footer-tagline-bottom { font-style: italic; }

/* ============================================
   FLOATING WHATSAPP + MOBILE CTA
   ============================================ */
.whatsapp-float {
  position: fixed; bottom: 88px; right: 24px; z-index: 900;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: all .3s;
  animation: floatBob 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }

.mobile-bottom-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  gap: 10px;
}
.mob-cta-wa {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
  background: #25D366; color: #fff;
  font-weight: 600; font-size: .88rem;
  padding: 11px; border-radius: 10px;
}
.mob-cta-demo {
  flex: 2; display: flex; align-items: center; justify-content: center;
  background: var(--blue); color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .88rem;
  padding: 11px; border-radius: 10px;
  box-shadow: 0 2px 12px rgba(37,99,235,.3);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   Elements are visible by default. JS adds .will-animate to off-screen
   elements only, so there's no flash-of-invisible on initial load.
   ============================================ */
.reveal, .reveal-left, .reveal-right {
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.will-animate        { opacity: 0; transform: translateY(30px); }
.reveal-left.will-animate   { opacity: 0; transform: translateX(-40px); }
.reveal-right.will-animate  { opacity: 0; transform: translateX(40px); }

.will-animate.visible { opacity: 1; transform: none; }

/* Stagger delays */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { justify-content: center; }
  .float-card.fc1, .float-card.fc4 { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-timeline { grid-template-columns: repeat(2, 1fr); }
  .steps-timeline::before { display: none; }
  .preview-grid { grid-template-columns: 1fr; max-width: 500px; margin: 56px auto 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 56px auto 0; }
  .pricing-card.featured { transform: none; }
  .testi-grid { grid-template-columns: 1fr; max-width: 500px; margin: 56px auto 0; }
  .contact-inner { grid-template-columns: 1fr; }
  .compare-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-bottom-cta { display: flex; }
  .whatsapp-float { bottom: 80px; right: 16px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 130px 0 80px; }
  .hero-title { font-size: 2.2rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .types-grid  { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-timeline { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
