:root {
  --purple: #6d28d9;
  --purple-600: #5b21b6;
  --purple-700: #4c1d95;
  --purple-light: #ede9fe;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --text: #0f172a;
  --muted: #475569;
  --border: #e2e8f0;
  --blue: #2563eb;
  --green: #16a34a;
  --amber: #f59e0b;
  --red: #dc2626;

  --radius: 18px;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  --shadow-soft: 0 8px 20px rgba(2, 6, 23, 0.06);
  --max: 1160px;
}
.kicker{
  display: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Inter,
    Arial,
    "Noto Sans",
    "Helvetica Neue",
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  margin: 0 0 12px;
}
small {
  color: var(--muted);
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  padding: 72px 0;
}
.section.soft {
  background: var(--bg-soft);
}
.section.tint {
  background: linear-gradient(180deg, #fff, var(--purple-light));
}
.hr {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}
.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--purple-light);
  color: var(--purple-700);
  font-weight: 600;
  font-size: 13px;
}
.kicker {
  color: var(--purple);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 13px;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 12px;
}
h1 {
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.02em;
}
h3 {
  font-size: 18px;
}
.lead {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--muted);
  max-width: 68ch;
}
.grid {
  display: grid;
  gap: 18px;
}
.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 920px) {
  .grid.two,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.card.flat {
  box-shadow: none;
}
.card .title {
  font-weight: 800;
  margin-bottom: 6px;
}
.meta {
  color: var(--muted);
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.06s ease,
    background 0.2s ease,
    border 0.2s ease;
  user-select: none;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn.primary {
  background: var(--purple);
  color: #fff;
}
.btn.primary:hover {
  background: var(--purple-600);
}
.btn.outline {
  background: #fff;
  color: var(--purple);
  border-color: rgba(109, 40, 217, 0.25);
}
.btn.outline:hover {
  background: var(--purple-light);
}
.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: transparent;
}
.btn.ghost:hover {
  background: rgba(2, 6, 23, 0.04);
}
.btn.full {
  width: 100%;
}

/* Button row utility: keep buttons on same line on small screens and truncate long text */
.btn-row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.btn-row .btn {
  min-width: 0;
}

@media (max-width: 920px) {
  .btn-row {
    flex-wrap: nowrap;
  }
  .btn-row .btn {
    flex: 1 1 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .btn-row.justify-end,
  .btn-row[style*="justify-content:flex-end"] {
    justify-content: flex-end;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--purple-light));
  border: 1px solid rgba(109, 40, 217, 0.25);
  box-shadow: 0 10px 20px rgba(109, 40, 217, 0.14);
  display: grid;
  place-items: center;
  color: var(--purple);
  font-weight: 900;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 16px;
}
.navlinks a {
  font-weight: 700;
  color: var(--text);
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
}
.navlinks a:hover {
  background: rgba(2, 6, 23, 0.04);
}
.navcta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.burger {
  display: none;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 10px 12px;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  border-radius: 2px;
}
.menu-icon {
  display: block;
  color: var(--text);
}

.ico svg {
  width: 20px;
  height: 20px;
  display: block;
  color: var(--purple);
}
.ico svg [stroke] {
  stroke: currentColor;
}
.ico svg [fill] {
  fill: currentColor;
}

.icon-svg {
  width: 1.25em;
  height: 1.25em;
  vertical-align: middle;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--purple-light);
  color: var(--purple);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.feature-card-inline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  column-gap: 14px;
  row-gap: 10px;
}

.feature-card-inline .feature-icon-box {
  margin-bottom: 0;
}

.feature-card-inline h3 {
  margin: 0;
  align-self: center;
}

.feature-card-inline .meta {
  grid-column: 1 / -1;
  margin: 0;
}

