/* === Variables & Reset === */
:root {
  --primary: #0D4C8B;
  --primary-dark: #082d4f;
  --secondary: #1a6db5;
  --accent: #F0A22A;
  --accent-light: rgba(240, 162, 42, 0.12);
  --gradient: linear-gradient(135deg, #0D4C8B, #1a6db5);
  --text: #141824;
  --text-light: #5a6478;
  --bg: #FAFAF8;
  --bg-alt: #F1F4F8;
  --radius: 16px;
  --font-display: 'Outfit', sans-serif;
  --font-serif: 'Lora', serif;
  --font-body: 'Source Sans 3', sans-serif;
  --glass-bg: rgba(255, 255, 255, 0.28);
  --glass-border: rgba(255, 255, 255, 0.45);
  --glass-shadow: 0 8px 32px rgba(13, 76, 139, 0.10);
  --glass-blur: blur(16px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* === Animations === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
  60%       { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

@keyframes blobMove1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes blobMove2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-30px, 20px) scale(0.95); }
  66%       { transform: translate(20px, -20px) scale(1.05); }
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50%       { transform: translateX(-50%) translateY(9px); opacity: 1; }
}

/* === Scroll-triggered animations === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.stagger-children .animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.stagger-children .animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.stagger-children .animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.stagger-children .animate-on-scroll:nth-child(5) { transition-delay: 0.32s; }
.stagger-children .animate-on-scroll:nth-child(6) { transition-delay: 0.40s; }
.stagger-children .animate-on-scroll:nth-child(7) { transition-delay: 0.48s; }
.stagger-children .animate-on-scroll:nth-child(8) { transition-delay: 0.56s; }
.stagger-children .animate-on-scroll:nth-child(9) { transition-delay: 0.64s; }

/* === Layout === */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
  position: relative;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 14px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto 52px;
  font-size: 1.08rem;
  line-height: 1.7;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gradient);
  color: #fff;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.45s ease;
}

.btn:hover::after {
  left: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 76, 139, 0.32);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
}

.btn-lg {
  padding: 15px 36px;
  font-size: 1.08rem;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.88rem;
}

/* === Header === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13, 76, 139, 0.08);
  box-shadow: 0 1px 16px rgba(13, 76, 139, 0.05);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a:not(.btn) {
  font-size: 0.92rem;
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

.header-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.header-nav a:not(.btn):hover {
  color: var(--primary);
}

.header-nav a:not(.btn):hover::after {
  transform: scaleX(1);
}

.header-nav a.btn {
  color: #fff;
}

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

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === Hero === */
.hero {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='white' fill-opacity='.1'/%3E%3C/svg%3E"),
    linear-gradient(148deg, #062140 0%, #0D4C8B 55%, #1561a8 100%);
  color: #fff;
  padding: 130px 0 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(240, 162, 42, 0.12) 0%, transparent 70%);
  top: -140px;
  right: -100px;
  animation: blobMove1 14s ease-in-out infinite;
}

.hero::after {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
  bottom: -90px;
  left: -60px;
  animation: blobMove2 11s ease-in-out infinite;
}

.hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 200px;
  margin-bottom: 28px;
  filter: brightness(0) invert(1) drop-shadow(0 4px 16px rgba(0, 0, 0, 0.25));
  animation: fadeIn 0.7s ease-out both, float 3.5s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.22;
  margin-bottom: 20px;
  animation: fadeInUp 0.75s ease-out 0.15s both;
}

.hero-subtitle {
  font-size: 1.12rem;
  opacity: 0.88;
  margin-bottom: 36px;
  line-height: 1.75;
  animation: fadeInUp 0.75s ease-out 0.28s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.75s ease-out 0.42s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 40px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  animation: fadeInUp 0.7s ease-out 0.08s both;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseGlow 2.2s ease-in-out infinite;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.45);
  animation: bounceDown 2.4s ease-in-out infinite;
  z-index: 1;
}

/* === Value Strip === */
.value-strip {
  background: #fff;
  border-bottom: 1px solid rgba(13, 76, 139, 0.08);
  padding: 16px 0;
}

.value-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 0;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  padding: 4px 20px;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

.value-check {
  color: var(--accent);
  flex-shrink: 0;
}

.value-divider {
  width: 1px;
  height: 18px;
  background: rgba(13, 76, 139, 0.12);
  flex-shrink: 0;
}

/* === Features Section === */
#features {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

#features::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 76, 139, 0.05) 0%, transparent 70%);
  top: -150px;
  left: -150px;
  pointer-events: none;
}

#features::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240, 162, 42, 0.05) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-left: 3px solid transparent;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(13, 76, 139, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-left-color 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 36px rgba(13, 76, 139, 0.12);
  transform: translateY(-6px);
  border-left-color: var(--secondary);
}

