:root {
  --bg: #f7f8f4;
  --bg-soft: #eef1e8;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --surface-muted: #f2f4ee;
  --text: #252543;
  --muted: #7f829e;
  --muted-strong: #62667b;
  --line: rgba(37, 37, 67, 0.08);
  --green: #3d876f;
  --green-deep: #2f6f5a;
  --green-soft: rgba(61, 135, 111, 0.14);
  --yellow: #f3d984;
  --orange: #f3a261;
  --danger: #eb7a6b;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 20px 60px rgba(26, 32, 44, 0.08);
  --shadow-soft: 0 12px 30px rgba(40, 48, 64, 0.08);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(61, 135, 111, 0.12), rgba(61, 135, 111, 0) 32%),
    radial-gradient(circle at bottom right, rgba(243, 217, 132, 0.18), rgba(243, 217, 132, 0) 30%),
    var(--bg);
  font-family: "Manrope", sans-serif;
  color: var(--text);
}

button,
input {
  font: inherit;
}

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

.quiz-shell {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.quiz-bg {
  position: fixed;
  width: 42vw;
  height: 42vw;
  max-width: 480px;
  max-height: 480px;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.6;
  pointer-events: none;
}

.quiz-bg-top {
  top: -18vw;
  left: -18vw;
  background: rgba(111, 173, 148, 0.22);
}

.quiz-bg-bottom {
  right: -16vw;
  bottom: -18vw;
  background: rgba(243, 217, 132, 0.24);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px 12px;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(247, 248, 244, 0.94), rgba(247, 248, 244, 0.72));
}

.icon-button {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.icon-button[disabled] {
  visibility: hidden;
  pointer-events: none;
}

.icon-chevron {
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--green);
  border-left: 3px solid var(--green);
  transform: rotate(-45deg);
  margin-left: 4px;
}

.brand-lockup {
  min-width: 0;
}

.brand {
  font-size: 15px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.03em;
}

.brand-sub {
  font-size: 13px;
  color: var(--muted);
}

.progress-lockup {
  margin-left: auto;
  width: min(42vw, 220px);
}

.progress-copy {
  margin-bottom: 6px;
  font-size: 11px;
  text-align: right;
  color: var(--muted);
}

.progress-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(61, 135, 111, 0.12);
  overflow: hidden;
}

.progress-track > span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #72b39a, var(--green));
  transition: width 0.45s ease;
}

.app-frame {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 8px 16px 80px;
}

.screen {
  animation: screenIn 0.38s cubic-bezier(.22, 1, .36, 1);
}

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

.hero-card,
.content-card,
.panel,
.paywall-card,
.faq-card,
.review-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
}

.hero-inner {
  display: grid;
  gap: 26px;
  padding: 24px 22px 22px;
}

