:root {
  --navy-950: #030716;
  --navy-900: #061028;
  --navy-800: #0b1b3f;
  --red-600: #e6112f;
  --red-500: #ff243f;
  --red-400: #ff4b52;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  overflow-x: hidden;
  color: #ffffff;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--navy-950);
}

.background {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: start;
  width: 100vw;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(36px, 7vh, 72px) 32px 32px;
  background: #f7f8fa;
}

.background::before,
.background::after {
  content: "";
  position: absolute;
  inset: -18%;
  pointer-events: none;
}

.background::before {
  background:
    linear-gradient(108deg, transparent 0 31%, rgba(148, 163, 184, 0.12) 43%, transparent 57%),
    linear-gradient(152deg, rgba(255, 255, 255, 0.18), transparent 28% 100%);
  mix-blend-mode: screen;
  filter: blur(16px);
  transform: rotate(-4deg);
}

.background::after {
  background:
    radial-gradient(ellipse at 52% 48%, transparent 0 34%, rgba(148, 163, 184, 0.08) 58%, rgba(226, 232, 240, 0.44) 100%),
    repeating-linear-gradient(115deg, rgba(15, 23, 42, 0.025) 0 1px, transparent 1px 14px);
  opacity: 0.5;
}

.hero {
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: flex;
  width: min(100%, 980px);
  min-height: calc(100svh - clamp(72px, 10vh, 104px));
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-wrap: balance;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: calc(-1 * clamp(36px, 7vh, 72px));
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 82% 18%, rgba(148, 163, 184, 0.2), transparent 34%),
    radial-gradient(circle at 12% 76%, rgba(203, 213, 225, 0.32), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f7f8fa 46%, #e9edf2 100%);
}

.hero-brand,
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-brand {
  width: 100%;
  order: 1;
}

.hero-content {
  order: 2;
}

.academy-logo {
  display: block;
  width: clamp(240px, 42%, 360px);
  height: auto;
  margin: 0 0 14px;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(11, 27, 63, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--navy-900);
  font-size: 3.125rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
  text-shadow: 0 18px 46px rgba(11, 27, 63, 0.12);
}

.hero-copy {
  max-width: 790px;
  margin: 16px 0 0;
  color: rgba(6, 16, 40, 0.78);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.65;
}

.hero-copy span {
  display: inline;
}

.hero-cta {
  display: inline-flex;
  min-height: 66px;
  margin-top: 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0 42px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--red-500), #a7071e);
  box-shadow:
    0 18px 44px rgba(230, 17, 47, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.hero-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 22px 52px rgba(230, 17, 47, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.countdown-wrap {
  order: 3;
  margin-top: 16px;
  margin-bottom: 34px;
  text-align: center;
}

.countdown-label {
  margin: 0 0 8px;
  color: rgba(6, 16, 40, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.countdown span {
  min-width: 74px;
  border: 1px solid rgba(11, 27, 63, 0.12);
  border-radius: 12px;
  padding: 7px 9px;
  color: rgba(6, 16, 40, 0.66);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 34px rgba(11, 27, 63, 0.09);
  backdrop-filter: blur(14px);
}

.countdown strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy-900);
  font-size: 1.08rem;
  font-weight: 950;
  line-height: 1;
}

.countdown-notice {
  margin: 10px 0 0;
  color: rgba(6, 16, 40, 0.68);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
}

.hero-image-space {
  display: flex;
  order: 4;
  width: min(100%, 1120px);
  min-height: 0;
  margin: 10px 0 0;
  flex-direction: column;
  align-items: center;
}

.hero-training-photo {
  display: block;
  width: min(100%, 1120px);
  max-height: 660px;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 1100px) {
  .hero {
    display: grid;
    width: min(100%, 1280px);
    min-height: calc(100svh - clamp(72px, 10vh, 104px));
    grid-template-columns: minmax(540px, 0.96fr) minmax(540px, 1.04fr);
    grid-template-rows: auto auto auto;
    column-gap: clamp(16px, 2vw, 28px);
    row-gap: clamp(18px, 2.6vh, 32px);
    align-items: center;
    text-align: left;
  }

  .hero-brand {
    grid-column: 1 / -1;
    grid-row: 1;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    grid-column: 1;
    grid-row: 2;
    align-items: flex-start;
    padding-left: clamp(28px, 3.2vw, 46px);
  }

  .academy-logo {
    width: clamp(260px, 28vw, 360px);
  }

  .hero h1 {
    max-width: 610px;
    font-size: clamp(3.25rem, 4.2vw, 4rem);
    line-height: 1.05;
  }

  .hero-copy {
    max-width: 600px;
  }

  .countdown-wrap {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: center;
    width: min(100%, 520px);
    margin-top: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .countdown {
    justify-content: center;
  }

  .hero-image-space {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    margin-top: 0;
    align-self: center;
  }

  .hero-training-photo {
    width: 100%;
    max-height: min(62svh, 620px);
  }
}

.sample-section {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 64px 0 96px;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.04)),
    rgba(3, 7, 22, 0.36);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
}

.section-kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.testimonial-card h2 {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4.6vw, 3.35rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
}

.testimonial-card h2 span {
  display: block;
}

.testimonial-copy span {
  display: block;
}

.testimonial-card p:not(.section-kicker):not(.attribution) {
  max-width: 920px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

.attribution {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.section-cta {
  display: inline-flex;
  min-height: 60px;
  margin-top: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 0 38px;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--red-500), #a7071e);
  box-shadow: 0 16px 42px rgba(230, 17, 47, 0.3);
}

.company-logo-section {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 42px 0 64px;
  overflow: hidden;
  color: var(--navy-900);
}

.company-logo-intro {
  width: min(calc(100% - 48px), 980px);
  margin: 0 auto 24px;
  text-align: center;
}

.company-logo-intro .section-kicker {
  color: rgba(11, 27, 63, 0.56);
}

.company-logo-intro h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.85rem, 4vw, 3.05rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
}

.company-logo-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.company-logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: company-logo-slide 46s linear infinite;
  will-change: transform;
}

