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

:root {
  --bg: #0b0b13;
  --bg2: #0f0f1c;
  --bg3: #13131f;
  --accent: #e8a045;
  --accent2: #f0c070;
  --text: #ededf5;
  --text-muted: #8888aa;
  --border: rgba(255,255,255,0.07);
  --radius: 18px;
}

html { scroll-behavior: smooth; }

/* ===== BACKGROUND BLOBS ===== */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #e8a045, transparent);
  top: -200px;
  left: -200px;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #f0c070, transparent);
  top: 40%;
  right: -150px;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #e8a045, transparent);
  bottom: -100px;
  left: 30%;
}

nav, section, .proof-bar, footer { position: relative; z-index: 1; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 11, 19, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.85; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  gap: 70px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 130px 28px 80px;
}

.hero-image {
  flex: 0 0 420px;
}

.hero-content {
  flex: 1;
}

.hero-eyebrow {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  padding: 15px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }

.btn-large { padding: 18px 36px; font-size: 1.05rem; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text-muted);
  padding: 13px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover { border-color: var(--accent); color: var(--text); }

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  max-width: 320px;
}

.hero-buttons .btn-primary {
  padding: 11px 20px;
  font-size: 0.88rem;
  width: fit-content;
}

.hero-free-btn {
  background: transparent !important;
  border: 2px solid var(--accent) !important;
  color: var(--accent) !important;
}

.hero-free-btn:hover {
  background: var(--accent) !important;
  color: #fff !important;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ===== HERO VIDEO / AI DEMO ===== */
.hero-video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  background: #0d0d1a;
  border: 1px solid var(--border);
  height: 500px;
  display: flex;
  flex-direction: column;
}

.ai-demo {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: 'Inter', sans-serif;
}

.ai-demo-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}


.ai-demo-bar-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
  margin-right: 42px;
}

.ai-demo-body {
  flex: 1;
  overflow: hidden;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
}

/* Quiz animation elements */
.aid-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.aid-q {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.35;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

.aid-opts {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.aid-opt {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 9px 13px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
  line-height: 1.4;
}

.aid-opt.selected {
  border-color: var(--accent);
  background: rgba(232,160,69,0.13);
  color: var(--text);
}

.aid-check {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.aid-result-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.aid-result-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 6px;
}

.aid-result-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.aid-result-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  padding: 11px 18px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.83rem;
}

/* ===== HERO QUIZ CTA ===== */
.hero-quiz-cta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg3);
  border: 1px solid rgba(232,160,69,0.3);
  border-radius: 14px;
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.hero-quiz-cta:hover {
  border-color: var(--accent);
  background: rgba(232,160,69,0.06);
  transform: translateY(-2px);
}

.quiz-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.quiz-cta-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.quiz-cta-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.quiz-arrow {
  margin-left: auto;
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== PROOF BAR ===== */
.proof-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 24px 28px;
}

