/* ========================================
   Coach Catalyst — The Coach's System Audit
   Light Diagnostic Theme
   ======================================== */

:root {
  --purple: #6100FF;
  --purple-light: #7B33FF;
  --purple-glow: rgba(97, 0, 255, 0.2);
  --purple-soft: rgba(97, 0, 255, 0.06);
  --green: #2AD96E;
  --green-dim: rgba(42, 217, 110, 0.1);
  --green-forest: #3AB574;
  --sky: #3AB574;
  --sky-dim: rgba(27, 168, 217, 0.08);

  --bg-1: #FFFFFF;
  --bg-2: #F6F5FA;
  --bg-3: #EEEDF5;
  --bg-4: #E4E3ED;
  --bg-5: #D6D5E0;

  --text-primary: #0D0B1A;
  --text-secondary: #4A4862;
  --text-muted: #8886A0;

  --grade-a: #1DB954;
  --grade-b: #1A95C7;
  --grade-c: #E59C00;
  --grade-d: #E05A20;
  --grade-f: #D42840;

  --card-bg: #FFFFFF;
  --card-border: rgba(0, 0, 0, 0.07);

  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-glow: 0 0 32px var(--purple-glow);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-1);
  overflow-x: hidden;
}

/* Grain overlay — subtle on light */
.grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

h1 { font-size: 40px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; font-family: 'DM Sans', sans-serif; font-weight: 700; text-transform: none; line-height: 1.3; }

/* Layout */
.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

/* ── Animations ── */
.anim-fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s ease-out forwards;
}
.anim-d1 { animation-delay: 0.1s; }
.anim-d2 { animation-delay: 0.2s; }
.anim-d3 { animation-delay: 0.35s; }
.anim-d4 { animation-delay: 0.5s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 14px 0;
}

.nav-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-brand {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  text-align: center;
  letter-spacing: -0.01em;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--purple);
  color: white;
}

.btn-primary:hover {
  background: var(--purple-light);
  transform: translateY(-1px);
}

.btn-glow {
  box-shadow: 0 4px 16px var(--purple-glow), var(--shadow);
}

.btn-glow:hover {
  box-shadow: 0 6px 24px rgba(97, 0, 255, 0.3), var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 10px 16px;
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--bg-3);
}

.btn-secondary {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid rgba(97, 0, 255, 0.25);
}

.btn-secondary:hover {
  background: var(--purple-soft);
  border-color: var(--purple);
}

.btn-full { width: 100%; justify-content: center; }

/* ========================================
   Section 1: Hero
   ======================================== */
.hero {
  background: var(--bg-1);
  padding-top: 120px;
  padding-bottom: 100px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(97, 0, 255, 0.07) 0%, rgba(97, 0, 255, 0.02) 45%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-forest);
  background: var(--green-dim);
  border: 1px solid rgba(58, 181, 116, 0.25);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-headline {
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero-stat-number {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  color: var(--text-primary);
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--bg-4);
}

/* ========================================
   Section 2: Problem
   ======================================== */
.problem {
  background: var(--bg-2);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.problem-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grade-d);
  margin-bottom: 12px;
}

.problem .section-headline {
  margin-bottom: 28px;
}

.problem-copy p {
  font-size: 17px;
  margin-bottom: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.problem-copy p strong {
  color: var(--text-primary);
  font-weight: 600;
}

.problem-copy p:last-child {
  margin-bottom: 36px;
}

/* ========================================
   Section 3: Quiz
   ======================================== */
.quiz-section {
  background: var(--bg-2);
  padding: 80px 0 100px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.quiz-container {
  max-width: 680px;
}

.quiz-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-md);
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.category-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--sky);
}

.quiz-counter {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: var(--bg-4);
  border-radius: 2px;
  margin-bottom: 36px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  border-radius: 2px;
  width: 0%;
  transition: width 0.4s ease;
}

/* Question area */
.question-area {
  min-height: 340px;
}

.question-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: none;
  line-height: 1.4;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.options-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option-card {
  width: 100%;
  padding: 16px 20px;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  background: var(--bg-2);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.option-card:hover {
  border-color: rgba(97, 0, 255, 0.35);
  background: var(--purple-soft);
  color: var(--text-primary);
  transform: translateX(4px);
}

.option-card.selected {
  background: var(--purple);
  border-color: var(--purple);
  color: white;
  box-shadow: 0 4px 16px var(--purple-glow);
  transform: translateX(4px);
}

.option-card:active { transform: scale(0.99) translateX(4px); }

/* Question transitions */
.question-area.slide-out-left { animation: slideOutLeft 0.25s ease-out forwards; }
.question-area.slide-in-right { animation: slideInRight 0.25s ease-out forwards; }
.question-area.slide-out-right { animation: slideOutRight 0.25s ease-out forwards; }
.question-area.slide-in-left { animation: slideInLeft 0.25s ease-out forwards; }

@keyframes slideOutLeft {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-30px); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideOutRight {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(30px); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.quiz-nav { margin-top: 20px; }

/* ========================================
   Section 4: Results
   ======================================== */
.results-section {
  background: var(--bg-1);
  padding-top: 60px;
}

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

/* SVG Ring */
.score-ring-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 28px;
}

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

.score-ring-bg {
  fill: none;
  stroke: var(--bg-3);
  stroke-width: 6;
}

.score-ring-fill {
  fill: none;
  stroke: var(--grade-c);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 553;
  stroke-dashoffset: 553;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.3s ease;
}

.score-ring-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.score-number {
  font-family: 'Anton', sans-serif;
  font-size: 52px;
  line-height: 1;
  color: var(--text-primary);
}

.grade-letter {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.grade-headline {
  margin-bottom: 16px;
}

.grade-copy {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
}

/* Lead gate */
.lead-gate { margin-bottom: 56px; }

.lead-gate-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.lead-gate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--green-forest), var(--purple));
}

