:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --text: #000000;
  --muted: #475569;
  --line: #e2e8f0;
  --indigo: #004a7e;
  --royal: #004a7e;
  --teal: #ff7829;
  --purple: #ff7829;
  --shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--text);
  overflow-x: clip;
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section {
  padding: 30px 0;
  width: 100%;
}

.section-tight {
  padding: 35px 0;
}

.premium-hero {
  padding-top: 50px;
}

/* --- Header & Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.nav-shell {
  min-height: 76px; display: grid; align-items: center; gap: 30px;
  grid-template-columns: auto 1fr; width: 100%;
}
.brand { text-decoration: none; display: flex; align-items: center; }
.brand-logo { height: 38px; width: auto; transition: .3s ease; }

.nav-right {
  display: flex; align-items: center; gap: 24px;
  justify-content: flex-end; flex-grow: 1;
}

.nav-links { display: flex; align-items: center; gap: 6px; transition: .4s cubic-bezier(0.4, 0, 0.2, 1); }

.nav-links a {
  color: #334155; text-decoration: none; font-size: .94rem; font-weight: 600;
  padding: 10px 14px; border-radius: 12px; transition: .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: #f1f5f9;
  color: var(--royal);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: #f8fafc;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  z-index: 100;
}

.social-links-footer { display: flex; flex-direction: column; gap: 12px; margin-top: 10px; }
.social-links-footer a { display: flex; align-items: center; gap: 10px; color: #64748b; text-decoration: none; font-size: 0.9rem; transition: .25s ease; }
.social-links-footer a svg { width: 18px; height: 18px; fill: currentColor; }
.social-links-footer a:hover { color: var(--royal); transform: translateX(6px); }

.mobile-toggle span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--royal);
  transition: .3s ease;
  border-radius: 2px;
}

.mobile-toggle span:nth-child(1) {
  top: 17px;
}

.mobile-toggle span:nth-child(2) {
  top: 22px;
  width: 12px;
}

.mobile-toggle span:nth-child(3) {
  top: 27px;
}

.nav-open .mobile-toggle span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.nav-open .mobile-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .mobile-toggle span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.btn {
  border: 0;
  border-radius: 13px;
  padding: 11px 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  cursor: pointer;
  transition: .25s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--indigo);
  box-shadow: 0 4px 12px rgba(0, 74, 126, 0.2);
}

.btn-primary:hover {
  background: #003a63;
}

.btn-secondary {
  color: #fff;
  background: #ff7829;
  box-shadow: 0 4px 12px rgba(255, 120, 41, 0.2);
}

.btn-secondary:hover {
  background: #e66a1f;
}

.btn-outline {
  color: #334155;
  background: #fff;
  border: 1px solid #cbd5e1;
}

.btn-outline:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

.card {
  background: rgba(255, 255, 255, .87);
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.card-soft {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.grid-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.stack {
  display: grid;
  gap: 14px;
}

.hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  max-width: 12ch;
}

.eyebrow {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  color: #ff7829;
  background: rgba(255, 120, 41, 0.1);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.lead {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.02rem;
}

.pill {
  display: inline-block;
  border: 1px solid #dbe3ef;
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .78rem;
  font-weight: 600;
  color: #334155;
}

.hero-visual {
  min-height: 580px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #f1f5f9;
}

.hero-shell {
  align-items: center;
}

.hero-shell>* {
  min-width: 0;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 540px;
  max-height: 640px;
  object-fit: cover;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.orb {
  position: absolute;
  border-radius: 999px;
  opacity: .7;
}

.orb.o1 {
  width: 160px;
  height: 160px;
  left: -30px;
  top: -30px;
  background: rgba(124, 58, 237, .25);
  animation: floatY 4.5s ease-in-out infinite;
}

.orb.o2 {
  width: 110px;
  height: 110px;
  right: 24px;
  top: 40px;
  background: rgba(13, 148, 136, .24);
  animation: floatY 5s ease-in-out infinite .8s;
}

.orb.o3 {
  width: 90px;
  height: 90px;
  right: 15%;
  bottom: 14%;
  background: rgba(67, 56, 202, .24);
  animation: floatY 5.2s ease-in-out infinite 1.2s;
}

.mock-board {
  position: relative;
  z-index: 2;
  margin-top: 82px;
  padding: 14px;
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 14px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.stat {
  padding: 18px;
}

.stat strong {
  display: block;
  font-size: 1.95rem;
  letter-spacing: -0.03em;
  color: var(--royal);
}

.glass-card {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .55);
  box-shadow: 0 24px 40px rgba(15, 23, 42, 0.13);
  backdrop-filter: blur(12px);
  border-radius: 18px;
}

.float-stat {
  position: absolute;
  z-index: 3;
  padding: 10px 12px;
  width: 170px;
  animation: floatY 4.8s ease-in-out infinite;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
}

.float-stat p {
  margin: 4px 0 0;
  font-size: .82rem;
  color: #334155;
  line-height: 1.4;
}

.float-stat strong {
  font-size: 1.4rem;
  color: var(--royal);
  letter-spacing: -0.03em;
}

.float-stat.one {
  left: 26px;
  top: 26px;
}

.float-stat.two {
  right: 26px;
  top: 44%;
  animation-delay: .7s;
}

.float-stat.three {
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  animation-delay: 1.2s;
}

.logo-marquee {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 14px;
  padding: 14px 0;
  margin: 20px 0 16px;
}

.logo-marquee-inner {
  display: flex;
  width: max-content;
  animation: logoLoop 24s linear infinite;
}

.logo-track {
  display: flex;
  gap: 12px;
  width: max-content;
  flex-shrink: 0;
  padding-right: 12px;
}

.logo-track span {
  border: 1px solid #dbe5f0;
  border-radius: 999px;
  padding: 8px 14px;
  color: #64748b;
  background: linear-gradient(140deg, #ffffff, #f8fafc);
  font-size: .9rem;
  font-weight: 600;
  transition: .25s ease;
}

.logo-track span:hover {
  transform: translateY(-2px);
  color: #1f2937;
  box-shadow: 0 10px 16px rgba(15, 23, 42, .08);
}

.trust-section {
  margin-top: -14px;
}

.hero-feature-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.feature-card {
  border: 1px solid #dbeafe;
  border-radius: 16px;
  background: #fff;
  padding: 13px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .06);
}

.feature-card h4 {
  margin: 0;
  font-size: .95rem;
  color: #0f172a;
}

.feature-card p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: .84rem;
  line-height: 1.5;
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 74, 126, 0.1);
  color: var(--indigo);
}

.category-band {
  background: #0b1220;
  color: #dbe7ff;
}

.category-band .lead {
  color: #cbd5e1;
}

.category-band .card {
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
}

.category-band .card .lead,
.category-band .card p {
  color: #475569;
}

.category-band .testimonial-slide,
.category-band .testimonial-slide p,
.category-band .testimonial-slide .lead,
.category-band .testimonial-slide strong {
  color: #0f172a !important;
}

.category-band .course-meta {
  color: #64748b;
}

.category-band .price {
  color: var(--royal);
}

.tile,
.story-card,
.course-card,
.blog-card,
.panel {
  padding: 20px;
}

.dark-mix {
  background: linear-gradient(140deg, #0f172a, #1e1b4b, #134e4a);
  color: #dbe7ff;
}

.dark-mix h2,
.dark-mix h3 {
  color: #eff6ff;
}

.dark-mix .lead {
  color: #d5ddf1;
}

.highlight-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08));
  padding: 20px;
  box-shadow: 0 20px 34px rgba(2, 6, 23, .2);
  transition: .3s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
}

.highlight-card p {
  color: #d7e3f7;
  line-height: 1.65;
  margin: 10px 0 0;
}

.icon-dot {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 120, 41, 0.2);
  color: #ff7829;
}

.course-card img,
.blog-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  color: #64748b;
  margin: 9px 0;
}

.price {
  font-size: 1.46rem;
  font-weight: 900;
  color: var(--royal);
  letter-spacing: -0.03em;
}

.course-card {
  display: grid;
  gap: 6px;
  transition: .28s ease;
}

.course-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 34px rgba(15, 23, 42, .18);
}

.reveal-btn {
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
}

.course-card:hover .reveal-btn {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.check-list {
  margin: 0;
  padding-left: 18px;
  color: #334155;
  line-height: 1.8;
}

.timeline {
  border-left: 2px dashed #cbd5e1;
  margin-left: 8px;
  padding-left: 18px;
}

.timeline article {
  margin-bottom: 16px;
}

.story-media {
  padding: 12px;
  overflow: hidden;
}

.story-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 14px;
}

.story-section {
  overflow: hidden;
}

.story-content {
  min-width: 0;
}

.story-timeline {
  margin-top: 12px;
}

.story-card {
  background: #fff;
  border: 1px solid #dbe5f0;
  border-radius: 14px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card img {
  height: 200px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 14px;
}

.blog-card h3 {
  margin: 0 0 8px;
}

.blog-card .lead {
  margin: 0;
}

.story-card h3 {
  margin: 10px 0 6px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.story-card .lead {
  margin: 0;
  overflow-wrap: anywhere;
}

.editorial {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #334155;
}

.editorial h2,
.editorial h3 {
  color: #0f172a;
  letter-spacing: -0.02em;
}

.sidebar-card {
  position: sticky;
  top: 92px;
}

.search-input,
.input {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 11px;
  padding: 10px;
  font: inherit;
  background: #fff;
}

.map-placeholder {
  min-height: 240px;
  border-radius: 16px;
  border: 1px dashed #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, #f8fafc, #eef2ff);
  color: #475569;
  font-weight: 600;
}

.testimonial-shell {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.testimonial-track {
  display: block;
  width: 100%;
  max-width: 100%;
}

.testimonial-slide {
  display: none;
  width: 100%;
  max-width: 100%;
  padding: 20px;
  gap: 12px;
  overflow: hidden;
}

.testimonial-slide.active {
  display: grid;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  min-width: 0;
}

.testimonial-head img {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #c7d2fe;
}

.testimonial-slide img {
  width: 56px !important;
  max-width: 56px !important;
  height: 56px !important;
  object-fit: cover;
  flex: 0 0 56px;
}

.testimonial-head>div {
  min-width: 0;
}

.testimonial-head p {
  white-space: normal;
  overflow-wrap: anywhere;
}

.category-band .testimonial-shell .card,
.category-band .testimonial-shell,
.category-band .testimonial-track,
.category-band .testimonial-slide {
  overflow: hidden;
}

.testimonial-head p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: .88rem;
}

.slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--indigo);
}

.cta-band {
  text-align: center;
  color: #fff;
  padding: 48px 24px;
  background: var(--indigo);
  border-radius: 24px;
}

.site-footer {
  margin-top: 56px;
  padding: 8px 0 18px;
}

.footer-top {
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #f1f5ff);
  border: 1px solid #dbe5f4;
}

.footer-brand-block h3 {
  margin: 0 0 12px;
  font-size: 1.9rem;
  color: var(--royal);
}

.footer-brand-block p {
  margin: 0 0 16px;
  max-width: 520px;
  color: #64748b;
  line-height: 1.75;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.footer-grid h4 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 1.05rem;
}

.footer-grid p,
.footer-grid a {
  color: #64748b;
  line-height: 1.8;
}

.footer-grid a {
  text-decoration: none;
  display: block;
  transition: .2s ease;
}

.footer-grid a:hover {
  color: var(--teal);
  transform: translateX(2px);
}

.footer-bottom {
  margin-top: 14px;
  padding: 8px 6px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.copyright {
  color: #94a3b8;
  margin: 0;
  font-size: .9rem;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #dbe5f4;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  text-decoration: none;
  transition: .25s ease;
}

.social-links a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-links a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--indigo), var(--teal));
  border-color: transparent;
  transform: translateY(-2px);
}

.faq details {
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  color: var(--muted);
  line-height: 1.7;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  background: linear-gradient(120deg, var(--indigo), var(--teal));
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(2, 6, 23, .65);
  backdrop-filter: blur(5px);
  padding: 14px;
  align-items: center;
  justify-content: center;
}

.modal-overlay.show {
  display: flex;
  animation: fadeIn .25s ease;
}

.modal-shell {
  width: min(900px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 56px rgba(2, 6, 23, .36);
}

.modal-left {
  padding: 28px;
  color: #fff;
  background: linear-gradient(140deg, var(--royal), var(--indigo), var(--teal));
}

.modal-left h3 {
  font-size: 2rem;
  line-height: 1.05;
  margin: 8px 0 10px;
  letter-spacing: -0.03em;
}

.modal-left .caps {
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .75rem;
  font-weight: 800;
}

.modal-right {
  padding: 26px 24px 24px;
}

.modal-right h3 {
  margin: 6px 0 16px;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.modal-close {
  border: 0;
  background: none;
  font-size: 1.5rem;
  float: right;
  color: #64748b;
  cursor: pointer;
}

.modal-form {
  display: grid;
  gap: 10px;
}

.modal-form label {
  display: block;
  margin-bottom: 0;
  font-size: .84rem;
  font-weight: 700;
  color: #334155;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  padding: 10px;
}

.glass-form {
  background: linear-gradient(140deg, rgba(255, 255, 255, .94), rgba(248, 250, 252, .86));
  border: 1px solid rgba(203, 213, 225, .65);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75), 0 22px 36px rgba(15, 23, 42, .12);
  padding: 14px;
}

.field {
  position: relative;
  display: block;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #d4dbe6;
  border-radius: 14px;
  padding: 17px 14px 11px;
  font: inherit;
  background: rgba(255, 255, 255, .98);
  margin-top: 0;
}

.field span {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: .86rem;
  transition: .2s ease;
  pointer-events: none;
  background: #fff;
  padding: 0 4px;
}

.field textarea+span {
  top: 18px;
  transform: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, .12);
}

.field input:focus+span,
.field input:not(:placeholder-shown)+span,
.field textarea:focus+span,
.field textarea:not(:placeholder-shown)+span,
.field select:focus+span,
.field select:valid+span {
  top: -8px;
  transform: none;
  font-size: .75rem;
  color: #3730a3;
}

.contact-form {
  padding: 24px;
}

.glow-btn {
  box-shadow: 0 14px 28px rgba(79, 70, 229, .28);
}

.row-between-wrap {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.row-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.row-center-wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.input-compact {
  width: 100%;
  max-width: 280px;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-copy {
  max-width: 760px;
}

.max-w-copy-sm {
  max-width: 720px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-18 {
  margin-top: 18px;
}

.mt-20 {
  margin-top: 20px;
}

.w-full-btn {
  width: 100%;
}

.hero-subtle {
  color: #e2e8f0;
}

.sticky-panel {
  position: sticky;
  top: 94px;
  height: fit-content;
}

.hero-cover {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.image-404 {
  width: 100%;
  max-width: 560px;
  border-radius: 14px;
  margin: 0 auto;
}

.m-0 {
  margin: 0;
}

.consent {
  display: flex !important;
  gap: 8px;
  align-items: flex-start;
  font-weight: 500 !important;
}

.consent input {
  width: auto !important;
  margin-top: 2px !important;
}

.modal-form .consent {
  margin-top: 2px;
  font-size: .92rem;
  color: #475569;
}

.modal-form .btn {
  margin-top: 2px;
  min-height: 44px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: .5s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes glowShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes logoLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .grid-3,
  .grid-4,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .grid-sidebar {
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  }

  .stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .nav-shell .btn {
    display: none;
  }

  .nav-shell {
    grid-template-columns: auto 1fr;
  }

  .modal-shell {
    grid-template-columns: 1fr;
  }

  .hero-feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding: 14px;
  }

  .hero-image {
    min-height: 360px;
    max-height: 420px;
  }

  .float-stat {
    position: static;
    margin-top: 10px;
    width: 100%;
    animation: none;
    transform: none !important;
  }

  .sidebar-card {
    position: static;
    top: auto;
  }
}

@media (max-width: 760px) {

  .footer-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    padding: 22px 18px;
  }

  .footer-bottom {
    padding-top: 2px;
  }

  .section {
    padding: 42px 0;
  }

  .section-tight {
    padding: 24px 0;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    text-align: center;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-image {
    min-height: 300px;
    max-height: 340px;
  }

  .testimonial-slide {
    padding: 16px;
  }

  .testimonial-head {
    align-items: flex-start;
  }

  .story-media img {
    min-height: 260px;
  }

  .timeline {
    margin-left: 0;
    padding-left: 14px;
  }

  .blog-card img {
    height: 180px;
  }
}

 / *   P a g i n a t i o n   * /   . p a g i n a t i o n - w r a p p e r    {
     d i s p l a y :    f l e x ;
     j u s t i f y - c o n t e n t :    c e n t e r ;
     m a r g i n - t o p :    4 0 p x ;
     
}

   . p a g i n a t i o n    {
     d i s p l a y :    f l e x ;
     g a p :    8 p x ;
     l i s t - s t y l e :    n o n e ;
     p a d d i n g :    0 ;
     
}

   . p a g i n a t i o n   l i   a ,
   . p a g i n a t i o n   l i   s p a n    {
     d i s p l a y :    i n l i n e - b l o c k ;
     p a d d i n g :    1 0 p x   1 8 p x ;
     b o r d e r - r a d i u s :    8 p x ;
     b a c k g r o u n d :    # f 1 f 5 f 9 ;
     c o l o r :    # 0 f 1 7 2 a ;
     t e x t - d e c o r a t i o n :    n o n e ;
     f o n t - w e i g h t :    6 0 0 ;
     t r a n s i t i o n :    a l l   0 . 2 s   e a s e ;
     
}

   . p a g i n a t i o n   l i . a c t i v e   s p a n    {
     b a c k g r o u n d :    # 0 0 4 a 7 e ;
     c o l o r :    # f f f ;
     
}

   . p a g i n a t i o n   l i   a : h o v e r    {
     b a c k g r o u n d :    # f f 7 8 2 9 ;
     c o l o r :    # f f f ;
     
}

   . p a g i n a t i o n   l i . d i s a b l e d   s p a n    {
     o p a c i t y :    0 . 5 ;
     c u r s o r :    n o t - a l l o w e d ;
     
}

       / *   P r o f e s s i o n a l   P a g i n a t i o n   S t y l i n g   * /   . p a g i n a t i o n - w r a p p e r    {
     d i s p l a y :    f l e x ;
     j u s t i f y - c o n t e n t :    c e n t e r ;
     m a r g i n - t o p :    5 0 p x ;
     p a d d i n g :    2 0 p x   0 ;
     
}

   . p a g i n a t i o n    {
     d i s p l a y :    f l e x ;
     l i s t - s t y l e :    n o n e ;
     p a d d i n g :    0 ;
     m a r g i n :    0 ;
     g a p :    8 p x ;
     a l i g n - i t e m s :    c e n t e r ;
     
}

  transform: translateY(-2px);
}

.faq details {
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  color: var(--muted);
  line-height: 1.7;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  background: linear-gradient(120deg, var(--indigo), var(--teal));
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(2, 6, 23, .65);
  backdrop-filter: blur(5px);
  padding: 14px;
  align-items: center;
  justify-content: center;
}

.modal-overlay.show {
  display: flex;
  animation: fadeIn .25s ease;
}

.modal-shell {
  width: min(900px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 56px rgba(2, 6, 23, .36);
}

.modal-left {
  padding: 28px;
  color: #fff;
  background: linear-gradient(140deg, var(--royal), var(--indigo), var(--teal));
}

.modal-left h3 {
  font-size: 2rem;
  line-height: 1.05;
  margin: 8px 0 10px;
  letter-spacing: -0.03em;
}

.modal-left .caps {
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .75rem;
  font-weight: 800;
}

.modal-right {
  padding: 26px 24px 24px;
}

.modal-right h3 {
  margin: 6px 0 16px;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.modal-close {
  border: 0;
  background: none;
  font-size: 1.5rem;
  float: right;
  color: #64748b;
  cursor: pointer;
}

.modal-form {
  display: grid;
  gap: 10px;
}

.modal-form label {
  display: block;
  margin-bottom: 0;
  font-size: .84rem;
  font-weight: 700;
  color: #334155;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  padding: 10px;
}

.glass-form {
  background: linear-gradient(140deg, rgba(255, 255, 255, .94), rgba(248, 250, 252, .86));
  border: 1px solid rgba(203, 213, 225, .65);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75), 0 22px 36px rgba(15, 23, 42, .12);
  padding: 14px;
}

.field {
  position: relative;
  display: block;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #d4dbe6;
  border-radius: 14px;
  padding: 17px 14px 11px;
  font: inherit;
  background: rgba(255, 255, 255, .98);
  margin-top: 0;
}

.field span {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: .86rem;
  transition: .2s ease;
  pointer-events: none;
  background: #fff;
  padding: 0 4px;
}

.field textarea+span {
  top: 18px;
  transform: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, .12);
}

.field input:focus+span,
.field input:not(:placeholder-shown)+span,
.field textarea:focus+span,
.field textarea:not(:placeholder-shown)+span,
.field select:focus+span,
.field select:valid+span {
  top: -8px;
  transform: none;
  font-size: .75rem;
  color: #3730a3;
}

.contact-form {
  padding: 24px;
}

.glow-btn {
  box-shadow: 0 14px 28px rgba(79, 70, 229, .28);
}

.row-between-wrap {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.row-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.row-center-wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.input-compact {
  width: 100%;
  max-width: 280px;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-copy {
  max-width: 760px;
}

.max-w-copy-sm {
  max-width: 720px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-18 {
  margin-top: 18px;
}

.mt-20 {
  margin-top: 20px;
}

.w-full-btn {
  width: 100%;
}

.hero-subtle {
  color: #e2e8f0;
}

.sticky-panel {
  position: sticky;
  top: 94px;
  height: fit-content;
}

.hero-cover {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.image-404 {
  width: 100%;
  max-width: 560px;
  border-radius: 14px;
  margin: 0 auto;
}

.m-0 {
  margin: 0;
}

.consent {
  display: flex !important;
  gap: 8px;
  align-items: flex-start;
  font-weight: 500 !important;
}

.consent input {
  width: auto !important;
  margin-top: 2px !important;
}

.modal-form .consent {
  margin-top: 2px;
  font-size: .92rem;
  color: #475569;
}

.modal-form .btn {
  margin-top: 2px;
  min-height: 44px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: .5s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes glowShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes logoLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .grid-3,
  .grid-4,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .grid-sidebar {
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  }

  .stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.d-desktop {
  display: inline-flex;
}

.d-mobile-only {
  display: none;
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
    padding: 0 1rem;
    min-height: 64px;
    gap: 10px;
  }

  .brand-logo {
    height: 32px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transform: translateY(-100%);
    z-index: 1000;
    display: flex;
    transition: .5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.5rem;
    padding: 12px 24px;
    border-radius: 16px;
    color: #1e293b;
    font-weight: 800;
    text-align: center;
    width: auto;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: #f1f5f9;
    color: var(--royal);
  }

  .mobile-toggle {
    display: block;
    z-index: 1001;
    background: transparent;
  }

  .nav-open .mobile-toggle {
    position: fixed;
    top: 12px;
    right: 16px;
  }

  .d-desktop {
    display: none !important;
  }

  .d-mobile-only {
    display: block !important;
  }

  .modal-shell {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding: 14px;
    margin-top: 20px;
  }

  .hero-image {
    min-height: 280px;
    max-height: 320px;
  }

  .float-stat {
    position: static;
    margin-top: 10px;
    width: 100%;
    animation: none;
    transform: none !important;
  }

  .sidebar-card {
    position: static;
    top: auto;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 40px 0;
  }

  .section-tight {
    padding: 20px 0;
  }

  .footer-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    padding: 22px 18px;
  }

  .footer-bottom {
    padding-top: 2px;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
    border-radius: 14px;
    padding: 14px;
    font-weight: 800;
  }

  .hero h1 {
    max-width: none;
    font-size: 2.2rem;
  }

  .hero-image {
    min-height: 260px;
    max-height: 320px;
  }

  .testimonial-slide {
    padding: 16px;
  }

  .testimonial-head {
    align-items: flex-start;
  }

  .story-media img {
    min-height: 260px;
  }
}

.timeline {
  margin-left: 0;
  padding-left: 14px;
}

.blog-card img {
  height: 180px;
}
}

/* Pagination */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.pagination li a,
.pagination li span {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.pagination li.active span {
  background: #004a7e;
  color: #fff;
}

.pagination li a:hover {
  background: #ff7829;
  color: #fff;
}

.pagination li.disabled span {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Professional Pagination Styling */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  padding: 20px 0;
}

.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
  align-items: center;
}