@media (max-width: 980px) {
  .navlinks {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
  /* On mobile show only the brand + burger; hide direct CTA buttons */
  .navcta > .btn {
    display: none;
  }
  .navcta .burger {
    display: inline-flex;
  }
}

/* Video modal styles */
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2200;
}
.video-modal.open {
  display: flex;
}
.video-modal .vm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,0.7);
}
.video-modal .vm-content {
  position: relative;
  /* Keep content centered with breathing room on all screens */
  width: min(1100px, calc(100% - 48px));
  margin: 24px;
  max-height: calc(100vh - 80px);
  padding: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
#video-modal-player {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 160px);
  border-radius: 12px;
  background: #000;
  display: block;
  object-fit: contain;
}
.vm-close {
  position: absolute;
  right: 8px;
  top: 8px;
  background: rgba(255,255,255,0.9);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

/* Thumbnail wrapper */
.video-thumb-wrapper {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.video-thumb {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: none;
  background: transparent;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.video-thumb-wrapper:focus {
  outline: 3px solid rgba(109,40,217,0.18);
}

.mobilemenu {
  display: none;
  border-top: 1px solid var(--border);
  padding: 12px 0 16px;
}
.mobilemenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
}
.mobilemenu a:hover {
  background: rgba(2, 6, 23, 0.04);
}
.mobilemenu .cta {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.hero {
  padding: 64px 0 28px;
  background:
    radial-gradient(
      1200px 420px at 20% 10%,
      rgba(109, 40, 217, 0.12),
      transparent 65%
    ),
    radial-gradient(
      900px 360px at 85% 20%,
      rgba(109, 40, 217, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, #fff, var(--bg-soft));
}
.hero-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero-wrap {
    grid-template-columns: 1fr;
  }
}
.hero-card {
  border-radius: 24px;
  border: 1px solid rgba(109, 40, 217, 0.18);
  background: linear-gradient(180deg, #fff, var(--purple-light));
  box-shadow: var(--shadow);
  padding: 18px;
}
.hero-media {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(109, 40, 217, 0.18);
  min-height: 280px;
  display: grid;
  place-items: center;
  position: relative;
}
.mock {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  border: 1px solid rgba(2, 6, 23, 0.08);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.12);
  background: #fff;
}
@media (max-width: 920px) {
  .hero-media {
    min-height: 180px;
  }
  .mock {
    max-width: min(360px, 92%);
  }
}

.mock img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}
.mock .top {
  height: 14px;
  background: var(--purple-light);
  border-bottom: 1px solid rgba(2, 6, 23, 0.06);
}
.mock .body {
  padding: 14px;
}
.pillrow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.pill {
  border: 1px solid rgba(109, 40, 217, 0.18);
  background: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
@media (max-width: 920px) {
  .stats {
    grid-template-columns: 1fr;
  }
}
.stat {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  background: #fff;
}
.stat .n {
  font-weight: 900;
  font-size: 20px;
}
.stat .t {
  color: var(--muted);
  font-size: 13px;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ico {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--purple-light);
  border: 1px solid rgba(109, 40, 217, 0.18);
  display: grid;
  place-items: center;
  color: var(--purple);
  font-weight: 900;
}
.feature .desc {
  color: var(--muted);
  font-size: 14px;
}

.video {
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
}
.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 920px) {
  .pricing {
    grid-template-columns: 1fr;
  }
}
.price-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.price-card.highlight {
  border-color: rgba(109, 40, 217, 0.35);
  box-shadow: 0 18px 50px rgba(109, 40, 217, 0.16);
}
.price {
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.02em;
}
.ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.ul li {
  margin: 8px 0;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 14px;
  background: #fff;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq .ans {
  color: var(--muted);
  margin-top: 8px;
}

.form {
  display: grid;
  gap: 12px;
}
.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  outline: none;
  font-weight: 700;
}
.input:focus {
  border-color: rgba(109, 40, 217, 0.45);
  box-shadow: 0 0 0 4px rgba(109, 40, 217, 0.12);
}
textarea.input {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 36px 0;
  background: #0b1020;
  color: #e5e7eb;
}
.footer a {
  color: #e5e7eb;
}
.footer .muted {
  color: #aab4c2;
}
.footergrid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 18px;
}
@media (max-width: 920px) {
  .footergrid {
    grid-template-columns: 1fr;
  }
}
.footer .brandline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}
.footer .logo {
  background: rgba(237, 233, 254, 0.12);
  border-color: rgba(237, 233, 254, 0.18);
  color: #ede9fe;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}
.footer li {
  margin: 10px 0;
}
.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.footer-social-link {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.18);
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.18);
  transition:
    transform 0.12s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.footer-social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(2, 6, 23, 0.22);
}
.footer-social-link img {
  width: 20px;
  height: 20px;
}
.footer .bottom {
  border-top: 1px solid rgba(226, 232, 240, 0.12);
  margin-top: 18px;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* Testimonials */
.testimonial {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.testimonial .testimonial-item {
  max-width: 44ch;
}
.testimonial-answer {
  font-size: 16px;
  color: var(--text);
  margin: 6px 0;
}
.testimonial-role {
  font-weight: 800;
  text-transform: capitalize;
}
.testimonial-school {
  font-weight: 700;
}

/* animation */
.testimonial-item {
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}
.testimonial-item.anim-out {
  opacity: 0;
  transform: translateY(10px);
}

.testimonial-indicators {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  justify-content: center;
}
.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}
.testi-dot.active {
  background: var(--purple);
  box-shadow: 0 4px 8px rgba(109, 40, 217, 0.15);
}

/* Decorative quotation marks for testimonials */
.testimonial {
  position: relative;
}
.testimonial-answer {
  position: relative;
  padding: 14px 18px;
}
.testimonial-answer::before {
  content: "“";
  position: absolute;
  left: 6px;
  top: -6px;
  font-size: 48px;
  color: rgba(109, 40, 217, 0.12);
  line-height: 1;
  pointer-events: none;
}

/* School video cards */
.school-video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  background: #000;
}
.card .meta {
  margin-top: 8px;
}
.testimonial-answer::after {
  content: "”";
  position: absolute;
  right: 6px;
  bottom: -6px;
  font-size: 48px;
  color: rgba(109, 40, 217, 0.12);
  line-height: 1;
  pointer-events: none;
}
@media (max-width: 480px) {
  .testimonial-answer::before,
  .testimonial-answer::after {
    font-size: 32px;
  }
}

