/* Homepage-only styles: base resets, utilities, hero, logos, stats, method, finder, courses, categories, testimonials, guarantee, FAQ, final CTA. Loads only on the homepage (Bootstrap is dequeued there). */

/* ============ BASE ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -.005em;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--brand-teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============ REVEAL (extra delays used only on the homepage) ============ */
.d5 {
  transition-delay: 400ms;
}

.d6 {
  transition-delay: 480ms;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

/* ============ UTILS ============ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-pill);
  padding: 7px 14px 7px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}

.pill .stars {
  color: var(--brand-amber);
  letter-spacing: 1px;
  font-size: 11px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-pill);
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: all 300ms var(--ease);
  letter-spacing: -.01em;
  white-space: nowrap;
}

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

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--brand-teal-dark);
}

.btn-lime {
  background: var(--brand-lime);
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn-lime:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--bg);
}

.btn-white {
  background: var(--bg);
  color: var(--ink);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-soft);
  color: var(--ink-2);
  border-radius: var(--r-pill);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
}

.serif-i {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.01em;
}

/* ============ HERO ============ */
.hero {
  background: var(--brand-lime);
  position: relative;
  overflow: hidden;
  padding: 80px 32px 100px;
  border-bottom: 1.5px solid var(--ink);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, .4) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(157, 214, 79, .5) 0%, transparent 40%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  min-height: 640px;
}

.hero-left {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding-top: 40px;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-pill);
  padding: 8px 18px 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 32px;
  box-shadow: 3px 3px 0 var(--ink);
}

.hero-trust .stars {
  color: var(--brand-amber);
  letter-spacing: 1px;
  font-size: 12px;
}

.hero-trust b {
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(48px, 6.2vw, 82px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.035em;
  color: var(--ink);
  margin-bottom: 28px;
}

.hero h1 .serif-accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.01em;
  display: inline-block;
  position: relative;
}

.hero h1 .underline {
  position: relative;
  display: inline-block;
}

.hero h1 .underline svg {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -12px;
  width: 108%;
  height: 18px;
}

.hero-lede {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-2);
  font-weight: 400;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* ============ HERO SEARCH (combobox w/ live dropdown) ============ */
.hero-search-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-search-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-pill);
  padding: 5px 5px 5px 20px;
  box-shadow: 3px 3px 0 var(--ink);
  width: 100%;
  transition: box-shadow 200ms var(--ease), transform 200ms var(--ease);
}

.hero-search-pill:focus-within {
  box-shadow: 5px 5px 0 var(--brand-teal);
  transform: translate(-1px, -1px);
}

.hero-search-pill > svg {
  color: var(--ink-3);
  flex-shrink: 0;
}

.hero-search-pill input {
  flex: 1;
  min-width: 0;
  border: none;
  background: none;
  outline: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 12px 0;
  letter-spacing: -.005em;
}

.hero-search-pill input::-webkit-search-cancel-button,
.hero-search-pill input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.hero-search-pill input::placeholder {
  color: var(--ink-4);
  font-weight: 400;
}

.hero-search-pill .hero-search-kbd {
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-4);
  background: var(--bg-soft);
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid var(--rule);
}

.hero-search-pill:focus-within .hero-search-kbd {
  display: none;
}

.hero-search-pill .hero-search-clear {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--bg-soft);
  border: 0;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  color: var(--ink-3);
  cursor: pointer;
  transition: background 180ms, color 180ms;
}

.hero-search-pill .hero-search-clear:hover {
  background: var(--ink);
  color: var(--bg);
}

.hero-search-pill .hero-search-submit {
  flex-shrink: 0;
  background: var(--ink);
  color: var(--bg);
  border: none;
  border-radius: var(--r-pill);
  padding: 11px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 300ms;
}

.hero-search-pill .hero-search-submit:hover {
  background: var(--brand-teal-dark);
}

/* ============ HERO SEARCH — DROPDOWN ============
 * Uses position: fixed so the panel can escape .hero { overflow: hidden }
 * (which exists to clip the hero-proto-wrap composition graphic). The
 * exact top/left/width/max-height is set by hero-search.js from the
 * pill's bounding rect — see positionDropdown() there. */
.hero-search-dropdown {
  position: fixed;
  z-index: 100;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-lg);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 10px;
  overflow-y: auto;
  overscroll-behavior: contain;
  animation: heroDropdownEnter 180ms var(--ease) both;
}

@keyframes heroDropdownEnter {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-search-hit {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
  transition: background 140ms;
}

.hero-search-hit:hover,
.hero-search-hit.active {
  background: var(--bg-soft);
}

.hero-search-hit .hit-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-4);
  width: 24px;
  text-align: center;
  line-height: 1;
}

.hero-search-hit:hover .hit-mark,
.hero-search-hit.active .hit-mark {
  color: var(--brand-teal);
}

.hero-search-hit .hit-body {
  min-width: 0;
}

