/* ══════════════════════════════════════════
   EpicSchool — Global Stylesheet
   ══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0F1F3D;
  --navy-mid: #1A3058;
  --navy-light: #1E3A5F;
  --teal: #00B4D8;
  --teal-dark: #0096B7;
  --gold: #F4A261;
  --gold-dark: #E08C3B;
  --green: #2EC4A0;
  --coral: #E76F51;
  --purple: #7B68EE;
  --bg-light: #F5F7FA;
  --bg-white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-mid: #4A5568;
  --text-light: #718096;
  --border: #E2E8F0;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(15, 31, 61, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 31, 61, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', 'DM Sans', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,180,216,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,180,216,0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(244,162,97,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,162,97,0.4);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  background: #20BD5A;
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 31, 61, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--teal), var(--green));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  background: var(--teal) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  font-weight: 600 !important;
  margin-left: 8px;
}

.nav-cta:hover { background: var(--teal-dark) !important; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* ── PAGE HEADER (for inner pages) ── */
.page-header {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 130px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -180px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,180,216,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 14px;
  font-weight: 700;
}

.page-header p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-header .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.page-header .breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.page-header .breadcrumb a:hover { color: var(--teal); }

/* ── SECTIONS SHARED ── */
.section { padding: 100px 0; }
.section-dark { background: var(--navy); color: #fff; }
.section-gray { background: var(--bg-light); }

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-sub {
  margin: 0 auto;
}

.section-dark .section-sub { color: rgba(255,255,255,0.55); }
.section-dark .section-label { color: var(--gold); }

/* ── HERO (index only) ── */
.hero {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-light) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244,162,97,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,216,0.12);
  border: 1px solid rgba(0,180,216,0.25);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero h1 .accent {
  background: linear-gradient(90deg, var(--teal), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
}

.hero-stat .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Dashboard mockup */
.hero-visual { position: relative; }

.dashboard-mock {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}

.dash-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.red { background: #E76F51; }
.dash-dot.yellow { background: #F4A261; }
.dash-dot.green { background: #2EC4A0; }

.dash-url {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  padding: 4px 12px;
  margin-left: 8px;
}

.dash-body { padding: 20px; }

.dash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.dash-card {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.06);
}

.dash-card .dc-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.dash-card .dc-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.dash-card .dc-bar {
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  margin-top: 8px;
  overflow: hidden;
}

.dc-bar-fill { height: 100%; border-radius: 2px; }
.dc-bar-fill.teal { background: var(--teal); width: 78%; }
.dc-bar-fill.green { background: var(--green); width: 92%; }
.dc-bar-fill.gold { background: var(--gold); width: 65%; }

.dash-chart {
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  height: 120px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  min-height: 12px;
}

.chart-bar:nth-child(1) { height: 45%; background: var(--teal); opacity: 0.6; }
.chart-bar:nth-child(2) { height: 70%; background: var(--teal); opacity: 0.7; }
.chart-bar:nth-child(3) { height: 55%; background: var(--teal); opacity: 0.65; }
.chart-bar:nth-child(4) { height: 90%; background: var(--teal); }
.chart-bar:nth-child(5) { height: 75%; background: var(--teal); opacity: 0.75; }
.chart-bar:nth-child(6) { height: 60%; background: var(--green); opacity: 0.7; }
.chart-bar:nth-child(7) { height: 85%; background: var(--green); opacity: 0.85; }
.chart-bar:nth-child(8) { height: 95%; background: var(--green); }

.floating-card {
  position: absolute;
  background: var(--bg-white);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.float-attendance {
  bottom: 40px;
  left: -40px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 4s ease-in-out infinite;
}

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

.float-attendance .fa-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #E8F8F5, #D1FAE5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.float-attendance .fa-label {
  font-size: 0.7rem;
  color: var(--text-light);
}

.float-attendance .fa-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green);
}

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--green));
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.fi-blue { background: #E0F2FE; }
.fi-green { background: #D1FAE5; }
.fi-gold { background: #FEF3C7; }
.fi-purple { background: #EDE9FE; }
.fi-coral { background: #FEE2E2; }
.fi-teal { background: #E0F7FA; }
.fi-pink { background: #FCE7F3; }
.fi-indigo { background: #E0E7FF; }
.fi-orange { background: #FFEDD5; }

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.feature-card .feature-list {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.feature-card .feature-list li {
  padding: 5px 0;
  font-size: 0.82rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.feature-card .feature-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  min-width: 14px;
}

/* ── STEPS ── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--green), var(--gold));
  opacity: 0.25;
}

.step { text-align: center; position: relative; }

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal);
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  background: var(--bg-white);
}

.step h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ── MODULES GRID ── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.module-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.3s;
}

.module-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

.module-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.mi-teal { background: rgba(0,180,216,0.15); }
.mi-green { background: rgba(46,196,160,0.15); }
.mi-gold { background: rgba(244,162,97,0.15); }
.mi-purple { background: rgba(123,104,238,0.15); }
.mi-coral { background: rgba(231,111,81,0.15); }
.mi-pink { background: rgba(236,72,153,0.15); }

.module-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.module-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}

/* ── MODULE DETAIL (features.php expanded) ── */
.module-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.module-detail:last-child { border-bottom: none; }

.module-detail.reverse { direction: rtl; }
.module-detail.reverse > * { direction: ltr; }

.module-detail-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.module-detail h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.module-detail p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.module-detail .check-list li {
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.module-detail .check-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  min-width: 16px;
}

.module-visual {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  border: 1px solid var(--border);
}

.module-visual-mock {
  width: 100%;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mock-header {
  padding: 16px 20px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-body { padding: 20px; }

.mock-row {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #F1F5F9;
  gap: 12px;
}

.mock-row:last-child { border-bottom: none; }

.mock-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.mock-name {
  flex: 1;
  font-size: 0.82rem;
  font-weight: 500;
}

.mock-tag {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
}

.tag-green { background: #D1FAE5; color: #065F46; }
.tag-blue { background: #DBEAFE; color: #1E40AF; }
.tag-gold { background: #FEF3C7; color: #92400E; }
.tag-red { background: #FEE2E2; color: #991B1B; }

/* ── DEMO CARDS ── */
.demo-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.demo-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  transition: all 0.3s;
}

.demo-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.demo-card .demo-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.demo-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.demo-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.55;
}

.demo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.88rem;
  transition: gap 0.2s;
}
.demo-link:hover { gap: 10px; }

/* ── PRICING ── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.price-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s;
}

.price-card.popular {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(0,180,216,0.15);
}

.price-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

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

.price-tier {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.price-period {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.price-features { margin-bottom: 28px; }

.price-features li {
  padding: 7px 0;
  font-size: 0.85rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.price-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 16px;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 16px;
  transition: all 0.3s;
}

.contact-method:hover { background: rgba(255,255,255,0.08); }

.contact-method-light {
  background: var(--bg-white);
  border-color: var(--border);
}
.contact-method-light:hover {
  background: var(--bg-light);
  box-shadow: var(--shadow);
}

.cm-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.cm-whatsapp { background: rgba(37,211,102,0.15); }
.cm-phone { background: rgba(0,180,216,0.15); }
.cm-email { background: rgba(244,162,97,0.15); }
.cm-web { background: rgba(123,104,238,0.15); }

.contact-method h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-method p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

.contact-method-light p { color: var(--text-mid); }

.contact-method a { color: var(--teal); font-weight: 600; }

.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-form-light {
  background: var(--bg-white);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.6);
}

.contact-form-light .form-group label { color: var(--text-mid); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}

.contact-form-light .form-group input,
.contact-form-light .form-group textarea,
.contact-form-light .form-group select {
  background: var(--bg-light);
  border-color: var(--border);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
}

.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--navy); color: #fff; }
.contact-form-light .form-group select option { background: #fff; color: var(--text-dark); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.cta-banner .btn {
  position: relative;
  z-index: 2;
  background: #fff;
  color: var(--teal-dark);
}

.cta-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ── TESTIMONIALS / WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--bg-white);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── FAQ ── */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question .faq-toggle {
  font-size: 1.3rem;
  color: var(--teal);
  transition: transform 0.3s;
  min-width: 20px;
  text-align: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer-inner {
  padding-bottom: 22px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

/* ── FOOTER ── */
.footer {
  background: #0A1628;
  padding: 60px 0 28px;
  color: rgba(255,255,255,0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
}

.footer h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}

.footer ul li { margin-bottom: 10px; }

.footer ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a { color: var(--teal); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .modules-grid { grid-template-columns: 1fr; }
  .module-detail { grid-template-columns: 1fr; gap: 36px; }
  .module-detail.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.active a {
    padding: 12px 16px;
    width: 100%;
  }

  .hero { padding: 120px 0 60px; }
  .section { padding: 72px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .steps-row::before { display: none; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
  .demo-cards { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .float-attendance { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .steps-row { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .dash-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