.pagination li.page-item {
  display: inline-block;
}

.pagination li.page-item .page-link {
  display: inline-block;
  padding: 12px 20px;
  min-width: 45px;
  text-align: center;
  border-radius: 12px;
  background: #fff;
  color: #004a7e;
  border: 1px solid #e2e8f0;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.pagination li.page-item.active .page-link {
  background: #004a7e;
  color: #fff;
  border-color: #004a7e;
  box-shadow: 0 10px 15px -3px rgba(0, 74, 126, 0.3);
}

.pagination li.page-item .page-link:hover:not(.active) {
  background: #ff7829;
  color: #fff;
  border-color: #ff7829;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(255, 120, 41, 0.3);
}

.pagination li.disabled .page-link {
  opacity: 0.5;
  background: #f8fafc;
  color: #94a3b8;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none;
}

.pagination svg {
  width: 20px;
  height: 20px;
}

.pagination .hidden {
  display: none !important;
}

/* Professional Course Card Refinements */
.course-card {
  display: flex;
  flex-direction: column;
  height: 100%;

  /* Professional Grid & Layout Re-alignment */
  .grid-sidebar {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 30px;
  }

  .sidebar-card {
    position: sticky;
    top: 100px;
    padding: 25px !important;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03);
  }

  /* High-Fidelity Course Card Redesign */
  .course-card {
    background: #fff;
    border: 1px solid rgba(0, 74, 126, 0.08);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    height: 100%;
  }

  .course-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(0, 74, 126, 0.15);
    border-color: rgba(0, 74, 126, 0.2);
  }

  .course-card .img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f8fafc;
  }

  .course-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
  }

  .course-card:hover img {
    transform: scale(1.1);
  }

  .course-card .badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #004a7e;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    z-index: 10;
  }

  .course-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .course-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    height: 3.6em;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .course-description {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  .course-card .course-meta {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .course-card .course-price {
    font-size: 1.3rem;
    font-weight: 900;
    color: #ff7829;
    letter-spacing: -0.02em;
  }

  /* ULTRA STYLED PAGINATION */
  .pagination-wrapper {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin: 60px 0 !important;
  }

  .pagination {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
  }

  .pagination li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
  }

  .pagination .page-link {
    display: inline-block !important;
    padding: 12px 22px !important;
    background: #fff !important;
    color: #004a7e !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
    cursor: pointer !important;
  }

  .pagination .active .page-link {
    background: #004a7e !important;
    color: #fff !important;
    border-color: #004a7e !important;
    box-shadow: 0 10px 15px -3px rgba(0, 74, 126, 0.3) !important;
  }

  .pagination .page-link:hover:not(.active) {
    background: #ff7829 !important;
    color: #fff !important;
    border-color: #ff7829 !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 20px -5px rgba(255, 120, 41, 0.4) !important;
  }

  .pagination .disabled .page-link {
    opacity: 0.4 !important;
    background: #f1f5f9 !important;
    color: #64748b !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
  }

  /* Rich Text Formatting Overrides */
  .rich-content {
    line-height: 1.8;
    color: #475569;
  }

  .rich-content h1,
  .rich-content h2,
  .rich-content h3 {
    color: #004a7e;
    margin: 24px 0 16px;
  }

  .rich-content p {
    margin-bottom: 16px;
  }

  .rich-content ul,
  .rich-content ol {
    margin: 16px 0;
    padding-left: 24px;
  }

  .rich-content li {
    margin-bottom: 8px;
  }

  .rich-content strong {
    color: #0f172a;
    font-weight: 700;
  }