.hero-search-hit .hit-title {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -.005em;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-search-hit .hit-title mark {
  background: var(--brand-lime);
  color: var(--ink);
  padding: 0 2px;
  border-radius: 2px;
  font-weight: 700;
}

.hero-search-hit .hit-meta {
  font-size: 11.5px;
  color: var(--ink-4);
  margin-top: 2px;
  letter-spacing: .02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-search-hit .hit-meta .hit-rating {
  color: var(--brand-amber, #F69C08);
  font-weight: 600;
  margin-right: 6px;
}

.hero-search-hit .hit-go {
  flex-shrink: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-4);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 160ms, transform 160ms, color 160ms;
}

.hero-search-hit:hover .hit-go,
.hero-search-hit.active .hit-go {
  opacity: 1;
  transform: translateX(0);
  color: var(--brand-teal);
}

.hero-search-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding: 12px 14px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  color: var(--ink-3);
  text-decoration: none;
  letter-spacing: .02em;
}

.hero-search-all b {
  color: var(--brand-teal);
  font-weight: 600;
  margin-left: 4px;
}

.hero-search-all:hover {
  color: var(--ink);
}

.hero-search-empty {
  padding: 28px 20px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-3);
  font-family: var(--serif);
  font-style: italic;
}

.hero-search-empty .empty-q {
  color: var(--ink);
  font-style: normal;
  font-weight: 600;
  font-family: var(--sans);
}

.hero-search-empty a {
  display: inline-block;
  margin-top: 8px;
  color: var(--brand-teal);
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
}

/* ============ HERO SEARCH — SUGGESTION PILLS ============ */
.hero-search-suggest {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
}

.hero-search-suggest-label {
  color: var(--ink-4);
  font-weight: 600;
  letter-spacing: .04em;
  margin-right: 4px;
}

.hero-search-suggest-btn {
  padding: 5px 12px;
  background: transparent;
  border: 1px solid var(--rule-2);
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: background 180ms, border-color 180ms, color 180ms;
}

.hero-search-suggest-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.hero-signals {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  margin-top: 8px;
}

.hero-signals .sig {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-signals svg {
  color: var(--ink);
}

/* HERO PROTOTYPE COMPOSITION (scoped) */
.hero-proto-wrap {
  user-select: none;
  -webkit-user-select: none;
  --hp-window-bg: rgba(255, 255, 255, 0.7);
  --hp-card-bg: #ffffff;
  --hp-text-dark: #0A0E14;
  --hp-text-gray: #6b7280;
  --hp-border-light: #e5e7eb;
  --hp-primary: var(--brand-teal);
  --hp-primary-soft: rgba(0, 137, 172, .12);
  --hp-secondary: var(--brand-teal-dark);
  --hp-accent: var(--brand-lime-deep);
  --hp-warning: #f59e0b;
  --hp-scale: 0.82;
  width: calc(1000px * var(--hp-scale));
  height: calc(700px * var(--hp-scale));
  position: absolute;
  top: 80px;
  right: -120px;
  z-index: 3;
  color: var(--hp-text-dark);
}

.hero-proto-wrap .hero-composition {
  position: absolute;
  top: 0;
  left: 0;
  width: 1000px;
  height: 700px;
  transform-origin: top left;
  transform: scale(var(--hp-scale));
}

@media (max-width: 1320px) {
  .hero-proto-wrap {
    --hp-scale: 0.74;
    right: -100px;
  }
}

@media (max-width: 1180px) {
  .hero-proto-wrap {
    --hp-scale: 0.66;
    right: -80px;
  }
}

@media (max-width: 1040px) {
  .hero-proto-wrap {
    --hp-scale: 0.58;
    right: -60px;
  }
}

/* Pass-rate badge */
.hero-proto-wrap .pass-sticker {
  position: absolute;
  top: -53px;
  left: 100px;
  width: 150px;
  height: 150px;
  background: var(--ink);
  color: var(--brand-lime);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid var(--ink);
  box-shadow: 0 18px 40px rgba(10, 14, 20, .25);
  z-index: 40;
}

.hero-proto-wrap .pass-sticker b {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  color: var(--brand-lime);
}

.hero-proto-wrap .pass-sticker span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--brand-lime);
}

.hero-proto-wrap .main-window {
  position: absolute;
  top: 40px;
  left: 80px;
  width: 820px;
  height: 560px;
  background: var(--hp-window-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(20, 89, 118, .12), 0 4px 12px rgba(20, 89, 118, .06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-proto-wrap .window-header {
  height: 44px;
  background: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  padding: 0 18px;
  gap: 8px;
}

.hero-proto-wrap .mac-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.hero-proto-wrap .mac-dot.red {
  background: #ff5f57;
}

.hero-proto-wrap .mac-dot.yellow {
  background: #febc2e;
}

.hero-proto-wrap .mac-dot.green {
  background: #28c840;
}

.hero-proto-wrap .window-body {
  display: flex;
  flex: 1;
}

.hero-proto-wrap .window-sidebar {
  width: 210px;
  background: rgba(255, 255, 255, 0.4);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  padding: 28px 16px;
}

.hero-proto-wrap .sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--hp-text-gray);
}

.hero-proto-wrap .sidebar-item.active {
  background: var(--hp-primary-soft);
  color: var(--hp-primary);
}

.hero-proto-wrap .sidebar-icon {
  width: 18px;
  height: 18px;
  background: currentColor;
  opacity: 0.9;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.hero-proto-wrap .window-content {
  flex: 1;
  padding: 32px 40px;
  opacity: 0.7;
}

.hero-proto-wrap .window-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--hp-text-dark);
  margin-bottom: 6px;
}

.hero-proto-wrap .window-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--hp-primary);
}

.hero-proto-wrap .window-subtitle {
  font-size: 13px;
  font-weight: 500;
  color: var(--hp-text-gray);
  margin-bottom: 20px;
}

.hero-proto-wrap .content-placeholder {
  width: 100%;
  height: 200px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--hp-border-light);
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  padding: 18px;
}

