:root {
  --blue: #1d84e3;
  --green: #45b84a;
  --orange: #ff8b22;
  --purple: #221944;
  --dark: #15142b;
  --text: #2c2b3d;
  --muted: #6f6d7d;
  --soft: #f5f9ff;
  --white: #ffffff;
  --border: #e6e9f3;
  --shadow: 0 18px 45px rgba(22, 30, 60, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1140px, calc(100% - 36px)); margin: 0 auto; }
.narrow { max-width: 820px; }
.center-text { text-align: center; }
.site-header {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand img { width: 165px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 26px; font-weight: 800; }
.main-nav a { color: var(--purple); }
.main-nav a:hover, .main-nav a.active { color: var(--blue); }
.nav-cta { background: var(--orange); color: var(--white) !important; padding: 11px 18px; border-radius: 999px; box-shadow: 0 10px 25px rgba(255,139,34,0.22); }
.mobile-menu-btn { display: none; background: var(--blue); color: white; border: 0; width: 44px; height: 44px; border-radius: 12px; font-size: 24px; }
.hero-section { padding: 76px 0 68px; background: linear-gradient(135deg, #fff 0%, #f2f9ff 58%, #fff7ee 100%); overflow: hidden; }
.hero-grid, .split-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
.eyebrow, .section-kicker { display: inline-flex; color: var(--blue); background: #e9f4ff; border: 1px solid #d8ecff; padding: 7px 13px; border-radius: 999px; font-weight: 900; font-size: 0.92rem; margin-bottom: 14px; }
h1, h2, h3 { color: var(--purple); line-height: 1.1; margin: 0 0 16px; }
h1 { font-size: clamp(2.4rem, 6vw, 4.9rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -0.03em; }
h3 { font-size: 1.24rem; }
p { margin: 0 0 16px; color: var(--muted); }
.hero-text { font-size: 1.22rem; max-width: 650px; }
.hero-actions, .center-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 24px; }
.center-actions { justify-content: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 21px; border-radius: 999px; font-weight: 900; transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 14px 28px rgba(255,139,34,.25); }
.btn-secondary { background: var(--blue); color: var(--white); box-shadow: 0 14px 28px rgba(29,132,227,.22); }
.btn-light { background: var(--white); color: var(--purple); }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-points span { background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 8px 12px; font-weight: 800; color: var(--purple); }
.hero-media { position: relative; }
.hero-media img, .rounded-img { border-radius: 28px; box-shadow: var(--shadow); object-fit: cover; width: 100%; max-height: 520px; }
.floating-card { position: absolute; left: -22px; bottom: 26px; background: var(--white); border-radius: 22px; padding: 16px 18px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.floating-card strong { color: var(--purple); display: block; font-size: 1.1rem; }
.floating-card span { color: var(--muted); font-weight: 800; }
.section { padding: 76px 0; }
.bg-soft { background: var(--soft); }
.bg-dark { background: linear-gradient(135deg, var(--purple), var(--dark)); }
.light-text h2, .light-text p { color: var(--white); }
.light-text .section-kicker { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.2); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.learning-grid { grid-template-columns: repeat(4, 1fr); }
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: 26px; padding: 24px; box-shadow: 0 12px 35px rgba(22, 30, 60, 0.07); font-size: 1.8rem; }
.feature-card h3 { margin-top: 12px; font-size: 1.18rem; }
.feature-card p { font-size: 0.96rem; margin-bottom: 0; }
.check-list { padding: 0; margin: 22px 0; list-style: none; }
.check-list li { margin-bottom: 10px; color: var(--text); font-weight: 750; }
.check-list li::before { content: '✓'; color: var(--green); font-weight: 900; margin-right: 10px; }
.image-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: end; }
.image-stack img { border-radius: 26px; box-shadow: var(--shadow); min-height: 330px; object-fit: cover; }
.image-stack img:nth-child(2) { margin-top: 44px; }
.batch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.batch-card { display: flex; justify-content: space-between; gap: 14px; background: var(--white); border-radius: 22px; padding: 20px; border: 1px solid rgba(255,255,255,.25); align-items: flex-start; }
.batch-card strong { color: var(--purple); font-size: 1.06rem; }
.batch-card p { margin: 5px 0 0; font-weight: 800; }
.batch-card span { white-space: nowrap; border-radius: 999px; padding: 7px 11px; font-weight: 900; font-size: 0.9rem; }
.batch-card.open span { background: #e9f9ed; color: #227c2c; }
.batch-card.full span { background: #fff0e3; color: #b7550d; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; align-items: stretch; }
.plan-card { position: relative; background: var(--white); border: 1px solid var(--border); border-radius: 30px; padding: 28px; box-shadow: 0 14px 38px rgba(22, 30, 60, 0.08); display: flex; flex-direction: column; min-height: 100%; }
.plan-card h3 { font-size: 1.55rem; margin-bottom: 10px; }
.plan-label { color: var(--blue); font-weight: 950; background: #e9f4ff; border-radius: 999px; padding: 7px 12px; align-self: flex-start; margin-bottom: 16px; }
.plan-price { color: var(--purple); font-size: clamp(2.1rem, 3vw, 2.8rem); font-weight: 950; letter-spacing: -0.04em; margin-bottom: 16px; }
.plan-price span { font-size: 1rem; color: var(--muted); letter-spacing: 0; margin-left: 3px; }
.plan-card ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.plan-card li { color: var(--text); font-weight: 800; margin-bottom: 11px; }
.plan-card li::before { content: '✓'; color: var(--green); font-weight: 950; margin-right: 9px; }
.featured-plan { border: 2px solid var(--orange); transform: translateY(-10px); box-shadow: 0 20px 50px rgba(255,139,34,0.16); }
.popular-badge { position: absolute; top: -16px; left: 24px; background: var(--orange); color: var(--white); padding: 7px 13px; border-radius: 999px; font-weight: 950; font-size: .9rem; box-shadow: 0 10px 22px rgba(255,139,34,.22); }
.pricing-note { margin-top: 24px; background: linear-gradient(135deg, #fff7ee, #f4fbff); border: 1px solid var(--border); border-radius: 24px; padding: 22px; text-align: center; }
.pricing-note p { margin-bottom: 6px; }

.pricing-card, .location-card { background: var(--white); border: 1px solid var(--border); border-radius: 32px; padding: 34px; box-shadow: var(--shadow); display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: center; }
.pricing-card { background: linear-gradient(135deg, #ffffff, #f8fbff); }
.discount-note { color: var(--purple); font-weight: 900; }
.faq-list { max-width: 900px; margin-top: 30px; }
details { background: var(--white); border: 1px solid var(--border); border-radius: 18px; margin-bottom: 12px; padding: 18px 20px; box-shadow: 0 8px 24px rgba(22,30,60,.05); }
summary { cursor: pointer; font-weight: 900; color: var(--purple); font-size: 1.08rem; }
details p { margin-top: 12px; margin-bottom: 0; }
.location-card img { border-radius: 26px; min-height: 300px; object-fit: cover; }
.bottom-cta { padding: 72px 0; background: linear-gradient(135deg, var(--blue), var(--green)); }
.page-hero { padding: 84px 0; background: linear-gradient(135deg, #f2f9ff, #fff7ee); }
.site-footer { background: var(--dark); color: var(--white); padding: 54px 0 18px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 0.7fr; gap: 36px; }
.footer-logo { width: 160px; background: white; border-radius: 16px; padding: 8px; margin-bottom: 16px; }
.site-footer h3 { color: var(--white); }
.site-footer p, .site-footer a { color: rgba(255,255,255,.78); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 36px; padding-top: 18px; text-align: center; }
.footer-bottom p { margin: 0; }

/* Pricing package cards - clean alignment */
.pricing-section { background: #ffffff; }
.pricing-grid { align-items: stretch; }
.plan-card { height: 100%; }
.plan-card h3 { min-height: 54px; display: flex; align-items: flex-start; }
.plan-price { min-height: 72px; display: flex; align-items: baseline; flex-wrap: wrap; }
.plan-card ul { flex: 1; }
.plan-card .btn { width: 100%; margin-top: auto; }
.featured-plan { z-index: 1; }


@media (max-width: 980px) {
  .mobile-menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .main-nav { display: none; position: absolute; left: 18px; right: 18px; top: 82px; flex-direction: column; background: white; padding: 22px; border: 1px solid var(--border); border-radius: 22px; box-shadow: var(--shadow); align-items: stretch; }
  .main-nav.open { display: flex; }
  .hero-grid, .split-grid, .pricing-card, .location-card { grid-template-columns: 1fr; }
  .card-grid, .learning-grid, .batch-grid, .pricing-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .featured-plan { transform: none; }
  .floating-card { left: 18px; }
}

@media (max-width: 760px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 18px; }
  .plan-card { padding: 24px; border-radius: 24px; }
  .plan-card h3 { min-height: auto; }
  .plan-price { min-height: auto; }
  .popular-badge { position: static; display: inline-flex; width: fit-content; margin-bottom: 12px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1140px); }
  .hero-section, .section, .page-hero { padding: 52px 0; }
  .card-grid, .learning-grid, .batch-grid, .footer-grid, .image-stack { grid-template-columns: 1fr; }
  .hero-actions .btn, .center-actions .btn { width: 100%; }
  .hero-points span { width: 100%; text-align: center; }
  .batch-card { flex-direction: column; }
  .batch-card span { white-space: normal; }
  .image-stack img:nth-child(2) { margin-top: 0; }
  .pricing-card, .location-card { padding: 24px; border-radius: 24px; }
}