.company-logo-marquee:hover .company-logo-track {
  animation-play-state: paused;
}

.company-logo-set {
  display: flex;
  gap: 18px;
  align-items: center;
  padding-right: 18px;
}

.company-logo-card {
  display: flex;
  width: clamp(170px, 15vw, 236px);
  height: 108px;
  flex: 0 0 clamp(170px, 15vw, 236px);
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.86)),
    #ffffff;
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

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

@keyframes company-logo-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.problem-band {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  justify-items: center;
  padding: 120px 32px 0;
  isolation: isolate;
}

.problem-band::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(37, 99, 235, 0.3), transparent 36%),
    radial-gradient(circle at 10% 72%, rgba(14, 165, 233, 0.16), transparent 40%),
    linear-gradient(135deg, #020817 0%, #06142f 42%, #0b1f4d 72%, #123264 100%);
}

.red-content-band {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  justify-items: center;
  padding: 120px 32px 32px;
  isolation: isolate;
}

.red-content-band::before,
.red-content-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.red-content-band::before {
  z-index: -2;
  background:
    radial-gradient(circle at 82% 18%, rgba(148, 163, 184, 0.2), transparent 34%),
    radial-gradient(circle at 12% 76%, rgba(203, 213, 225, 0.32), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f7f8fa 46%, #e9edf2 100%);
}

.red-content-band::after {
  z-index: -1;
  background:
    radial-gradient(ellipse at 52% 48%, transparent 0 34%, rgba(148, 163, 184, 0.08) 58%, rgba(226, 232, 240, 0.44) 100%),
    repeating-linear-gradient(115deg, rgba(15, 23, 42, 0.025) 0 1px, transparent 1px 14px);
  opacity: 0.5;
}

.red-content-band .section-kicker,
.red-content-band .schedule-label,
.red-content-band .benefit-copy span {
  color: rgba(15, 23, 42, 0.62);
}

.red-content-band .solution-content h2,
.red-content-band .benefits-intro h2,
.red-content-band .systems-content h3,
.red-content-band .comparison-intro h2,
.red-content-band .comparison-group h3,
.red-content-band .final-cta-content h2,
.red-content-band .schedule-detail-card strong,
.red-content-band .faq-card h3 {
  color: var(--navy-900);
}

.red-content-band .solution-copy,
.red-content-band .systems-intro-copy,
.red-content-band .benefit-copy p,
.red-content-band .comparison-intro-copy,
.red-content-band .testimonial-video-copy,
.red-content-band .schedule-intro-copy,
.red-content-band .schedule-detail-card p,
.red-content-band .schedule-notice-card p,
.red-content-band .faq-card p,
.red-content-band .final-cta-copy {
  color: rgba(15, 23, 42, 0.76);
}

.red-content-band .solution-list li,
.red-content-band .systems-grid span,
.red-content-band .benefit-copy h3,
.red-content-band .comparison-image-block p,
.red-content-band .testimonial-card-name,
.red-content-band .final-tick-cloud span {
  color: var(--navy-900);
}

.red-content-band .testimonial-card-text {
  color: rgba(15, 23, 42, 0.72);
}

.red-content-band .glass-card,
.red-content-band .solution-media,
.red-content-band .systems-media,
.red-content-band .comparison-image-block,
.red-content-band .schedule-detail-card,
.red-content-band .schedule-notice-card,
.red-content-band .faq-card,
.red-content-band .final-tick-cloud span {
  border-color: rgba(15, 23, 42, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.72)),
    rgba(255, 255, 255, 0.74);
  box-shadow:
    0 24px 70px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.red-content-band .testimonial-video-card {
  border-color: rgba(147, 197, 253, 0.34);
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 0%, rgba(96, 165, 250, 0.42), transparent 42%),
    linear-gradient(145deg, rgba(37, 99, 235, 0.98) 0%, rgba(29, 78, 216, 0.98) 44%, rgba(15, 23, 42, 0.98) 100%),
    #1d4ed8;
  box-shadow:
    0 28px 72px rgba(29, 78, 216, 0.28),
    0 14px 34px rgba(3, 7, 22, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.red-content-band .testimonial-video-card .testimonial-card-text {
  color: rgba(255, 255, 255, 0.78);
}

.red-content-band .testimonial-video-card .testimonial-card-name {
  color: #ffffff;
}

.red-content-band .schedule-date-card,
.red-content-band .schedule-deadline-card {
  background:
    radial-gradient(circle at top right, rgba(230, 17, 47, 0.14), transparent 48%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.76)),
    rgba(255, 255, 255, 0.78);
}

.awareness-section {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin-top: 0;
  padding: 0 0 104px;
  text-align: center;
}

.awareness-intro {
  max-width: 860px;
  margin: 0 auto;
}

.awareness-intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.awareness-intro p {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.6;
}

.cause-panel {
  margin-top: 42px;
}

.cause-heading {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cause-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.cause-card {
  min-height: 300px;
  padding: 24px;
  text-align: left;
}

.cause-visual {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background-image: url("/punca-utama-visuals.png");
  background-repeat: no-repeat;
  background-size: 200% 200%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cause-visual-sop {
  background-image: url("/cause-sop.png");
  background-size: cover;
  background-position: 54% 50%;
}

.cause-visual-maintenance {
  background-position: 100% 0;
}

.cause-visual-compliance {
  background-image: url("/cause-compliance.png");
  background-size: cover;
  background-position: 53% 44%;
}

.cause-visual-understanding {
  background-image: url("/cause-understanding.png");
  background-size: cover;
  background-position: 55% 50%;
}

.cause-number {
  display: inline-flex;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.cause-text {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.cause-text p {
  margin: 0;
  color: #ffffff;
  font-size: 1.04rem;
  font-weight: 850;
  line-height: 1.35;
}

.consequence-section {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  padding: 0 0 108px;
}

.consequence-intro {
  max-width: 1120px;
  margin: 0 auto 34px;
  text-align: center;
}

.consequence-intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
}

.consequence-intro h2 span {
  display: block;
}

.consequence-intro h2 .mobile-title-line {
  display: none;
}

@media (min-width: 760px) {
  .consequence-intro h2 span {
    white-space: nowrap;
  }
}

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

.consequence-card {
  overflow: hidden;
  padding: 18px;
}

.consequence-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  object-fit: contain;
  background: rgba(2, 8, 23, 0.28);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.consequence-card p {
  margin: 20px 10px 10px;
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 850;
  line-height: 1.35;
}

.solution-section {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100%, 1120px);
  gap: 28px;
  align-items: center;
  padding: 0 0 118px;
  text-align: center;
}

.solution-content {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.solution-content .section-kicker {
  margin-bottom: 16px;
}

.solution-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.85rem, 3.45vw, 3rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
}

.solution-content h2 span {
  display: block;
}

.solution-content h2 .solution-title-mobile {
  display: none;
}

@media (min-width: 760px) {
  .solution-content h2 span {
    white-space: nowrap;
  }
}

.solution-copy {
  max-width: 760px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.62;
}

.solution-list {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.solution-list li {
  position: relative;
  min-height: 58px;
  padding-left: 34px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.42;
}

.solution-list li::before {
  position: absolute;
  top: 0.08em;
  left: 0;
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #061414;
  font-size: 0.82rem;
  font-weight: 950;
  content: "✓";
  background: linear-gradient(135deg, #6eff9a, #13d56b);
  box-shadow: 0 0 24px rgba(35, 232, 117, 0.34);
}

.solution-body {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 26px;
  align-items: center;
}

.solution-media {
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(7, 13, 30, 0.6);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.solution-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  object-fit: cover;
}

.hrdf-claimable-card {
  display: grid;
  width: min(100%, 680px);
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 24px;
  padding: 16px 28px;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)),
    rgba(255, 255, 255, 0.76);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.hrdf-claimable {
  display: block;
  width: 150px;
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.22));
}

.hrdf-claimable-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hrdf-claimable-label {
  margin: 0;
  color: #10233a;
  font-size: clamp(1.55rem, 3.3vw, 2.65rem);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.hrdf-cta {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 36px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--red-500), #a7071e);
  box-shadow: 0 14px 30px rgba(230, 17, 47, 0.3);
}

.solution-standalone-cta {
  margin-top: 6px;
}

.benefits-section {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  padding: 0 0 92px;
}

.bonus-section {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  padding: 0 0 118px;
}

.audience-section {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  padding: 0 0 118px;
}

.comparison-section {
  position: relative;
  z-index: 1;
  width: min(100%, 1480px);
  padding: 0 0 118px;
}

.benefits-intro {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.benefits-intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4.4vw, 3.45rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.06;
}

.audience-title span {
  display: block;
}

.audience-title .audience-title-mobile {
  display: none;
}

.benefits-intro .audience-title {
  font-size: clamp(1.85rem, 3.35vw, 2.65rem);
  line-height: 1.08;
}

.systems-intro-copy {
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.55;
}

.systems-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 26px;
  align-items: center;
}

.systems-media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(7, 13, 30, 0.6);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.systems-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  object-fit: cover;
}

