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

:root {
  --bg: #f7f8fb;
  --card: #ffffff;
  --primary: #315efb;
  --primary-dark: #2749c7;
  --text: #182033;
  --muted: #4b5674;
  --border: #e5e7f0;
  --pill: #e8edff;
  --accent: #f8d57e;
  --shadow: 0 15px 45px rgba(24, 32, 51, 0.12);
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f1f4ff 0%, #f7f8fb 35%, #ffffff 100%);
  min-height: 100vh;
}

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

main {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 40px 24px 96px;
  max-width: 1200px;
  margin: 0 auto;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, #7b9bff 100%);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow);
}

.brand-mark.small {
  width: 38px;
  height: 38px;
  font-size: 0.9rem;
}

.brand-name {
  font-weight: 700;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.nav-links a {
  color: var(--muted);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links .cta {
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 1.1rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  background: radial-gradient(circle at 0% 0%, #e8edff, transparent 45%),
    radial-gradient(circle at 100% 30%, #fef5d8, transparent 35%),
    var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 48px;
}

.hero-visual {
  display: grid;
  gap: 14px;
  align-items: start;
}

.photo-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
  aspect-ratio: 4 / 3;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content h1 {
  font-size: 2.6rem;
  margin: 12px 0 12px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-weight: 600;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--primary) 0%, #5f7dff 100%);
  color: #fff;
  border: none;
  box-shadow: var(--shadow);
}

.button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(49, 94, 251, 0.2);
}

.button.ghost {
  background: #fff;
}

.button.full {
  width: 100%;
}

.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.hero-pills span {
  background: var(--pill);
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-card {
  background: #0d183a;
  color: #f4f7ff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 60px rgba(13, 24, 58, 0.4);
}

.stat-label {
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: #a7b7ff;
}

.stats {
  display: grid;
  gap: 12px;
}

.stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
}

.stat-value {
  font-weight: 700;
}

.stat-desc {
  color: #dce3ff;
  font-size: 0.95rem;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.section h2 {
  margin: 6px 0 6px;
  font-size: 2rem;
}

.section p {
  color: var(--muted);
  line-height: 1.6;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.82rem;
  margin: 0;
}

.grid.two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.side-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-card {
  padding: 0;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.highlight h3 {
  margin-top: 0;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.checklist li::before {
  content: '•';
  color: var(--primary);
  font-weight: 900;
  position: absolute;
  left: 10px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.program-image {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  background: #f6f7ff;
}

.program-image img {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
}

.program h3 {
  margin: 6px 0;
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  background: var(--pill);
  color: var(--primary);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.info-block {
  background: #f7f8ff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
}

.info-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.info-value {
  font-weight: 600;
  margin-top: 4px;
}

.contact-card h3 {
  margin-top: 0;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.form-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.cta-section {
  align-items: center;
}

.cta-card {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--primary) 0%, #7b9bff 100%);
  color: #fff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.cta-card p {
  color: #eef1ff;
  max-width: 620px;
}

.footer {
  padding: 30px 24px 46px;
  background: #0d183a;
  color: #e8edff;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #e8edff;
}

.footer-meta {
  color: #a8b3d4;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 34px;
  }
}

@media (max-width: 720px) {
  main {
    padding: 24px 16px 80px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    right: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 12px;
    display: none;
    flex-direction: column;
    gap: 10px;
    min-width: 200px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding: 24px;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .cta-card {
    align-items: flex-start;
  }
}
