/* ==========================================================================
   ZipResume Quiz — Design System & Styles
   Mobile-first. Extend this file across parts (quiz, email gate, results).
   ========================================================================== */

:root {
  /* Colors — dark navy + amber theme */
  --color-navy: #ffffff;           /* headline color on dark bg */
  --color-navy-dark: #0a0f1e;      /* page background */
  --color-white: #ffffff;
  --color-bg: #0a0f1e;
  --color-surface: #10182c;        /* slightly lighter navy for cards/panels in later parts */
  --color-text: #ffffff;
  --color-text-muted: #a9b2c8;
  --color-accent: #f2b236;         /* amber/gold — CTA */
  --color-accent-hover: #d99b1f;
  --color-accent-active: #c28a15;
  --color-on-accent: #0a0f1e;      /* text/icon color placed on top of the accent (buttons) */
  --color-border: #1e2740;
  --color-badge-bg: rgba(242, 178, 54, 0.12);   /* soft amber tint */
  --color-badge-text: #f2b236;

  /* Typography */
  --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --fs-headline: 1.875rem;   /* mobile H1 */
  --fs-subhead: 1.0625rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-badge: 0.8125rem;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;

  /* Layout */
  --max-width: 720px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.30);
  --shadow-cta: 0 6px 20px rgba(242, 178, 54, 0.35);
  --shadow-cta-hover: 0 8px 24px rgba(242, 178, 54, 0.45);

  /* Motion */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}

/* ---------------------------------------------------------------------- */
/* Reset / base                                                          */
/* ---------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  font-family: var(--font-base);
  font-size: var(--fs-body);
  color: var(--color-text-muted);
  background-color: var(--color-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, p {
  margin: 0;
}

button {
  font-family: inherit;
}

/* ---------------------------------------------------------------------- */
/* Fade-in animation (page load)                                         */
/* ---------------------------------------------------------------------- */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease both;
}

.fade-in--delay-1 { animation-delay: 0.08s; }
.fade-in--delay-2 { animation-delay: 0.16s; }
.fade-in--delay-3 { animation-delay: 0.24s; }
.fade-in--delay-4 { animation-delay: 0.32s; }
.fade-in--delay-5 { animation-delay: 0.4s; }

/* ---------------------------------------------------------------------- */
/* Site header / logo                                                    */
/* ---------------------------------------------------------------------- */

.site-header {
  padding: var(--space-5) var(--space-5) 0;
  display: flex;
  justify-content: center;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.site-header__logo-icon {
  height: 32px;
  width: auto;
  display: block;
}

.site-header__logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

/* ---------------------------------------------------------------------- */
/* Hero screen                                                           */
/* ---------------------------------------------------------------------- */

.hero {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6) var(--space-5) var(--space-8);
}

.hero__inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  font-size: var(--fs-badge);
  font-weight: 600;
  color: var(--color-badge-text);
  background-color: var(--color-badge-bg);
  border: 1px solid rgba(242, 178, 54, 0.3);
  border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-5);
}

.hero__headline {
  font-size: var(--fs-headline);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-navy);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-4);
}

.hero__subheadline {
  font-size: var(--fs-subhead);
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 auto var(--space-6);
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  min-height: 56px;
  padding: var(--space-4) var(--space-5);
  background-color: var(--color-accent);
  color: var(--color-on-accent);
  font-size: 1.0625rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-cta);
  cursor: pointer;
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.hero__cta:hover {
  background-color: var(--color-accent-hover);
  box-shadow: var(--shadow-cta-hover);
}

.hero__cta:active {
  background-color: var(--color-accent-active);
  transform: translateY(1px);
  box-shadow: var(--shadow-sm);
}

.hero__cta:focus-visible {
  outline: 3px solid rgba(242, 178, 54, 0.5);
  outline-offset: 2px;
}

.hero__trust {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  opacity: 0.85;
  margin-top: var(--space-4);
}

/* ---------------------------------------------------------------------- */
/* Quiz active state — hide header while a question/loading screen shows */
/* ---------------------------------------------------------------------- */

body.quiz-active .site-header {
  display: none;
}

/* ---------------------------------------------------------------------- */
/* Progress bar                                                          */
/* ---------------------------------------------------------------------- */

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--color-bg);
  padding: var(--space-4) var(--space-5) var(--space-3);
}

