@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&family=Manrope:wght@500;600;700;800&family=Outfit:wght@400;500;600;700&display=swap");

:root {
  --navy-950: #031027;
  --navy-900: #061733;
  --navy-800: #0a2450;
  --blue: #1769e0;
  --cyan: #33d6e8;
  --violet: #7467ff;
  --white: #ffffff;
  --surface: #f4f8fc;
  --surface-strong: #eaf3fb;
  --muted: #64748b;
  --text: #102033;
  --border: #d8e5f0;
  --shadow-sm: 0 16px 42px rgba(6, 23, 51, 0.08);
  --shadow-lg: 0 28px 90px rgba(6, 23, 51, 0.18);
  --container: 1180px;
  --section: clamp(72px, 8vw, 124px);
  --radius-card: 24px;
  --radius-button: 14px;
  --duration: 220ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--white);
  font-family: "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--navy-950);
  background: var(--cyan);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  border: 0;
  font: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(51, 214, 232, 0.9);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: var(--section) 0;
}

.coming-soon-page-main {
  min-height: calc(100vh - 160px);
  padding: 148px 20px 80px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(51, 214, 232, 0.12), transparent 34%),
    var(--white);
}

.coming-soon-panel {
  width: min(100%, 720px);
  text-align: center;
}

.coming-soon-panel h1 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 2000;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--navy-950);
  background: var(--cyan);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 88px;
  padding-top: 12px;
  color: var(--navy-950);
  background: transparent;
  pointer-events: none;
  transition: padding var(--duration) ease;
}

.site-header.scrolled {
  padding-top: 8px;
}

.nav-shell {
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 8px 16px 8px 18px;
  border: 1px solid rgba(10, 36, 80, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(10, 36, 80, 0.12);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 222px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: var(--white);
  box-shadow: none;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-copy span {
  color: rgba(3, 16, 39, 0.64);
  font-size: 12px;
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 38px);
  flex: 1 1 auto;
  min-width: 0;
}

.desktop-nav .nav-link {
  position: relative;
  display: inline-grid;
  justify-items: center;
  align-content: center;
  gap: 3px;
  min-width: 76px;
  min-height: 46px;
  padding: 4px 6px 5px;
  border-radius: 12px;
  color: rgba(3, 16, 39, 0.76);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  transition: color var(--duration) ease, background var(--duration) ease, transform var(--duration) ease;
}

.desktop-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 16px;
  height: 3px;
  border-radius: 999px;
  background: var(--cyan);
  opacity: 0;
  transform: translateX(-50%) scaleX(0.5);
  transition: opacity var(--duration) ease, transform var(--duration) ease;
}

.nav-item-icon {
  display: grid;
  place-items: center;
  color: currentColor;
}

.desktop-nav .nav-link:hover {
  color: var(--navy-950);
  background: rgba(51, 214, 232, 0.1);
  transform: translateY(-1px);
}

.desktop-nav .nav-link:hover::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10, 36, 80, 0.12);
  border-radius: 13px;
  color: var(--navy-950);
  background: rgba(246, 249, 252, 0.96);
  cursor: pointer;
  transition: color var(--duration) ease, background var(--duration) ease, border-color var(--duration) ease;
}

.mobile-menu-button:hover {
  border-color: rgba(51, 214, 232, 0.54);
  background: rgba(51, 214, 232, 0.12);
}

.mobile-menu {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--duration) ease, box-shadow var(--duration) ease, border-color var(--duration) ease, background var(--duration) ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.99);
}

.button-primary,
.button-nav {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--cyan), #77f0fb);
  box-shadow: 0 14px 34px rgba(51, 214, 232, 0.26);
}

.button-primary:hover,
.button-nav:hover {
  box-shadow: 0 18px 42px rgba(51, 214, 232, 0.34);
}

.button-secondary {
  color: var(--navy-950);
  background: var(--white);
  border-color: rgba(10, 36, 80, 0.16);
}

.button-secondary:hover {
  border-color: rgba(23, 105, 224, 0.38);
  box-shadow: var(--shadow-sm);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.button-nav {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 13px;
  white-space: nowrap;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button-row.center {
  justify-content: center;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 118px 0 26px;
  color: var(--navy-950);
  background:
    radial-gradient(circle at 76% 24%, rgba(51, 214, 232, 0.15), transparent 27%),
    radial-gradient(circle at 72% 55%, rgba(23, 105, 224, 0.11), transparent 31%),
    radial-gradient(circle at 18% 18%, rgba(23, 105, 224, 0.055), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.hero::before,
.course-hero::before,
.faith-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, black, transparent 78%);
  pointer-events: none;
}

.hero::before {
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(23, 105, 224, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 105, 224, 0.06) 1px, transparent 1px);
  mask-image: linear-gradient(to right, transparent, black 18%, transparent 92%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(28px, 4.4vw, 64px);
  align-items: end;
}

.hero .container {
  width: min(calc(100% - 80px), 1360px);
}

.hero-copy {
  position: relative;
  z-index: 8;
}

.hero-back-link {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: rgba(3, 16, 39, 0.66);
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease;
}

.hero-back-link svg {
  transform: rotate(180deg);
}

.hero-back-link:hover {
  color: var(--blue);
  transform: translateX(-2px);
}

.hero-back-link:focus-visible {
  outline: 3px solid rgba(27, 119, 255, 0.3);
  outline-offset: 5px;
  border-radius: 6px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.course-hero .eyebrow,
.faith-main .eyebrow,
.final-card .eyebrow {
  color: var(--cyan);
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--navy-800);
  font-family: "Manrope", sans-serif;
  font-size: clamp(17px, 1.3vw, 23px);
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.06;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 800;
}

.hero-title {
  display: grid;
  gap: clamp(0px, 0.25vw, 5px);
  max-width: 690px;
  color: var(--navy-950);
  letter-spacing: 0;
  line-height: 0.94;
}

.hero-title-line {
  display: flex;
  align-items: baseline;
  gap: clamp(12px, 1.55vw, 20px);
  min-width: 0;
  white-space: nowrap;
}

.hero-title-main {
  color: var(--navy-950);
  font-family: "Manrope", sans-serif;
  font-size: clamp(56px, 5.25vw, 86px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hero-title-blue {
  color: var(--blue);
}

.hero-title-script {
  display: inline-block;
  flex: 0 1 auto;
  font-family: "Dancing Script", "Brush Script MT", cursive;
  font-size: clamp(30px, 2.85vw, 49px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.82;
  transform: translateY(-0.02em) rotate(-2deg);
  text-wrap: nowrap;
}

.script-cyan {
  color: var(--cyan);
}

.script-blue {
  color: #1f74ff;
  transform: translateY(-0.03em) rotate(-3deg);
}

.script-soft-blue {
  color: #209ce6;
  font-size: clamp(28px, 2.55vw, 43px);
  transform: translateY(-0.04em) rotate(-2deg);
}

h2 {
  color: var(--navy-950);
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 800;
}

h3 {
  color: var(--navy-950);
  font-size: 23px;
}

.hero-copy > p,
.course-hero p {
  max-width: 650px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 19px;
  line-height: 1.72;
}

.hero-copy > p {
  max-width: 650px;
  margin: 24px 0 26px;
  color: #273a55;
  font-size: clamp(19px, 1.28vw, 22px);
  line-height: 1.5;
}

.hero .button {
  min-height: 56px;
  padding-inline: 24px;
  font-size: 16px;
  gap: 11px;
}

.hero .button svg {
  width: 20px;
  height: 20px;
}

.hero .button-secondary {
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(10, 36, 80, 0.18);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 700;
}

.trust-row svg {
  color: var(--cyan);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  align-self: end;
}

.hero-visual img {
  position: absolute;
  z-index: 4;
  right: -9%;
  bottom: -10px;
  width: min(820px, 116%);
  max-width: none;
  filter: drop-shadow(0 34px 44px rgba(6, 23, 51, 0.16));
}

.tech-orbit {
  position: absolute;
  right: -7%;
  top: -2%;
  z-index: 1;
  width: min(690px, 108%);
  aspect-ratio: 1;
  border: 1px solid rgba(23, 105, 224, 0.11);
  border-radius: 50%;
  background:
    radial-gradient(circle at 54% 46%, rgba(51, 214, 232, 0.15), transparent 42%),
    radial-gradient(circle at 50% 52%, rgba(23, 105, 224, 0.09), transparent 60%);
  box-shadow:
    0 0 0 70px rgba(23, 105, 224, 0.052),
    0 0 0 145px rgba(51, 214, 232, 0.033),
    inset 0 0 70px rgba(51, 214, 232, 0.08);
}

.tech-orbit::before,
.tech-orbit::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(23, 105, 224, 0.1);
  border-radius: inherit;
}

.tech-orbit::after {
  inset: 29%;
  border-color: rgba(51, 214, 232, 0.13);
}

.hero-topic {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-950);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.16;
}

.hero-topic svg {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  padding: 15px;
  border-radius: 18px;
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 46px rgba(10, 36, 80, 0.11);
}

.hero-topic-faith {
  top: 15%;
  left: 15%;
  flex-direction: column;
}

.hero-topic-ai {
  top: 20%;
  right: 4%;
}

.hero-topic-online {
  right: 6%;
  top: 46%;
}

.hero-topic-ai svg {
  color: var(--blue);
  box-shadow: 0 20px 46px rgba(23, 105, 224, 0.16), inset 0 -2px 0 rgba(23, 105, 224, 0.65);
}

.hero-topic-online svg {
  color: var(--violet);
}

.hero-value-shell {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 12px;
  padding: 20px 30px;
  border: 1px solid rgba(216, 229, 240, 0.62);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 52px rgba(6, 23, 51, 0.095);
  backdrop-filter: blur(18px);
}

.hero-value {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-width: 0;
  padding: 0 24px;
  border-left: 1px solid rgba(10, 36, 80, 0.1);
}

.hero-value:first-child {
  border-left: 0;
  padding-left: 0;
}

.hero-value strong {
  display: block;
  color: var(--navy-950);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.hero-value p {
  margin: 5px 0 0;
  color: #41516a;
  font-size: 15px;
  line-height: 1.36;
}

.hero-play,
.hero-value-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--cyan);
  box-shadow: 0 14px 30px rgba(51, 214, 232, 0.26);
}

.hero-value-icon svg {
  width: 28px;
  height: 28px;
}

.hero-value-blue {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(23, 105, 224, 0.25);
}

.hero-value-cyan {
  background: var(--cyan);
}

.hero-value-violet {
  color: var(--white);
  background: var(--violet);
  box-shadow: 0 14px 30px rgba(116, 103, 255, 0.22);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  margin-inline: auto;
}

.section-heading p {
  max-width: 670px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading.center p {
  margin-inline: auto;
}

.course-feature,
.parent-trust,
.course-includes,
.project-cert {
  background: var(--surface);
}

.course-feature .section-heading {
  margin-bottom: 34px;
}

.featured-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
  align-items: stretch;
  gap: clamp(22px, 3.2vw, 44px);
  overflow: hidden;
  min-height: 0;
  padding: clamp(28px, 3.7vw, 50px);
  border: 1px solid rgba(10, 36, 80, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 24% 16%, rgba(51, 214, 232, 0.12), transparent 25%),
    var(--white);
  box-shadow: 0 28px 90px rgba(6, 23, 51, 0.12);
  transition: box-shadow var(--duration) ease, transform var(--duration) ease;
}

.featured-card:hover {
  box-shadow: 0 34px 110px rgba(6, 23, 51, 0.16);
}

.featured-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 720px;
}

.featured-main h3 {
  max-width: 620px;
  margin: 20px 0 14px;
  color: var(--navy-950);
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 1.02;
}

.featured-main p {
  max-width: 580px;
  color: var(--navy-900);
  font-size: 21px;
  line-height: 1.48;
}

.featured-main .course-subtitle {
  margin: 0 0 12px;
  color: var(--navy-950);
  font-size: 19px;
}

.course-subtitle,
.course-meta,
.teacher-role {
  color: var(--cyan);
  font-weight: 800;
}

.status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-open {
  color: var(--navy-950);
  background: var(--cyan);
}

.status-soon {
  color: var(--blue);
  background: rgba(23, 105, 224, 0.1);
}

.course-stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 620px;
  margin: 22px 0 24px;
}

