:root {
  --primary: #0b5fff;
  --dark: #091b3c;
  --accent: #00c2a8;
  --soft: #f5f9ff;
  --gold: #ffc857;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226,232,240,0.9);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 48px; height: 48px; border-radius: 18px; display: grid; place-items: center;
  color: white; font-size: 22px; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 30px rgba(11,95,255,0.25);
}
.brand small {
  display: block; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--muted); font-size: 11px; font-weight: 700;
}
.brand strong { display: block; font-size: 18px; }

.nav-links {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.nav-links a { font-size: 14px; font-weight: 600; color: #475569; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 24px; border-radius: 18px; font-weight: 700; border: none;
  cursor: pointer; transition: 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #2d7fff);
  color: white; box-shadow: 0 16px 35px rgba(11,95,255,0.24);
}
.btn-primary:hover, .btn-outline:hover { transform: translateY(-2px); }
.btn-outline {
  background: white; color: var(--text); border: 1px solid var(--line);
}
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(11,95,255,0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(0,194,168,0.14), transparent 24%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center;
  padding: 72px 0 90px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px;
  border-radius: 999px; background: #ecfeff; color: #155e75; font-size: 14px;
  font-weight: 700; border: 1px solid #bae6fd;
}
h1 {
  margin: 20px 0 18px; font-size: clamp(40px, 5vw, 68px); line-height: 1.05;
  font-weight: 900; letter-spacing: -0.03em;
}
.accent { color: var(--primary); }
.lead {
  font-size: 19px; color: #475569; max-width: 680px; margin: 0;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px;
}
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px;
}
.stat {
  background: white; border: 1px solid var(--line); border-radius: 24px; padding: 20px;
  box-shadow: var(--shadow);
}
.stat strong { display: block; font-size: 30px; line-height: 1; margin-bottom: 6px; }

.hero-card {
  position: relative; background: white; border: 1px solid var(--line);
  border-radius: 34px; padding: 14px; box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}
.hero-card img {
  width: 100%; height: 560px; object-fit: cover; border-radius: 26px;
}
.overlay-box {
  position: absolute; left: 28px; right: 28px; bottom: 28px;
  background: rgba(9,27,60,0.8); color: white; border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px); border-radius: 24px; padding: 20px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.overlay-mini {
  background: rgba(255,255,255,0.08); border-radius: 18px; padding: 16px;
}
.overlay-mini small {
  display: block; color: #a5f3fc; text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 11px; font-weight: 700; margin-bottom: 6px;
}