.progress-bar__track {
  width: 100%;
  height: 5px;
  background-color: var(--color-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.progress-bar__fill {
  height: 100%;
  width: 0%;
  background-color: var(--color-accent);
  border-radius: inherit;
  transition: width var(--transition-base);
}

.progress-bar__label {
  margin-top: var(--space-2);
  text-align: center;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

/* ---------------------------------------------------------------------- */
/* Quiz screen                                                           */
/* ---------------------------------------------------------------------- */

.quiz {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px var(--space-5) var(--space-8);
}

.quiz__inner {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quiz__back {
  align-self: flex-start;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: var(--fs-small);
  font-weight: 600;
  cursor: pointer;
  padding: var(--space-2) 0;
  margin-bottom: var(--space-4);
  transition: color var(--transition-fast);
}

.quiz__back:hover {
  color: var(--color-accent);
}

.quiz__question {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: var(--space-6);
}

.quiz__options {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  width: 100%;
}

.quiz__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  width: 100%;
  min-height: 56px;
  padding: var(--space-4) var(--space-5);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), transform var(--transition-fast);
}

.quiz__option:hover {
  border-color: var(--color-accent);
}

.quiz__option:active {
  transform: translateY(1px);
}

.quiz__option.is-selected {
  border-color: var(--color-accent);
  background-color: rgba(242, 178, 54, 0.1);
}

.quiz__option-check {
  flex-shrink: 0;
  color: var(--color-accent);
  font-weight: 700;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.quiz__option.is-selected .quiz__option-check {
  opacity: 1;
}

/* ---------------------------------------------------------------------- */
/* Loading screen                                                        */
/* ---------------------------------------------------------------------- */

.loading {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6) var(--space-5);
}

.loading__inner {
  text-align: center;
}

.loading__spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  border: 4px solid var(--color-border);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading__text {
  color: var(--color-text-muted);
  font-size: var(--fs-body);
}

/* ---------------------------------------------------------------------- */
/* Email gate screen                                                     */
/* ---------------------------------------------------------------------- */

.gate {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px var(--space-5) var(--space-8);
}

.gate__inner {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Blurred "score preview" teaser card */
.gate__preview {
  position: relative;
  width: 96px;
  height: 96px;
  margin-bottom: var(--space-6);
  border-radius: 50%;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-cta);
}

.gate__preview-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-accent);
  filter: blur(6px);
  opacity: 0.6;
  user-select: none;
}

.gate__headline {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}

.gate__subheadline {
  font-size: var(--fs-subhead);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.gate__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.gate__field {
  width: 100%;
  text-align: left;
}

.gate__input {
  width: 100%;
  min-height: 48px;
  padding: var(--space-3) var(--space-4);
  font-size: 1rem;   /* 16px minimum — prevents iOS zoom-on-focus */
  font-family: inherit;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.gate__input::placeholder {
  color: var(--color-text-muted);
}

.gate__input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(242, 178, 54, 0.2);
}

.gate__input.is-invalid {
  border-color: #e05252;
}

.gate__error {
  margin-top: var(--space-2);
  font-size: var(--fs-small);
  color: #ff8080;
}

.gate__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  min-height: 56px;
  padding: var(--space-4) var(--space-5);
  background-color: var(--color-accent);
  color: var(--color-on-accent);
  font-size: 1.0625rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-cta);
  cursor: pointer;
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}

.gate__cta:hover {
  background-color: var(--color-accent-hover);
  box-shadow: var(--shadow-cta-hover);
}

.gate__cta:active {
  background-color: var(--color-accent-active);
}

.gate__cta:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.gate__privacy {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  opacity: 0.85;
  margin-bottom: var(--space-4);
}

.gate__social-proof {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  opacity: 0.7;
}

/* ---------------------------------------------------------------------- */
/* Result page                                                           */
/* ---------------------------------------------------------------------- */

.result {
  width: 100%;
}

.result__section {
  padding: var(--space-8) var(--space-5);
  border-bottom: 1px solid var(--color-border);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.result__section.is-visible {
  opacity: 1;
  transform: none;
}

.result__section--last {
  border-bottom: none;
}

.result__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.result__section--score .result__inner {
  text-align: center;
}

.result__headline {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-navy);
  margin-bottom: var(--space-5);
  text-align: center;
}

.result__body {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.result__body--gaps {
  color: var(--color-text);
  font-weight: 600;
}

/* Score gauge */

.score-gauge {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto var(--space-5);
}

.score-gauge__svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.score-gauge__track {
  fill: none;
  stroke: var(--color-border);
  stroke-width: 14;
}

.score-gauge__fill {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 14;
  stroke-linecap: round;
  stroke-dasharray: 565.5;
  stroke-dashoffset: 565.5;
  transition: stroke-dashoffset 1.5s ease, stroke 0.4s ease;
}

.score-gauge__center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.score-gauge__number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
}

