@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

* {
  box-sizing: border-box;
}           

:root {
  --ink: #111111;
  --paper: #f7f0df;
  --paper-deep: #eadcbf;
  --primary: #c9252d;
  --primary-2: #143f86;
  --topper-blue: #002d73;
  --accent: #f5c84b;
  --success: #1b7f5a;
  --muted: #5f594d;
  --line: rgba(17, 17, 17, 0.18);
  --white: #ffffff;
  --nav-bg: rgba(247, 240, 223, 0.94);
  --hero-grid-a: rgba(17, 17, 17, 0.06);
  --hero-grid-b: rgba(17, 17, 17, 0.05);
  --hero-glow: transparent;
  --footer-muted: rgba(247, 240, 223, 0.72);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  overflow-x: hidden;
}

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

a:hover,
a:focus {
  text-decoration: none;
}

.admission-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: var(--nav-bg);
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  height: 44px;
  width: auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  padding: 8px;
  background: var(--accent);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 4px 0;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links {
  display: flex;
  gap: 6px;
}

.nav-links a,
.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a:hover {
  border-color: var(--ink);
  background: var(--paper-deep);
}

.nav-cta {
  color: var(--white);
  background: var(--success);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.hero-section {
  position: relative;
  padding: clamp(42px, 6vw, 82px) clamp(18px, 4vw, 56px) 0;
  background:
    radial-gradient(circle at 18% 12%, var(--hero-glow), transparent 32%),
    linear-gradient(90deg, var(--hero-grid-a) 1px, transparent 1px),
    linear-gradient(0deg, var(--hero-grid-b) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 42px 42px, 42px 42px, auto;
  border-bottom: 2px solid var(--ink);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 440px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
}

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

.edition,
.section-heading p,
.poster-copy p {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 12px;
  color: var(--paper);
  background: var(--primary);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  max-width: 100%;
  color: var(--topper-blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(58px, 8.4vw, 118px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
}

.hero-copy h2 {
  max-width: 810px;
  margin: 24px 0 0;
  font-size: clamp(30px, 4.4vw, 62px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.hero-sub {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn-primary,
.btn-secondary,
.lead-card button,
.course-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 2px solid var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.btn-primary,
.lead-card button {
  color: var(--white);
  background: var(--primary);
}

.btn-secondary {
  color: var(--ink);
  background: var(--accent);
}

.btn-primary:hover,
.btn-secondary:hover,
.lead-card button:hover,
.nav-cta:hover {
  color: var(--white);
  text-decoration: none;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.course-grid a:hover {
  color: var(--ink);
  text-decoration: none;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(92px, 1fr));
  max-width: 760px;
  margin-top: 42px;
  border: 2px solid var(--ink);
  background: var(--white);
}

.proof-row div {
  padding: 18px 14px;
  border-right: 1px solid var(--line);
}

.proof-row div:last-child {
  border-right: 0;
}

.proof-row strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.proof-row span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-card {
  position: relative;
  padding: 30px;
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
}

.form-stamp {
  position: absolute;
  top: -18px;
  right: 22px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--primary-2);
  border: 2px solid var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(2deg);
}

.lead-card h3 {
  margin: 8px 0 8px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.05;
}

.lead-card p,
.lead-card small {
  color: var(--muted);
}

.lead-card label {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-card input,
.lead-card select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.form-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lead-card button {
  width: 100%;
  margin-top: 20px;
  cursor: pointer;
}

.lead-card small {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  text-align: center;
}

.ticker {
  max-width: 1220px;
  margin: 54px auto 0;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  background: var(--ink);
}

.ticker div {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.ticker span {
  padding: 12px 28px;
  color: var(--paper);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: clamp(64px, 8vw, 108px) clamp(18px, 4vw, 56px);
}

.light {
  background: var(--paper);
}

.dark {
  color: var(--paper);
  background: var(--ink);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.left {
  max-width: 1220px;
  text-align: left;
}

.section-heading h2,
.poster-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 5vw, 76px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.feature-grid,
.course-grid,
.trust-grid {
  display: grid;
  max-width: 1220px;
  margin: 0 auto;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-grid article,
.trust-grid article {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.feature-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.feature-grid h3,
.course-grid h3,
.trust-grid h3,
.steps h3 {
  margin: 0 0 12px;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.1;
}

.feature-grid p,
.trust-grid p,
.steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.course-grid article {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 26px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--paper);
}

.course-grid article:nth-child(2),
.course-grid article:nth-child(5) {
  background: var(--accent);
}

.course-grid article:nth-child(3) {
  color: var(--paper);
  background: var(--primary-2);
}

.highlight-course {
  color: var(--paper) !important;
  background: var(--primary) !important;
}

.course-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 30px;
}

.course-top span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 900;
}

.course-top strong {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.course-grid li {
  position: relative;
  padding-left: 20px;
  font-weight: 700;
}

.course-grid li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  background: currentColor;
}

.course-grid a {
  margin-top: auto;
  color: var(--ink);
  background: var(--white);
}

.poster {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: var(--paper-deep);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.poster-copy span {
  display: block;
  margin-top: 16px;
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.steps article {
  padding: 24px;
  background: var(--white);
  border: 2px solid var(--ink);
}

.steps strong {
  display: block;
  margin-bottom: 18px;
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 48px;
  line-height: 1;
}

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

.trust-grid article {
  min-height: auto;
}

.feedback-section {
  background: var(--paper-deep);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.review-embed-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  max-width: 1220px;
  margin: 0 auto;
}

.review-badge,
.review-widget {
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.review-badge {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 180px;
  padding: 24px;
  text-align: center;
}

.review-badge strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 68px;
  line-height: 0.9;
}

.review-badge span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-widget {
  min-height: 260px;
  padding: 18px;
  overflow: hidden;
}

.faq-section .section-heading p,
.dark .section-heading p {
  color: var(--ink);
  background: var(--accent);
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.faq-list details {
  margin-bottom: 14px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--paper);
}

.faq-list summary {
  padding: 20px 24px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(48px, 7vw, 82px) clamp(18px, 4vw, 56px);
  color: var(--paper);
  background: var(--primary);
  border-bottom: 2px solid var(--ink);
}

.final-cta p {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  padding: clamp(44px, 6vw, 74px) clamp(18px, 4vw, 56px) 28px;
  color: var(--paper);
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr 0.9fr;
  gap: clamp(24px, 4vw, 48px);
  max-width: 1220px;
  margin: 0 auto;
}

.footer-brand img {
  height: 62px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-location p,
.footer-bottom span {
  margin: 0;
  color: var(--footer-muted);
  line-height: 1.7;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-tags span {
  padding: 7px 10px;
  color: var(--ink);
  background: var(--accent);
  border: 2px solid var(--paper);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-location h3,
.footer-contact h3 {
  position: relative;
  margin: 0 0 18px;
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
}

.footer-location h3::after,
.footer-contact h3::after {
  content: "";
  display: block;
  width: 84px;
  height: 4px;
  margin-top: 9px;
  background: var(--primary);
}

.map-frame {
  height: 230px;
  margin-top: 20px;
  border: 2px solid var(--paper);
  box-shadow: 6px 6px 0 var(--primary);
  overflow: hidden;
  background: var(--paper);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-contact a,
.footer-bottom a {
  color: var(--accent);
  font-weight: 900;
}

.footer-contact > a:not(.footer-whatsapp) {
  display: block;
  width: fit-content;
  font-size: 20px;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: fit-content;
  margin-top: 10px;
  padding: 12px 16px;
  color: var(--white) !important;
  background: var(--success);
  border: 2px solid var(--paper);
  box-shadow: 5px 5px 0 var(--primary);
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1220px;
  margin: 42px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(247, 240, 223, 0.22);
}

.float-call,
.float-wa {
  position: fixed;
  right: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--ink);
}

.float-call i,
.float-wa i {
  line-height: 1;
}

.float-call svg,
.float-wa svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.float-call {
  bottom: 88px;
  background: var(--primary-2);
}

.float-wa {
  bottom: 20px;
  background: var(--success);
}

@media (max-width: 1080px) {
  .hero-grid,
  .poster,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .lead-card {
    max-width: 620px;
  }

  .feature-grid,
  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .admission-nav {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    padding: 12px 16px;
  }

  .brand {
    gap: 0;
  }

  .brand img {
    height: 38px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    width: 100%;
    margin-top: 14px;
    padding: 14px;
    background: var(--paper);
    border: 2px solid var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
  }

  .nav-menu.is-open {
    display: grid;
    gap: 10px;
  }

  .nav-links {
    display: grid;
    width: 100%;
    gap: 8px;
  }

  .nav-links a {
    justify-content: center;
    min-height: 34px;
    padding: 10px 12px;
    font-size: 13px;
    background: var(--white);
    border: 2px solid var(--ink);
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    min-height: 42px;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .hero-section {
    padding: 34px 16px 0;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 15vw, 72px);
    line-height: 0.94;
  }

  .hero-copy h2 {
    margin-top: 18px;
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1.04;
  }

  .hero-sub {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.55;
  }

  .edition,
  .section-heading p,
  .poster-copy p {
    max-width: 100%;
    font-size: 10px;
    line-height: 1.35;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .btn-primary,
  .btn-secondary,
  .lead-card button,
  .course-grid a {
    min-height: 48px;
    padding: 12px 14px;
    font-size: 13px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .proof-row {
    margin-top: 28px;
  }

  .proof-row div {
    padding: 14px;
  }

  .proof-row strong {
    font-size: 26px;
  }

  .proof-row,
  .feature-grid,
  .course-grid,
  .review-embed-card,
  .steps,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .proof-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-row div:last-child {
    border-bottom: 0;
  }

  .lead-card {
    width: calc(100% - 7px);
    padding: 22px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .form-stamp {
    top: -16px;
    right: 14px;
    font-size: 10px;
  }

  .lead-card h3 {
    font-size: 27px;
  }

  .lead-card p {
    font-size: 15px;
    line-height: 1.55;
  }

  .lead-card input,
  .lead-card select {
    min-height: 46px;
    font-size: 14px;
  }

  .form-row-two {
    grid-template-columns: 1fr;
  }

  .ticker {
    margin-top: 38px;
    border-right: 0;
    border-left: 0;
  }

  .ticker span {
    padding: 10px 18px;
    font-size: 12px;
  }

  .section {
    padding: 58px 16px;
  }

  .section-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .section-heading h2,
  .poster-copy h2,
  .final-cta h2 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.02;
  }

  .feature-grid,
  .course-grid,
  .trust-grid {
    gap: 12px;
  }

  .feature-grid article,
  .trust-grid article,
  .steps article {
    padding: 22px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .feature-grid article {
    min-height: auto;
  }

  .feature-grid span,
  .steps strong {
    font-size: 42px;
    margin-bottom: 16px;
  }

  .course-grid article {
    min-height: auto;
    padding: 22px;
  }

  .course-top {
    margin-bottom: 22px;
  }

  .course-top span {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .course-top strong {
    max-width: 150px;
    text-align: right;
    font-size: 10px;
  }

  .poster {
    gap: 28px;
  }

  .poster-copy span {
    font-size: 18px;
  }

  .review-badge,
  .review-widget {
    box-shadow: 4px 4px 0 var(--ink);
  }

  .review-badge {
    min-height: 130px;
  }

  .review-badge strong {
    font-size: 54px;
  }

  .review-widget {
    min-height: 220px;
    padding: 12px;
  }

  .faq-list summary {
    padding: 17px 18px;
    font-size: 16px;
  }

  .faq-list p {
    padding: 0 18px 18px;
  }

  .final-cta {
    padding: 50px 16px;
  }

  .final-actions,
  .final-actions a,
  .hero-actions a {
    width: 100%;
  }

  .site-footer {
    padding: 48px 16px 24px;
  }

  .footer-brand img {
    height: 50px;
  }

  .footer-tags {
    gap: 6px;
  }

  .footer-tags span {
    font-size: 10px;
  }

  .footer-location h3,
  .footer-contact h3 {
    font-size: 24px;
  }

  .map-frame {
    height: 240px;
    box-shadow: 4px 4px 0 var(--primary);
  }

  .footer-contact > a:not(.footer-whatsapp) {
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .footer-whatsapp {
    width: 100%;
    box-shadow: 4px 4px 0 var(--primary);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 34px;
  }

  .float-call,
  .float-wa {
    right: 14px;
    width: 48px;
    height: 48px;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .float-call {
    bottom: 78px;
  }

  .float-wa {
    bottom: 16px;
  }
}

@media (max-width: 390px) {
  .brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand span {
    width: fit-content;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 14.5vw, 58px);
  }

  .lead-card {
    padding: 19px;
  }

  .course-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .course-top strong {
    max-width: none;
    text-align: left;
  }
}