.hero-proto-wrap .cal-cell {
  background: #f8fafb;
  border-radius: 5px;
  height: 26px;
}

.hero-proto-wrap .cal-cell.active {
  background: rgba(0, 137, 172, .18);
}

.hero-proto-wrap .cal-cell.hot {
  background: var(--brand-lime-deep);
  opacity: .9;
}

.hero-proto-wrap .cal-cell.header {
  background: transparent;
  height: 18px;
  margin-bottom: 8px;
  border-bottom: 2px solid #e5e7eb;
  font-size: 10px;
  color: var(--hp-text-gray);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
}

.hero-proto-wrap .content-fake-row {
  width: 100%;
  height: 60px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--hp-border-light);
  margin-top: 14px;
}

/* Floating widgets */
.hero-proto-wrap .widget {
  position: absolute;
  background: var(--hp-card-bg);
  border-radius: 18px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(20, 89, 118, .14);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 10;
}

/* Widget 1 — Readiness */
.hero-proto-wrap .widget-readiness {
  top: 70px;
  left: 0;
  width: 280px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 20;
}

.hero-proto-wrap .readiness-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--hp-text-dark);
  width: 100%;
  text-align: center;
  letter-spacing: -.01em;
}

.hero-proto-wrap .progress-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: conic-gradient(var(--hp-primary) 0%, var(--hp-accent) 85%, #f3f4f6 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.hero-proto-wrap .progress-inner {
  width: 124px;
  height: 124px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-proto-wrap .prog-percent {
  font-size: 40px;
  font-weight: 700;
  color: var(--hp-text-dark);
  line-height: 1.1;
  letter-spacing: -.03em;
}

.hero-proto-wrap .prog-label {
  font-size: 11px;
  color: var(--hp-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-proto-wrap .widget-readiness-footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hp-text-dark);
}

.hero-proto-wrap .widget-readiness-footer svg {
  width: 16px;
  height: 16px;
  color: var(--hp-primary);
}

/* Widget 2 — Category Mastery */
.hero-proto-wrap .widget-mastery {
  top: 20px;
  right: 15px;
  width: 340px;
  padding: 24px;
  z-index: 15;
}

.hero-proto-wrap .mastery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.hero-proto-wrap .mastery-title-text {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.01em;
}

.hero-proto-wrap .mastery-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-proto-wrap .mastery-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-proto-wrap .mastery-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-proto-wrap .mastery-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-proto-wrap .mastery-icon-box.green {
  background: #d9f89f;
  color: #3d6b0b;
}

.hero-proto-wrap .mastery-icon-box.blue {
  background: rgba(0, 137, 172, .15);
  color: var(--hp-primary);
}

.hero-proto-wrap .mastery-icon-box.yellow {
  background: #fef3c7;
  color: #d97706;
}

.hero-proto-wrap .mastery-text h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: -.005em;
}

.hero-proto-wrap .mastery-text p {
  font-size: 12px;
  color: var(--hp-text-gray);
}

.hero-proto-wrap .mastery-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.hero-proto-wrap .mastery-badge.master {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
}

.hero-proto-wrap .mastery-badge.proficient {
  background: rgba(0, 137, 172, .08);
  color: var(--hp-primary);
  border: 1px solid rgba(0, 137, 172, .3);
}

.hero-proto-wrap .mastery-badge.developing {
  background: #fffbeb;
  color: #d97706;
  border: 1px solid #fde68a;
}

/* Widget 3 — Predicted Score Line Chart */
.hero-proto-wrap .widget-chart {
  bottom: 30px;
  right: 80px;
  width: 440px;
  padding: 24px;
  z-index: 25;
}

.hero-proto-wrap .chart-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.hero-proto-wrap .chart-title {
  font-weight: 600;
  font-size: 13px;
  color: var(--hp-text-gray);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero-proto-wrap .chart-value-group {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.hero-proto-wrap .chart-score {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--hp-text-dark);
}

.hero-proto-wrap .chart-score em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--hp-primary);
}

.hero-proto-wrap .chart-slash {
  font-size: 16px;
  color: var(--hp-text-gray);
  font-weight: 500;
}

.hero-proto-wrap .chart-trend {
  font-size: 12px;
  font-weight: 700;
  color: var(--hp-primary);
  background: rgba(0, 137, 172, .1);
  padding: 6px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(0, 137, 172, .2);
}

.hero-proto-wrap .chart-area {
  position: relative;
  height: 120px;
  width: 100%;
}

.hero-proto-wrap .chart-lines {
  position: absolute;
  inset: 0;
  border-bottom: 1px solid #f3f4f6;
}

.hero-proto-wrap .chart-lines::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-bottom: 1px dashed #e5e7eb;
}

.hero-proto-wrap .svg-chart {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-proto-wrap .chart-legend {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 16px;
  border-top: 1px solid #f3f4f6;
  padding-top: 16px;
}

.hero-proto-wrap .legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--hp-text-gray);
  font-weight: 500;
}

.hero-proto-wrap .legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.hero-proto-wrap .legend-dot.main {
  background: var(--hp-primary);
}

.hero-proto-wrap .legend-dot.secondary {
  background: var(--hp-accent);
}

/* Widget 4 — Latest Quiz */
.hero-proto-wrap .widget-recent {
  bottom: -20px;
  left: 170px;
  width: 250px;
  padding: 0;
  overflow: hidden;
  z-index: 5;
}