/* Homepage refresh */
body.home-page {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(109, 40, 217, 0.08), transparent 30%),
    linear-gradient(180deg, #f5f7fb 0%, #ffffff 24%);
  overflow-x: hidden;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page .brand span {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.home-page .lead {
  color: #44516a;
}

.home-badge {
  background: rgba(109, 40, 217, 0.12);
  border: 1px solid rgba(109, 40, 217, 0.14);
  box-shadow: 0 12px 28px rgba(109, 40, 217, 0.08);
}

.home-hero {
  position: relative;
  padding: 84px 0 58px;
  overflow: clip;
  background:
    radial-gradient(circle at 15% 15%, rgba(109, 40, 217, 0.18), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(37, 99, 235, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), #eef3ff 78%, #ffffff 100%);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 82%);
  pointer-events: none;
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 30px;
  align-items: center;
}

.home-hero__content {
  position: relative;
  z-index: 1;
}

.home-hero__content > * {
  opacity: 0;
  animation: rise-in 0.75s ease forwards;
}

.home-hero__content > :nth-child(1) {
  animation-delay: 0.05s;
}

.home-hero__content > :nth-child(2) {
  animation-delay: 0.12s;
}

.home-hero__content > :nth-child(3) {
  animation-delay: 0.2s;
}

.home-hero__content > :nth-child(4) {
  animation-delay: 0.28s;
}

.home-hero__content > :nth-child(5) {
  animation-delay: 0.36s;
}

.home-hero__content > :nth-child(6) {
  animation-delay: 0.44s;
}

.home-lead {
  max-width: 34rem;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.home-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.home-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(109, 40, 217, 0.12);
  color: #364152;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.hero-metric {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
}

.hero-metric strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.hero-metric span {
  color: #536176;
  font-size: 14px;
}

.home-hero__stage {
  position: relative;
  min-height: 620px;
  opacity: 0;
  animation: rise-in 0.9s ease 0.18s forwards;
}

.stage-panel {
  position: relative;
  z-index: 1;
  padding: 28px;
  border-radius: 34px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(237, 233, 254, 0.92));
  border: 1px solid rgba(109, 40, 217, 0.18);
  box-shadow: 0 30px 80px rgba(76, 29, 149, 0.16);
}

.stage-panel h2 {
  max-width: 12ch;
  margin-bottom: 10px;
}

.stage-panel p {
  max-width: 40ch;
  color: #4a5871;
}

.stage-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  color: #4c1d95;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-media {
  margin-top: 22px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(109, 40, 217, 0.16);
  background: linear-gradient(180deg, #ede9fe, #ffffff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.stage-media img {
  width: 100%;
  height: auto;
}

.stage-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.stage-list__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.stage-list__item strong,
.stage-list__item span {
  display: block;
}

.stage-list__item span {
  color: #556277;
  font-size: 14px;
}

.stage-list__dot {
  flex: none;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 0 0 6px rgba(109, 40, 217, 0.12);
}

.floating-note {
  position: absolute;
  width: 220px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(11, 16, 32, 0.94);
  color: #eef2ff;
  box-shadow: 0 22px 50px rgba(2, 6, 23, 0.22);
  animation: hero-float 7s ease-in-out infinite;
}

.floating-note strong {
  display: block;
  line-height: 1.4;
}

.floating-note__title {
  display: inline-flex;
  margin-bottom: 8px;
  color: #c4b5fd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-note--top {
  top: 54px;
  right: -20px;
}

.floating-note--bottom {
  left: -28px;
  bottom: 54px;
  animation-delay: -2s;
}

.impact-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.impact-card {
  opacity: 0;
  padding: 20px;
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
  animation: rise-in 0.72s ease forwards;
}

.impact-card:nth-child(1) {
  animation-delay: 0.15s;
}

.impact-card:nth-child(2) {
  animation-delay: 0.24s;
}

.impact-card:nth-child(3) {
  animation-delay: 0.33s;
}

.impact-card:nth-child(4) {
  animation-delay: 0.42s;
}

.impact-card__label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(109, 40, 217, 0.1);
  color: #4c1d95;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-card p {
  margin: 0;
  color: #44516a;
}

.home-section,
.workflow-section,
.proof-section,
.signal-section,
.home-cta {
  position: relative;
}

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

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: end;
}

