/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__brand img {
  height: 44px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.site-nav a {
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--orange);
}

.site-header__cta {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .site-header__inner {
    min-height: 60px;
    gap: 12px;
  }
  .site-header__brand img {
    height: 36px;
  }
  .site-nav {
    gap: 16px;
  }
  .site-nav a {
    font-size: 14px;
  }
  /* Hide the header WhatsApp button on mobile — the FAB takes over. */
  .site-header__cta {
    display: none;
  }
}

@media (max-width: 540px) {
  /* Phone widths: header wraps to two rows so the four-item nav doesn't
     get clipped by the viewport edge alongside the lockup. */
  .site-header__inner {
    flex-wrap: wrap;
    min-height: 0;
    padding-block: 12px;
    row-gap: 8px;
  }
  .site-header__brand {
    margin-right: auto;
  }
  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 4px;
    margin-left: 0;
  }
  .site-nav a {
    font-size: 14px;
    padding: 6px 4px;
  }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding-block: 48px 24px;
  margin-top: 96px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.site-footer__brand img {
  height: 44px;
  width: auto;
  /* The lockup image has white-around-navy, so it sits on a navy
     background by virtue of its own background being white-cropped.
     Wrap in a white card so it stays legible on navy. */
  background: var(--white);
  padding: 8px 12px;
  border-radius: 6px;
}