.systems-content {
  text-align: left;
}

.systems-content h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.1;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.systems-grid span {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 780;
  line-height: 1.28;
  background:
    linear-gradient(135deg, #ffffff 0%, #f8fafc 48%, #eef2f7 100%),
    rgba(255, 255, 255, 0.9);
  box-shadow:
    0 14px 34px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  overflow: hidden;
  padding: 14px;
}

.benefit-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.benefit-copy {
  padding: 18px 8px 8px;
  text-align: left;
}

.benefit-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.benefit-copy h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.24;
}

.benefit-copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
}

.benefits-cta {
  display: flex;
  width: max-content;
  margin: 32px auto 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.audience-card {
  overflow: hidden;
  padding: 14px;
}

.audience-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.audience-cta {
  display: flex;
  width: max-content;
  margin: 32px auto 0;
}

.comparison-intro-copy {
  max-width: 980px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.58;
}

.comparison-intro-copy span {
  display: block;
}

#comparison-title span {
  display: block;
  white-space: nowrap;
}

#comparison-title {
  font-size: clamp(1.72rem, 3.35vw, 2.7rem);
  line-height: 1.08;
}

.comparison-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.comparison-group h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(1.35rem, 2.6vw, 2.25rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
  text-align: center;
}

.comparison-block-list {
  display: grid;
  gap: 14px;
}

