preschool-erp/* ==========================================================================
   PRE-SCHOOL ERP PAGE SPECIFIC STYLES
   ========================================================================== */

/* --- COMMON SECTION STYLES --- */
section { padding: 80px 5%; }
.max-w { max-width: 1200px; margin: 0 auto; }
.section-tag { display: inline-block; background: var(--light); color: var(--blue); padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.section-tag.teal-tag { background: rgba(6,182,212,0.12); color: var(--teal); }
.section-tag.green-tag { background: rgba(16,185,129,0.12); color: var(--green); }
.section-tag.purple-tag { background: rgba(139,92,246,0.12); color: var(--purple); }
.section-title { font-size: 38px; font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--gray); max-width: 560px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh; padding: 120px 5% 80px;
  background: linear-gradient(135deg, #0B1F4B 0%, #1A3A7A 50%, #0E3460 100%);
  position: relative; overflow: hidden; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%); border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -150px; left: -100px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%); border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; width: 100%; }
.hero h2.section-title { color: white; font-size: 48px; text-align: left; }
.hero p.section-sub { color: rgba(255,255,255,0.75); text-align: left; margin: 0; }
.hero-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.pill { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; padding: 6px 14px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85); }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* --- HERO DASHBOARD VISUAL --- */
.hero-visual { position: relative; }
.dashboard-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; overflow: hidden;
  animation: floatDash 5s ease-in-out infinite;
}
@keyframes floatDash { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.dash-header { background: linear-gradient(135deg, var(--blue), var(--teal)); padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; }
.dash-header-left h3 { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: white; }
.dash-header-left p { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.dash-header-right { display: flex; gap: 6px; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.dash-body { padding: 20px 24px; }
.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 18px; }
.dash-stat { background: rgba(255,255,255,0.07); border-radius: 12px; padding: 14px 12px; text-align: center; }
.dash-stat .num { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 800; margin-bottom: 3px; }
.dash-stat .lbl { font-size: 11px; color: rgba(255,255,255,0.6); font-weight: 500; }
.dash-row-title { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 10px; }
.dash-items { display: flex; flex-direction: column; gap: 8px; }
.dash-item { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.07); border-radius: 10px; padding: 10px 14px; }
.dash-item-left { display: flex; align-items: center; gap: 10px; }
.dash-avatar { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.dash-item-name { font-size: 13px; font-weight: 600; color: white; }
.dash-item-age { font-size: 11px; color: rgba(255,255,255,0.5); }
.status-chip { font-size: 10px; font-weight: 700; border-radius: 50px; padding: 3px 10px; }
.status-present { background: rgba(16,185,129,0.2); color: #6EE7B7; }
.status-fee { background: rgba(245,158,11,0.2); color: #FCD34D; }
.status-new { background: rgba(139,92,246,0.2); color: #C4B5FD; }
.floating-badge {
  position: absolute; background: white; border-radius: 12px; padding: 10px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2); display: flex; align-items: center; gap: 8px;
}
.fb1 { top: -20px; right: -20px; animation: floatDash 3s ease-in-out infinite 0.5s; }
.fb2 { bottom: -16px; left: -20px; animation: floatDash 3.5s ease-in-out infinite 1s; }
.fb-icon { font-size: 20px; }
.fb-text { font-size: 12px; font-weight: 700; color: var(--navy); }
.fb-sub { font-size: 11px; color: var(--gray); }

/* --- TRUST BAR --- */
.trust-bar { background: white; border-bottom: 1px solid var(--border); padding: 18px 5%; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--gray); }
.trust-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

/* --- FEATURES GRID --- */
.features-bg { background: var(--light); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.feat-card {
  background: white; border-radius: 20px; padding: 32px;
  border: 1px solid var(--border); transition: all 0.3s; position: relative; overflow: hidden;
}
.feat-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; }
.feat-card.c1::before { background: linear-gradient(180deg, var(--blue), var(--teal)); }
.feat-card.c2::before { background: linear-gradient(180deg, var(--teal), var(--sky)); }
.feat-card.c3::before { background: linear-gradient(180deg, var(--green), var(--teal)); }
.feat-card.c4::before { background: linear-gradient(180deg, var(--purple), var(--blue)); }
.feat-card.c5::before { background: linear-gradient(180deg, var(--orange), #F97316); }
.feat-card.c6::before { background: linear-gradient(180deg, var(--pink), var(--purple)); }
.feat-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(26,86,219,0.1); }
.feat-icon-wrap { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; }
.feat-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feat-card p { font-size: 15px; color: var(--gray); line-height: 1.7; }

/* --- PRICING BANNER (Preschool Custom Style) --- */
.pricing-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  padding: 70px 5%; text-align: center; position: relative; overflow: hidden;
}
.pricing-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.pricing-banner h2 { font-size: 40px; font-weight: 800; color: white; margin-bottom: 12px; position: relative; }
.pricing-banner > p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 32px; position: relative; max-width: 560px; margin-left: auto; margin-right: auto; }
.price-tag { display: inline-block; background: white; border-radius: 16px; padding: 20px 48px; margin-bottom: 28px; position: relative; }
.price-tag .amount { font-family: 'Sora', sans-serif; font-size: 56px; font-weight: 800; color: var(--blue); line-height: 1; }
.price-tag .per { font-size: 15px; color: var(--gray); font-weight: 500; margin-top: 4px; }
.pricing-features { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; position: relative; }
.pf-item { display: flex; align-items: center; gap: 8px; color: white; font-size: 15px; font-weight: 500; }
.pf-item::before { content: '✓'; background: rgba(255,255,255,0.2); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.btn-white { padding: 15px 36px; background: white; color: var(--blue); border: none; border-radius: 12px; font-weight: 700; font-size: 16px; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; position: relative; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* --- WHY CHOOSE (Dark Navy Section) --- */
.why-bg { background: var(--navy); }
.why-bg .section-title { color: white; }
.why-bg .section-sub { color: rgba(255,255,255,0.6); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.why-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 28px; text-align: center; transition: all 0.3s; }
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-6px); }
.why-num { font-family: 'Sora', sans-serif; font-size: 48px; font-weight: 800; color: var(--teal); opacity: 0.2; line-height: 1; margin-bottom: 8px; }
.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-card h3 { font-size: 18px; font-weight: 700; color: white; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* --- HOW IT WORKS (Steps) --- */
.steps-bg { background: white; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; position: relative; }
.steps-grid::before { content:''; position:absolute; top:36px; left:10%; right:10%; height:2px; background:linear-gradient(90deg,var(--blue),var(--teal)); opacity:0.25; z-index:0; }
.step-card { background:white; border-radius:20px; padding:28px 20px; text-align:center; border:1px solid var(--border); position:relative; z-index:1; transition:all 0.3s; }
.step-card:hover { transform:translateY(-6px); box-shadow:0 16px 40px rgba(26,86,219,0.1); border-color:var(--sky); }
.step-num { width:52px; height:52px; border-radius:50%; margin:0 auto 16px; background:linear-gradient(135deg,var(--blue),var(--teal)); display:flex; align-items:center; justify-content:center; font-family:'Sora',sans-serif; font-size:22px; font-weight:800; color:white; }
.step-icon { font-size:28px; margin-bottom:12px; }
.step-card h3 { font-size:16px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.step-card p { font-size:13px; color:var(--gray); line-height:1.6; }

/* --- MODULES OVERVIEW --- */
.modules-bg { background: var(--light); }
.modules-outer { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:48px; }
.module-block { background:white; border-radius:20px; overflow:hidden; border:1px solid var(--border); }
.module-block-header { padding:18px 24px; display:flex; align-items:center; gap:12px; }
.module-block-header h3 { font-family:'Sora',sans-serif; font-size:15px; font-weight:700; color:white; }
.module-block-body { padding:20px 24px; }
.module-list { list-style:none; display:flex; flex-direction:column; gap:10px; }
.module-list li { display:flex; align-items:center; gap:10px; font-size:14px; color:var(--dark); font-weight:500; }
.m-check { width:20px; height:20px; border-radius:6px; display:flex; align-items:center; justify-content:center; font-size:10px; color:white; flex-shrink:0; }

/* --- TESTIMONIALS --- */
.testimonial-section { background: var(--navy); padding: 80px 5%; }
.testimonial-section .section-title { color: white; }
.testimonial-section .section-sub { color: rgba(255,255,255,0.6); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.testi-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 28px; transition: all 0.3s; }
.testi-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.testi-stars { color: var(--orange); font-size: 18px; margin-bottom: 16px; }
.testi-card p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 16px; flex-shrink: 0; }
.testi-name { font-weight: 700; color: white; font-size: 14px; }
.testi-role { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* --- RESPONSIVE FIXES FOR PRE-SCHOOL PAGE --- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid, .why-grid, .modules-outer, .testimonials-grid, .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .hero h2.section-title { font-size: 36px; }
}

@media (max-width: 600px) {
  .hero h2.section-title { font-size: 30px; }
  .pricing-features { flex-direction: column; align-items: center; gap: 16px; }
}