.site-footer__tagline {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer__nav a:hover {
  color: var(--orange);
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.site-footer__contact a {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer__contact a:hover {
  color: var(--orange);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 32px;
  padding-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

@media (max-width: 768px) {
  .site-footer {
    padding-block: 40px 24px;
    margin-top: 64px;
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ============================================================
   WhatsApp buttons
   ============================================================ */
.wa-btn,
.wa-btn-secondary,
.wa-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  min-width: 44px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease,
              border-color 0.15s ease, transform 0.05s ease;
  cursor: pointer;
}

.wa-btn {
  background: var(--orange-deep);
  color: var(--white);
  border: 1px solid var(--orange-deep);
}

.wa-btn:hover {
  background: #A33D22;
  border-color: #A33D22;
}

.wa-btn:active {
  transform: translateY(1px);
}

.wa-btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.wa-btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.wa-btn-icon {
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  border: 0;
}

.wa-btn-icon:hover {
  background: #d2532f;
}

.wa-btn svg,
.wa-btn-secondary svg,
.wa-btn-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.wa-btn-icon svg {
  width: 28px;
  height: 28px;
}

/* ============================================================
   Mobile WhatsApp FAB
   ============================================================ */
.wa-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 60;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  display: none;
}

@media (max-width: 768px) {
  .wa-fab {
    display: inline-flex;
  }
}

/* ============================================================
   Card
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 32px);
}

.card--muted {
  background: var(--offwhite);
}

/* ============================================================
   Stat (number + label)
   ============================================================ */
.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat__number {
  font-size: clamp(3rem, 5vw + 2rem, 5rem);  /* 48px -> 80px */
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  z-index: 100;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
}

/* ============================================================
   Homepage — Hero
   ============================================================ */
.hero {
  background: var(--navy);
  color: var(--white);
  padding-block: clamp(72px, 10vw, 128px);
  text-align: center;
}

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

.hero__headline {
  color: var(--white);
  margin-bottom: 20px;
}

.hero__subhead {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(17px, 1.2vw + 14px, 19px);
  line-height: 1.55;
  max-width: 720px;
  margin: 0 auto 40px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.hero__secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   Homepage — Numbers band (4 stats)
   ============================================================ */
.numbers-band {
  background: var(--white);
}

.numbers-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.numbers-band .stat {
  align-items: center;
  gap: 12px;
}

.numbers-band .stat__number {
  font-size: clamp(2.75rem, 3vw + 2rem, 4.25rem);  /* 44px -> 68px */
}

.stat__growing {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 4px;
}

@media (max-width: 1023px) {
  .numbers-band__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
  }
}

@media (max-width: 540px) {
  .numbers-band__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   Homepage — Path cards (recent grad / career changer)
   ============================================================ */
.paths {
  background: var(--offwhite);
}

.paths__heading {
  text-align: center;
  margin-bottom: 40px;
}

.paths__faq-link {
  margin-top: 28px;
  text-align: center;
  font-size: 15px;
  color: var(--muted);
}

.paths__faq-link a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 500;
}

.paths__faq-link a:hover {
  text-decoration-thickness: 2px;
}

.paths__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .paths__heading {
    text-align: left;
    margin-bottom: 28px;
  }
}

.path-card h3 {
  margin-bottom: 16px;
}

.path-card p {
  margin-bottom: 24px;
  color: rgba(28, 20, 84, 0.85);
}

@media (max-width: 768px) {
  .paths__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Homepage — How it works (3 steps)
   ============================================================ */
.how {
  background: var(--white);
}

.how__intro {
  text-align: center;
  margin-bottom: 56px;
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  list-style: none;
  padding: 0;
}

.how__step {
  text-align: left;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-deep);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1;
}

.step__text {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 768px) {
  .how__steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .how__intro {
    margin-bottom: 40px;
    text-align: left;
  }
}

/* ============================================================
   Homepage — Placements grid
   ============================================================ */
.placements {
  background: var(--offwhite);
}

.placements__intro {
  text-align: center;
  margin-bottom: 48px;
}

.placements__intro h2 {
  margin-bottom: 12px;
}

.placements__intro p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
}

.placements__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.placement-card__role {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px;
}

.placement-card__company {
  font-size: 15px;
  font-weight: 500;
  color: rgba(28, 20, 84, 0.85);
  margin-bottom: 12px;
}

.placement-card__salary {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.placements__note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 1023px) {
  .placements__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .placements__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Homepage — Final CTA strip
   ============================================================ */
.cta-strip {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.cta-strip h2 {
  color: var(--white);
  margin-bottom: 28px;
}

.cta-strip__action {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cta-strip__email {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  font-size: 15px;
}

.cta-strip__email:hover {
  color: var(--white);
}

.site-footer {
  margin-top: 0;  /* CTA strip already provides the bottom anchor */
}

/* ============================================================
   FAQ page
   ============================================================ */
.faq-hero {
  background: var(--offwhite);
  padding-block: clamp(56px, 8vw, 96px);
  border-bottom: 1px solid var(--border);
}

.faq-hero__inner {
  max-width: 760px;
}

.faq-hero h1 {
  margin-bottom: 16px;
}

.faq-hero__subhead {
  color: rgba(28, 20, 84, 0.75);
  font-size: clamp(17px, 1.2vw + 14px, 19px);
  line-height: 1.55;
  max-width: 640px;
}

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

.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq__category {
  padding-block: 40px 0;
  border-top: 1px solid var(--border);
}

.faq__category:first-child {
  padding-top: 0;
  border-top: 0;
}

.faq__category-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.faq__item {
  padding-block: 28px;
  border-top: 1px solid var(--border);
}

.faq__item:first-of-type {
  border-top: 0;
  padding-top: 8px;
}

.faq__item h2 {
  font-size: clamp(1.125rem, 0.6vw + 1rem, 1.375rem);  /* 18px -> 22px */
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 12px;
}

.faq__item p {
  font-size: 17px;
  line-height: 1.6;
}

.faq__item p + p {
  margin-top: 12px;
}

/* ============================================================
   About page
   ============================================================ */
.about-hero {
  background: var(--offwhite);
  padding-block: clamp(56px, 8vw, 96px);
  border-bottom: 1px solid var(--border);
}

.about-hero__inner {
  max-width: 820px;
}

.about-hero h1 {
  margin-bottom: 16px;
}

.about-hero__subhead {
  color: rgba(28, 20, 84, 0.75);
  font-size: clamp(17px, 1.2vw + 14px, 19px);
  line-height: 1.55;
  max-width: 720px;
}

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

.critique__intro {
  text-align: center;
  margin-bottom: 48px;
  max-width: 720px;
  margin-inline: auto;
}

.critique__intro h2 {
  margin-bottom: 12px;
}

.critique__intro p {
  color: var(--muted);
  font-size: 17px;
}

.critique__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}

.critique-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 36px);
}

.critique-block--positive {
  border-color: var(--orange-deep);
  border-top: 4px solid var(--orange-deep);
  padding-top: clamp(20px, 3vw, 32px);
}

.critique-block__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.critique-block--positive .critique-block__label {
  color: var(--orange-deep);
}

.critique-block__title {
  font-size: clamp(1.125rem, 0.6vw + 1rem, 1.375rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.critique-block__text {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(28, 20, 84, 0.88);
}

.critique__faq-link {
  margin-top: 40px;
  text-align: center;
  font-size: 15px;
  color: var(--muted);
}

.critique__faq-link a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 500;
}

.critique__faq-link a:hover {
  text-decoration-thickness: 2px;
}

.about-narrative {
  background: var(--offwhite);
}

.about-narrative__inner {
  max-width: 720px;
  margin: 0 auto;
}

.about-narrative h2 {
  margin-bottom: 24px;
}

.about-narrative p {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(28, 20, 84, 0.88);
}

.about-narrative p + p {
  margin-top: 20px;
}

/* ============================================================
   Programs page
   ============================================================ */
.programs-hero {
  background: var(--offwhite);
  padding-block: clamp(56px, 8vw, 96px);
  border-bottom: 1px solid var(--border);
}

.programs-hero__inner {
  max-width: 820px;
}

.programs-hero h1 {
  margin-bottom: 16px;
}

.programs-hero__subhead {
  color: rgba(28, 20, 84, 0.75);
  font-size: clamp(17px, 1.2vw + 14px, 19px);
  line-height: 1.55;
  max-width: 720px;
}

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

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

@media (max-width: 768px) {
  .tracks__grid {
    grid-template-columns: 1fr;
  }
}

.track-card {
  display: flex;
  flex-direction: column;
}

.track-card h2 {
  font-size: clamp(1.25rem, 0.6vw + 1.125rem, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.track-card__intro {
  color: rgba(28, 20, 84, 0.88);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 20px;
}

.track-card__what-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.track-card__list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  color: rgba(28, 20, 84, 0.88);
}

.track-card__list li {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 6px;
}

.track-card__duration {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  font-style: italic;
}

.track-card__cta {
  margin-top: auto;  /* push CTA to bottom for equal-height cards */
  align-self: flex-start;
}

/* Prep modules — secondary, less prominent than placement plans */
.prep {
  background: var(--offwhite);
}

.prep__intro {
  text-align: center;
  margin-bottom: 40px;
}

.prep__intro h2 {
  margin-bottom: 12px;
}

.prep__intro p {
  color: var(--muted);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto;
}

.prep__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .prep__grid {
    grid-template-columns: 1fr;
  }
}

.prep-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  flex-direction: column;
}

.prep-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.prep-card__hours {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 14px;
}

.prep-card p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(28, 20, 84, 0.88);
  margin-bottom: 18px;
}

.prep-card__cta {
  margin-top: auto;
  align-self: flex-start;
}

/* Programs FAQ-link transition */
.programs__faq-link {
  text-align: center;
  margin-block: 48px 0;
  font-size: 15px;
  color: var(--muted);
}

.programs__faq-link a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 500;
}