.hero-proto-wrap .recent-header {
  padding: 14px 20px;
  border-bottom: 1px solid #f3f4f6;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--hp-text-gray);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.hero-proto-wrap .recent-body {
  padding: 22px 20px;
  text-align: center;
}

.hero-proto-wrap .recent-body h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -.015em;
}

.hero-proto-wrap .recent-body h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--hp-primary);
}

.hero-proto-wrap .recent-body p {
  font-size: 12px;
  color: var(--hp-text-gray);
  margin-bottom: 18px;
}

.hero-proto-wrap .recent-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-proto-wrap .hp-stat-box {
  background: #f8fafc;
  border-radius: 10px;
  padding: 12px 0;
}

.hero-proto-wrap .hp-stat-val {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: -.02em;
}

.hero-proto-wrap .hp-stat-label {
  font-size: 10px;
  color: var(--hp-text-gray);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}

.hero-proto-wrap .recent-cta {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--hp-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 900px) {
  .hero-inner {
    min-height: auto;
  }

  .hero-left {
    max-width: 100%;
    padding-top: 0;
  }

  .hero-proto-wrap {
    position: relative;
    top: auto;
    left: auto;
    --hp-scale: 0.58;
    margin: 56px auto 0;
  }
}

@media (max-width: 680px) {
  .hero-proto-wrap {
    --hp-scale: 0.44;
  }
}

@media (max-width: 520px) {
  .hero-proto-wrap {
    --hp-scale: 0.34;
  }
}

/* ============ LOGOS ============ */
.logos {
  padding: 56px 32px;
  background: var(--bg);
  text-align: center;
}

.logos .label {
  font-size: 13px;
  color: var(--ink-4);
  font-weight: 500;
  margin-bottom: 28px;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}

.logos-row span {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-4);
  letter-spacing: -.02em;
  transition: color 300ms;
}

.logos-row span:hover {
  color: var(--ink);
}

/* ============ STATS ============ */
.stats {
  padding: 80px 32px 40px;
  background: var(--bg);
}

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

.stat-card {
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all 400ms var(--ease);
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
}

.stats-grid .stat-card:nth-child(1):hover { background: var(--brand-lime); }
.stats-grid .stat-card:nth-child(2):hover { background: #D9F89F; }
.stats-grid .stat-card:nth-child(3):hover { background: #CFE8FC; }
.stats-grid .stat-card:nth-child(4):hover { background: #FDE8B8; }

.stat-card:hover .stat-num {
  color: var(--ink);
}

.stat-num {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}

.stat-num em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: .7em;
  color: var(--brand-teal);
}

.stat-card:hover .stat-num em {
  color: var(--ink);
}

.stat-label {
  font-size: 14px;
  color: var(--ink-3);
  font-weight: 500;
}

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

/* ============ METHOD ============ */
.method {
  padding: 100px 32px;
  background: var(--bg);
  padding-bottom: 0px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-head .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-teal);
  background: rgba(0, 137, 172, .08);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}

.section-head h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 18px;
}

.section-head h2 em {
  font-family: var(--serif);
  padding-top: 10px;
  font-style: italic;
  font-weight: 400;
  color: var(--brand-teal);
}

.section-head p {
  font-size: 17px;
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 580px;
  margin: 0 auto;
}

/* Sticky two-column scroll */
.method-sticky {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.method-visuals {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  -webkit-user-select: none;
}

.method-visual-stack {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
}

.method-visual {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(24px) scale(.97);
  transition: opacity 600ms var(--ease), transform 800ms var(--ease);
  pointer-events: none;
}

.method-visual.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.method-content {
  display: flex;
  flex-direction: column;
}

.method-step {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  position: relative;
}

.method-step .step-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-teal);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.method-step .step-eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--brand-teal);
}

.method-step h3 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 540px;
}

.method-step h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brand-teal);
}

.method-step p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 480px;
  margin-bottom: 32px;
}

.method-step .step-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 4px;
  transition: gap 300ms var(--ease);
}

.method-step .step-link:hover {
  gap: 14px;
}

.method-step .step-link svg {
  width: 16px;
  height: 16px;
}

/* ======= Visual 1: Test Finder ======= */
.vf-finder {
  width: 100%;
  height: 100%;
  position: relative;
}

.vf-browser {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
  z-index: 10;
}

.vf-chrome {
  height: 32px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--rule-2);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 6px;
}

.vf-chrome span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rule-2);
}

.vf-chrome span:nth-child(1) {
  background: #ff5f57;
}

.vf-chrome span:nth-child(2) {
  background: #febc2e;
}

.vf-chrome span:nth-child(3) {
  background: #28c840;
}

.vf-body {
  padding: 24px 20px;
}

.vf-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}

.vf-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-soft);
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.vf-search svg {
  color: var(--ink-3);
  flex-shrink: 0;
}

.vf-search .cursor {
  display: inline-block;
  width: 1.5px;
  height: 16px;
  background: var(--brand-teal);
  margin-left: 2px;
  animation: vf-blink 1.1s infinite;
  vertical-align: middle;
}

@keyframes vf-blink {

  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.vf-results {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vf-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 8px;
  background: var(--bg-soft);
}

.vf-result.on {
  background: var(--brand-lime);
  color: var(--ink);
  font-weight: 600;
}

.vf-result .chk {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brand-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

.vf-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-pill);
  padding: 8px 14px 8px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  z-index: 5;
}

.vf-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.vf-chip.c1 {
  top: 8%;
  left: 4%;
}

.vf-chip.c1 .dot {
  background: var(--brand-teal);
}

