:root {
  --bg: #fbfaf7;
  --bg-soft: #f3efe7;
  --bg-strong: #f4ede2;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --surface-dark: #111827;
  --text: #101828;
  --muted: #667085;
  --line: rgba(16, 24, 40, 0.08);
  --accent: #ff7a45;
  --accent-deep: #f05a28;
  --accent-soft: #ffe7db;
  --mint: #dff3e8;
  --shadow: 0 30px 70px rgba(17, 24, 39, 0.08);
  --shadow-soft: 0 18px 40px rgba(17, 24, 39, 0.06);
  --radius-xl: 40px;
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 226, 212, 0.92), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(224, 240, 232, 0.95), transparent 24%),
    linear-gradient(180deg, #fffefc 0%, #f8f4ed 58%, #fcfbf8 100%);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
}

.hidden {
  display: none !important;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quiz-screen,
.result-screen {
  min-height: 100vh;
  position: relative;
}

.quiz-screen {
  padding: 5rem 1.2rem 2rem;
}

.quiz-progress-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  padding: 1rem 1rem 1.1rem;
  backdrop-filter: blur(16px);
  background: rgba(255, 249, 242, 0.82);
  border-bottom: 1px solid rgba(16, 24, 40, 0.06);
}

.quiz-progress-top {
  max-width: var(--max-width);
  margin: 0 auto 0.7rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.quiz-progress-bar {
  max-width: var(--max-width);
  height: 12px;
  margin: 0 auto;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 2px rgba(16, 24, 40, 0.06);
}

.quiz-progress-fill {
  height: 100%;
  width: 10%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f7a56f 0%, #ef6d45 100%);
  transition: width 320ms ease;
}

.quiz-panel,
.result-card,
.hero-section,
.section-card,
.offer-card,
.footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.quiz-panel {
  display: grid;
  gap: 1.8rem;
  align-items: start;
  padding-top: 2rem;
}

.quiz-copy h1,
.hero-copy h1,
.section-heading h2,
.offer-copy h2,
.result-card h2 {
  margin: 0.9rem 0 0;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.quiz-copy h1 {
  font-size: clamp(2.1rem, 7vw, 4.4rem);
}

.quiz-copy p,
.hero-copy p,
.section-heading p,
.result-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.04rem;
}

.question-card,
.result-card,
.mockup-stage,
.pain-item,
.benefit-card,
.step-card,
.testimonial-card,
.confidence-panel,
.price-box,
.faq-item {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.question-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.question-card-glow {
  position: absolute;
  inset: -20% auto auto -10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 199, 156, 0.35);
  filter: blur(10px);
}

.question-body {
  padding: 1.8rem;
  position: relative;
  z-index: 1;
}

.question-step {
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.question-body h2 {
  margin: 0.85rem 0 1.4rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

.answers {
  display: grid;
  gap: 0.85rem;
}

.answer-button {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.answer-button:hover,
.answer-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(240, 90, 40, 0.24);
  background: #fff;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.08);
  outline: none;
}

.question-footer {
  display: flex;
  justify-content: flex-end;
  padding: 0 1.8rem 1.4rem;
}

.completion-chip {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(223, 243, 232, 0.88);
  color: #216847;
  font-weight: 700;
  font-size: 0.9rem;
}

.result-screen {
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.result-card {
  max-width: 760px;
  padding: 2rem;
  border-radius: 34px;
  text-align: center;
  animation: riseIn 600ms ease both;
}

.result-badge {
  display: inline-block;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(223, 243, 232, 0.88);
  color: #216847;
  font-weight: 700;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.5rem;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(240, 90, 40, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(240, 90, 40, 0.35);
  filter: saturate(1.04);
  outline: none;
}

.result-button {
  margin-top: 1rem;
}

.landing {
  padding: 1.6rem 0 4rem;
}

.hero-section {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-top: 1.6rem;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 7vw, 5.2rem);
  max-width: 12ch;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.8rem;
}

.hero-inline-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
}

.hero-inline-proof span {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 24, 40, 0.06);
}

.hero-proof-card {
  max-width: 290px;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 24, 40, 0.06);
  box-shadow: var(--shadow-soft);
}

.hero-proof-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.hero-proof-card span {
  color: var(--muted);
  line-height: 1.55;
}

.trust-grid,
.offer-includes,
.offer-checks,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-grid {
  margin-top: 1.7rem;
}

.trust-pill,
.offer-includes span {
  padding: 0.82rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 24, 40, 0.06);
  color: var(--text);
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.mockup-stage {
  min-height: 520px;
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.96), transparent 28%),
    linear-gradient(145deg, rgba(255, 240, 229, 0.92), rgba(242, 247, 244, 0.92));
}