.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.proof-item {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.proof-item strong {
  color: var(--text);
  font-weight: 700;
}

.divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* ===== SECTION COMMONS ===== */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 600px;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-images {
  flex: 0 0 380px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-img-main {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  grid-column: span 2;
}

.about-img-secondary {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  grid-column: span 2;
}

@media (max-width: 768px) {
  .about-inner { flex-direction: column; }
  .about-images { flex: none; width: 100%; }
}

.about-text {
  max-width: 640px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text .btn-outline {
  margin-top: 16px;
}

/* ===== FREE PROMPTS ===== */
.free-prompts {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.free-prompts-inner {
  display: flex;
  align-items: center;
  gap: 70px;
}

.free-prompts-left {
  flex: 1;
}

.free-prompts-left h2 {
  max-width: 480px;
}

.free-prompts-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 460px;
}

.free-prompts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.free-prompts-list li {
  font-size: 0.97rem;
  color: var(--text);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.free-prompts-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.free-prompts-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

.free-prompts-right {
  flex: 0 0 420px;
}

.free-prompts-card {
  background: var(--bg3);
  border: 1px solid rgba(232,160,69,0.25);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.free-prompts-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.free-prompts-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.free-prompts-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.free-prompts-card-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.beehiiv-placeholder {
  background: rgba(232,160,69,0.06);
  border: 1px dashed rgba(232,160,69,0.3);
  border-radius: 10px;
  padding: 28px 20px;
  color: rgba(232,160,69,0.6);
  font-size: 0.88rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 16px;
}

.free-prompts-privacy {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .free-prompts-inner {
    flex-direction: column;
    gap: 40px;
  }
  .free-prompts-right {
    flex: none;
    width: 100%;
  }
  .free-prompts { padding: 70px 0; }
}

/* ===== PRODUCTS ===== */
.products {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.products h2 { margin-bottom: 28px; }

.start-here-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(232,160,69,0.1), rgba(240,192,112,0.05));
  border: 1px solid rgba(232,160,69,0.3);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.start-here-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.start-here-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.start-here-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 540px;
}

.start-here-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card.featured {
  border-color: rgba(108, 99, 255, 0.35);
}

.product-card.soon {
  opacity: 0.7;
}

.product-card.free-card {
  border-color: rgba(232,160,69,0.4);
  background: linear-gradient(160deg, rgba(232,160,69,0.07), var(--bg3));
}

.free-tag {
  background: rgba(232,160,69,0.15) !important;
  color: var(--accent) !important;
}

.free-price {
  color: var(--accent) !important;
}

.free-card-btn {
  background: transparent !important;
  border: 2px solid var(--accent) !important;
  color: var(--accent) !important;
}

.free-card-btn:hover {
  background: var(--accent) !important;
  color: #fff !important;
}

.product-tag {
  display: inline-block;
  background: rgba(108,99,255,0.15);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  width: fit-content;
}

.product-tag.coming {
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
}

.product-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.product-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.product-one-liner {
  font-size: 0.9rem !important;
  color: var(--text-muted);
  line-height: 1.65;
  border-left: 2px solid var(--accent);
  padding-left: 12px;
}

.product-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.product-card ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.product-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.price-block { display: flex; flex-direction: column; }

.price {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -1px;
}

.price-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
}

.faq h2 {
  margin-bottom: 48px;
}

.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

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

.faq-q.open { color: var(--accent); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-q.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-a.open {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-a p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== BOTTOM CTA ===== */
.bottom-cta {
  padding: 110px 0;
  text-align: center;
}

.cta-inner h2 {
  max-width: 100%;
  margin: 0 auto 16px;
}

.cta-inner p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.cta-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cta-label {
  font-size: 0.75rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent) !important;
  margin: 0 !important;
}

.cta-divider {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.cta-note {
  font-size: 0.78rem !important;
  color: var(--text-muted);
  margin: 0 !important;
}

/* ===== FOOTER ===== */
footer {
  padding: 50px 28px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-inner p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 10px 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 18px 0;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 0.75rem !important;
  margin-top: 20px !important;
}

/* ===== QUIZ MODAL ===== */
.quiz-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.quiz-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.quiz-overlay.open .quiz-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.quiz-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  width: 100%;
  max-width: 480px;
  padding: 40px 36px 36px;
  position: relative;
  box-shadow: 0 32px 100px rgba(0,0,0,0.7);
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  transition: transform 0.26s ease, opacity 0.26s ease;
}

.quiz-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}

.quiz-step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--border);
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.quiz-step-dot.active {
  background: var(--accent);
  border-color: var(--accent);
}

.quiz-step-dot.done {
  background: var(--accent2);
  border-color: var(--accent2);
}

.quiz-step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 6px;
}

.quiz-x {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  padding: 4px 8px;
  transition: color 0.2s;
}

.quiz-x:hover { color: var(--text); }

.quiz-body {
  transition: opacity 0.18s ease;
}

.quiz-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

.quiz-q {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.75px;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 8px;
  max-width: 100%;
}

.quiz-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

.quiz-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.18s, color 0.18s, background 0.18s, transform 0.15s;
  width: 100%;
}

.quiz-opt:hover {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(232,160,69,0.07);
  transform: translateX(4px);
}

.quiz-opt.selected {
  border-color: var(--accent);
  background: rgba(232,160,69,0.12);
  color: var(--text);
}

.quiz-result-check {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.quiz-result-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 10px;
}

.quiz-result-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 22px;
}

.quiz-product-card {
  background: linear-gradient(135deg, rgba(232,160,69,0.1), rgba(240,192,112,0.04));
  border: 1px solid rgba(232,160,69,0.3);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 16px;
}

.quiz-product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.quiz-product-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.quiz-product-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.quiz-product-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -1px;
  flex-shrink: 0;
}

.quiz-buy-btn {
  display: block;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  padding: 13px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
}

.quiz-buy-btn:hover { opacity: 0.87; transform: translateY(-1px); }

.quiz-retry {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-decoration: underline;
  transition: color 0.2s;
  display: block;
  margin: 0 auto;
}

.quiz-retry:hover { color: var(--text); }

@media (max-width: 520px) {
  .quiz-card { padding: 32px 22px 28px; }
  .quiz-q { font-size: 1.3rem; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 110px 20px 60px;
    gap: 36px;
    text-align: center;
  }

  .hero-image { flex: none; width: 100%; max-width: 260px; margin: 0 auto; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-note { text-align: center; }

  .proof-inner { gap: 20px; }
  .divider { display: none; }

  .about { padding: 70px 0; }
  .products { padding: 70px 0; }
  .bottom-cta { padding: 70px 0; }

  .product-bottom { flex-direction: column; align-items: flex-start; }

  .nav-links a:not(.nav-cta) { display: none; }

  .alex-chat { bottom: 16px; right: 16px; }
}

@media (max-width: 420px) {
  .quiz-card { padding: 32px 22px 28px; }
}