.vf-chip.c2 {
  top: 6%;
  right: 8%;
}

.vf-chip.c2 .dot {
  background: var(--brand-lime);
}

.vf-chip.c3 {
  top: 38%;
  left: -2%;
}

.vf-chip.c3 .dot {
  background: #F69C08;
}

.vf-chip.c4 {
  top: 42%;
  right: -4%;
}

.vf-chip.c4 .dot {
  background: var(--brand-teal-dark);
}

.vf-chip.c5 {
  bottom: 10%;
  left: 6%;
}

.vf-chip.c5 .dot {
  background: var(--brand-lime);
}

.vf-chip.c6 {
  bottom: 6%;
  right: 6%;
}

.vf-chip.c6 .dot {
  background: var(--brand-teal);
}

.vf-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ======= Visual 2: Lesson Player ======= */
.vf-lesson {
  width: 100%;
  height: 100%;
  position: relative;
}

.vf-player {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
  z-index: 10;
}

.vf-player .vf-chrome {
  border-radius: 0;
}

.vf-video {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--brand-teal-dark), var(--brand-teal));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vf-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(157, 214, 79, .3), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, .2), transparent 50%);
}

.vf-play {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  background: var(--brand-lime);
  border-radius: 50%;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vf-play::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 14px solid var(--ink);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}

.vf-lesson-title-bar {
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vf-lesson-title-bar b {
  font-size: 13px;
  color: var(--ink);
}

.vf-lesson-title-bar .time {
  font-size: 11px;
  color: var(--ink-4);
  font-variant-numeric: tabular-nums;
}

.vf-progress {
  height: 4px;
  background: var(--bg-soft);
  border-radius: var(--r-pill);
  overflow: hidden;
  margin: 0 16px 14px;
}

.vf-progress div {
  height: 100%;
  width: 62%;
  background: var(--brand-teal);
  border-radius: var(--r-pill);
}

.vf-lesson-list {
  padding: 8px 0 12px;
}

.vf-lesson-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--ink-3);
}

.vf-lesson-item .n {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

.vf-lesson-item.done .n {
  background: var(--brand-lime);
  color: var(--ink);
}

.vf-lesson-item.done .n::after {
  content: '✓';
}

.vf-lesson-item.done .n-txt {
  display: none;
}

.vf-lesson-item.now {
  background: rgba(0, 137, 172, .08);
  color: var(--ink);
  font-weight: 600;
}

.vf-lesson-item.now .n {
  background: var(--brand-teal);
  color: #fff;
}

.vf-insight {
  position: absolute;
  bottom: 6%;
  right: 2%;
  width: 200px;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  box-shadow: 4px 4px 0 var(--ink);
  padding: 14px 16px;
  z-index: 15;
}

.vf-insight .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand-teal);
  margin-bottom: 6px;
}

.vf-insight .tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--brand-lime);
  border-radius: 50%;
}

.vf-insight p {
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.45;
  margin: 0;
  font-style: italic;
}

.vf-stat-float {
  position: absolute;
  top: 14%;
  left: -2%;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 4px 4px 0 var(--ink);
  z-index: 15;
}

.vf-stat-float .big {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
}

.vf-stat-float .lbl {
  font-size: 10px;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  margin-top: 4px;
}

/* ======= Visual 3: Results / Pass ======= */
.vf-results-card {
  width: 100%;
  height: 100%;
  position: relative;
}

.vf-certificate {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-2deg);
  width: 320px;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  box-shadow: 8px 8px 0 var(--ink);
  padding: 32px 28px;
  z-index: 10;
}

.vf-cert-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule-2);
}

.vf-cert-head .logo-sm {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.vf-cert-head .logo-sm em {
  color: var(--brand-teal);
  font-style: normal;
}

.vf-cert-head .date {
  font-size: 10px;
  color: var(--ink-4);
  font-variant-numeric: tabular-nums;
}

.vf-cert h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
}

.vf-cert .test-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  color: var(--brand-teal);
  margin-bottom: 24px;
  letter-spacing: -.015em;
}

.vf-cert-score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.vf-cert-score .num {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--ink);
}

.vf-cert-score .total {
  font-size: 18px;
  color: var(--ink-4);
  font-weight: 500;
}

.vf-cert-bar {
  height: 6px;
  background: var(--bg-soft);
  border-radius: var(--r-pill);
  overflow: hidden;
  margin-bottom: 20px;
}

.vf-cert-bar div {
  height: 100%;
  width: 94%;
  background: var(--brand-lime);
  border-radius: var(--r-pill);
}

.vf-cert-foot {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.vf-cert-foot .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-soft);
  padding: 6px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-2);
}

.vf-cert-foot .chip.win {
  background: var(--brand-lime);
  color: var(--ink);
}

.vf-stamp {
  position: absolute;
  top: 18%;
  right: 4%;
  width: 120px;
  height: 120px;
  border: 3px solid var(--brand-teal);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--brand-teal);
  transform: rotate(14deg);
  background: rgba(255, 255, 255, .85);
  z-index: 20;
}

.vf-stamp::before,
.vf-stamp::after {
  content: '';
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--brand-teal);
}

.vf-stamp::before {
  top: 14px;
}

.vf-stamp::after {
  bottom: 14px;
}

.vf-stamp b {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
}

.vf-stamp span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 4px;
}

.vf-offer {
  position: absolute;
  bottom: 6%;
  left: 2%;
  width: 230px;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  box-shadow: 4px 4px 0 var(--ink);
  padding: 14px 16px;
  z-index: 5;
  transform: rotate(-3deg);
}