.lead-gate-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--purple-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--purple);
}

.lead-gate-headline {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.lead-gate-sub {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 15px;
}

.lead-gate-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 28px;
  max-width: 420px;
  text-align: left;
}

.lead-gate-list li {
  font-size: 14px;
  line-height: 1.6;
  padding: 6px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-secondary);
}

.lead-gate-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1.5px solid var(--green-forest);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6l2 2 4-4' stroke='%233AB574' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
  margin: 0 auto;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  border: 1.5px solid var(--bg-4);
  border-radius: var(--radius-xs);
  background: var(--bg-2);
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

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

.form-input:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(97, 0, 255, 0.1);
  background: var(--bg-1);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238886A0' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Confirmation */
.lead-confirmation { margin-bottom: 56px; }

.confirmation-card {
  background: var(--bg-2);
  border: 1px solid rgba(58, 181, 116, 0.2);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
}

.confirmation-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-dim);
  color: var(--green-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.confirmation-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 8px;
}

.confirmation-card p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 15px;
}

.confirmation-hint {
  font-size: 14px;
  color: var(--green-forest);
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 0 !important;
}

/* Category breakdown */
.category-breakdown {
  position: relative;
  padding: 36px 0;
}

.category-breakdown.blurred .breakdown-headline,
.category-breakdown.blurred .breakdown-sub,
.category-breakdown.blurred .category-bars,
.category-breakdown.blurred .category-warnings {
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
}

.breakdown-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  padding: 24px;
}

.breakdown-overlay .lock-icon {
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.breakdown-overlay p {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
}

.category-breakdown:not(.blurred) .breakdown-overlay { display: none; }

.breakdown-headline {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.breakdown-sub {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 14px;
}

.category-bars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.category-bar-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bar-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.bar-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.bar-score {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.bar-track {
  width: 100%;
  height: 8px;
  background: var(--bg-3);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 4px;
  width: 0%;
  transition: width 0.8s ease-out;
}

.bar-fill.bar-green { background: linear-gradient(90deg, var(--green-forest), var(--green)); }
.bar-fill.bar-yellow { background: linear-gradient(90deg, #D48B00, var(--grade-c)); }
.bar-fill.bar-red { background: linear-gradient(90deg, #B82030, var(--grade-f)); }

.category-bar-item:nth-child(2) .bar-fill { transition-delay: 0.15s; }
.category-bar-item:nth-child(3) .bar-fill { transition-delay: 0.3s; }
.category-bar-item:nth-child(4) .bar-fill { transition-delay: 0.45s; }
.category-bar-item:nth-child(5) .bar-fill { transition-delay: 0.6s; }

/* Category warnings */
.category-warnings {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-warning {
  background: rgba(212, 40, 64, 0.05);
  border-left: 3px solid var(--grade-f);
  padding: 14px 18px;
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.category-warning strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--grade-f);
}

/* ========================================
   Section 5: The Gap
   ======================================== */
.gap-section {
  background: var(--bg-2);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.gap-section .section-headline { margin-bottom: 20px; }

.gap-copy p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.gap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 32px 0;
}

.gap-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.gap-card:hover {
  border-color: rgba(97, 0, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.gap-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--purple-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--purple);
}

.gap-card h4 {
  margin-bottom: 6px;
  color: var(--text-primary);
}

.gap-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.gap-closer {
  font-size: 17px;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 28px;
  font-style: italic;
}

/* ========================================
   Section 6: Social Proof
   ======================================== */
.social-proof-section {
  background: var(--bg-1);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.social-proof-section .section-headline { margin-bottom: 32px; }

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

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-forest), var(--green));
}

.testimonial-card:hover {
  border-color: rgba(58, 181, 116, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-highlight {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--green-forest);
  margin-bottom: 14px;
  line-height: 1.2;
}

.testimonial-quote {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
  color: var(--text-secondary);
  flex: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--bg-3);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--text-primary);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding: 48px 0;
  text-align: center;
}

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-inner p {
  font-size: 14px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-inner p strong {
  color: rgba(255, 255, 255, 0.85);
}

.footer-link {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: opacity 0.2s;
}

.footer-link:hover { opacity: 0.8; }

/* ========================================
   Responsive — Tablet (768px+)
   ======================================== */
@media (min-width: 768px) {
  h1 { font-size: 56px; }
  h2 { font-size: 40px; }
  h3 { font-size: 28px; }

  .section { padding: 100px 0; }

  .hero { padding-top: 140px; padding-bottom: 120px; }
  .hero-sub { font-size: 19px; }
  .hero-badge { font-size: 13px; }

  .question-text { font-size: 22px; }
  .option-card { padding: 18px 24px; font-size: 15px; }

  .quiz-card { padding: 44px 40px 40px; }

  .score-ring-wrapper { width: 220px; height: 220px; }
  .score-number { font-size: 60px; }

  .lead-gate-card { padding: 44px 36px; }

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

  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ========================================
   Responsive — Desktop (1024px+)
   ======================================== */
@media (min-width: 1024px) {
  h1 { font-size: 64px; }

  .container { max-width: 920px; }
  .hero-content { max-width: 740px; }

  .btn { padding: 15px 32px; font-size: 16px; }

  .hero-glow { width: 1000px; height: 700px; }
}