.course-stat {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 72px;
  padding: 12px 16px;
  border: 1px solid rgba(10, 36, 80, 0.1);
  border-radius: 16px;
  background: rgba(246, 249, 252, 0.78);
}

.course-stat:not(:last-child)::after {
  display: none;
}

.course-stat-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--blue);
}

.course-stat-copy {
  display: grid;
  min-width: 0;
  line-height: 1.12;
}

.course-stat-copy strong {
  color: var(--navy-950);
  font-family: "Manrope", sans-serif;
  font-size: clamp(20px, 1.45vw, 26px);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.course-stat-copy small {
  margin-top: 4px;
  color: var(--navy-900);
  font-size: 15px;
  line-height: 1.25;
}

.featured-actions {
  display: grid;
  grid-template-columns: minmax(280px, 360px);
  gap: 12px;
  align-items: center;
  margin-top: auto;
}

.featured-actions .button {
  width: 100%;
  min-height: 56px;
  white-space: nowrap;
}

.button-dark {
  color: var(--white);
  background: var(--navy-950);
  box-shadow: 0 16px 36px rgba(3, 16, 39, 0.18);
}

.button-dark:hover {
  background: var(--navy-800);
  box-shadow: 0 20px 44px rgba(3, 16, 39, 0.24);
}

.featured-visual {
  position: relative;
  align-self: stretch;
  aspect-ratio: 4 / 5;
  min-height: 0;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 48% 42%, rgba(51, 214, 232, 0.28), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(23, 105, 224, 0.24), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.featured-visual::before {
  display: none;
}

.featured-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(51, 214, 232, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 214, 232, 0.16) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 60% 46%, black, transparent 72%);
  pointer-events: none;
}

.featured-visual img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
}

.upcoming-grid,
.team-grid,
.steps-grid,
.includes-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.upcoming-card,
.teacher-card,
.steps-grid article,
.includes-grid article,
.trust-card,
.project-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(6, 23, 51, 0.05);
}

.upcoming-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 28px;
}

.upcoming-card h3 {
  margin-top: 24px;
}

.upcoming-card p {
  color: var(--muted);
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
}

.learning-path {
  background: linear-gradient(180deg, var(--white), var(--surface));
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.path-step {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--border);
}

.path-step:last-child {
  border-right: 0;
}

.path-step::after {
  content: "";
  position: absolute;
  right: -10px;
  top: calc(50% - 10px);
  z-index: 2;
  width: 20px;
  height: 20px;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: var(--white);
  transform: rotate(45deg);
}

.path-step:last-child::after {
  display: none;
}

.path-step.available {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-900), var(--blue));
}

.path-step.available h3,
.path-step.available p,
.path-step.available strong {
  color: var(--white);
}

.path-index {
  color: var(--cyan);
  font-weight: 900;
}

.path-step strong {
  display: block;
  margin-top: 30px;
  color: var(--navy-950);
  font-family: "Manrope", sans-serif;
  font-size: 29px;
  letter-spacing: -0.04em;
}

.path-step small {
  color: var(--muted);
  font-weight: 800;
}

.path-step.available small {
  color: rgba(255, 255, 255, 0.68);
}

.path-step p {
  margin: 18px 0 22px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.4;
}

.path-step em {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 8px;
  color: var(--blue);
  background: rgba(23, 105, 224, 0.1);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.path-step.available em {
  color: var(--navy-950);
  background: var(--cyan);
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 104px;
}

.sticky-copy p,
.rich-copy p,
.final-card p {
  color: var(--muted);
  font-size: 18px;
}

.trust-cards {
  display: grid;
  gap: 14px;
}

.trust-card {
  padding: 26px;
}

.trust-card span {
  color: var(--blue);
  font-weight: 900;
}

.trust-card h3 {
  margin: 16px 0 8px;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
}

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

.teacher-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px;
}

.teacher-card img,
.teacher-placeholder {
  width: 160px;
  height: 190px;
  border-radius: 18px;
}

.teacher-card img {
  object-fit: cover;
  object-position: 50% 76%;
}

.teacher-placeholder {
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 30% 20%, rgba(51, 214, 232, 0.32), transparent 34%),
    linear-gradient(145deg, var(--navy-900), var(--blue));
  font-family: "Manrope", sans-serif;
  font-size: 38px;
  font-weight: 800;
}

.teacher-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.faith-section {
  position: relative;
  overflow: hidden;
  padding-block: 0;
  color: var(--white);
  background: var(--white);
}

.faith-section .container {
  width: 100%;
  max-width: none;
}