.vf-offer-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.vf-offer-head .av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-lime));
  flex-shrink: 0;
}

.vf-offer-head .nm {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
}

.vf-offer-head .tm {
  font-size: 9px;
  color: var(--ink-4);
}

.vf-offer p {
  font-size: 11px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
}

.vf-offer p b {
  color: var(--brand-teal);
  font-weight: 700;
}

.vf-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.vf-confetti span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

.vf-confetti span:nth-child(1) {
  top: 10%;
  left: 18%;
  background: var(--brand-lime);
  transform: rotate(18deg);
}

.vf-confetti span:nth-child(2) {
  top: 15%;
  right: 22%;
  background: var(--brand-teal);
  transform: rotate(-12deg);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.vf-confetti span:nth-child(3) {
  bottom: 20%;
  right: 14%;
  background: var(--brand-lime);
  transform: rotate(35deg);
}

.vf-confetti span:nth-child(4) {
  bottom: 28%;
  left: 24%;
  background: var(--brand-teal);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.vf-confetti span:nth-child(5) {
  top: 36%;
  left: 8%;
  background: #F69C08;
  transform: rotate(-20deg);
  width: 8px;
  height: 8px;
}

.vf-confetti span:nth-child(6) {
  top: 42%;
  right: 6%;
  background: var(--brand-lime);
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
}

@media (max-width: 900px) {
  /* Interleave each .method-visual with its matching .method-step so the
   * user sees "visual 1 → text 1 → visual 2 → text 2 → …" rather than
   * "all visuals, then all text". We flatten the .method-visuals,
   * .method-visual-stack and .method-content parents via display:contents
   * and order the descendants explicitly with grid-row.                 */
  .method-sticky {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
    column-gap: 0;
    row-gap: 0;
  }

  .method-visuals,
  .method-visual-stack,
  .method-content {
    display: contents;
  }

  /* Each visual becomes a fixed-size, clipped stage. The inner widgets
   * (.vf-finder/.vf-lesson/.vf-results-card) were sized for a 520px
   * parent; we keep that internal world at 520 and scale it uniformly
   * to fit the stage via transform. overflow: hidden clips any chip
   * that floats past the edges of the scaled stage. --mv-size is a
   * plain number (no unit) so calc(var(--mv-size) / 520) can produce
   * a dimensionless scale — CSS can't divide a length by a length.    */
  .method-visual {
    --mv-size: 340;
    position: relative;
    width: calc(var(--mv-size) * 1px);
    height: calc(var(--mv-size) * 1px);
    max-width: 100%;
    margin: 0 auto 22px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    overflow: hidden;
  }

  .method-visual .vf-finder,
  .method-visual .vf-lesson,
  .method-visual .vf-results-card {
    width: 520px;
    height: 520px;
    transform: scale(calc(var(--mv-size) / 520));
    transform-origin: top left;
  }

  .method-visual[data-visual="0"] { grid-row: 1; }
  .method-step[data-step="0"]     { grid-row: 2; }
  .method-visual[data-visual="1"] { grid-row: 3; }
  .method-step[data-step="1"]     { grid-row: 4; }
  .method-visual[data-visual="2"] { grid-row: 5; }
  .method-step[data-step="2"]     { grid-row: 6; }

  .method-step {
    min-height: auto;
    max-width: 520px;
    margin: 0 auto;
    padding: 8px 4px 56px;
    text-align: left;
  }

  .method-step:last-child {
    padding-bottom: 8px;
  }

  .method-step h3 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .method-step p {
    font-size: 16px;
  }
}

/* ============ FINDER ============ */
.finder {
  padding: 100px 32px;
  background: var(--bg-soft);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

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

.finder-opt {
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-xl);
  padding: 32px 88px 32px 36px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 400ms var(--ease);
  position: relative;
  overflow: hidden;
}

.finder-opt>div {
  min-width: 0;
}

.finder-opt:hover {
  background: var(--brand-lime);
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 var(--ink);
}

.finder-opt .icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--bg-soft);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 300ms;
}

.finder-opt:hover .icon {
  background: var(--bg);
}

.finder-opt .icon svg {
  width: 28px;
  height: 28px;
  color: var(--ink);
  stroke-width: 1.8;
}

.finder-opt h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.25;
}

.finder-opt p {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
}

.finder-opt .arrow {
  position: absolute;
  top: 32px;
  right: 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transform: rotate(-45deg);
  transition: transform 300ms var(--ease), background 300ms;
}

.finder-opt:hover .arrow {
  transform: rotate(0deg);
  background: var(--ink);
  color: var(--brand-lime);
}

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

  .finder-opt .arrow {
    display: none;
  }
}

/* Popular-tests strip under the finder. Surfaces direct links to the
   top-traffic test landing pages so they're one click from the home
   page — also gives the homepage real anchor text for SEO. */
.finder-popular {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
  margin: 36px auto 0;
  padding: 18px 24px;
  max-width: 1080px;
  background: var(--bg-soft);
  border-radius: var(--r-pill);
  font-size: 14px;
  color: var(--ink-3);
}
.finder-popular-label {
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.005em;
}
.finder-popular-sep {
  color: var(--ink-5);
}
.finder-popular a {
  color: var(--ink-2);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
  letter-spacing: -.005em;
}
.finder-popular a:hover {
  color: var(--brand-teal);
  border-bottom-color: var(--brand-teal);
}
@media (max-width: 640px) {
  .finder-popular {
    border-radius: var(--r-lg);
    padding: 16px 18px;
    font-size: 13px;
    gap: 8px 10px;
    justify-content: flex-start;
  }
  .finder-popular-label { flex-basis: 100%; margin-bottom: 4px; }
  .finder-popular-sep { display: none; }
}