.section-heading__actions {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.outcome-card {
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.outcome-card:hover {
  transform: translateY(-4px);
  border-color: rgba(109, 40, 217, 0.22);
  box-shadow: 0 28px 48px rgba(109, 40, 217, 0.12);
}

.outcome-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.12), rgba(37, 99, 235, 0.1));
  color: var(--purple);
}

.outcome-card p {
  margin: 0;
  color: #4e5b71;
}

.workflow-section {
  background:
    radial-gradient(circle at 0% 0%, rgba(109, 40, 217, 0.08), transparent 22%),
    linear-gradient(180deg, #f7f8fc, #f3f6ff);
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: center;
}

.workflow-steps {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.workflow-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.workflow-step h3 {
  margin-bottom: 8px;
}

.workflow-step p {
  margin: 0;
  color: #4e5b71;
}

.workflow-step__index {
  flex: none;
  min-width: 58px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--purple);
}

.workflow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.workflow-panel {
  position: relative;
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(196, 181, 253, 0.22), transparent 28%),
    linear-gradient(180deg, #0f172a 0%, #24104c 100%);
  color: #f8fafc;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.2);
  overflow: hidden;
}

.workflow-panel::before {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.28), transparent 70%);
}

.workflow-panel__header {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  max-width: 28rem;
}