.headline {
  margin: 10px 0 0;
  font-size: clamp(32px, 6vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.name-highlight {
  color: #22c55e;
  font-weight: 700;
}

.subhead {
  margin: 16px 0 0;
  max-width: 740px;
  font-size: clamp(17px, 3vw, 22px);
  line-height: 1.5;
  color: var(--muted-strong);
}

.question-label {
  margin: 20px 0 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted-strong);
}

.welcome-trust {
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  font-size: 13px;
  line-height: 1.5;
  color: #94a3b8;
  text-align: center;
}

.welcome-trust span {
  white-space: nowrap;
}

.hero-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-choice {
  display: flex;
  flex-direction: column;
  position: relative;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  padding: 0;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-choice:hover,
.hero-choice:focus-visible,
.option-card:hover,
.option-card:focus-visible,
.plan-option:hover,
.plan-option:focus-visible,
.duration-option:hover,
.duration-option:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(36, 42, 56, 0.12);
}

.hero-choice-media {
  display: block;
  flex: 1 1 auto;
  aspect-ratio: 0.9 / 1;
  overflow: hidden;
  background: linear-gradient(180deg, #e4ece7 0%, #d8e4dd 100%);
}

.hero-choice-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-choice::after {
  content: attr(data-label);
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #4a8e77 0%, #3d876f 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 12px 24px rgba(34, 88, 72, 0.24);
  pointer-events: none;
  z-index: 2;
}

.hero-choice-footer {
  display: none;
}

.hero-choice-arrow {
  font-size: 26px;
  line-height: 1;
}

.legal-note {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

.content-card {
  padding: 28px 22px 22px;
}

.step-title {
  margin: 6px 0 10px;
  font-size: clamp(30px, 5.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.choice-intro {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted-strong);
}

.step-subtitle {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted-strong);
}

.choice-microcopy {
  margin: 8px 0 16px;
  font-size: 13px;
  line-height: 1.45;
  color: #94a3b8;
}

.option-grid {
  display: grid;
  gap: 12px;
}

.choice-trust {
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  font-size: 13px;
  line-height: 1.5;
  color: #94a3b8;
  text-align: center;
}

.choice-trust span {
  white-space: nowrap;
}

.option-card,
.plan-option,
.duration-option {
  display: flex;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 18px 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.option-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-muted);
  font-size: 20px;
}

.option-copy {
  min-width: 0;
}

.option-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.option-note {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

.option-check,
.plan-radio,
.duration-radio {
  width: 24px;
  height: 24px;
  margin-left: auto;
  border-radius: 999px;
  border: 2px solid rgba(61, 135, 111, 0.24);
  position: relative;
  flex: 0 0 auto;
}

.option-check::after,
.plan-radio::after,
.duration-radio::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: var(--green);
  transform: scale(0);
  transition: transform 0.2s ease;
}

.selected {
  border-color: rgba(61, 135, 111, 0.46);
  background: rgba(239, 248, 244, 0.92);
}

.selected .option-check::after,
.selected .plan-radio::after,
.selected .duration-radio::after {
  transform: scale(1);
}

.support-layout,
.expert-layout {
  display: grid;
  gap: 18px;
}

.support-badge,
.mini-badge,
.status-pill,
.plan-badge,
.most-popular {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.support-badge,
.status-pill,
.most-popular {
  color: var(--green-deep);
  background: rgba(61, 135, 111, 0.12);
}

.support-panel {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: linear-gradient(180deg, #f7fbf8 0%, #eef6f1 100%);
  border: 1px solid rgba(61, 135, 111, 0.12);
  border-radius: 28px;
}

.support-panel img,
.expert-portrait img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

.support-text,
.expert-copy p,
.summary-copy,
.chart-copy,
.paywall-copy,
.trust-copy {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted-strong);
}

.cta-button,
.ghost-button,
.paywall-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  padding: 16px 20px;
  border: 0;
  border-radius: 999px;
  font-size: 19px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button,
.paywall-button {
  color: #fff;
  background: linear-gradient(180deg, #4a8e77 0%, #3d876f 100%);
  box-shadow: 0 18px 34px rgba(61, 135, 111, 0.22);
}

.ghost-button {
  color: var(--green-deep);
  background: rgba(61, 135, 111, 0.08);
}

.cta-button:hover,
.paywall-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.cta-button:disabled,
.paywall-button:disabled,
.ghost-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
  box-shadow: none;
}

.email-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 26, 44, 0.42);
  backdrop-filter: blur(8px);
}

.email-modal {
  width: min(100%, 520px);
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(127, 130, 158, 0.18);
  box-shadow: 0 24px 70px rgba(21, 29, 50, 0.18);
}

.email-modal-head,
.email-modal-body {
  display: grid;
  gap: 10px;
}

.email-modal-eyebrow {
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
}

.email-modal-title {
  margin: 0;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.15;
  color: var(--text);
}

.email-modal-copy {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted-strong);
}

.email-modal-input {
  width: 100%;
  min-height: 60px;
  margin-top: 8px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(127, 130, 158, 0.24);
  background: #fff;
  font-size: 17px;
  color: var(--text);
  outline: none;
}

.email-modal-input:focus {
  border-color: rgba(61, 135, 111, 0.55);
  box-shadow: 0 0 0 4px rgba(61, 135, 111, 0.12);
}

.email-modal-error {
  min-height: 20px;
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #b24b3f;
}

.email-modal-trust,
.email-modal-subtrust {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: #6b7280;
}

.email-modal-trust {
  margin-top: 6px;
}

.email-modal-subtrust {
  margin-top: -2px;
}