.programs__faq-link a:hover {
  text-decoration-thickness: 2px;
}

/* "Not sure?" CTA strip variant — supports a sub-line */
.cta-strip__sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.5;
  max-width: 560px;
  margin: -12px auto 24px;
}

/* ============================================================
   Contact page
   ============================================================ */
.contact-hero {
  background: var(--offwhite);
  padding-block: clamp(56px, 8vw, 96px);
  border-bottom: 1px solid var(--border);
}

.contact-hero__inner {
  max-width: 760px;
}

.contact-hero h1 {
  margin-bottom: 16px;
}

.contact-hero__subhead {
  color: rgba(28, 20, 84, 0.75);
  font-size: clamp(17px, 1.2vw + 14px, 19px);
  line-height: 1.55;
  max-width: 640px;
}

.contact-primary {
  background: var(--white);
}

.contact-primary__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-primary h2 {
  margin-bottom: 12px;
}

.contact-primary__lede {
  color: rgba(28, 20, 84, 0.85);
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 560px;
  margin-inline: auto;
}

.contact-primary .wa-btn {
  font-size: 17px;
  padding: 16px 28px;
  border-radius: 10px;
}

.contact-secondary {
  background: var(--offwhite);
}

.contact-secondary__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-secondary h2 {
  margin-bottom: 24px;
  font-size: clamp(1.25rem, 1vw + 1rem, 1.5rem);
}

.contact-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}

.contact-channel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
}

.contact-channel__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.contact-channel__value {
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.contact-channel__value:hover {
  text-decoration-thickness: 2px;
}

@media (max-width: 540px) {
  .contact-channels {
    grid-template-columns: 1fr;
  }
}

.contact-office {
  background: var(--white);
}

.contact-office__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-office h2 {
  margin-bottom: 16px;
  font-size: clamp(1.25rem, 1vw + 1rem, 1.5rem);
}

.contact-office__address {
  font-size: 18px;
  line-height: 1.55;
  color: var(--navy);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.contact-office__address:hover {
  text-decoration-thickness: 2px;
}

.contact-office__address span {
  display: block;
}

.contact-faq-link {
  margin-top: 32px;
  font-size: 15px;
  color: var(--muted);
}

.contact-faq-link--hero {
  margin-top: 20px;
}

.contact-faq-link a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 500;
}

.contact-faq-link a:hover {
  text-decoration-thickness: 2px;
}

/* ============================================================
   404 page
   ============================================================ */
.notfound {
  background: var(--offwhite);
  padding-block: clamp(80px, 12vw, 160px);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.notfound__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.notfound h1 {
  margin-bottom: 20px;
}

.notfound__subhead {
  color: rgba(28, 20, 84, 0.75);
  font-size: clamp(17px, 1.2vw + 14px, 19px);
  line-height: 1.55;
  margin-bottom: 32px;
}

.notfound__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.notfound__home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--navy);
  transition: background-color 0.15s ease;
}

.notfound__home:hover {
  background: #14104a;
}