.score-gauge__max {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-left: 2px;
}

.score-gauge__label {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-4);
}

.result__context {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* Gap cards */

.gap-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.gap-card {
  flex: 1;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.gap-card__icon {
  width: 36px;
  height: 36px;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.gap-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.gap-card__desc {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

/* Offer list */

.offer-list {
  list-style: none;
  margin: 0 0 var(--space-6);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.offer-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text);
}

.offer-list__check {
  flex-shrink: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* Trust badges */

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.trust-badge {
  flex: 1 1 140px;
  text-align: center;
  padding: var(--space-4);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.trust-badge__icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}

.trust-badge__label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy);
}

.trust-badge__sub {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* Price block */

.price-block {
  text-align: center;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  margin-bottom: var(--space-5);
}

.price-block__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.price-block__price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.price-block__detail {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ---------------------------------------------------------------------- */
/* Button hierarchy — primary (solid gold) vs secondary (outlined ghost) */
/* ---------------------------------------------------------------------- */

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  min-height: 56px;
  padding: var(--space-4) var(--space-5);
  background-color: var(--color-accent);
  color: var(--color-on-accent);
  font-size: 1.0625rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-cta);
  cursor: pointer;
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  box-shadow: var(--shadow-cta-hover);
}

.btn-primary:active {
  background-color: var(--color-accent-active);
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  min-height: 42px;
  padding: var(--space-2) var(--space-4);
  background-color: transparent;
  color: var(--color-accent);
  font-size: 0.9375rem;
  font-weight: 600;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.btn-secondary:hover {
  background-color: rgba(242, 178, 54, 0.08);
}

.btn-secondary:active {
  background-color: rgba(242, 178, 54, 0.14);
}

/* Section-level "See Full Offer Details" CTA — repeats after every major section */

.section-cta {
  margin-top: var(--space-6);
}

/* Pricing block button stack */

.offer-cta-primary {
  margin-bottom: var(--space-3);
}

.offer-cta-secondary {
  margin-bottom: var(--space-2);
}

.offer-secure {
  text-align: center;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin-top: var(--space-3);
}

/* FAQ accordion */

.faq {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: none;
  border: none;
  color: var(--color-navy);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-item__icon {
  flex-shrink: 0;
  color: var(--color-accent);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 var(--space-5);
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  transition: max-height var(--transition-base) ease, padding var(--transition-base) ease;
}

.faq-item.is-open .faq-item__answer {
  max-height: 320px;
  padding: 0 var(--space-5) var(--space-5);
}

.result__body--center {
  text-align: center;
}

/* ---------------------------------------------------------------------- */
/* Section A: Score transparency                                        */
/* ---------------------------------------------------------------------- */

.score-transparency__toggle {
  display: inline-block;
  margin-top: var(--space-3);
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: var(--fs-small);
  font-weight: 600;
  cursor: pointer;
  padding: var(--space-1) 0;
}

.score-transparency__toggle:hover {
  text-decoration: underline;
}

.score-transparency__panel {
  margin: var(--space-4) auto 0;
  max-width: 480px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  animation: fadeInUp 0.3s ease both;
}

/* ---------------------------------------------------------------------- */
/* Section B: Resume format comparison mockups                          */
/* ---------------------------------------------------------------------- */

.resume-compare {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.resume-mock {
  flex: 1;
}

.resume-mock__label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-3);
  text-align: center;
}

.resume-mock__sheet {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  min-height: 260px;
}

.resume-mock__sheet--bad {
  border: 1px solid rgba(224, 82, 82, 0.35);
}

.resume-mock__sheet--good {
  border: 1px solid rgba(242, 178, 54, 0.4);
}

.resume-mock__caption {
  margin-top: var(--space-3);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  text-align: center;
}

/* "Bad" mockup — dense, undifferentiated blocks */
.resume-mock__blob {
  height: 8px;
  border-radius: 3px;
  background-color: var(--color-border);
  margin-bottom: var(--space-2);
}

.resume-mock__blob--title {
  width: 55%;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.25);
  margin-bottom: var(--space-3);
}

.resume-mock__blob--wide {
  width: 100%;
}

.resume-mock__blob--tight {
  margin-bottom: var(--space-1);
}

/* "Good" mockup — clear sections, whitespace, structure */
.resume-mock__heading {
  width: 60%;
  height: 12px;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.35);
  margin-bottom: var(--space-4);
}

.resume-mock__section-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
}