.book-tag,
.mini-label,
.price-note {
  display: inline-block;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-product-frame {
  margin-top: 3.2rem;
  padding: 0.8rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 46px rgba(17, 24, 39, 0.1);
}

.hero-product-image {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.hero-badge {
  position: absolute;
  z-index: 3;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-badge-top {
  top: 1rem;
  right: 1rem;
}

.hero-badge-bottom {
  bottom: 8.5rem;
  left: 1rem;
}

.mockup-base-card {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  padding: 1.25rem;
  border-radius: 24px;
  background: rgba(17, 24, 39, 0.95);
  color: #f8fafc;
}

.mockup-base-card ul {
  margin: 0.95rem 0 0;
  padding-left: 1.05rem;
  color: rgba(248, 250, 252, 0.8);
}

.floating {
  animation: drift 6.2s ease-in-out infinite;
}

.section-card,
.offer-card {
  margin-top: 1.5rem;
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.section-heading h2,
.offer-copy h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.pain-grid,
.benefits-grid,
.steps-grid,
.proof-layout,
.offer-card,
.social-stats,
.solution-flow,
.solution-layout,
.preview-grid,
.usage-visuals {
  display: grid;
  gap: 1rem;
}

.pattern-banner {
  max-width: 920px;
}

.preview-grid {
  margin-top: 1.5rem;
}

.preview-card {
  min-height: 220px;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 24, 40, 0.06);
  box-shadow: var(--shadow-soft);
}

.preview-card-large {
  min-height: 280px;
}

.preview-sheet {
  height: 100%;
  border-radius: 24px;
  padding: 0.7rem;
  border: 1px solid rgba(16, 24, 40, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 241, 0.96));
}

.preview-sheet-soft {
  background: linear-gradient(180deg, #fff8f3, #ffffff);
}

.preview-sheet-mint {
  background: linear-gradient(180deg, #f5fff9, #ffffff);
}

.preview-sheet-peach {
  background: linear-gradient(180deg, #fff4ec, #ffffff);
}

.preview-image {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.pain-item,
.benefit-card,
.step-card,
.testimonial-card,
.confidence-panel,
.price-box {
  border-radius: 28px;
  padding: 1.4rem;
}

.pain-item h3,
.benefit-card h3,
.step-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.pain-item p,
.benefit-card p,
.step-card p,
.testimonial-card p,
.confidence-stat span,
.price-box p,
.faq-answer p,
.footer p,
.social-stat span {
  color: var(--muted);
  line-height: 1.65;
}

.solution-flow {
  margin-top: 1.6rem;
}

.flow-step,
.flow-arrow {
  display: grid;
  place-items: center;
}

.flow-step {
  padding: 1.3rem;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 240, 0.94));
  border: 1px solid rgba(16, 24, 40, 0.06);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.flow-step strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}

.flow-step span {
  color: var(--muted);
  line-height: 1.55;
}

.flow-arrow {
  color: var(--accent-deep);
  font-size: 1.4rem;
  font-weight: 800;
}

.solution-feature {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.2rem 1.3rem;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 241, 0.94));
  border: 1px solid rgba(16, 24, 40, 0.06);
  box-shadow: var(--shadow-soft);
}

.usage-visuals {
  margin-top: 1.2rem;
}

.usage-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 24, 40, 0.06);
  box-shadow: var(--shadow-soft);
}

.usage-card strong {
  display: block;
  margin-bottom: 0.4rem;
}

.usage-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.usage-image {
  width: 100%;
  min-height: 120px;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff1e7, #fffaf7);
  color: var(--accent-deep);
  font-weight: 800;
  margin-bottom: 1rem;
}

.benefit-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 247, 241, 0.94));
}

.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff1e7, #fffaf7);
  color: var(--accent-deep);
  font-weight: 800;
}

.social-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.4rem 0;
}

.social-stat {
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 24, 40, 0.06);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.social-stat strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
}

.confidence-panel,
.price-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 244, 238, 0.94));
}

.confidence-panel {
  display: grid;
  gap: 1rem;
}

.before-after-card {
  padding: 1.35rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #101828, #182230);
  color: #f8fafc;
}

.before-after-line {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1rem;
}

.before-after-line span {
  color: rgba(248, 250, 252, 0.82);
}

.confidence-stat strong {
  display: block;
  margin-bottom: 0.25rem;
}

.price-line {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 1rem 0;
}

.old-price {
  color: #ae9588;
  text-decoration: line-through;
}

.price-line strong {
  font-size: clamp(2rem, 7vw, 3.4rem);
  font-family: "Poppins", sans-serif;
  color: var(--accent-deep);
}

.offer-checks {
  margin-top: 1rem;
  color: var(--text);
  font-weight: 600;
}

.offer-mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.offer-thumb {
  min-height: 88px;
  border-radius: 18px;
  border: 1px solid rgba(16, 24, 40, 0.06);
  box-shadow: var(--shadow-soft);
}

.thumb-one {
  background: linear-gradient(135deg, #fff2e8, #ffffff);
}

.thumb-two {
  background: linear-gradient(135deg, #f3fff8, #ffffff);
}

.thumb-three {
  background: linear-gradient(135deg, #fff8f3, #ffffff);
}

.full-width {
  width: 100%;
  margin: 0.5rem 0 0.8rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border-radius: 24px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent-deep);
  transition: transform 200ms ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
  padding: 0 1.25rem;
}

.faq-item.open .faq-answer {
  max-height: 180px;
  padding-bottom: 1.2rem;
}

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

.footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0 0;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 760px) {
  .quiz-screen {
    padding: 6rem 2rem 2.5rem;
  }

  .quiz-panel,
  .proof-layout,
  .offer-card,
  .hero-section {
    grid-template-columns: 1.02fr 0.98fr;
  }

  .pain-grid,
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .preview-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .preview-card-large {
    grid-row: span 2;
  }

  .social-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .solution-layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solution-flow {
    grid-template-columns: 1fr auto 1fr auto 1fr;
  }

  .usage-visuals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media (min-width: 1040px) {
  .landing {
    padding-top: 2.2rem;
  }

  .hero-section,
  .section-card,
  .offer-card,
  .footer {
    width: min(calc(100% - 4rem), var(--max-width));
  }

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

  .question-body,
  .result-card,
  .section-card,
  .offer-card {
    padding: 2.1rem;
  }
}

@media (max-width: 640px) {
  .hero-badge-bottom {
    bottom: 9.3rem;
  }

  .hero-product-frame {
    margin-top: 3.8rem;
    padding: 0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