.email-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.email-modal-primary,
.email-modal-secondary {
  flex: 1 1 0;
  min-height: 56px;
  border-radius: 999px;
  border: 0;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.email-modal-primary {
  color: #fff;
  background: linear-gradient(180deg, #4a8e77 0%, #3d876f 100%);
}

.email-modal-secondary {
  color: var(--green-deep);
  background: rgba(61, 135, 111, 0.1);
}

.input-wrap {
  display: grid;
  gap: 12px;
}

.name-input {
  width: 100%;
  min-height: 64px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  font-size: 18px;
  color: var(--text);
}

.input-note {
  font-size: 13px;
  color: var(--muted);
}

.loader-card {
  padding: 26px 22px 24px;
}

.loader-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 20px;
}

.loader-item {
  padding: 16px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.loader-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.loader-label {
  font-size: 16px;
  font-weight: 700;
}

.loader-percent {
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.loader-check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(61, 135, 111, 0.14);
  position: relative;
  flex: 0 0 auto;
}

.loader-check.done::before {
  content: "";
  position: absolute;
  inset: 5px 6px 7px 5px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
}

.loader-track {
  margin-top: 12px;
  height: 10px;
  border-radius: 999px;
  background: rgba(61, 135, 111, 0.1);
  overflow: hidden;
}

.loader-track > span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #9cd0bc 0%, #4a8e77 100%);
  transition: width 0.4s ease;
}

.loader-side {
  display: grid;
  gap: 14px;
}

.loader-qa,
.social-toast {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

.micro-question-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
}

.micro-answers {
  display: flex;
  gap: 10px;
}

.micro-answers button {
  flex: 1;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-strong);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.micro-answers button.selected {
  background: rgba(239, 248, 244, 0.92);
  border-color: rgba(61, 135, 111, 0.4);
}

.review-rotator {
  min-height: 92px;
}

.review-quote {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted-strong);
}

.review-meta {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.summary-grid,
.chart-grid,
.paywall-hero,
.paywall-grid,
.after-grid,
.faq-grid,
.trust-grid {
  display: grid;
  gap: 18px;
}

.summary-layout {
  display: grid;
  gap: 18px;
}

.summary-meter {
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
}

.status-pill {
  margin-bottom: 16px;
}

.meter-track {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--danger) 0%, #f7c44d 45%, #71b28e 100%);
}

.meter-dot {
  position: absolute;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 5px solid #ffc53b;
  background: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 20px rgba(255, 197, 59, 0.22);
  transition: left 0.7s cubic-bezier(.22, 1, .36, 1);
}

.meter-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 14px;
  color: #9596b3;
  font-weight: 700;
}

.meter-scale strong {
  color: #ff9800;
}

.summary-highlight {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 246, 214, 0.8) 0%, rgba(255, 241, 198, 0.86) 100%);
  border: 1px solid rgba(255, 191, 71, 0.4);
}

.summary-list {
  display: grid;
  gap: 14px;
}

.summary-next-step {
  margin-top: 14px;
  padding: 14px 16px;
  display: grid;
  gap: 6px;
  border-radius: 18px;
  background: rgba(61, 135, 111, 0.08);
  color: var(--muted-strong);
}

.summary-next-step strong {
  font-size: 14px;
  line-height: 1.4;
  color: var(--text);
}

.summary-next-step span {
  font-size: 14px;
  line-height: 1.45;
}

.summary-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.summary-item-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 135, 111, 0.12);
  color: var(--green-deep);
  font-size: 18px;
}

.summary-visual,
.expert-portrait,
.before-card,
.after-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 280px;
  background: linear-gradient(180deg, #eef3ef 0%, #dde8e2 100%);
}

.summary-visual img,
.before-card img,
.after-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.paywall-device-card {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 18px 84px;
}

.phone-shell-single {
  width: min(100%, 240px);
}

.support-photo {
  min-height: 420px;
  background: #ece8e2;
}

.support-photo img {
  object-position: center 35%;
}

.summary-visual .overlay-text,
.before-card .overlay-text,
.after-card .overlay-text {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(180deg, rgba(24, 32, 40, 0.04), rgba(24, 32, 40, 0.62));
  font-size: 15px;
  font-weight: 700;
}

.expert-layout {
  align-items: center;
}

.expert-title {
  margin: 0 0 8px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.expert-role {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.plan-option {
  align-items: flex-start;
  justify-content: space-between;
}

.plan-copy,
.duration-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.plan-secondary-note {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.4;
  color: #6b7280;
}

.plan-price-row,
.duration-note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
}

.plan-new {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}

.plan-badge {
  margin-left: auto;
  min-width: 92px;
  padding: 10px 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(214, 245, 225, 0.92) 0%, rgba(198, 239, 213, 0.98) 100%);
  color: #146534;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.plan-badge strong {
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
}