.comparison-bfsa .comparison-block-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.comparison-image-block {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  text-align: left;
}

.comparison-image-block p::before {
  position: absolute;
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}

.comparison-image-block {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  padding: 20px;
  border-color: rgba(255, 255, 255, 0.26);
  background:
    radial-gradient(circle at top right, rgba(236, 34, 49, 0.28), transparent 44%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(7, 13, 30, 0.62);
}

.comparison-image-block img {
  display: block;
  width: 100%;
  aspect-ratio: 1.18 / 1;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.comparison-image-block p {
  position: relative;
  margin: 24px 12px 12px;
  padding: 0 0 0 34px;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.36;
}

.comparison-image-block p::before {
  top: 0.06em;
  left: 0;
  color: #061414;
  content: "✓";
  background: linear-gradient(135deg, #6eff9a, #13d56b);
  box-shadow: 0 0 24px rgba(35, 232, 117, 0.28);
}

.comparison-cta {
  display: flex;
  width: max-content;
  margin: 32px auto 0;
}

.testimonial-video-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  justify-self: center;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 0 0 118px;
}

.testimonial-video-section .benefits-intro {
  width: min(calc(100% - 48px), 1120px);
  margin-right: auto;
  margin-left: auto;
}

.testimonial-video-copy {
  max-width: 760px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.6;
  text-align: center;
}

.testimonial-video-grid {
  display: flex;
  width: max-content;
  gap: 18px;
  align-items: stretch;
  padding-inline: clamp(16px, 2.4vw, 34px);
  animation: testimonial-slide 54s linear infinite;
  will-change: transform;
}

.testimonial-video-grid:hover {
  animation-play-state: paused;
}

.testimonial-video-card {
  position: relative;
  display: flex;
  overflow: hidden;
  width: clamp(286px, 30vw, 342px);
  min-height: 552px;
  flex: 0 0 clamp(286px, 30vw, 342px);
  flex-direction: column;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  color: #ffffff;
  cursor: default;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(5, 12, 31, 0.36);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.22);
}

@keyframes testimonial-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% + 100vw));
  }
}

.testimonial-video-frame {
  display: block;
  width: 100%;
  height: 304px;
  flex: 0 0 304px;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: #020817;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.testimonial-video-frame span,
.testimonial-video-frame iframe {
  width: 100% !important;
  height: 304px !important;
  border: 0 !important;
  border-radius: 14px;
}

.testimonial-video-frame iframe {
  display: block;
}

.testimonial-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 12px 8px;
}

.testimonial-card-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.5;
}

.testimonial-card-name {
  margin: auto 0 0;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.94rem;
  font-weight: 900;
}

.schedule-section {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  padding: 0 0 118px;
}

.schedule-intro-copy {
  max-width: 780px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.6;
  text-align: center;
}

.schedule-venue-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 22px;
  align-items: stretch;
}

.schedule-details-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.schedule-detail-card {
  min-height: 230px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(5, 12, 31, 0.42);
}

.schedule-date-card,
.schedule-deadline-card {
  background:
    radial-gradient(circle at top right, rgba(236, 34, 49, 0.28), transparent 48%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.04)),
    rgba(5, 12, 31, 0.46);
}

.schedule-label {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-detail-card strong {
  display: block;
  color: #ffffff;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 950;
  line-height: 1.08;
}

.schedule-detail-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.48;
}

.schedule-map-card,
.schedule-calendar-card {
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(circle at top right, rgba(230, 17, 47, 0.12), transparent 44%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05)),
    rgba(7, 14, 32, 0.46);
}

.schedule-map-frame {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  background: rgba(2, 8, 23, 0.12);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.14);
}

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

.schedule-map-copy {
  margin-top: 18px;
}

.schedule-map-copy strong,
.schedule-calendar-card h3 {
  display: block;
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 950;
  line-height: 1.08;
}

.schedule-map-copy p,
.schedule-calendar-intro {
  margin: 12px 0 0;
  color: rgba(15, 23, 42, 0.76);
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.5;
}

.schedule-calendar-intro strong {
  color: var(--navy-900);
}

.map-profile-link {
  display: inline-flex;
  min-height: 44px;
  margin-top: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: linear-gradient(135deg, #2563eb, #0f2e72);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.24);
}

.course-date-list {
  display: grid;
  gap: 12px;
  max-height: 416px;
  margin-top: 20px;
  overflow-y: auto;
  padding-right: 8px;
  overscroll-behavior: contain;
  scrollbar-color: rgba(37, 99, 235, 0.46) rgba(15, 23, 42, 0.08);
  scrollbar-width: thin;
}

.course-date-list::-webkit-scrollbar {
  width: 8px;
}

.course-date-list::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
}

.course-date-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.46);
}

.course-date-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(248, 250, 252, 0.64)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.course-date-item strong {
  display: block;
  color: var(--navy-900);
  font-size: 1.08rem;
  font-weight: 950;
  line-height: 1.2;
}