.faith-banner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(200px, 0.7fr) minmax(330px, 1.16fr) minmax(260px, 0.9fr) minmax(250px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 3.2vw, 54px);
  min-height: 428px;
  overflow: hidden;
  padding: clamp(48px, 5vw, 78px) clamp(36px, 5vw, 80px);
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 14% 50%, rgba(51, 214, 232, 0.2), transparent 20%),
    radial-gradient(circle at 78% 12%, rgba(51, 214, 232, 0.13), transparent 30%),
    linear-gradient(135deg, #031027 0%, #061733 50%, #092550 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -1px 0 rgba(3, 16, 39, 0.18);
}

.faith-banner::before {
  content: "";
  position: absolute;
  inset: 1px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 28%, rgba(51, 214, 232, 0.045) 68%, transparent),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 100% 58px;
  pointer-events: none;
}

.faith-visual,
.faith-main,
.faith-copy,
.faith-cta {
  position: relative;
  z-index: 1;
}

.faith-visual {
  display: grid;
  place-items: center;
  align-self: stretch;
  min-height: 300px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 50% 24%, rgba(197, 247, 255, 0.28), transparent 24%),
    radial-gradient(ellipse at 50% 82%, rgba(51, 214, 232, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(9, 37, 80, 0.34), rgba(3, 16, 39, 0.2)),
    linear-gradient(135deg, rgba(3, 16, 39, 0.76), rgba(6, 23, 51, 0.18));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 -36px 70px rgba(3, 16, 39, 0.28);
}

.faith-visual::before {
  content: "";
  position: absolute;
  inset: 16% 9% 10%;
  border-radius: 16px;
  background:
    linear-gradient(90deg, transparent 49.6%, rgba(51, 214, 232, 0.2) 50%, transparent 50.4%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, auto, 100% 44px;
  opacity: 0.7;
}

.faith-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14%;
  width: 112%;
  height: 54%;
  background: radial-gradient(ellipse at 50% 0%, rgba(181, 244, 255, 0.34), rgba(51, 214, 232, 0.12) 32%, transparent 68%);
  transform: translateX(-50%);
  filter: blur(2px);
  opacity: 0.86;
}

.faith-portal {
  position: relative;
  display: grid;
  place-items: center;
  width: min(72%, 250px);
  height: min(86%, 280px);
}

.faith-doorway {
  position: relative;
  z-index: 3;
  width: min(46%, 104px);
  height: min(76%, 210px);
  border: 1px solid rgba(190, 249, 255, 0.42);
  border-bottom: 0;
  border-radius: 999px 999px 5px 5px;
  background:
    radial-gradient(ellipse at 55% 38%, rgba(255, 255, 255, 1) 0 18%, rgba(213, 250, 255, 0.88) 31%, rgba(51, 214, 232, 0.18) 55%, rgba(3, 16, 39, 0) 72%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.2));
  box-shadow:
    0 0 34px rgba(193, 247, 255, 0.44),
    0 0 86px rgba(51, 214, 232, 0.28),
    inset 0 0 18px rgba(255, 255, 255, 0.22);
}

.faith-doorway::before {
  content: "";
  position: absolute;
  inset: -12px -16px -2px;
  z-index: -1;
  border: 1px solid rgba(51, 214, 232, 0.12);
  border-bottom: 0;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.035), rgba(3, 16, 39, 0.2));
  box-shadow: inset 0 0 28px rgba(3, 16, 39, 0.34);
}

.faith-doorway::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -70px;
  width: 360%;
  height: 96px;
  background: linear-gradient(180deg, rgba(218, 251, 255, 0.48), rgba(51, 214, 232, 0.05) 62%, transparent);
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  transform: translateX(-50%);
  filter: blur(0.6px);
}

.faith-steps {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 20px;
  width: 74%;
  height: 58px;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, transparent 0 20%, rgba(191, 246, 255, 0.28) 21% 23%, transparent 24% 42%, rgba(191, 246, 255, 0.2) 43% 45%, transparent 46% 64%, rgba(191, 246, 255, 0.14) 65% 67%, transparent 68%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  clip-path: polygon(35% 0, 65% 0, 100% 100%, 0 100%);
  opacity: 0.78;
}