/* Icon wrappers */
.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.icon-blue   { background: rgba(13, 76, 139, 0.09); }
.icon-indigo { background: rgba(67, 56, 202, 0.08); }
.icon-teal   { background: rgba(20, 184, 166, 0.09); }
.icon-amber  { background: rgba(240, 162, 42, 0.12); }
.icon-orange { background: rgba(234, 88, 12, 0.08); }
.icon-purple { background: rgba(147, 51, 234, 0.08); }
.icon-slate  { background: rgba(71, 85, 105, 0.08); }

.feature-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 9px;
  color: var(--primary);
  letter-spacing: -0.01em;
}

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

.feature-card-new {
  border: 1px solid rgba(240, 162, 42, 0.25);
  border-left: 3px solid var(--accent);
  background: linear-gradient(135deg, rgba(240, 162, 42, 0.04) 0%, rgba(255, 255, 255, 0.6) 60%);
  position: relative;
}

.feature-card-new:hover {
  border-left-color: var(--accent);
  box-shadow: 0 10px 36px rgba(240, 162, 42, 0.14);
}

.feature-new-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-family: var(--font-display);
}

/* === Multi-School Section === */
.multi-school-section {
  background: linear-gradient(162deg, #082d4f 0%, #0D4C8B 55%, #124e8a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.multi-school-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(240, 162, 42, 0.07) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
  animation: blobMove1 16s ease-in-out infinite;
}

.multi-school-section::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
  pointer-events: none;
  animation: blobMove2 12s ease-in-out infinite;
}

.multi-school-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.multi-school-label {
  display: inline-block;
  background: rgba(240, 162, 42, 0.14);
  border: 1px solid rgba(240, 162, 42, 0.4);
  color: #fcd277;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 20px;
  font-family: var(--font-display);
}

.multi-school-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: -0.02em;
}

.multi-school-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.78;
  margin-bottom: 18px;
}

.btn-multi {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  margin-top: 8px;
}

.btn-multi:hover {
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.22);
  color: var(--primary);
}

.multi-school-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ms-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.ms-card:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.ms-card-icon {
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.ms-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.ms-card p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

/* === Pricing === */
.pricing-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 76, 139, 0.05) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: #fff;
  border: 1px solid rgba(13, 76, 139, 0.09);
  border-radius: 20px;
  padding: 40px 28px 36px;
  box-shadow: 0 2px 12px rgba(13, 76, 139, 0.05);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  box-shadow: 0 10px 44px rgba(13, 76, 139, 0.11);
  transform: translateY(-4px);
}

.pricing-card-featured {
  border: 2px solid var(--primary);
  box-shadow:
    0 12px 50px rgba(13, 76, 139, 0.16),
    0 0 0 5px rgba(13, 76, 139, 0.07);
  transform: scale(1.04);
  background: linear-gradient(180deg, rgba(13, 76, 139, 0.03) 0%, #fff 45%);
}

.pricing-card-featured:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow:
    0 18px 60px rgba(13, 76, 139, 0.20),
    0 0 0 5px rgba(13, 76, 139, 0.10);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
  font-family: var(--font-display);
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.pricing-price .currency {
  font-size: 1.35rem;
  font-weight: 600;
  vertical-align: super;
  margin-right: 2px;
}

.pricing-price .amount {
  font-variant-numeric: tabular-nums;
}

.pricing-price .period {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 6px;
}

.pricing-divider {
  height: 1px;
  background: rgba(13, 76, 139, 0.08);
  margin: 20px 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  padding: 9px 0;
  font-size: 0.91rem;
  color: var(--text);
  position: relative;
  padding-left: 26px;
  line-height: 1.45;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}

.pricing-cta {
  margin-top: 28px;
}

.pricing-card .btn {
  width: 100%;
  text-align: center;
  padding: 13px 24px;
  border-radius: 12px;
}

.pricing-card .btn-outline {
  color: var(--primary);
  border: 2px solid rgba(13, 76, 139, 0.25);
  background: transparent;
}

.pricing-card .btn-outline:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.pricing-card-featured .btn {
  background: var(--gradient);
  border: none;
}

/* === CBT Spotlight === */
.cbt-section {
  background: linear-gradient(168deg, #eef5fc 0%, #daeaf7 50%, #e4eff8 100%);
  position: relative;
  overflow: hidden;
}

.cbt-section::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(13, 76, 139, 0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cbt-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.cbt-content .section-title,
.cbt-content .section-subtitle {
  text-align: left;
  margin-left: 0;
}

.cbt-image {
  position: sticky;
  top: 88px;
}

.cbt-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 14px 48px rgba(13, 76, 139, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.cbt-image-caption {
  margin-top: 18px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.65;
}

.cbt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

.cbt-item {
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-left: 3px solid var(--secondary);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 3px 14px rgba(13, 76, 139, 0.07);
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.cbt-item:hover {
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 30px rgba(13, 76, 139, 0.13);
  transform: translateY(-4px);
}

.cbt-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--primary);
}

.cbt-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.62;
}

/* === Roadmap === */
#roadmap {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

#roadmap::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 76, 139, 0.05) 0%, transparent 70%);
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.roadmap-item {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 3px 14px rgba(13, 76, 139, 0.05);
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.roadmap-item:hover {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 30px rgba(13, 76, 139, 0.11);
  transform: translateY(-4px);
}

.roadmap-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  background: rgba(13, 76, 139, 0.08);
  color: var(--primary);
  border-color: rgba(13, 76, 139, 0.14);
}

.roadmap-item:nth-child(-n+3) .roadmap-badge {
  background: rgba(217, 119, 6, 0.09);
  color: #b45309;
  border-color: rgba(217, 119, 6, 0.2);
}

.roadmap-icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.roadmap-item h4 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.roadmap-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* === Get Started CTA === */
.get-started-section {
  background: linear-gradient(148deg, #062140 0%, #0D4C8B 55%, #1561a8 100%);
  position: relative;
  overflow: hidden;
}

.get-started-section::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(240, 162, 42, 0.09) 0%, transparent 70%);
  top: -130px;
  left: -120px;
  pointer-events: none;
  animation: blobMove2 14s ease-in-out infinite;
}

.get-started-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 52px;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 1;
}