.course-date-item p {
  margin: 6px 0 0;
  color: rgba(15, 23, 42, 0.64);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.course-date-item [data-course-status] {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 12px;
  color: #0f2e72;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.12);
}

.course-date-item.is-active {
  border-color: rgba(230, 17, 47, 0.24);
  box-shadow: 0 18px 44px rgba(230, 17, 47, 0.12);
}

.course-date-item.is-active [data-course-status] {
  color: #8b0718;
  background: rgba(230, 17, 47, 0.13);
}

.course-date-item.is-complete {
  opacity: 0.62;
}

.course-date-item.is-complete strong {
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: rgba(230, 17, 47, 0.72);
}

.course-date-item.is-complete [data-course-status] {
  color: #14532d;
  background: rgba(34, 197, 94, 0.16);
}

.schedule-notice-card {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(circle at top left, rgba(35, 232, 117, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05)),
    rgba(7, 14, 32, 0.46);
}

.schedule-notice-card p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.schedule-notice-card .schedule-label {
  margin-bottom: 8px;
}

.schedule-cta {
  flex: 0 0 auto;
}

.faq-section {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 0 0 118px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-card {
  padding: 24px 26px;
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(5, 12, 31, 0.42);
}

.faq-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.05rem, 2vw, 1.36rem);
  font-weight: 950;
  line-height: 1.25;
}

.faq-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.58;
}

.final-cta-section {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 1040px);
  flex-direction: column;
  align-items: center;
  padding: 0 0 96px;
  text-align: center;
}

.final-cta-content {
  max-width: 880px;
}

.final-cta-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.3rem, 6vw, 4.7rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

.final-cta-copy {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.9vw, 1.22rem);
  font-weight: 650;
  line-height: 1.58;
}

.final-cta-image-placeholder {
  width: min(100%, 820px);
  margin: 34px auto 0;
}

.final-cta-image-placeholder img {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.final-cta-button {
  margin-top: 30px;
}

.final-tick-cloud {
  display: flex;
  max-width: 920px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.final-tick-cloud span {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 16px 10px 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05)),
    rgba(7, 14, 32, 0.38);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.final-tick-cloud span::before {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  color: #061414;
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 950;
  background: linear-gradient(135deg, #6eff9a, #13d56b);
  box-shadow: 0 0 24px rgba(35, 232, 117, 0.28);
}

.funnel-background {
  min-height: 100vh;
  justify-content: center;
}

.funnel-shell {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 920px);
  flex-direction: column;
  align-items: center;
  padding: 48px 0;
}

.funnel-logo-link {
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}

.funnel-logo {
  width: min(52vw, 280px);
  margin-bottom: 28px;
}

.funnel-card {
  width: 100%;
  padding: clamp(26px, 5vw, 52px);
}

.funnel-intro {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.funnel-intro h1,
.thank-you-card h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.05;
}

.funnel-intro p,
.thank-you-card p {
  max-width: 660px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.6;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 15px 16px;
  color: #ffffff;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(4, 10, 26, 0.64);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow:
    0 0 0 4px rgba(236, 34, 49, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lead-form input:invalid:not(:placeholder-shown),
.lead-form textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 91, 105, 0.78);
}

.form-wide,
.form-submit {
  grid-column: 1 / -1;
}

.form-submit {
  width: min(100%, 320px);
  margin: 10px auto 0;
  border: 0;
  cursor: pointer;
}

.pricing-page {
  align-content: start;
  gap: 28px;
  padding-top: clamp(44px, 8vh, 78px);
  color: var(--navy-900);
}

.pricing-hero {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  padding: 28px 0 12px;
  text-align: center;
}

.pricing-logo-link {
  display: inline-flex;
  margin-bottom: 8px;
}

.pricing-logo {
  width: clamp(220px, 28vw, 330px);
  margin-bottom: 0;
}

.pricing-hero .section-kicker {
  color: rgba(11, 27, 63, 0.56);
}

.pricing-hero h1 {
  max-width: 880px;
  margin: 0 auto;
  color: var(--navy-900);
  font-size: clamp(2.45rem, 5.4vw, 5rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.02;
}

.pricing-hero p:not(.section-kicker) {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(11, 27, 63, 0.72);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-weight: 650;
  line-height: 1.6;
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1120px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 4vw, 38px);
  color: var(--navy-900);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.86)),
    #ffffff;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
}

.pricing-card-featured {
  border-color: rgba(230, 17, 47, 0.22);
  box-shadow: 0 30px 86px rgba(230, 17, 47, 0.14);
}

.pricing-tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--red-500), #a7071e);
}

.pricing-card h2 {
  margin: 18px 0 0;
  color: var(--navy-900);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
}

.pricing-price {
  margin: 16px 0 0;
  color: var(--red-600);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 950;
  line-height: 1;
}

.checkout-price-stack {
  display: grid;
  gap: 6px;
  margin: 18px 0 0;
}

.checkout-price-old {
  width: fit-content;
  color: rgba(11, 27, 63, 0.46);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 900;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 0.12em;
  text-decoration-color: var(--red-600);
}

.checkout-price-current {
  color: var(--red-600);
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  font-weight: 950;
  line-height: 0.95;
}