.faith-main {
  padding-right: clamp(26px, 2.8vw, 44px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.faith-main .eyebrow {
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.faith-main h2,
.final-card h2 {
  color: var(--white);
}

.faith-main h2 {
  max-width: 620px;
  font-size: clamp(44px, 4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.faith-copy {
  max-width: 390px;
  margin: 0;
  padding-right: clamp(26px, 2.8vw, 44px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-size: 22px;
  line-height: 1.5;
}

.final-card p {
  color: rgba(255, 255, 255, 0.72);
}

.faith-cta {
  display: grid;
  justify-items: start;
  gap: 24px;
}

.faith-cta strong {
  display: block;
  color: var(--cyan);
  font-size: 19px;
  line-height: 1.34;
}

.faith-button {
  min-height: 64px;
  padding-inline: 30px;
  border-radius: 15px;
  color: var(--navy-950);
  background: linear-gradient(135deg, #4cddea, #8bf5ff);
  box-shadow: 0 16px 36px rgba(51, 214, 232, 0.22);
  white-space: nowrap;
}

.faith-button:hover {
  box-shadow: 0 19px 42px rgba(51, 214, 232, 0.32);
}

.steps-grid article,
.includes-grid article,
.project-card {
  padding: 28px;
}

.steps-grid article span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  border-radius: 13px;
  color: var(--navy-950);
  background: var(--cyan);
  font-weight: 900;
}

.steps-grid p,
.includes-grid p,
.project-card p {
  color: var(--muted);
}

.how {
  background:
    radial-gradient(circle at 50% 0%, rgba(51, 214, 232, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.how .container {
  width: min(calc(100% - 48px), 1320px);
}

.how-heading {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

.how-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
  color: var(--cyan);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.how-eyebrow::before,
.how-eyebrow::after {
  content: "";
  width: clamp(70px, 9vw, 112px);
  height: 2px;
  background: currentColor;
  opacity: 0.75;
}

.how-heading h2 {
  max-width: 940px;
  margin: 0 auto;
  color: var(--navy-950);
  font-size: clamp(2.65rem, 5.2vw, 4.8rem);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.how-heading p {
  max-width: 680px;
  margin: 22px auto 0;
  color: #5d6a83;
  font-size: clamp(1.05rem, 1.8vw, 1.38rem);
  line-height: 1.45;
  font-weight: 500;
  text-wrap: pretty;
}

.how .steps-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.how .steps-grid article {
  position: relative;
  min-height: 282px;
  padding: 30px 26px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border-color: #d9e8f4;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 18px rgba(6, 23, 51, 0.07);
}

.how .steps-grid article::after {
  content: "";
  width: 34px;
  height: 3px;
  margin: 16px 0 14px;
  order: 3;
  border-radius: 999px;
  background: var(--cyan);
}

.how .step-number {
  position: absolute;
  top: 26px;
  left: 26px;
  width: 46px;
  height: 46px;
  margin: 0;
  border-radius: 12px;
  color: var(--navy-950);
  background: linear-gradient(180deg, #72deea, #38c9dd);
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(51, 214, 232, 0.2);
}

.how .step-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 26px;
  display: grid;
  place-items: center;
  order: 1;
  border-radius: 999px;
  color: var(--navy-950);
  background: #f3f7fc;
  box-shadow: inset 0 0 0 1px rgba(216, 229, 240, 0.65);
}

.how .step-icon svg {
  stroke-width: 1.65;
}

.how .steps-grid h3 {
  min-height: 2.5em;
  margin: 0;
  order: 2;
  color: var(--navy-950);
  font-size: clamp(1.1rem, 1.35vw, 1.38rem);
  line-height: 1.17;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.how .steps-grid p {
  max-width: 22ch;
  margin: 0 auto;
  order: 4;
  color: #66728a;
  font-size: 1.06rem;
  line-height: 1.45;
  font-weight: 500;
}

.how-benefits {
  width: min(100%, 1100px);
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #d9e8f4;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 18px rgba(6, 23, 51, 0.04);
}

.how-benefit {
  min-height: 90px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 34px;
  color: #2f3a50;
}

.how-benefit + .how-benefit {
  border-left: 1px solid #c9d7e4;
}

.how-benefit svg {
  width: 56px;
  height: 56px;
  padding: 12px;
  border-radius: 999px;
  color: #32b7c5;
  background: #f3f7fc;
  box-shadow: inset 0 0 0 1px rgba(216, 229, 240, 0.75);
}

.how-benefit strong {
  color: #2f3a50;
  font-size: 1.08rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.faq {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 56px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  overflow: hidden;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 64px;
  padding: 18px 20px;
  color: var(--navy-950);
  background: transparent;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-plus {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  inset: 8px 1px auto;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
}

.faq-plus::after {
  transform: rotate(90deg);
  transition: transform var(--duration) ease;
}

.faq-item.open .faq-plus::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--duration) ease;
}

.faq-answer-inner {
  overflow: hidden;
  padding: 0 20px;
}

.faq-answer-inner p {
  display: grid;
  justify-items: start;
  gap: 12px;
  margin: 0;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer-inner {
  padding-bottom: 20px;
}

.faq-course-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--navy-950);
  background: rgba(51, 214, 232, 0.22);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition: background var(--duration) ease, transform var(--duration) ease;
}

.faq-course-link:hover {
  background: rgba(51, 214, 232, 0.34);
  transform: translateY(-1px);
}

.final-cta {
  background: var(--surface);
}

.final-card {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 72px);
  border-radius: 32px;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 18% 14%, rgba(51, 214, 232, 0.22), transparent 30%),
    radial-gradient(circle at 82% 85%, rgba(116, 103, 255, 0.16), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow-lg);
}

.final-card h2,
.final-card p {
  max-width: 760px;
  margin-inline: auto;
}

.final-card p {
  margin-block: 18px 28px;
}

.site-footer {
  padding: 22px 0 18px;
  color: var(--navy-950);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-top: 1px solid rgba(23, 105, 224, 0.1);
}

.footer-shell {
  display: grid;
  gap: 16px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(520px, 1.75fr) minmax(220px, auto);
  align-items: center;
  gap: clamp(22px, 4vw, 64px);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  color: var(--navy-950);
}

.footer-brand .brand-mark {
  width: 58px;
  height: 58px;
  color: var(--navy-950);
  background: transparent;
  box-shadow: none;
}

.footer-brand-copy {
  display: grid;
  gap: 4px;
}

.footer-brand-copy strong {
  color: var(--navy-950);
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.footer-brand-copy span {
  max-width: 260px;
  color: rgba(3, 16, 39, 0.66);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.28;
}

.footer-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(104px, 1fr));
  align-items: start;
  gap: clamp(16px, 2.2vw, 34px);
}

.footer-value {
  display: grid;
  justify-items: center;
  gap: 9px;
  min-width: 0;
  color: var(--navy-800);
  text-align: center;
}

.footer-value svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
  stroke-width: 1.9;
  filter: drop-shadow(0 6px 12px rgba(23, 105, 224, 0.14));
}

.footer-value span {
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.18;
  text-wrap: balance;
}

.footer-cta {
  justify-self: end;
  min-width: 220px;
  min-height: 50px;
  padding-inline: 24px;
  box-shadow: 0 10px 24px rgba(51, 214, 232, 0.2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 13px;
  border-top: 1px solid rgba(3, 16, 39, 0.08);
  color: rgba(3, 16, 39, 0.58);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.footer-bottom span:last-child {
  color: rgba(3, 16, 39, 0.66);
}

.mobile-whatsapp {
  display: none;
}

.course-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 90px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 18%, rgba(51, 214, 232, 0.2), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 68px;
  color: var(--navy-950);
  background:
    radial-gradient(circle at 76% 24%, rgba(51, 214, 232, 0.15), transparent 27%),
    radial-gradient(circle at 72% 55%, rgba(23, 105, 224, 0.11), transparent 31%),
    radial-gradient(circle at 18% 18%, rgba(23, 105, 224, 0.055), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(23, 105, 224, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 105, 224, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, transparent, black 18%, transparent 92%);
  pointer-events: none;
}

.about-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(32px, 4vw, 58px);
  align-items: center;
}

.about-hero-copy {
  max-width: 670px;
}

.about-hero-copy .back-link {
  display: flex;
  width: fit-content;
  margin-bottom: 20px;
  color: rgba(3, 16, 39, 0.62);
}

.about-hero-copy .back-link:hover {
  color: var(--blue);
}

.about-hero-copy .eyebrow {
  display: block;
  margin-bottom: 20px;
}

.about-hero h1 {
  color: var(--navy-950);
  font-size: clamp(46px, 4.35vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.about-hero p {
  max-width: 620px;
  margin: 22px 0 28px;
  color: #273a55;
  font-size: clamp(19px, 1.35vw, 23px);
  line-height: 1.55;
}

.about-portrait-composition {
  position: relative;
  min-height: 505px;
}

.about-portrait-composition::before {
  content: "";
  position: absolute;
  inset: 11% 3% 8% 15%;
  border-radius: 28px;
  background:
    radial-gradient(circle at 38% 24%, rgba(51, 214, 232, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(23, 105, 224, 0.08), rgba(51, 214, 232, 0.035));
  box-shadow: inset 0 0 0 1px rgba(23, 105, 224, 0.1);
}

.about-portrait {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(3, 16, 39, 0.32);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--white);
}

.about-portrait figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--white);
  background: rgba(3, 16, 39, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.about-portrait figcaption strong {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  line-height: 1.12;
}

.about-portrait figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.about-portrait-benjamin {
  left: 0;
  bottom: 0;
  width: 56%;
  height: 80%;
}

.about-portrait-benjamin img {
  object-position: 50% 20%;
}

.about-portrait-yanina {
  right: 0;
  top: 0;
  width: 52%;
  height: 70%;
}

.about-portrait-yanina img {
  object-position: 50% 30%;
}

.about-institution,
.about-team {
  background: var(--white);
}

.about-institution-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(38px, 5vw, 72px);
  align-items: start;
}

.about-institution h2 {
  max-width: 620px;
  color: var(--navy-950);
  text-wrap: balance;
}

.about-principles {
  background:
    radial-gradient(circle at 12% 18%, rgba(51, 214, 232, 0.1), transparent 26%),
    var(--surface);
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-principle {
  min-height: 270px;
  padding: 30px;
  border: 1px solid rgba(10, 36, 80, 0.1);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(6, 23, 51, 0.06);
}

.about-principle svg {
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  padding: 14px;
  border-radius: 16px;
  color: var(--navy-950);
  background: rgba(51, 214, 232, 0.18);
}

.about-principle p {
  color: var(--muted);
}

.about-team-grid {
  display: grid;
  gap: 22px;
}

.about-teacher-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 3.2vw, 46px);
  align-items: center;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(10, 36, 80, 0.1);
  border-radius: 26px;
  background:
    radial-gradient(circle at 80% 12%, rgba(51, 214, 232, 0.1), transparent 28%),
    var(--surface);
  box-shadow: 0 18px 48px rgba(6, 23, 51, 0.08);
}

.about-teacher-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
}

.about-teacher-card:nth-child(even) img {
  order: 2;
}

.about-teacher-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  background: var(--white);
}

.about-teacher-card:first-child img {
  object-position: 50% 18%;
}

.about-teacher-card:nth-child(2) img {
  object-position: 50% 28%;
}

.about-teacher-copy {
  padding: clamp(28px, 4vw, 54px);
}

.about-teacher-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.about-teacher-role {
  color: var(--blue);
  font-weight: 900;
}

.about-teacher-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--navy-950);
  background: rgba(51, 214, 232, 0.22);
  font-size: 14px;
  font-weight: 900;
}

.about-teacher-card h3 {
  margin: 12px 0 16px;
  color: var(--navy-950);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
}

.about-teacher-card p {
  max-width: 720px;
  color: var(--navy-900);
  font-size: 20px;
  line-height: 1.55;
}

.about-teacher-duty {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(10, 36, 80, 0.12);
  color: var(--muted) !important;
}

.course-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 54px;
  align-items: center;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.back-link svg {
  transform: rotate(180deg);
}

.course-data-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.course-data-card .trust-row {
  display: grid;
  margin-top: 0;
}

.course-data-card p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 68px;
}

.rich-copy p:first-child {
  margin-top: 0;
}

.rich-copy strong {
  color: var(--navy-950);
}

.includes-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.includes-grid svg,
.project-card svg {
  color: var(--blue);
  margin-bottom: 24px;
}

.curriculum {
  background: var(--white);
}

.curriculum-list {
  display: grid;
  gap: 18px;
}

.curriculum-download {
  display: flex;
  justify-content: center;
  margin: -20px 0 34px;
}

.curriculum-download .button {
  min-width: min(100%, 280px);
}

.week-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
}

.week-head span {
  color: var(--blue);
  font-weight: 900;
}

.week-head h3 {
  margin-top: 14px;
}

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

.week-card li {
  display: flex;
  gap: 9px;
  color: var(--muted);
}

.week-card li svg {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--blue);
}

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

.reveal {
  opacity: 1;
  transform: none;
  transition: transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .site-header {
    height: 78px;
    padding-top: 10px;
  }

  .nav-shell {
    height: 58px;
    gap: 14px;
    padding: 7px 10px 7px 12px;
    border-radius: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 56px;
    height: 36px;
    border-radius: 9px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy span {
    font-size: 11px;
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 12px;
    border: 1px solid rgba(10, 36, 80, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 56px rgba(10, 36, 80, 0.18);
    pointer-events: auto;
  }

  .mobile-menu.open {
    display: grid;
    gap: 4px;
  }

  .mobile-menu .nav-link {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 12px;
    color: rgba(3, 16, 39, 0.78);
    font-weight: 800;
    line-height: 1.15;
    transition: color var(--duration) ease, background var(--duration) ease, transform var(--duration) ease;
  }

  .mobile-menu .nav-link:hover {
    color: var(--navy-950);
    background: rgba(51, 214, 232, 0.12);
  }

  .mobile-nav-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border-radius: 10px;
    color: var(--navy-950);
    background: rgba(51, 214, 232, 0.14);
  }

  .mobile-menu .button {
    width: 100%;
    margin-top: 6px;
  }

  .course-hero-grid,
  .about-hero-grid,
  .about-institution-grid,
  .trust-layout,
  .faq-layout,
  .split {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding: 132px 0 70px;
  }

  .about-hero-copy {
    max-width: 760px;
  }

  .about-portrait-composition {
    width: min(760px, 100%);
    min-height: 520px;
    margin-inline: auto;
  }

  .about-principles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero {
    min-height: 760px;
    padding-top: 128px;
  }

  .hero .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: 22px;
  }

  .hero-title-main {
    font-size: clamp(48px, 5.2vw, 64px);
  }

  .hero-title-script {
    font-size: clamp(28px, 3vw, 40px);
  }

  .script-soft-blue {
    font-size: clamp(26px, 2.75vw, 36px);
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-visual img {
    right: -28%;
    bottom: -18px;
    width: min(710px, 136%);
  }

  .hero-topic svg {
    width: 62px;
    height: 62px;
    padding: 15px;
  }

  .hero-topic-ai {
    right: -9%;
  }

  .hero-topic-online {
    display: none;
  }

  .hero-value-shell {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 22px;
    padding: 26px 28px;
  }

  .hero-value {
    gap: 15px;
    padding-inline: 20px;
  }

  .hero-value-icon {
    width: 58px;
    height: 58px;
  }

  .hero-value-icon svg {
    width: 28px;
    height: 28px;
  }

  .hero-value strong {
    font-size: 18px;
  }

  .hero-value p {
    font-size: 15px;
  }

  .featured-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  .featured-main h3 {
    font-size: clamp(38px, 6vw, 56px);
  }

  .featured-main p {
    font-size: 18px;
  }

  .course-stat-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 30px 0 32px;
  }

  .sticky-copy {
    position: static;
  }

  .path-grid,
  .upcoming-grid,
  .includes-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .how-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-benefit + .how-benefit {
    border-left: 0;
  }

  .how-benefit:nth-child(even) {
    border-left: 1px solid #c9d7e4;
  }

  .how-benefit:nth-child(n + 3) {
    border-top: 1px solid #c9d7e4;
  }

  .path-step:nth-child(2) {
    border-right: 0;
  }

  .path-step:nth-child(2)::after {
    display: none;
  }

  .path-step:nth-child(2),
  .path-step:nth-child(4) {
    border-bottom: 1px solid var(--border);
  }

  .team-grid,
  .about-principles-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .about-principle {
    min-height: 0;
  }

  .about-teacher-card,
  .about-teacher-card:nth-child(even) {
    grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  }

  .about-teacher-card:nth-child(even) img {
    order: 0;
  }

  .faith-banner {
    grid-template-columns: minmax(210px, 0.68fr) minmax(300px, 1fr) minmax(280px, 0.85fr);
    gap: 34px;
    min-height: 410px;
    padding: 46px 48px;
  }

  .faith-cta {
    grid-column: 2 / -1;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-items: start;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .faith-main,
  .faith-copy {
    padding-right: 34px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-brand-copy span {
    max-width: 340px;
  }

  .footer-values {
    width: min(100%, 720px);
  }

  .footer-cta {
    justify-self: center;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 112px 0 34px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-copy {
    position: relative;
    z-index: 7;
    max-width: 680px;
  }

  .hero-title {
    max-width: 720px;
  }

  .hero-title-line {
    gap: clamp(12px, 3vw, 20px);
  }

  .hero-title-main {
    font-size: clamp(48px, 10.2vw, 78px);
  }

  .hero-title-script {
    font-size: clamp(30px, 6vw, 49px);
  }

  .hero-visual {
    min-height: 500px;
    margin-top: -4px;
  }

  .hero-visual img {
    right: 50%;
    bottom: -16px;
    width: min(760px, 110%);
    transform: translateX(50%);
  }

  .tech-orbit {
    right: 50%;
    top: 2%;
    width: min(650px, 104%);
    transform: translateX(50%);
  }

  .hero-topic-faith {
    left: 9%;
    top: 14%;
  }

  .hero-topic-ai {
    right: 9%;
    top: 14%;
  }

  .hero-topic span {
    display: none;
  }

  .featured-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0;
    border-radius: 26px;
  }

  .featured-main {
    padding: 28px;
  }

  .featured-main h3 {
    margin-top: 18px;
    font-size: clamp(34px, 7vw, 48px);
  }

  .featured-main p {
    font-size: 18px;
  }

  .featured-visual {
    order: -1;
    min-height: 360px;
    aspect-ratio: 4 / 3;
    border-radius: 26px 26px 0 0;
  }

  .featured-visual::before {
    display: none;
  }

  .featured-visual img {
    object-position: 50% 46%;
  }

  .course-stat-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 22px 0 24px;
  }

  .faith-banner {
    grid-template-columns: minmax(190px, 0.62fr) minmax(0, 1fr);
    min-height: 0;
    gap: 30px;
    padding: 42px 36px;
  }

  .faith-main {
    padding-right: 0;
    border-right: 0;
  }

  .faith-main h2 {
    text-wrap: balance;
  }

  .faith-copy {
    grid-column: 1 / -1;
    max-width: none;
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 0;
  }

  .faith-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    height: 70px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy span {
    font-size: 11px;
  }

  .hero,
  .course-hero {
    padding-top: 120px;
  }

  .about-hero {
    padding: 116px 0 48px;
  }

  .about-hero h1 {
    font-size: clamp(40px, 10vw, 58px);
  }

  .about-hero p {
    font-size: 18px;
  }

  .about-portrait-composition {
    min-height: 620px;
    margin-top: 10px;
  }

  .about-portrait-composition::before {
    inset: 11% 0 8%;
  }

  .about-portrait-benjamin {
    left: 0;
    bottom: 0;
    width: 62%;
    height: 67%;
  }

  .about-portrait-yanina {
    right: 0;
    top: 0;
    width: 62%;
    height: 62%;
  }

  .hero {
    padding-bottom: 28px;
  }

  h1 {
    font-size: clamp(39px, 11vw, 58px);
  }

  h2 {
    font-size: clamp(31px, 9vw, 44px);
  }

  .hero-copy > p,
  .course-hero p {
    font-size: 18px;
  }

  .hero-copy > p {
    font-size: clamp(19px, 5vw, 22px);
    line-height: 1.5;
  }

  .hero .button {
    min-height: 58px;
    font-size: 16px;
    padding-inline: 20px;
  }

  .hero-title {
    gap: 4px;
  }

  .hero-title-line {
    gap: 10px;
  }

  .hero-title-main {
    font-size: clamp(43px, 13vw, 58px);
  }

  .hero-title-script {
    font-size: clamp(28px, 8.2vw, 38px);
  }

  .script-soft-blue {
    font-size: clamp(26px, 7.5vw, 34px);
  }

  .hero-kicker {
    font-size: 15px;
    letter-spacing: 0.2em;
  }

  .button,
  .button-row .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .trust-row span {
    border-radius: 14px;
  }

  .hero-visual {
    min-height: 405px;
    margin-top: 8px;
  }

  .hero-visual img {
    bottom: -8px;
    width: min(550px, 116%);
  }

  .tech-orbit {
    top: 4%;
    width: min(470px, 106%);
    box-shadow:
      0 0 0 42px rgba(23, 105, 224, 0.045),
      0 0 0 86px rgba(51, 214, 232, 0.03),
      inset 0 0 46px rgba(51, 214, 232, 0.08);
  }

  .hero-topic svg {
    width: 52px;
    height: 52px;
    padding: 13px;
    border-radius: 16px;
  }

  .hero-value-shell {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 16px;
    padding: 10px 20px;
    border-radius: 20px;
  }

  .hero-value,
  .hero-value:nth-child(3) {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 15px;
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid rgba(10, 36, 80, 0.1);
  }

  .hero-value:first-child {
    border-top: 0;
  }

  .hero-play,
  .hero-value-icon {
    width: 54px;
    height: 54px;
  }

  .hero-value strong {
    font-size: 18px;
  }

  .hero-value p {
    font-size: 16px;
  }

  .path-grid,
  .upcoming-grid,
  .includes-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .how {
    padding-block: 64px;
  }

  .how .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .how-heading {
    margin-bottom: 28px;
  }

  .how-eyebrow {
    gap: 12px;
    letter-spacing: 0.08em;
  }

  .how-eyebrow::before,
  .how-eyebrow::after {
    width: 42px;
  }

  .how-heading h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .how-heading p {
    font-size: 1.08rem;
  }

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

  .how .steps-grid article {
    min-height: 0;
    padding: 24px 22px 26px;
  }

  .how .steps-grid h3 {
    min-height: 0;
  }

  .how .steps-grid p {
    max-width: 28ch;
  }

  .how-benefits {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .how-benefit,
  .how-benefit:nth-child(even),
  .how-benefit:nth-child(n + 3) {
    border-left: 0;
    border-top: 0;
  }

  .how-benefit + .how-benefit {
    border-top: 1px solid #c9d7e4;
  }

  .how-benefit {
    min-height: 76px;
    padding: 16px 22px;
  }

  .featured-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0;
    border-radius: 26px;
  }

  .featured-main {
    padding: 24px 28px 28px;
  }

  .featured-main h3 {
    margin-top: 20px;
    font-size: clamp(32px, 9vw, 42px);
  }

  .featured-main p {
    font-size: 17px;
  }

  .featured-visual {
    order: -1;
    width: 100%;
    min-height: 255px;
    aspect-ratio: 4 / 3;
    border-radius: 26px 26px 0 0;
  }

  .featured-visual img {
    object-position: 50% 58%;
  }

  .course-stat-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 22px 0 24px;
  }

  .course-stat {
    min-height: 76px;
    padding: 12px;
  }

  .featured-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .faith-section {
    padding-block: 0;
  }

  .faith-banner {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    padding: 32px 22px;
    border-radius: 0;
  }

  .faith-banner::before {
    border-radius: 0;
  }

  .faith-visual {
    width: 100%;
    min-height: 220px;
  }

  .faith-main h2 {
    max-width: 520px;
    font-size: clamp(38px, 10vw, 52px);
  }

  .faith-copy {
    padding-top: 22px;
  }

  .faith-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 22px;
  }

  .faith-button {
    width: 100%;
  }

  .course-feature .featured-actions .button {
    min-height: 62px;
    font-size: 19px;
  }

  .path-step {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    min-height: auto;
  }

  .path-step::after {
    right: calc(50% - 10px);
    top: auto;
    bottom: -10px;
    transform: rotate(135deg);
  }

  .path-step:nth-child(2)::after {
    display: block;
  }

  .path-step:last-child {
    border-bottom: 0;
  }

  .teacher-card {
    grid-template-columns: 1fr;
  }

  .about-teacher-card,
  .about-teacher-card:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-teacher-card img {
    min-height: 370px;
    height: 370px;
  }

  .teacher-card img,
  .teacher-placeholder {
    width: 100%;
    height: 310px;
  }

  .week-card {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 26px 0 22px;
  }

  .footer-shell {
    gap: 20px;
  }

  .footer-main {
    justify-items: stretch;
    text-align: left;
  }

  .footer-brand {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-brand .brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 0;
  }

  .footer-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .footer-value {
    min-height: 104px;
    justify-items: start;
    align-content: center;
    gap: 10px;
    padding: 18px;
    text-align: left;
    border: 1px solid rgba(23, 105, 224, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
  }

  .footer-cta {
    justify-self: stretch;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding-top: 16px;
  }

  .mobile-whatsapp {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 900;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    color: var(--navy-950);
    background: var(--cyan);
    box-shadow: 0 18px 42px rgba(3, 16, 39, 0.22);
  }
}

/* Hero topic badges: keep labels readable and frame the family instead of covering faces. */
.hero-topic {
  gap: 10px;
  min-height: 66px;
  padding: 7px 16px 7px 7px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(6, 23, 51, 0.14);
  isolation: isolate;
}

.hero-topic svg {
  width: 52px;
  height: 52px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(51, 214, 232, 0.1);
  box-shadow: none;
}

.hero-topic span {
  color: var(--navy-950);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.18;
}

.hero-topic-faith {
  top: 9%;
  left: 1%;
  flex-direction: row;
}

.hero-topic-ai {
  top: 18%;
  right: -1%;
}

.hero-topic-online {
  top: 55%;
  right: -2%;
}

.hero-topic-ai svg {
  background: rgba(23, 105, 224, 0.1);
  box-shadow: none;
}

.hero-topic-online svg {
  background: rgba(110, 92, 255, 0.1);
}

@media (max-width: 1060px) {
  .hero-topic {
    min-height: 58px;
    padding: 6px;
    border-radius: 15px;
  }

  .hero-topic svg {
    width: 46px;
    height: 46px;
    padding: 11px;
  }

  .hero-topic span {
    display: none;
  }

  .hero-topic-faith {
    top: 12%;
    left: 3%;
  }

  .hero-topic-ai {
    top: 12%;
    right: 3%;
  }

  .hero-topic-online {
    display: flex;
    top: 52%;
    right: 2%;
  }
}

@media (max-width: 760px) {
  .hero-topic {
    min-height: 52px;
    border-radius: 14px;
  }

  .hero-topic svg {
    width: 40px;
    height: 40px;
    padding: 9px;
  }

  .hero-topic-faith {
    top: 10%;
    left: 1%;
  }

  .hero-topic-ai {
    top: 10%;
    right: 1%;
  }

  .hero-topic-online {
    top: 55%;
    right: 0;
  }
}

@media (max-width: 430px) {
  .trust-row {
    grid-template-columns: 1fr;
  }

  .hero-title-line {
    gap: 8px;
  }

  .hero-title-main {
    font-size: clamp(39px, 11.6vw, 48px);
    letter-spacing: -0.045em;
  }

  .hero-title-script {
    font-size: clamp(25px, 7.5vw, 32px);
  }

  .script-soft-blue {
    font-size: clamp(23px, 6.8vw, 29px);
  }

  .featured-card,
  .final-card {
    border-radius: 24px;
  }
}

body {
  font-size: clamp(16px, 0.92vw, 18px);
}

.brand-copy strong,
.brand-copy span,
.desktop-nav a,
.mobile-menu a:not(.button),
.button,
.button-nav,
.hero .button,
.eyebrow,
.hero-kicker,
.hero-copy > p,
.course-hero p,
.trust-row span,
.hero-value strong,
.hero-value p,
.section-heading p,
.featured-main p,
.status,
.course-stat-copy small,
.upcoming-card p,
.text-button,
.path-step small,
.path-step p,
.path-step em,
.sticky-copy p,
.rich-copy p,
.final-card p,
.trust-card p,
.teacher-card p,
.steps-grid p,
.includes-grid p,
.project-card p,
.faq-item button,
.faq-answer-inner p,
.back-link,
.course-data-card p,
.week-head span,
.week-card li {
  font-size: clamp(0.98rem, 0.9rem + 0.24vw, 1.08rem);
}

.site-footer .footer-brand-copy strong {
  font-size: 18px;
}

.site-footer .footer-brand-copy span,
.site-footer .footer-value span {
  font-size: 13px;
}

.site-footer .footer-bottom {
  font-size: 12px;
}

.site-footer .footer-cta {
  font-size: 14px;
}

.site-header .brand-copy strong {
  font-size: 16px;
}

.site-header .brand-copy span {
  font-size: 12px;
}

.site-header .desktop-nav .nav-link {
  font-size: 12px;
}

.site-header .button-nav {
  font-size: 13px;
}

.site-header .mobile-menu .nav-link,
.site-header .mobile-menu .button {
  font-size: 15px;
}

@media (max-width: 1060px) {
  .site-header .brand-copy strong {
    font-size: 15px;
  }

  .site-header .brand-copy span {
    font-size: 11px;
  }
}

.course-feature .status {
  font-size: 14px;
}

.course-feature .featured-main .course-subtitle {
  font-size: 19px;
}

.course-feature .course-stat-copy strong {
  font-size: clamp(20px, 1.45vw, 26px);
}

.course-feature .course-stat-copy small {
  font-size: 15px;
}

.course-feature .featured-actions .button {
  min-height: 64px;
  font-size: 20px;
}

.course-feature .featured-actions .button-dark {
  color: var(--navy-950);
  background: linear-gradient(135deg, #50ddea, #8df4ff);
  box-shadow: 0 18px 42px rgba(51, 214, 232, 0.3);
}

.course-feature .featured-actions .button-dark:hover {
  background: linear-gradient(135deg, #38d4e4, #76eefb);
  box-shadow: 0 22px 48px rgba(51, 214, 232, 0.38);
}

.faith-banner .eyebrow {
  font-size: 13px;
}

.faith-copy {
  font-size: 22px;
}

.faith-cta strong {
  font-size: 19px;
}

.faith-banner .faith-button {
  min-height: 64px;
  font-size: 17px;
}

@media (max-width: 1180px) and (min-width: 1061px) {
  .faith-banner {
    grid-template-columns: minmax(170px, 0.62fr) minmax(250px, 1fr) minmax(220px, 0.82fr) minmax(220px, 0.78fr);
    gap: 24px;
    padding-inline: 32px;
  }

  .faith-main h2 {
    text-wrap: balance;
  }
}

@media (max-width: 760px) {
  .faith-copy {
    font-size: 20px;
  }

  .faith-cta strong,
  .faith-banner .faith-button {
    font-size: 17px;
  }
}

/* Responsive refinement pass: preserve the visual system while allowing each layout to reflow by content width. */
html,
body,
#root {
  width: 100%;
  max-width: 100%;
}

main,
section,
header,
footer {
  max-width: 100%;
}

img,
video,
canvas,
iframe {
  max-width: 100%;
}

p,
li {
  text-wrap: pretty;
}

.container {
  width: min(calc(100% - clamp(28px, 5vw, 80px)), var(--container));
}

.section {
  padding-block: clamp(54px, 7.2vw, 124px);
}

.site-header {
  padding-inline: max(0px, env(safe-area-inset-left)) max(0px, env(safe-area-inset-right));
}

.site-header .container {
  width: min(calc(100% - clamp(24px, 4vw, 56px)), var(--container));
}

.desktop-nav .nav-link.active,
.desktop-nav .nav-link[aria-current="page"] {
  color: var(--navy-950);
  background: rgba(51, 214, 232, 0.13);
}

.desktop-nav .nav-link.active::after,
.desktop-nav .nav-link[aria-current="page"]::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.mobile-menu .nav-link.active,
.mobile-menu .nav-link[aria-current="page"] {
  color: var(--navy-950);
  background: rgba(51, 214, 232, 0.14);
}

.hero-title-line {
  max-width: 100%;
}

.hero-copy > p,
.course-hero p,
.about-hero p,
.featured-main p,
.sticky-copy p,
.rich-copy p,
.final-card p {
  font-size: clamp(1.02rem, 0.95rem + 0.45vw, 1.28rem);
}

.section-heading p,
.trust-card p,
.upcoming-card p,
.steps-grid p,
.includes-grid p,
.project-card p,
.faq-answer-inner p,
.week-card li {
  font-size: clamp(0.98rem, 0.92rem + 0.25vw, 1.1rem);
}

.button,
.hero .button,
.course-feature .featured-actions .button,
.faith-banner .faith-button {
  min-width: 0;
  min-height: max(48px, 2.9rem);
  white-space: normal;
  text-align: center;
  line-height: 1.15;
}

.featured-card,
.final-card,
.course-data-card,
.about-teacher-card,
.week-card,
.path-grid,
.how-benefits {
  max-width: 100%;
}

.upcoming-grid,
.team-grid,
.steps-grid,
.includes-grid,
.project-grid,
.about-principles-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.how .steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.featured-card {
  grid-template-columns: minmax(0, 1fr) minmax(min(100%, 360px), 0.82fr);
}

.course-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(min(100%, 360px), 390px);
}

.week-card {
  grid-template-columns: minmax(min(100%, 240px), 300px) minmax(0, 1fr);
}

.footer-main {
  grid-template-columns: minmax(220px, 1fr) minmax(0, 1.75fr) minmax(190px, auto);
}

.footer-values {
  grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
}

@media (min-width: 1440px) {
  :root {
    --container: 1280px;
    --section: clamp(96px, 6.2vw, 150px);
  }

  .hero .container {
    width: min(calc(100% - 96px), 1460px);
  }

  .hero {
    min-height: clamp(760px, 44vw, 900px);
  }

  .hero-title-main {
    font-size: clamp(72px, 4.55vw, 92px);
  }

  .hero-title-script {
    font-size: clamp(42px, 2.5vw, 54px);
  }

  .script-soft-blue {
    font-size: clamp(38px, 2.25vw, 48px);
  }

  .hero-visual img {
    width: min(860px, 112%);
  }
}

@media (min-width: 1920px) {
  :root {
    --container: 1380px;
  }

  .hero .container {
    width: min(calc(100% - 120px), 1580px);
  }

  .how .container {
    width: min(calc(100% - 120px), 1440px);
  }

  .section-heading,
  .final-card h2,
  .final-card p {
    max-width: 820px;
  }
}

@media (min-width: 1061px) and (max-width: 1220px) {
  .nav-shell {
    gap: 12px;
    padding-inline: 12px;
  }

  .brand {
    min-width: 198px;
  }

  .desktop-nav {
    gap: 10px;
  }

  .desktop-nav .nav-link {
    min-width: 64px;
    font-size: 11px;
  }

  .button-nav {
    padding-inline: 13px;
    font-size: 12px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  }

  .hero-title-main {
    font-size: clamp(54px, 5.2vw, 70px);
  }
}

@media (max-width: 1180px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .featured-card,
  .course-hero-grid,
  .about-hero-grid,
  .about-institution-grid,
  .trust-layout,
  .faq-layout,
  .split {
    gap: clamp(28px, 5vw, 52px);
  }
}

@media (max-width: 900px) {
  .course-hero-grid,
  .about-hero-grid,
  .about-institution-grid,
  .trust-layout,
  .faq-layout,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-title-main {
    font-size: clamp(42px, 10vw, 72px);
  }

  .hero-title-script {
    font-size: clamp(27px, 6vw, 46px);
  }

  .script-soft-blue {
    font-size: clamp(25px, 5.6vw, 38px);
  }

  .hero-value-shell {
    width: min(calc(100% - 28px), 720px);
  }

  .course-stat-row {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  }

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

  .path-step {
    min-height: 220px;
  }

  .about-teacher-card,
  .about-teacher-card:nth-child(even) {
    grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --section: clamp(52px, 13vw, 78px);
  }

  body {
    font-size: 16px;
  }

  .site-header .container,
  .container,
  .hero .container,
  .how .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-shell {
    width: 100%;
  }

  .mobile-menu {
    left: max(14px, env(safe-area-inset-left));
    right: max(14px, env(safe-area-inset-right));
    max-height: min(calc(100dvh - 92px), 560px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .brand-copy {
    min-width: 0;
  }

  .hero,
  .course-hero,
  .about-hero {
    padding-top: 104px;
  }

  .hero-copy > p,
  .course-hero p,
  .about-hero p,
  .featured-main p,
  .sticky-copy p,
  .rich-copy p,
  .final-card p,
  .faith-copy {
    font-size: clamp(1rem, 4.2vw, 1.12rem);
    line-height: 1.55;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .eyebrow,
  .how-eyebrow,
  .hero-kicker {
    overflow-wrap: anywhere;
  }

  .button-row {
    width: 100%;
  }

  .button-row .button,
  .button {
    width: 100%;
    padding-inline: 16px;
  }

  .course-hero-grid,
  .featured-card,
  .about-hero-grid,
  .about-institution-grid,
  .trust-layout,
  .faq-layout,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-title {
    max-width: 100%;
    line-height: 0.98;
  }

  .hero-title-line {
    gap: clamp(7px, 2.4vw, 12px);
  }

  .hero-title-main {
    font-size: clamp(36px, 12vw, 54px);
    letter-spacing: -0.035em;
  }

  .hero-title-script {
    font-size: clamp(23px, 7.5vw, 34px);
  }

  .script-soft-blue {
    font-size: clamp(22px, 7vw, 31px);
  }

  .hero-visual {
    min-height: clamp(330px, 92vw, 440px);
  }

  .hero-value-shell {
    width: min(calc(100% - 28px), 520px);
  }

  .featured-main,
  .upcoming-card,
  .trust-card,
  .steps-grid article,
  .includes-grid article,
  .project-card,
  .week-card,
  .about-principle {
    padding: clamp(20px, 6vw, 28px);
  }

  .featured-main h3,
  .about-teacher-card h3 {
    overflow-wrap: anywhere;
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

  .path-step:nth-child(2),
  .path-step:nth-child(4) {
    border-bottom: 1px solid var(--border);
  }

  .teacher-card,
  .about-teacher-card,
  .about-teacher-card:nth-child(even),
  .week-card {
    grid-template-columns: 1fr;
  }

  .course-data-card {
    padding: 22px;
  }

  .about-portrait-composition {
    min-height: clamp(430px, 128vw, 620px);
  }

  .about-teacher-card img {
    height: clamp(300px, 82vw, 390px);
    min-height: 0;
  }

  .footer-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-whatsapp {
    bottom: max(16px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 430px) {
  .site-header .container,
  .container,
  .hero .container,
  .how .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .nav-shell {
    gap: 8px;
    padding-inline: 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 50px;
    height: 34px;
  }

  .site-header .brand-copy strong {
    font-size: 14px;
  }

  .site-header .brand-copy span {
    font-size: 10px;
  }

  .hero-kicker {
    font-size: 13px;
    letter-spacing: 0.16em;
  }

  .hero-title-line {
    align-items: baseline;
  }

  .hero-title-main {
    font-size: clamp(34px, 11.6vw, 44px);
  }

  .hero-title-script {
    font-size: clamp(21px, 7vw, 29px);
  }

  .script-soft-blue {
    font-size: clamp(20px, 6.6vw, 27px);
  }

  .course-stat-row,
  .footer-values {
    grid-template-columns: 1fr;
  }

  .featured-main {
    padding: 22px;
  }

  .featured-visual {
    min-height: 230px;
  }

  .faith-banner {
    padding-inline: 18px;
  }

  .faith-main h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .about-portrait figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 11px;
  }

  .faq-item button {
    align-items: flex-start;
    min-height: 58px;
    padding: 16px;
  }
}

@media (max-width: 360px) {
  .site-header .container,
  .container,
  .hero .container,
  .how .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .brand-copy span {
    display: none;
  }

  .hero-title-main {
    font-size: clamp(32px, 11vw, 39px);
  }

  .hero-title-script {
    font-size: clamp(19px, 6.8vw, 25px);
  }

  .script-soft-blue {
    font-size: clamp(18px, 6.4vw, 23px);
  }

  .hero-visual {
    min-height: 300px;
  }

  .trust-row,
  .hero-value-shell {
    width: min(calc(100% - 20px), 100%);
  }
}

.course-page .course-hero {
  min-height: calc(100svh - 96px);
  padding: clamp(98px, 8.2vw, 122px) 0 clamp(42px, 5.2vw, 64px);
  color: var(--navy-950);
  background:
    radial-gradient(circle at 83% 28%, rgba(51, 214, 232, 0.2), transparent 30%),
    radial-gradient(circle at 84% 74%, rgba(23, 105, 224, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 54%, #eef6ff 100%);
}

.course-page .course-hero::before {
  display: none;
}

.course-page .course-hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.68fr);
  gap: clamp(40px, 5.2vw, 76px);
  align-items: center;
}

.course-page .course-hero-copy {
  max-width: 780px;
}

.course-page .course-hero h1 {
  max-width: 780px;
  color: var(--navy-950);
  font-size: clamp(50px, 5.25vw, 84px);
  font-weight: 900;
  letter-spacing: -0.072em;
  line-height: 0.98;
  text-wrap: balance;
}

.course-page .course-hero .eyebrow {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: clamp(13px, 1vw, 17px);
  letter-spacing: 0.11em;
}

.course-page .course-hero .back-link {
  margin-bottom: 16px;
  color: rgba(3, 16, 39, 0.62);
}

.course-page .course-hero .back-link:hover {
  color: var(--blue);
}

.course-page .course-hero p {
  max-width: 760px;
  color: #273a55;
  font-size: clamp(17px, 1.24vw, 21px);
  line-height: 1.52;
}

.course-page .course-hero .course-subtitle {
  margin: 12px 0 0;
  color: var(--navy-950);
  font-size: clamp(30px, 2.85vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.course-page .course-hero .button-row {
  flex-wrap: nowrap;
  gap: 18px;
  margin-top: 26px;
}

.course-page .course-hero .button {
  min-height: 58px;
  padding-inline: clamp(22px, 2vw, 34px);
  border-radius: 18px;
  font-size: clamp(14px, 0.95vw, 17px);
  font-weight: 900;
  letter-spacing: -0.025em;
}

.course-page .course-hero .button svg {
  width: 24px;
  height: 24px;
}

.course-page .course-hero .course-primary-cta {
  background: linear-gradient(135deg, #13cfe0 0%, #4eebf3 100%);
  box-shadow: 0 22px 42px rgba(21, 207, 224, 0.24);
}

.course-page .course-hero .button-secondary {
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(10, 36, 80, 0.17);
  box-shadow: none;
}

.course-page .course-hero-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 0;
  color: #62708a !important;
  font-size: clamp(15px, 1vw, 18px) !important;
  line-height: 1.4 !important;
}

.course-page .course-data-card {
  width: min(100%, 490px);
  justify-self: end;
  padding: clamp(24px, 2.1vw, 34px);
  border: 1px solid rgba(10, 36, 80, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 38px 86px rgba(17, 75, 156, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.course-page .course-data-card p {
  color: #41516a;
}

.course-page .course-info-pills {
  display: grid;
  gap: 12px;
}

.course-page .course-info-pills span {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid rgba(10, 36, 80, 0.12);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.course-page .course-info-pills strong {
  color: var(--navy-950);
  font-size: clamp(17px, 1.24vw, 22px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.course-page .course-live-block {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(10, 36, 80, 0.12);
}

.course-page .course-live-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(23, 105, 224, 0.08), rgba(51, 214, 232, 0.16));
  box-shadow: inset 0 0 0 1px rgba(23, 105, 224, 0.1);
}

.course-page .course-live-block h2 {
  max-width: 330px;
  color: var(--navy-950);
  font-size: clamp(21px, 1.65vw, 27px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.15;
}

.course-page .course-live-block p {
  margin: 12px 0 14px;
  color: #273a55;
  font-size: clamp(15px, 0.92vw, 17px);
  line-height: 1.55;
}

.course-page .course-live-block strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 10px;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(23, 105, 224, 0.09), rgba(51, 214, 232, 0.16));
  font-size: 14px;
  font-weight: 900;
}

.course-page .course-prerequisite {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(10, 36, 80, 0.12);
  color: #41516a !important;
  font-size: 16px !important;
  line-height: 1.45 !important;
}

@media (max-width: 1060px) {
  .course-page .course-hero {
    min-height: auto;
    padding: 124px 0 64px;
  }

  .course-page .course-hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .course-page .course-hero-copy {
    max-width: 860px;
  }

  .course-page .course-data-card {
    width: 100%;
    max-width: 720px;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .course-page .course-hero {
    padding: 108px 0 46px;
  }

  .course-page .course-hero h1 {
    font-size: clamp(44px, 12vw, 64px);
    letter-spacing: -0.06em;
  }

  .course-page .course-hero .eyebrow {
    gap: 8px;
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1.45;
  }

  .course-page .course-hero .course-subtitle {
    font-size: clamp(28px, 8.2vw, 42px);
  }

  .course-page .course-hero p {
    font-size: 18px;
    line-height: 1.55;
  }

  .course-page .course-hero .button-row {
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
  }

  .course-page .course-hero .button {
    width: 100%;
    min-height: 64px;
    padding-inline: 20px;
    border-radius: 18px;
    font-size: 17px;
  }

  .course-page .course-data-card {
    padding: 22px;
    border-radius: 28px;
  }

  .course-page .course-info-pills span {
    min-height: 62px;
    gap: 16px;
    padding: 0 20px;
  }

  .course-page .course-info-pills strong {
    font-size: 19px;
  }

  .course-page .course-live-block {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .course-page .course-live-icon {
    width: 62px;
    height: 62px;
  }

  .course-page .course-live-block h2 {
    font-size: 25px;
  }
}