.workflow-panel__eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ddd6fe;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workflow-panel__media {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.workflow-panel__media img {
  width: 100%;
  height: auto;
}

.workflow-panel__footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.workflow-panel__footer span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 700;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.proof-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border-radius: 30px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.proof-card__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.proof-card__tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(109, 40, 217, 0.1);
  color: #4c1d95;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-card .video-thumb-wrapper,
.proof-image {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(109, 40, 217, 0.16);
  background: linear-gradient(180deg, #f2efff, #ffffff);
}

.proof-card p {
  margin: 0;
  color: #4e5b71;
}

.signal-section {
  background:
    radial-gradient(circle at left top, rgba(109, 40, 217, 0.1), transparent 24%),
    linear-gradient(180deg, #faf8ff, #f1f5ff);
}

.signal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.signal-stack {
  display: grid;
  gap: 16px;
}

.signal-card {
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(10px);
}

.signal-card__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-card p {
  margin: 0;
  color: #4e5b71;
}

.cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  padding: 30px 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(109, 40, 217, 0.24), transparent 24%),
    linear-gradient(120deg, #0b1020 0%, #21123d 100%);
  color: #f8fafc;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
}

.cta-banner .lead {
  max-width: 42ch;
  color: rgba(226, 232, 240, 0.82);
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-banner .btn.outline {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
}

.cta-banner .btn.outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1120px) {
  .home-hero__grid,
  .workflow-grid,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .home-hero__stage {
    min-height: auto;
    max-width: 740px;
    margin: 0 auto;
  }

  .floating-note--top {
    right: 8px;
  }

  .floating-note--bottom {
    left: 8px;
  }

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

  .section-heading--split {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .home-hero {
    padding: 68px 0 44px;
  }

  .home-actions,
  .workflow-actions,
  .cta-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-actions .btn,
  .workflow-actions .btn,
  .cta-banner__actions .btn {
    width: 100%;
  }

  .home-trust span {
    width: 100%;
    justify-content: center;
  }

  .hero-metrics,
  .impact-strip,
  .outcome-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .home-hero__stage {
    display: grid;
    gap: 14px;
  }

  .floating-note {
    position: static;
    width: auto;
    animation: none;
  }

  .stage-panel,
  .workflow-panel,
  .cta-banner {
    padding: 22px;
  }

  .workflow-step,
  .proof-card__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .home-page .btn {
    width: 100%;
  }

  .hero-metric,
  .impact-card,
  .outcome-card,
  .workflow-step,
  .proof-card,
  .signal-card {
    padding: 18px;
    border-radius: 24px;
  }

  .stage-panel h2 {
    max-width: none;
  }
}

/* Test guide page */
body.test-guide-page {
  background:
    radial-gradient(circle at top left, rgba(109, 40, 217, 0.08), transparent 28%),
    linear-gradient(180deg, #f7f8fc 0%, #ffffff 24%);
}

.guide-hero {
  position: relative;
  padding-top: 60px;
  overflow: clip;
  background:
    radial-gradient(circle at 15% 12%, rgba(109, 40, 217, 0.15), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(37, 99, 235, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), #eef3ff 86%, #ffffff 100%);
}

.guide-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 80%);
  pointer-events: none;
}

.guide-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: center;
}

.guide-hero__content {
  max-width: 640px;
}

.guide-hero__content .lead {
  color: #44516a;
}

.guide-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.guide-overview {
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(109, 40, 217, 0.18);
  background:
    radial-gradient(circle at top right, rgba(196, 181, 253, 0.18), transparent 24%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(237, 233, 254, 0.9));
  box-shadow: 0 28px 72px rgba(76, 29, 149, 0.14);
}

.guide-overview__header {
  display: grid;
  gap: 8px;
}

.guide-overview__header strong {
  font-size: 24px;
  line-height: 1.2;
}

.guide-overview__eyebrow,
.guide-summary-card__eyebrow,
.guide-promo-card__eyebrow,
.credential-card__eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-overview__eyebrow,
.guide-summary-card__eyebrow,
.guide-promo-card__eyebrow {
  background: rgba(109, 40, 217, 0.1);
  color: #4c1d95;
}

.guide-overview__list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.guide-overview__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.guide-overview__item strong,
.guide-overview__item span {
  display: block;
}

.guide-overview__item span {
  color: #556277;
  font-size: 14px;
}

.guide-overview__index {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #ffffff;
  font-weight: 800;
}

.guide-overview__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.guide-overview__footer span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(109, 40, 217, 0.12);
  color: #3f4a5d;
  font-size: 14px;
  font-weight: 700;
}

.guide-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.guide-summary-card,
.guide-note-card {
  padding: 24px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.guide-summary-card p,
.guide-note-card p {
  margin: 0;
  color: #4e5b71;
}

.test-steps {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.test-step {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.test-step--reverse .test-step__content {
  order: 2;
}

.test-step--reverse .test-step__media {
  order: 1;
}

.test-step__label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(109, 40, 217, 0.1);
  color: #4c1d95;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.test-step__content p {
  margin: 0;
  color: #4e5b71;
  font-size: 16px;
}

.test-step__media {
  min-width: 0;
  padding: 20px;
  border-radius: 28px;
  border: 1px solid rgba(109, 40, 217, 0.16);
  background: linear-gradient(180deg, #f4f1ff, #ffffff);
  display: grid;
  place-items: center;
}

.test-step__media img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.test-step__media--phone img {
  max-width: 340px;
  margin: 0 auto;
}

.test-step__media--dashboard img {
  box-shadow: none;
}

.qr-showcase {
  gap: 18px;
  text-align: center;
}

.qr-frame {
  width: min(100%, 430px);
  padding: 18px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}

.qr-frame img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: none;
}

.qr-caption {
  margin: 0;
  color: #4e5b71;
  font-size: 15px;
  font-weight: 700;
}

.sync-visual {
  width: 100%;
  max-width: 520px;
  display: grid;
  gap: 16px;
}

.sync-card {
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(135deg, #111c3d, #34185e);
  color: #f8fafc;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.2);
}

.sync-card__line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.sync-card__line span {
  color: #c4b5fd;
  font-size: 14px;
  font-weight: 700;
}

.sync-progress {
  height: 12px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.sync-progress span {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8b5cf6, #60a5fa);
}

.sync-list {
  display: grid;
  gap: 12px;
}

.sync-list__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.sync-list__item strong,
.sync-list__item span {
  display: block;
}

.sync-list__item span {
  color: #556277;
  font-size: 14px;
}

.sync-list__dot {
  flex: none;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 0 0 6px rgba(109, 40, 217, 0.12);
}

.credential-card {
  margin-top: 20px;
  padding: 22px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(109, 40, 217, 0.24), transparent 26%),
    linear-gradient(135deg, #0b1020, #22123f);
  color: #f8fafc;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.18);
}

.credential-card__eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: #ddd6fe;
}

.credential-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.credential-card__item {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.credential-card__item span {
  display: block;
  color: rgba(226, 232, 240, 0.78);
  font-size: 13px;
}

.credential-card__item strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
  line-height: 1.2;
  word-break: break-word;
}

.guide-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.guide-note-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.12), rgba(37, 99, 235, 0.1));
  color: var(--purple);
}

.guide-navigation-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  padding: 30px 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(109, 40, 217, 0.24), transparent 24%),
    linear-gradient(120deg, #0b1020 0%, #21123d 100%);
  color: #f8fafc;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
}