.checkout-price-unit {
  color: rgba(11, 27, 63, 0.68);
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-copy {
  margin: 16px 0 0;
  color: rgba(11, 27, 63, 0.72);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.55;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  color: rgba(11, 27, 63, 0.82);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 28px;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 0.32em;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #ffffff 0 27%, transparent 30%),
    linear-gradient(135deg, #18d477, #08a95f);
  box-shadow: 0 8px 18px rgba(8, 169, 95, 0.22);
}

.pricing-cta,
.pricing-secondary-cta {
  align-self: stretch;
  margin-top: auto;
}

.pricing-card .pricing-cta,
.pricing-card .pricing-secondary-cta {
  margin-top: 28px;
}

.pricing-note {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 1120px);
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 38px;
  padding: clamp(24px, 4vw, 34px);
  color: var(--navy-900);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.86)),
    #ffffff;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.1);
}

.pricing-note h2 {
  max-width: 720px;
  margin: 6px 0 0;
  color: var(--navy-900);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 950;
  line-height: 1.12;
}

.pricing-note p {
  max-width: 740px;
  margin: 12px 0 0;
  color: rgba(11, 27, 63, 0.7);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.55;
}

.checkout-grid {
  align-items: stretch;
}

.checkout-single-grid {
  width: min(100%, 1120px);
  grid-template-columns: 1fr;
}

.checkout-single-grid .pricing-card {
  align-items: stretch;
}

.checkout-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.checkout-price-column {
  min-width: 0;
}

.checkout-steps {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding-left: clamp(24px, 3.4vw, 42px);
  border-left: 1px solid rgba(148, 163, 184, 0.22);
}

.checkout-steps h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 950;
  line-height: 1.08;
}

.checkout-steps p {
  margin: 0;
  color: rgba(11, 27, 63, 0.72);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.55;
}

.checkout-steps ul {
  margin-top: 6px;
}

.checkout-single-grid .pricing-cta {
  width: min(100%, 560px);
  align-self: center;
  margin: 32px auto 0;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1180px);
  grid-template-columns: 1.1fr 1.5fr auto;
  gap: 24px;
  margin: 26px 0 0;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 24px;
  color: var(--navy-900);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.88)),
    #ffffff;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.1);
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: 0.95rem;
  font-weight: 950;
}

.site-footer p {
  margin: 0 0 8px;
  color: rgba(11, 27, 63, 0.72);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
}

.site-footer nav {
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 190px;
}

.site-footer a {
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--red-600);
  outline: none;
}

.policy-page {
  align-content: center;
}

.policy-card {
  width: min(100%, 920px);
  padding: clamp(28px, 5vw, 48px);
  color: var(--navy-900);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.88)),
    #ffffff;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.1);
}

.policy-card h1 {
  margin: 0 0 18px;
  color: var(--navy-900);
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 950;
  line-height: 1.02;
}

.policy-card p {
  margin: 0 0 16px;
  color: rgba(11, 27, 63, 0.76);
  font-size: clamp(0.98rem, 1.7vw, 1.08rem);
  font-weight: 650;
  line-height: 1.62;
}

.policy-card .section-cta {
  margin-top: 14px;
}

.thank-you-shell {
  width: min(100%, 820px);
}

.thank-you-card {
  text-align: center;
}