.get-started-content h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.get-started-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 28px;
}

.get-started-content .btn {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
}

.get-started-content .btn:hover {
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.28);
}

.get-started-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 13px 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.25s ease;
}

.highlight-item:hover {
  background: rgba(255, 255, 255, 0.14);
}

.highlight-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* === Footer === */
.footer {
  background: #0a1929;
  color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 48px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 18px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
  padding: 9px 0;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-contact-link:last-child {
  border-bottom: none;
}

.footer-contact-link:hover {
  color: #fff;
}

.footer-cta-link {
  color: var(--accent);
  font-weight: 600;
  margin-top: 4px;
}

.footer-cta-link:hover {
  color: #fcd277;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.32);
}

.footer-bottom-right {
  font-size: 0.83rem;
}

/* === WhatsApp Floating Button === */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  z-index: 1000;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  animation: pulseGlowGreen 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #128c7e;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

@keyframes pulseGlowGreen {
  0%   { box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70%  { box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* === Responsive === */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .multi-school-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .multi-school-text h2 {
    font-size: 2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .pricing-card-featured {
    transform: none;
  }

  .pricing-card-featured:hover {
    transform: translateY(-4px);
  }

  .cbt-layout {
    grid-template-columns: 1fr;
  }

  .cbt-content .section-title,
  .cbt-content .section-subtitle {
    text-align: center;
    margin: 0 auto;
    max-width: 580px;
  }

  .cbt-content .section-title {
    margin-bottom: 14px;
  }

  .cbt-content .section-subtitle {
    margin-bottom: 52px;
  }

  .cbt-image {
    position: static;
    max-width: 480px;
    margin: 32px auto 0;
  }

  .cbt-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .get-started-card {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .header-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0 24px;
    gap: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease, padding 0.3s ease;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(13, 76, 139, 0.12);
    align-items: stretch;
  }

  .header-nav.open {
    max-height: 440px;
    opacity: 1;
    pointer-events: auto;
    padding: 16px 24px 20px;
  }

  .header-nav a:not(.btn) {
    padding: 11px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(13, 76, 139, 0.06);
  }

  .header-nav a:not(.btn):last-of-type {
    border-bottom: none;
  }

  .header-nav a:not(.btn)::after {
    display: none;
  }

  .header-nav .btn {
    margin-top: 12px;
    text-align: center;
  }

  .hero {
    padding: 108px 0 64px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-logo {
    width: 160px;
    margin-bottom: 22px;
  }

  .hero-subtitle {
    font-size: 1.02rem;
  }

  .hero::before {
    width: 260px;
    height: 260px;
    top: -70px;
    right: -60px;
  }

  .hero::after {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -40px;
  }

  .value-strip-inner {
    gap: 4px 0;
  }

  .value-item {
    padding: 4px 12px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 36px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card {
    padding: 22px 20px;
  }

  .multi-school-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .multi-school-text h2 {
    font-size: 1.85rem;
  }

  .cbt-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cbt-image {
    max-width: 100%;
  }

  .roadmap-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .get-started-card {
    padding: 32px 24px;
    gap: 24px;
  }

  .get-started-content h2 {
    font-size: 1.4rem;
  }

  .get-started-content .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 44px;
    padding-bottom: 36px;
  }

  .footer-brand-col {
    grid-column: auto;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 22px;
    right: 22px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 96px 0 52px;
  }

  .hero h1 {
    font-size: 1.55rem;
  }

  .hero-subtitle {
    font-size: 0.97rem;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-lg {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .value-divider {
    display: none;
  }

  .value-strip-inner {
    justify-content: flex-start;
  }

  .multi-school-text h2 {
    font-size: 1.6rem;
  }

  .get-started-card {
    padding: 24px 20px;
  }
}

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

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }

  .whatsapp-float {
    animation: none;
  }
}