/* ============ COURSES ============ */
.courses {
  padding: 100px 32px;
  background: var(--bg);
}

.courses-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
  flex-wrap: wrap;
}

.courses-head .left {
  max-width: 640px;
}

.courses-head .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-teal);
  background: rgba(0, 137, 172, .08);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}

.courses-head h2 {
  font-size: clamp(36px, 4.5vw, 46px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--ink);
}

.courses-head h2 em {
  font-family: var(--serif);
  padding-top: 10px;
  font-style: italic;
  font-weight: 400;
  color: var(--brand-teal);
}

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

.course-card {
  background: var(--bg);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 400ms var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.course-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.course-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.course-tags .t {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: var(--bg-soft);
  color: var(--ink-2);
}

.course-tags .t.hot {
  background: var(--brand-lime);
  color: var(--ink);
}

.course-tags .t.blue {
  background: rgba(0, 137, 172, .1);
  color: var(--brand-teal);
}

.course-card h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.15;
}

.course-card h3 em {
  font-style: normal;
  color: var(--brand-teal);
}

.course-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.course-rating .stars {
  color: var(--brand-amber);
  font-size: 13px;
  letter-spacing: 1px;
}

.course-rating .num {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.course-rating .count {
  font-size: 13px;
  color: var(--ink-4);
}

.course-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border-radius: var(--r-md);
}

.course-specs .s {
  font-size: 12px;
  color: var(--ink-3);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.course-specs .s b {
  font-size: 15px;
  color: var(--ink);
  font-weight: 700;
}

.course-foot {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.course-foot button,
.course-foot .pt-course-cta {
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 300ms var(--ease);
}

.course-card:hover .course-foot button,
.course-card:hover .course-foot .pt-course-cta {
  background: var(--brand-teal);
}

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

/* ============ CATEGORIES ============ */
.cats {
  padding: 100px 32px;
  background: var(--bg-soft);
  border-top: 1px solid var(--rule);
}

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

.cat {
  background: var(--bg);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all 400ms var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  /* .cat is now an <a>. Reset default anchor styling so the tile keeps
     the original card look; colour/weight are set per-element below. */
  color: inherit;
  text-decoration: none;
}

.cat:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.cat-icon {
  width: 56px;
  height: 56px;
  background: var(--brand-lime-soft);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 300ms;
}

.cat:nth-child(2) .cat-icon {
  background: #FDE8B8;
}

.cat:nth-child(3) .cat-icon {
  background: #FCCFDC;
}

.cat:nth-child(4) .cat-icon {
  background: #CFE8FC;
}

.cat-icon svg {
  width: 28px;
  height: 28px;
  color: var(--ink);
  stroke-width: 1.8;
}

.cat h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-bottom: 10px;
}

.cat h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.cat p {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}

.cat .count {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

/* ============ TESTIMONIALS ============ */
.quotes {
  padding: 100px 32px;
  background: var(--bg);
}

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

.quote-card {
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 400ms var(--ease);
}

.quote-card:hover {
  background: var(--brand-lime-soft);
  border-color: var(--ink);
  transform: translateY(-4px);
}

.quote-card .badge-score {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: var(--brand-lime);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 24px;
  align-self: flex-start;
}

.quote-card blockquote {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -.015em;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 28px;
}

.quote-card blockquote em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brand-teal);
}

.quote-foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--rule-2);
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote-foot .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-lime-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.quote-foot .who .name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.quote-foot .who .role {
  font-size: 12px;
  color: var(--ink-4);
}

.quote-card .test-chip {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  background: var(--bg);
  padding: 5px 10px;
  border-radius: var(--r-pill);
  border: 1px solid var(--rule-2);
}

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

/* ============ GUARANTEE ============ */
.guarantee {
  padding: 100px 32px;
  background: var(--bg);
}

.guarantee-card {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--brand-lime);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-xl);
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--ink);
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, .5) 0%, transparent 60%);
  pointer-events: none;
}

.guarantee-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--brand-lime-deep) 0%, transparent 60%);
  opacity: .4;
  pointer-events: none;
}

.guarantee-inner {
  position: relative;
  z-index: 2;
}

.guarantee-shield {
  width: 80px;
  height: 80px;
  background: var(--ink);
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 4px 4px 0 rgba(10, 14, 20, .2);
}

.guarantee-shield svg {
  width: 40px;
  height: 40px;
  color: var(--brand-lime);
  stroke-width: 2;
}

.guarantee-card h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--ink);
  margin-bottom: 20px;
}

.guarantee-card h2 em {
  font-family: var(--serif);
  padding-top: 10px;
  font-style: italic;
  font-weight: 400;
}

.guarantee-card .lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 auto 40px;
}

.guarantee-features {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.g-feat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  padding: 12px 20px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.g-feat svg {
  width: 16px;
  height: 16px;
  color: var(--brand-teal);
}

@media (max-width: 780px) {
  .guarantee-card {
    padding: 56px 28px;
  }
}

/* ============ FAQ ============ */
.faq {
  padding: 100px 32px;
  background: var(--bg-soft);
  border-top: 1px solid var(--rule);
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 300ms var(--ease);
}

.faq-item:hover {
  border-color: var(--ink-5);
}

.faq-item.open {
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.faq-q span {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
}

.faq-q span em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brand-teal);
}