@media (max-width: 640px) {
  .background {
    padding: 30px 24px 24px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.72rem;
  }

  .academy-logo {
    width: min(76vw, 260px);
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: 2.35rem;
    line-height: 1.12;
  }

  .hero-copy {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-copy span {
    display: block;
    white-space: nowrap;
  }

  .hero-cta {
    margin-top: 16px;
    width: min(100%, 330px);
    min-height: 62px;
    padding: 0 28px;
    white-space: normal;
  }

  .countdown {
    gap: 6px;
  }

  .countdown span {
    min-width: 66px;
    padding: 7px;
  }

  .countdown-notice {
    font-size: 0.74rem;
  }

  .countdown-wrap {
    margin-bottom: 0;
  }

  .hero-image-space {
    width: min(100%, 660px);
    margin-top: 8px;
    margin-bottom: 50px;
  }

  .hero-training-photo {
    width: min(100%, 560px);
    max-height: 380px;
  }

  .sample-section {
    padding: 44px 0 72px;
  }

  .company-logo-section {
    padding: 34px 0 54px;
  }

  .company-logo-intro {
    width: min(calc(100% - 36px), 520px);
    margin-bottom: 18px;
  }

  .company-logo-intro h2 {
    font-size: 1.72rem;
    line-height: 1.12;
  }

  .company-logo-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  }

  .company-logo-track {
    animation-duration: 40s;
  }

  .company-logo-set {
    gap: 12px;
    padding-right: 12px;
  }

  .company-logo-card {
    width: 150px;
    height: 82px;
    flex-basis: 150px;
    border-radius: 12px;
    padding: 12px;
  }

  .glass-card {
    border-radius: 18px;
  }

  .testimonial-card h2 {
    font-size: 1.85rem;
  }

  .testimonial-card p:not(.section-kicker):not(.attribution) {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .problem-band {
    padding: 90px 24px 0;
  }

  .red-content-band {
    padding: 90px 24px 24px;
  }

  .awareness-section {
    margin-top: 0;
    padding: 0 0 72px;
  }

  .awareness-intro h2 {
    font-size: 2.25rem;
  }

  .awareness-intro p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .cause-panel {
    margin-top: 32px;
  }

  .cause-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cause-card {
    min-height: 224px;
    padding: 20px;
  }

  .cause-visual {
    border-radius: 16px;
    margin-bottom: 16px;
  }

  .cause-text {
    gap: 12px;
  }

  .cause-text p {
    font-size: 0.98rem;
  }

  .consequence-section {
    padding: 0 0 76px;
  }

  .consequence-intro {
    margin-bottom: 24px;
  }

  .consequence-intro h2 {
    font-size: 1.62rem;
  }

  .consequence-intro h2 .desktop-title-line {
    display: none;
  }

  .consequence-intro h2 .mobile-title-line {
    display: block;
  }

  .consequence-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .consequence-card {
    padding: 12px;
  }

  .consequence-card img {
    border-radius: 14px;
  }

  .consequence-card p {
    margin: 16px 6px 6px;
    font-size: 1rem;
  }

  .solution-section {
    gap: 22px;
    padding: 0 0 76px;
  }

  .solution-content {
    text-align: center;
  }

  .solution-content h2 {
    font-size: clamp(1.24rem, 6vw, 1.42rem);
    line-height: 1.12;
  }

  .solution-content h2 .solution-title-desktop {
    display: none;
  }

  .solution-content h2 .solution-title-mobile {
    display: block;
  }

  .solution-copy {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .solution-list {
    gap: 11px;
    text-align: left;
  }

  .solution-body {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .solution-list li {
    font-size: 0.95rem;
  }

  .solution-media {
    border-radius: 20px;
    padding: 10px;
  }

  .solution-media img {
    border-radius: 14px;
  }

  .hrdf-claimable-card {
    width: min(100%, 360px);
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: center;
    padding: 18px;
    text-align: center;
  }

  .hrdf-claimable {
    width: min(100%, 210px);
  }

  .hrdf-claimable-label {
    font-size: clamp(1.45rem, 8vw, 1.85rem);
    white-space: normal;
  }

  .hrdf-claimable-content {
    justify-content: center;
    text-align: center;
  }

  .hrdf-cta {
    width: min(100%, 300px);
    padding: 0 28px;
    white-space: normal;
  }

  .benefits-section {
    padding: 0 0 64px;
  }

  .bonus-section {
    padding: 0 0 76px;
  }

  .audience-section {
    padding: 0 0 76px;
  }

  .comparison-section {
    width: min(100%, 1120px);
    padding: 0 0 76px;
  }

  .benefits-intro {
    margin-bottom: 24px;
  }

  .benefits-intro h2 {
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .benefits-intro .audience-title {
    font-size: clamp(1.12rem, 5.2vw, 1.42rem);
    line-height: 1.12;
  }

  .audience-title .audience-title-desktop {
    display: none;
  }

  .audience-title .audience-title-mobile {
    display: block;
  }

  .systems-intro-copy {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .systems-showcase {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .systems-media {
    border-radius: 20px;
    padding: 10px;
  }

  .systems-media img {
    border-radius: 14px;
  }

  .systems-content {
    text-align: center;
  }

  .systems-content h3 {
    font-size: 1.45rem;
  }

  .systems-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .systems-grid span {
    border-radius: 14px;
    font-size: 0.88rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefit-card {
    padding: 12px;
  }

  .benefit-card img {
    border-radius: 14px;
  }

  .benefit-copy {
    padding: 16px 6px 6px;
  }

  .benefit-copy h3 {
    font-size: 1.02rem;
  }

  .benefit-copy p {
    font-size: 0.9rem;
  }

  .benefits-cta {
    width: min(100%, 330px);
    margin-top: 22px;
    padding: 0 28px;
    white-space: normal;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .audience-card {
    padding: 12px;
  }

  .audience-card img {
    border-radius: 14px;
  }

  .audience-cta {
    width: min(100%, 330px);
    margin-top: 22px;
    padding: 0 28px;
    white-space: normal;
  }

  .comparison-intro-copy {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .comparison-intro-copy span {
    display: inline;
  }

  #comparison-title {
    font-size: clamp(1.08rem, 5.15vw, 1.32rem);
    line-height: 1.1;
  }

  .comparison-columns {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .comparison-group h3 {
    margin-bottom: 12px;
    font-size: clamp(1rem, 4.6vw, 1.18rem);
  }

  .comparison-block-list {
    gap: 14px;
  }

  .comparison-bfsa .comparison-block-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .comparison-image-block {
    gap: 0;
    border-radius: 14px;
    padding: 12px;
  }

  .comparison-image-block img {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
  }

  .comparison-image-block p {
    margin: 16px 6px 6px;
    padding-left: 24px;
    font-size: clamp(0.92rem, 4vw, 1.02rem);
    line-height: 1.35;
  }

  .comparison-image-block p::before {
    width: 16px;
    height: 16px;
    font-size: 0.62rem;
  }

  .comparison-cta {
    width: min(100%, 330px);
    margin-top: 22px;
    padding: 0 28px;
    white-space: normal;
  }

  .testimonial-video-section {
    padding: 0 0 76px;
  }

  .testimonial-video-copy {
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .testimonial-video-grid {
    gap: 14px;
    animation-duration: 48s;
  }

  .testimonial-video-card {
    width: min(82vw, 320px);
    min-height: auto;
    flex-basis: min(82vw, 320px);
    border-radius: 14px;
    padding: 8px;
  }

  .testimonial-video-frame {
    height: auto;
    flex-basis: auto;
    aspect-ratio: 4 / 5;
    border-radius: 10px;
  }

  .testimonial-video-frame span,
  .testimonial-video-frame iframe {
    height: auto !important;
    aspect-ratio: 4 / 5;
    border-radius: 10px;
  }

  .testimonial-card-copy {
    padding: 16px 8px 8px;
  }

  .testimonial-card-text {
    font-size: 0.9rem;
  }

  .testimonial-card-name {
    padding-top: 14px;
    font-size: 0.92rem;
  }

  .schedule-section {
    padding: 0 0 76px;
  }

  .schedule-intro-copy {
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .schedule-venue-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .schedule-map-card,
  .schedule-calendar-card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .schedule-map-frame {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }

  .schedule-map-copy strong,
  .schedule-calendar-card h3 {
    font-size: 1.42rem;
  }

  .schedule-map-copy p,
  .schedule-calendar-intro {
    font-size: 0.9rem;
  }

  .map-profile-link {
    width: 100%;
    padding: 0 18px;
  }

  .course-date-list {
    gap: 10px;
    margin-top: 16px;
  }

  .course-date-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }

  .course-date-item strong {
    font-size: 1rem;
  }

  .course-date-item [data-course-status] {
    width: max-content;
  }

  .schedule-details-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .schedule-detail-card {
    min-height: auto;
    padding: 20px 16px;
    border-radius: 14px;
  }

  .schedule-label {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }

  .schedule-detail-card p {
    margin-top: 12px;
    font-size: 0.9rem;
  }

  .schedule-notice-card {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    margin-top: 16px;
    padding: 20px 16px;
    border-radius: 14px;
  }

  .schedule-notice-card p {
    font-size: 0.9rem;
  }

  .schedule-cta {
    width: 100%;
    padding: 0 28px;
    white-space: normal;
  }

  .faq-section {
    padding: 0 0 76px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .faq-card h3 {
    font-size: 1.02rem;
  }

  .faq-card p {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .final-cta-section {
    padding: 0 0 72px;
  }

  .final-cta-content h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
    line-height: 1.02;
  }

  .final-cta-copy {
    margin-top: 16px;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .final-cta-image-placeholder {
    margin-top: 24px;
  }

  .final-cta-image-placeholder img {
    border-radius: 14px;
  }

  .final-cta-button {
    width: 100%;
    margin-top: 22px;
    padding: 0 28px;
    white-space: normal;
  }

  .final-tick-cloud {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .final-tick-cloud span {
    min-height: 42px;
    justify-content: flex-start;
    padding: 10px 14px 10px 40px;
    border-radius: 14px;
    font-size: 0.86rem;
  }

  .final-tick-cloud span::before {
    left: 12px;
    width: 18px;
    height: 18px;
    font-size: 0.68rem;
  }

  .testimonial-highlight-card {
    margin-top: 22px;
    padding: 20px 16px;
    border-radius: 14px;
  }

  .testimonial-highlight-copy {
    margin-top: 14px;
    font-size: 0.9rem;
  }

  .testimonial-highlight-name {
    margin-top: 14px;
    font-size: 0.92rem;
  }

  .funnel-shell {
    padding: 28px 0;
  }

  .funnel-logo {
    width: min(76vw, 250px);
    margin-bottom: 18px;
  }

  .funnel-card {
    padding: 24px;
  }

  .funnel-intro {
    margin-bottom: 22px;
  }

  .funnel-intro h1,
  .thank-you-card h1 {
    font-size: 2rem;
  }

  .funnel-intro p,
  .thank-you-card p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .lead-form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lead-form input,
  .lead-form textarea {
    border-radius: 14px;
    padding: 14px;
  }

  .pricing-page {
    gap: 18px;
    padding: 36px 18px 20px;
  }

  .pricing-hero {
    padding-top: 24px;
  }

  .pricing-logo {
    width: min(72vw, 250px);
  }

  .pricing-hero h1 {
    font-size: 2.25rem;
    line-height: 1.08;
  }

  .pricing-hero p:not(.section-kicker) {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .checkout-single-grid {
    width: min(100%, 520px);
  }

  .checkout-two-column {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .checkout-steps {
    margin-top: 28px;
    padding-top: 26px;
    padding-left: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
    border-left: 0;
  }

  .pricing-card {
    border-radius: 18px;
    padding: 22px 18px;
  }

  .pricing-card h2 {
    font-size: 1.55rem;
  }

  .pricing-price {
    font-size: 1.85rem;
  }

  .checkout-price-current {
    font-size: 3.15rem;
  }

  .checkout-price-old {
    font-size: 1.18rem;
  }

  .checkout-price-unit {
    font-size: 0.95rem;
  }

  .pricing-copy,
  .pricing-card ul,
  .pricing-note p,
  .checkout-steps p {
    font-size: 0.9rem;
  }

  .pricing-note {
    flex-direction: column;
    align-items: stretch;
    border-radius: 18px;
    padding: 22px 18px;
  }

  .pricing-note .section-cta {
    width: 100%;
    padding: 0 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 12px;
    border-radius: 18px;
    padding: 22px;
  }

  .site-footer nav {
    min-width: 0;
  }

  .policy-page {
    padding-top: 26px;
  }

  .policy-card {
    border-radius: 18px;
    padding: 24px;
  }
}

@media (max-width: 420px) {
  .hero-copy {
    font-size: 0.9rem;
    line-height: 1.55;
  }
}

@media (max-width: 360px) {
  .hero-copy {
    font-size: 0.82rem;
  }

  .consequence-intro h2 {
    font-size: 1.48rem;
  }

  .solution-content h2 {
    font-size: 1.18rem;
  }

  .solution-copy {
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .company-logo-track {
    animation: none;
  }
}