.resume-mock__section-label:first-of-type {
  margin-top: 0;
}

.resume-mock__blob--line {
  height: 6px;
  width: 100%;
  border-radius: 3px;
  background-color: var(--color-border);
  margin-bottom: var(--space-2);
}

.resume-mock__blob--short {
  width: 65%;
}

.resume-mock__bullet {
  height: 6px;
  width: 90%;
  border-radius: 3px;
  background-color: var(--color-border);
  margin-bottom: var(--space-2);
  position: relative;
  padding-left: var(--space-3);
}

.resume-mock__bullet::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

.resume-mock__bullet--short {
  width: 60%;
}

.resume-mock__chip-row {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.resume-mock__chip {
  width: 40px;
  height: 14px;
  border-radius: var(--radius-pill);
  background-color: rgba(242, 178, 54, 0.18);
  border: 1px solid rgba(242, 178, 54, 0.35);
}

/* ---------------------------------------------------------------------- */
/* Product grid                                                          */
/* ---------------------------------------------------------------------- */

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.product-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  text-align: center;
}

.product-card__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.product-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-1);
}

.product-card__desc {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

/* ---------------------------------------------------------------------- */
/* How it works                                                          */
/* ---------------------------------------------------------------------- */

.how-it-works {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.how-it-works__step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.how-it-works__number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(242, 178, 54, 0.12);
  border: 1px solid rgba(242, 178, 54, 0.35);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.9375rem;
}

.how-it-works__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-1);
}

.how-it-works__desc {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* ---------------------------------------------------------------------- */
/* Section C: Guarantee / risk reversal card                            */
/* ---------------------------------------------------------------------- */

.guarantee-card {
  background-color: var(--color-surface);
  border: 1px solid rgba(242, 178, 54, 0.4);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin-bottom: var(--space-5);
  text-align: center;
}

.guarantee-card__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.guarantee-card__headline {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.guarantee-card__body {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ---------------------------------------------------------------------- */
/* Section E: Why act now                                               */
/* ---------------------------------------------------------------------- */

.why-now {
  margin-bottom: var(--space-6);
  text-align: center;
}

.why-now__headline {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.why-now__body {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ---------------------------------------------------------------------- */
/* Section D: Payment trust icons                                       */
/* ---------------------------------------------------------------------- */

.payment-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.payment-icons__badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
}

/* ---------------------------------------------------------------------- */
/* Section F: Testimonial placeholder                                   */
/* ---------------------------------------------------------------------- */

.testimonial-hidden {
  display: none;
}

.testimonial-card {
  max-width: 480px;
  margin: 0 auto;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  text-align: center;
}

.testimonial-card__stars {
  color: var(--color-accent);
  font-size: 1.125rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-3);
}

.testimonial-card__quote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: var(--space-4);
}

.testimonial-card__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy);
}

.testimonial-card__meta {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* ---------------------------------------------------------------------- */
/* Section G: Sticky mobile CTA                                         */
/* ---------------------------------------------------------------------- */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background-color: rgba(10, 15, 30, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--color-border);
  transform: translateY(100%);
  opacity: 0;
  transition: transform var(--transition-base) ease, opacity var(--transition-base) ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.sticky-cta__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  flex-shrink: 0;
}

.sticky-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 44px;
  padding: var(--space-3) var(--space-4);
  background-color: var(--color-accent);
  color: var(--color-on-accent);
  font-size: 0.9375rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  white-space: nowrap;
}

.sticky-cta__btn:active {
  background-color: var(--color-accent-active);
}

@media (min-width: 769px) {
  .sticky-cta {
    display: none !important;
  }
}

/* ---------------------------------------------------------------------- */
/* Tablet and up                                                         */
/* ---------------------------------------------------------------------- */

@media (min-width: 600px) {
  :root {
    --fs-headline: 2.5rem;
    --fs-subhead: 1.125rem;
  }

  .hero__cta {
    width: auto;
    min-width: 320px;
  }

  .quiz__question {
    font-size: 1.625rem;
  }

  .gap-cards {
    flex-direction: row;
  }

  .resume-compare {
    flex-direction: row;
  }

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

  .btn-primary,
  .btn-secondary {
    width: auto;
    min-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .result__headline {
    font-size: 1.75rem;
  }
}

/* ---------------------------------------------------------------------- */
/* Desktop                                                               */
/* ---------------------------------------------------------------------- */

@media (min-width: 1024px) {
  :root {
    --fs-headline: 3rem;
  }

  .site-header {
    padding: var(--space-6) var(--space-7) 0;
  }
}