.plan-badge small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.1;
  font-weight: 700;
  color: rgba(20, 101, 52, 0.72);
}

.most-popular {
  background: rgba(61, 135, 111, 0.14);
}

.checkout-note {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.checkout-note-disabled {
  color: #9a5b2a;
}

.paywall-cta-note {
  margin: 11px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: #6b7280;
  text-align: center;
}

.paywall-cta-subcopy {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: #6b7280;
  text-align: center;
}

.paywall-renew-note {
  max-width: 760px;
  margin: 16px auto 0;
  font-size: 12px;
  line-height: 1.65;
  color: #9aa0b5;
  text-align: center;
}

.chart-card {
  padding: 28px 22px 22px;
}

.chart-wrapper {
  padding: 18px 14px 10px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
}

.chart-header-date {
  margin: 8px 0 0;
  font-size: 24px;
  text-align: center;
  font-weight: 800;
  color: var(--green);
}

.chart-svg text {
  font-family: "Manrope", sans-serif;
}

.chart-path {
  fill: none;
  stroke: url(#chartGradient);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 480;
  stroke-dashoffset: 480;
  transition: stroke-dashoffset 1.2s cubic-bezier(.22, 1, .36, 1);
}

.chart-path.animated {
  stroke-dashoffset: 0;
}

.chart-point {
  opacity: 0;
  transform-origin: center;
  transform: scale(0.5);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.chart-point.visible {
  opacity: 1;
  transform: scale(1);
}

.sticky-offer {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  margin: -8px -16px 18px;
  background: rgba(37, 37, 67, 0.94);
  color: #fff;
}

.sticky-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.sticky-offer-copy {
  min-width: 0;
}

.sticky-offer-copy strong {
  display: block;
  font-size: 14px;
}

.sticky-offer-copy span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.76);
}

.sticky-offer .paywall-button {
  width: auto;
  min-height: 46px;
  padding: 12px 18px;
  white-space: nowrap;
}

.paywall-section {
  display: grid;
  gap: 18px;
}

.mobile-sticky-paybar {
  display: none;
}

.paywall-card {
  padding: 24px 22px;
}

.paywall-hero {
  align-items: start;
}

.app-showcase {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  min-height: 460px;
  padding: 18px 8px 8px;
}

.showcase-wrap {
  display: grid;
  gap: 14px;
}

.phone-mockup {
  position: relative;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  animation: mockupFloat 6s ease-in-out infinite;
}

.phone-mockup-left {
  z-index: 1;
  transform: translateX(42px) rotate(-9deg) scale(0.88);
}

.phone-mockup-center {
  z-index: 3;
  transform: translateY(-8px) scale(1);
}

.phone-mockup-right {
  z-index: 2;
  transform: translateX(-42px) rotate(9deg) scale(0.88);
  animation-delay: 0.9s;
}

@keyframes mockupFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

.phone-shell {
  width: 220px;
  padding: 10px;
  border-radius: 34px;
  background: linear-gradient(180deg, #1f2a37 0%, #0f1720 100%);
  box-shadow: 0 28px 60px rgba(18, 25, 37, 0.22);
}

.phone-notch {
  width: 88px;
  height: 18px;
  margin: 0 auto 8px;
  border-radius: 0 0 14px 14px;
  background: #0b1119;
}

.phone-screen {
  position: relative;
  min-height: 390px;
  border-radius: 26px;
  padding: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfcf8 0%, #eef4ef 100%);
}

.phone-screen-real {
  padding: 0;
  background: #f4f6f1;
  min-height: 0;
  aspect-ratio: 280 / 607;
}

.phone-real-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.phone-real-screen-emotion {
  object-position: center top;
  transform: scale(1.02);
  transform-origin: top center;
}

.mock-status {
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 12px;
}

.showcase-caption {
  margin-top: 16px;
  text-align: center;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted-strong);
  font-weight: 700;
}

.price-callout {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.mini-badge {
  background: rgba(243, 217, 132, 0.22);
  color: #8a6923;
}

.metric-row {
  display: grid;
  gap: 10px;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
}

.metric-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.metric-state {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.metric-state.warn {
  color: #a06611;
  background: rgba(255, 210, 123, 0.28);
}

.metric-state.good {
  color: var(--green-deep);
  background: rgba(61, 135, 111, 0.16);
}

.plan-highlights {
  display: grid;
  gap: 12px;
}

.plan-highlight {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.secure-row,
.review-grid {
  display: grid;
  gap: 12px;
}

.secure-chip {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.faq-card,
.review-card {
  padding: 22px;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.faq-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  position: relative;
  padding-right: 28px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 24px;
  color: var(--green);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding-top: 10px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted-strong);
}

.review-card p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted-strong);
}

.review-author {
  font-size: 14px;
  font-weight: 800;
}

.inline-highlight {
  color: var(--green);
}

@media (min-width: 768px) {
  .topbar {
    padding-left: 28px;
    padding-right: 28px;
  }

  .app-frame {
    padding: 12px 28px 110px;
  }

  .hero-inner,
  .content-card,
  .loader-card,
  .chart-card,
  .paywall-card {
    padding: 32px;
  }

  .support-layout,
  .expert-layout,
  .summary-layout,
  .chart-grid,
  .paywall-hero,
  .paywall-grid,
  .after-grid,
  .faq-grid,
  .trust-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
  }

  .loader-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
  }

  .summary-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

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

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

@media (max-width: 640px) {
  .paywall-section {
    padding-bottom: calc(112px + env(safe-area-inset-bottom, 0px));
  }

  .app-frame {
    padding: 6px 12px 72px;
  }

  .hero-inner,
  .content-card,
  .loader-card,
  .chart-card,
  .paywall-card,
  .faq-card,
  .review-card {
    padding: 20px 16px;
  }

  .topbar {
    align-items: flex-start;
    gap: 10px;
    padding: 14px 12px 10px;
  }

  .progress-lockup {
    width: 112px;
  }

  .headline,
  .step-title,
  .expert-title {
    letter-spacing: -0.035em;
  }

  .subhead,
  .step-subtitle,
  .support-text,
  .expert-copy p,
  .summary-copy,
  .chart-copy,
  .paywall-copy,
  .trust-copy {
    font-size: 15px;
    line-height: 1.52;
  }

  .content-card {
    padding-top: 22px;
  }

  .hero-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .question-label {
    margin: 22px 0 12px;
    font-size: 15px;
  }

  .hero-choice {
    border-radius: 22px;
  }

  .hero-choice-media {
    aspect-ratio: 0.76 / 1;
  }

  .hero-choice::after {
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-height: 46px;
    padding: 11px 13px;
    border-radius: 15px;
    font-size: 15px;
  }

  .hero-choice-footer {
    padding: 12px 13px;
    font-size: 15px;
  }

  .hero-choice-arrow {
    font-size: 22px;
  }

  .option-card,
  .plan-option,
  .duration-option {
    padding: 15px 14px;
    gap: 12px;
    border-radius: 20px;
  }

  .option-icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    font-size: 18px;
  }

  .option-title {
    font-size: 16px;
  }

  .option-note {
    font-size: 12px;
  }

  .support-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .support-photo {
    min-height: 260px;
  }

  .summary-visual,
  .expert-portrait,
  .before-card,
  .after-card {
    min-height: 220px;
    border-radius: 22px;
  }

  .summary-meter {
    padding: 16px;
    border-radius: 22px;
  }

  .sticky-offer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    align-items: start;
    gap: 10px;
    padding: 12px;
    margin: -6px -12px 16px;
  }

  .sticky-offer .paywall-button {
    width: 100%;
    min-height: 50px;
    grid-column: 1 / -1;
  }

  .mobile-sticky-paybar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 70;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(127, 130, 158, 0.14);
    box-shadow: 0 18px 40px rgba(22, 28, 44, 0.16);
    backdrop-filter: blur(14px);
  }

  .mobile-sticky-paybar.is-hidden {
    display: none;
  }

  .mobile-sticky-paybar-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
    flex: 1 1 auto;
  }

  .mobile-sticky-paybar-copy strong {
    display: block;
    font-size: 14px;
    line-height: 1.3;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-sticky-paybar-copy span {
    display: block;
    font-size: 12px;
    line-height: 1.35;
    color: var(--muted-strong);
  }

  .mobile-sticky-paybar-copy small {
    display: block;
    font-size: 11px;
    line-height: 1.35;
    color: #6b7280;
  }

  .mobile-sticky-paybar-button {
    width: auto;
    min-width: 148px;
    min-height: 52px;
    padding: 12px 18px;
    flex: 0 0 auto;
    box-shadow: none;
  }

  .sticky-offer-copy {
    grid-column: 1 / -1;
    order: 3;
  }

  .sticky-offer-copy strong {
    font-size: 13px;
  }

  .sticky-offer-copy span {
    font-size: 11px;
  }

  .app-showcase {
    min-height: 300px;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }

  .phone-shell {
    width: 138px;
    padding: 7px;
    border-radius: 24px;
  }

  .phone-screen {
    min-height: 252px;
    border-radius: 18px;
    padding: 10px;
  }

  .phone-screen-real {
    min-height: 0;
  }

  .phone-notch {
    width: 58px;
    height: 12px;
  }

  .phone-mockup-left {
    transform: translateX(22px) rotate(-8deg) scale(0.8);
  }

  .phone-mockup-center {
    transform: translateY(-2px) scale(0.9);
  }

  .phone-mockup-right {
    transform: translateX(-22px) rotate(8deg) scale(0.8);
  }

  .showcase-caption {
    font-size: 14px;
  }

  .paywall-device-card {
    padding: 18px 12px 64px;
  }

  .phone-shell-single {
    width: min(100%, 176px);
  }

  .metric-item,
  .secure-chip,
  .plan-highlight {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .metric-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .metric-label {
    font-size: 14px;
  }

  .plan-badge {
    min-width: 82px;
    padding: 8px 10px;
  }

  .plan-badge strong {
    font-size: 21px;
  }

  .chart-wrapper {
    padding: 14px 10px 8px;
    border-radius: 22px;
  }

  .chart-header-date {
    font-size: 20px;
  }

  .faq-item summary {
    font-size: 16px;
  }

  .faq-answer,
  .review-card p {
    font-size: 14px;
  }

  .email-overlay {
    padding: 14px;
  }

  .email-modal {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .email-modal-actions {
    flex-direction: column-reverse;
  }

  .email-modal-primary,
  .email-modal-secondary {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .paywall-section {
    padding-bottom: calc(120px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-sticky-paybar {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    padding: 10px;
    gap: 10px;
    border-radius: 20px;
  }

  .mobile-sticky-paybar-copy strong {
    font-size: 13px;
  }

  .mobile-sticky-paybar-copy span {
    font-size: 11px;
  }

  .mobile-sticky-paybar-copy small {
    font-size: 10px;
  }

  .mobile-sticky-paybar-button {
    min-width: 132px;
    min-height: 50px;
    padding: 11px 14px;
  }

  .brand {
    font-size: 14px;
  }

  .brand-sub,
  .progress-copy {
    font-size: 11px;
  }

  .headline {
    font-size: 28px;
  }

  .hero-choice-grid {
    gap: 8px;
  }

  .hero-choice {
    border-radius: 20px;
  }

  .hero-choice-media {
    aspect-ratio: 0.72 / 1;
  }

  .hero-choice::after {
    left: 8px;
    right: 8px;
    bottom: 8px;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 14px;
  }

  .hero-choice-footer {
    padding: 11px 12px;
    font-size: 14px;
  }

  .hero-choice-arrow {
    font-size: 20px;
  }

  .step-title,
  .expert-title {
    font-size: 27px;
    line-height: 1.08;
  }

  .question-label {
    margin-top: 22px;
    font-size: 15px;
  }

  .micro-answers {
    flex-direction: column;
  }

  .micro-answers button {
    width: 100%;
  }

  .app-showcase {
    min-height: 255px;
  }

  .phone-shell {
    width: 116px;
    padding: 6px;
    border-radius: 21px;
  }

  .phone-screen {
    min-height: 212px;
    border-radius: 15px;
  }

  .phone-screen-real {
    min-height: 0;
  }

  .phone-notch {
    width: 48px;
    height: 10px;
    margin-bottom: 6px;
  }

  .phone-mockup-left {
    transform: translateX(18px) rotate(-7deg) scale(0.76);
  }

  .phone-mockup-center {
    transform: translateY(0) scale(0.86);
  }

  .phone-mockup-right {
    transform: translateX(-18px) rotate(7deg) scale(0.76);
  }

  .price-callout {
    gap: 8px;
  }

  .mini-badge,
  .support-badge,
  .status-pill,
  .most-popular {
    padding: 8px 11px;
    font-size: 12px;
  }

  .sticky-chip {
    font-size: 12px;
    padding: 7px 10px;
  }

  .sticky-offer .paywall-button,
  .cta-button,
  .paywall-button {
    min-height: 54px;
    font-size: 17px;
  }
}