.guide-navigation-banner .lead {
  color: rgba(226, 232, 240, 0.82);
  max-width: 42ch;
}

.guide-navigation-banner__actions,
.guide-promo-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.guide-navigation-banner .btn.outline {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
}

.guide-navigation-banner .btn.outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.guide-promo-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 32px;
  padding: 26px 28px;
  border-radius: 30px;
  border: 1px solid rgba(109, 40, 217, 0.16);
  background:
    radial-gradient(circle at top right, rgba(196, 181, 253, 0.16), transparent 22%),
    linear-gradient(135deg, rgba(109, 40, 217, 0.08), rgba(37, 99, 235, 0.05));
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.guide-promo-card h2 {
  margin-top: 10px;
}

.guide-promo-card .lead {
  margin-bottom: 0;
  color: #4e5b71;
}

@media (max-width: 1120px) {
  .guide-hero__grid,
  .test-step,
  .guide-summary-grid,
  .guide-note-grid {
    grid-template-columns: 1fr;
  }

  .test-step--reverse .test-step__content,
  .test-step--reverse .test-step__media {
    order: initial;
  }

  .guide-navigation-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .guide-hero {
    padding-top: 48px;
  }

  .guide-hero__actions,
  .guide-navigation-banner__actions,
  .guide-promo-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .guide-hero__actions .btn,
  .guide-navigation-banner__actions .btn,
  .guide-promo-card__actions .btn {
    width: 100%;
  }

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

  .test-step,
  .guide-overview,
  .guide-summary-card,
  .guide-note-card,
  .guide-navigation-banner {
    padding: 22px;
  }

  .credential-card__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .guide-overview__header strong {
    font-size: 22px;
  }

  .test-step__media {
    padding: 16px;
  }
}