.faq-plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--ink);
  font-weight: 400;
  transition: all 400ms var(--ease);
  flex-shrink: 0;
}

.faq-item.open .faq-plus {
  background: var(--brand-lime);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease);
}

.faq-item.open .faq-a {
  max-height: 240px;
}

.faq-a-inner {
  padding: 0 28px 28px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-3);
}

/* ============ FINAL CTA ============ */
.final {
  padding: 120px 32px;
  background: var(--brand-lime);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}

.final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .4) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, var(--brand-lime-deep) 0%, transparent 40%);
  pointer-events: none;
}

.final-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.final .eyebrow {
  display: inline-block;
  background: var(--ink);
  color: var(--brand-lime);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}

.final h2 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.035em;
  color: var(--ink);
  margin-bottom: 24px;
}

.final h2 em {
  font-family: var(--serif);
  padding-top: 10px;
  font-style: italic;
  font-weight: 400;
}

.final p {
  font-size: 19px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 520px;
  margin: 0 auto 40px;
}

.final .actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.final .note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

/* ============ MOBILE (<= 640px) hero adjustments ============ */
@media (max-width: 640px) {
  .hero { padding: 56px 20px 72px; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .hero-sub { font-size: 16px; }
  .hero-search-pill {
    gap: 8px;
    padding: 4px 4px 4px 16px;
  }
  .hero-search-pill input {
    font-size: 14px;
    padding: 11px 0;
  }
  /* ⌘K hint has no value on touch — hide it to reclaim horizontal space. */
  .hero-search-pill .hero-search-kbd { display: none; }
  .hero-search-pill .hero-search-submit {
    padding: 10px 14px;
    font-size: 13px;
  }
  .hero-search-dropdown {
    box-shadow: 4px 4px 0 var(--ink);
    max-height: 58vh;
  }
  .hero-signals { flex-direction: column; gap: 8px; font-size: 12px; align-items: flex-start; }
}

/* ============ MOBILE (<= 480px) ============ */
@media (max-width: 480px) {
  .hero { padding: 48px 16px 64px; }
  .hero-trust { font-size: 11px; padding: 6px 12px; gap: 6px; }
  .hero-urgency { font-size: 12px; padding: 8px 14px; }
  .hero-cta-row { flex-direction: column; gap: 10px; }
  .hero-cta-row .btn { width: 100%; }
  .hero-proto-wrap { display: none; }

  .logos { padding: 36px 16px; }
  .logos-row { gap: 24px; }
  .logos-row span { font-size: 16px; }

  .stats { padding: 56px 16px 32px; }
  .stats-grid { grid-template-columns: 1fr; gap: 14px; }
  .stat-card { padding: 28px 24px; }
  .stat-num { font-size: 48px; }

  .method { padding: 72px 16px; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: clamp(28px, 7vw, 36px); }
  .section-head p { font-size: 15px; }
  /* Shrink the visual stage on narrow mobile. --mv-size is unitless;
   * the scale transform uses it to rescale the 520px design into the
   * new stage size. Hard max avoids overflowing narrow viewports. */
  .method-visual { --mv-size: 300; }

  .finder { padding: 72px 16px; }
  .finder-grid { gap: 14px; }
  .finder-opt { padding: 24px 56px 24px 24px; gap: 14px; }
  .finder-opt .icon { width: 44px; height: 44px; }
  .finder-opt .icon svg { width: 22px; height: 22px; }
  .finder-opt h3 { font-size: 17px; }
  .finder-opt .arrow { width: 30px; height: 30px; top: 24px; right: 20px; font-size: 13px; }

  .courses { padding: 72px 16px; }
  .courses-head h2 { font-size: clamp(28px, 7vw, 36px); }
  .course-card { padding: 22px; }
  .course-card h3 { font-size: 20px; }

  .cats { padding: 72px 16px; }
  .cats-grid { grid-template-columns: 1fr; gap: 14px; }

  .quotes { padding: 72px 16px; }
  .quote-card { padding: 28px 24px; }
  .quote-card blockquote { font-size: 17px; }
  .quote-card .test-chip { display: none; }

  .guarantee { padding: 72px 16px; }
  .guarantee-card { padding: 40px 20px; box-shadow: 4px 4px 0 var(--ink); }
  .guarantee-card h2 { font-size: clamp(36px, 9vw, 56px); }
  .guarantee-specs { flex-direction: column; }
  .guarantee-specs .spec { border-right: none; border-bottom: 1px solid var(--rule-soft); }
  .guarantee-specs .spec:last-child { border-bottom: none; }

  .faq { padding: 72px 16px; }
  .faq-inner { padding: 0; }
  .faq-q span { font-size: 15px; }
  .faq-a-inner { font-size: 14px; padding: 0 20px 24px; }

  .final { padding: 80px 16px; }
  .final h2 { font-size: clamp(40px, 10vw, 64px); }
  .final p { font-size: 16px; }
  .final .actions { flex-direction: column; width: 100%; }
  .final .actions .btn { width: 100%; }

  /* Reduce hard shadows on small screens */
  .stat-card:hover,
  .finder-opt:hover,
  .course-card:hover,
  .cat:hover,
  .quote-card:hover { box-shadow: 3px 3px 0 var(--ink); }

  .method-card:hover,
  .obj-card:hover { box-shadow: 3px 3px 0 var(--ink); }
}