section { padding: 88px 0; }
.muted-section { background: #f8fafc; }
.dark-section { background: #020817; color: white; }

.section-head { max-width: 780px; margin-bottom: 36px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head .tag {
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 12px; font-weight: 800;
  color: #0891b2; margin-bottom: 14px; display: inline-block;
}
.section-head h2 {
  margin: 0; font-size: clamp(30px, 3.8vw, 48px); line-height: 1.1; letter-spacing: -0.02em;
}
.section-head p { margin-top: 16px; font-size: 18px; color: #64748b; }
.dark-section .section-head p { color: #cbd5e1; }
.dark-section .section-head h2 { color: white; }

.grid-2 { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: start; }
.cards-2, .cards-3, .cards-4 { display: grid; gap: 22px; }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: white; border: 1px solid var(--line); border-radius: 30px;
  padding: 28px; box-shadow: var(--shadow);
}
.card.dark {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1);
  color: white; box-shadow: none;
}
.icon {
  width: 56px; height: 56px; display: grid; place-items: center; border-radius: 18px;
  background: #eff6ff; color: var(--primary); font-size: 26px; font-weight: 800;
}
.card h3 { margin: 18px 0 10px; font-size: 22px; line-height: 1.2; }
.card p, .card li { color: #64748b; }
.card.dark p, .card.dark li { color: #dbeafe; }
.card ul {
  margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 12px;
}
.card ul li { display: flex; gap: 10px; align-items: flex-start; }
.check { color: var(--accent); font-weight: 800; flex: 0 0 auto; }

.program-box {
  overflow: hidden; border-radius: 34px; box-shadow: 0 24px 64px rgba(15,23,42,0.08);
  border: 1px solid var(--line); background: white;
}
.program-top { height: 8px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.program-top.alt { background: linear-gradient(90deg, var(--accent), var(--gold)); }
.program-body { padding: 34px; }
.pill-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.pill {
  background: #eff6ff; color: #1d4ed8; padding: 10px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
}
.pill.green { background: #ecfdf5; color: #047857; }
.steps .card { height: 100%; }

.cta-box {
  background: linear-gradient(135deg, var(--dark), var(--primary), var(--accent));
  color: white; border-radius: 36px; padding: 48px;
  box-shadow: 0 30px 80px rgba(11,95,255,0.18);
}
.cta-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 30px; align-items: center;
}
.contact-panel {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 28px; padding: 28px; backdrop-filter: blur(12px);
}
.contact-item { margin-bottom: 18px; }
.contact-item strong { display: block; margin-bottom: 4px; }

.faq-list { display: grid; gap: 16px; margin-top: 30px; }
.faq-item {
  background: white; border: 1px solid var(--line); border-radius: 28px;
  padding: 24px; box-shadow: var(--shadow);
}
.faq-item h3 { margin: 0 0 10px; font-size: 20px; }

footer {
  border-top: 1px solid var(--line); background: white; padding: 28px 0;
  color: var(--muted); font-size: 14px;
}
.footer-row {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

.mobile-toggle {
  display: none; background: white; border: 1px solid var(--line); border-radius: 14px;
  padding: 10px 12px; font-size: 18px; cursor: pointer;
}

.page-hero {
  padding: 72px 0 42px;
  background:
    radial-gradient(circle at top left, rgba(11,95,255,0.08), transparent 25%),
    linear-gradient(180deg, #ffffff, #f8fbff);
}
.page-hero h1 { font-size: clamp(34px, 4vw, 56px); margin: 14px 0 8px; }
.page-hero p { max-width: 780px; color: #64748b; font-size: 18px; margin: 0; }

@media (max-width: 980px) {
  .hero-grid, .grid-2, .cta-grid, .cards-3, .cards-4, .overlay-box {
    grid-template-columns: 1fr;
  }
  .cards-2 { grid-template-columns: 1fr; }
  .hero-card img { height: 420px; }
  .stats { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links {
    display: none; position: absolute; left: 16px; right: 16px; top: 82px;
    background: white; border: 1px solid var(--line); border-radius: 22px;
    padding: 18px; box-shadow: var(--shadow); flex-direction: column; align-items: flex-start;
  }
  .nav-links.show { display: flex; }
  .mobile-toggle { display: inline-flex; }
  .desktop-cta { display: none; }
  .hero-grid { padding: 48px 0 64px; }
  .cta-box { padding: 30px; }
  .program-body, .card, .contact-panel { padding: 22px; }
}



/* Logo refinement */
.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  flex: 0 0 auto;
  margin-right: auto;
}
.brand img {
  display: block;
  max-width: 350px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.nav-wrap {
  gap: 28px;
}
.nav-links {
  margin-left: auto;
}
@media (max-width: 760px) {
  .brand img {
    max-width: 240px;
    max-height: 72px;
  }
  .nav-wrap {
    gap: 12px;
  }
}


/* Enhanced hero slider */
.hero {
  background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
  padding: 0;
}
.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 42px 42px;
  background: #081a38;
}
.slides {
  position: relative;
  min-height: 700px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,18,42,0.86) 0%, rgba(6,18,42,0.68) 38%, rgba(6,18,42,0.30) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.28));
  z-index: 1;
}
.slide-content {
  position: relative;
  z-index: 2;
  min-height: 700px;
  display: grid;
  align-items: center;
  padding: 72px 0 112px;
}
.slide-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}
.hero-copy {
  max-width: 760px;
  color: white;
}
.hero-copy h1 {
  color: white;
  margin: 18px 0 16px;
  text-shadow: 0 8px 25px rgba(0,0,0,0.18);
}
.hero-copy .lead {
  color: rgba(255,255,255,0.90);
  font-size: 20px;
}
.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.hero-pill {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  font-size: 14px;
  font-weight: 700;
}
.hero-card-panel {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin-left: auto;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 28px;
  color: white;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
.hero-card-panel h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.1;
}
.hero-card-panel p, .hero-card-panel li {
  color: rgba(255,255,255,0.9);
}
.hero-card-panel ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.hero-card-panel li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.slider-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  z-index: 3;
}
.slider-controls {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slider-dots {
  display: flex;
  gap: 10px;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.25s ease;
}
.slider-dot.active {
  width: 34px;
  background: #ffffff;
}
.slider-arrows {
  display: flex;
  gap: 12px;
}
.slider-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 20px;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.section-blue-soft {
  background: linear-gradient(180deg, #f7fbff 0%, #edf6ff 100%);
}
.section-cream {
  background: linear-gradient(180deg, #fffef7 0%, #fff8e7 100%);
}
.section-slate {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}
.section-deep {
  background:
    radial-gradient(circle at top left, rgba(11,95,255,0.10), transparent 20%),
    linear-gradient(180deg, #07152f 0%, #0b2248 100%);
  color: white;
}
.section-deep .section-head p { color: #dbeafe; }
.section-deep .section-head h2 { color: white; }

.program-box {
  box-shadow: 0 24px 64px rgba(11,95,255,0.10);
}
.program-box:nth-child(1) {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}
.program-box:nth-child(2) {
  background: linear-gradient(180deg, #ffffff 0%, #f7fff8 100%);
}

.feature-band {
  margin-top: -30px;
  position: relative;
  z-index: 5;
}
.feature-band-wrap {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
  padding: 18px;
}
.feature-badges {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.feature-badge {
  padding: 14px 16px;
  border-radius: 18px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: #0f172a;
}
.feature-badge:nth-child(1) { background: #fff3bf; }
.feature-badge:nth-child(2) { background: #dbeafe; }
.feature-badge:nth-child(3) { background: #fce7f3; }
.feature-badge:nth-child(4) { background: #ffedd5; }
.feature-badge:nth-child(5) { background: #ede9fe; }
.feature-badge:nth-child(6) { background: #dcfce7; }

@media (max-width: 980px) {
  .slide-content, .slides { min-height: 760px; }
  .slide-grid { grid-template-columns: 1fr; }
  .hero-card-panel { margin-left: 0; max-width: 100%; }
  .feature-badges { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .slides, .slide-content { min-height: 820px; }
  .hero-copy .lead { font-size: 18px; }
  .hero-card-panel h3 { font-size: 24px; }
  .slider-controls { align-items: center; }
  .feature-badges { grid-template-columns: repeat(2, 1fr); }
}


/* Webinar section */
.webinar-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}
.webinar-video-card,
.webinar-info-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.webinar-video-card {
  padding: 18px;
}
.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #0b1f46, #163a76);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.webinar-info-card {
  padding: 30px;
}
.webinar-label {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  background: #ecfeff;
  color: #155e75;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.webinar-info-card h3 {
  margin: 16px 0 10px;
  font-size: 30px;
  line-height: 1.15;
}
.webinar-info-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.webinar-info-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #64748b;
}
.webinar-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.webinar-note {
  margin-top: 16px;
  font-size: 14px;
  color: #64748b;
}
@media (max-width: 980px) {
  .webinar-wrap {
    grid-template-columns: 1fr;
  }
}


/* Webinar placeholder fix */
.webinar-placeholder {
  background:
    linear-gradient(135deg, rgba(9,27,60,0.88), rgba(11,95,255,0.72)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}
.webinar-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  color: white;
}
.play-circle {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.24);
  display: grid;
  place-items: center;
  font-size: 30px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}
.webinar-overlay h3 {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.1;
}
.webinar-overlay p {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
}
.webinar-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 22px;
}
.webinar-placeholder .btn-outline {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1px solid rgba(255,255,255,0.26);
}
