/* CVR addon */
.hero__cta-row { display: flex; flex-direction: column; gap: 12px; align-items: center; margin-bottom: 12px; }
.hero__cta-note { font-size: 0.72rem; opacity: 0.85; margin-bottom: 20px; }
.trust-strip { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin: 0 auto 28px; max-width: 480px; }
.trust-strip__item { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; padding: 6px 14px; font-size: 0.72rem; display: flex; align-items: center; gap: 5px; color: #fff; }
.trust-strip__item strong { color: #FCD34D; font-size: 0.85rem; }
.micro-cta { max-width: 800px; margin: 0 auto; padding: 28px 20px; text-align: center; background: var(--green-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.micro-cta p { font-weight: 700; margin-bottom: 14px; color: var(--green-darker); font-size: 0.95rem; line-height: 1.6; }
.micro-cta .btn { max-width: 380px; }
.diagnosis { background: var(--bg-alt); }
.diag { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 28px 20px; max-width: 520px; margin: 0 auto; position: relative; overflow: hidden; }
.diag__progress { height: 6px; background: var(--border-light); border-radius: 3px; margin-bottom: 24px; overflow: hidden; }
.diag__progress-bar { display: block; height: 100%; width: 0%; background: var(--green); border-radius: 3px; transition: width 0.35s ease; }
.diag__step { display: none; }
.diag__step.is-active { display: block; animation: diagFade 0.35s ease; }
.diag__result { display: none; text-align: center; }
.diag__result.is-active { display: block; animation: diagFade 0.4s ease; }
@keyframes diagFade { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: translateX(0); } }
.diag__question { font-weight: 700; font-size: 1.05rem; margin-bottom: 18px; text-align: center; line-height: 1.6; }
.diag__options { display: flex; flex-direction: column; gap: 10px; }
.diag__opt { padding: 16px; border-radius: var(--radius-sm); border: 2px solid var(--border); background: #fff; font-weight: 700; font-size: 0.95rem; font-family: inherit; color: var(--text); cursor: pointer; transition: all 0.2s; text-align: center; -webkit-appearance: none; }
.diag__opt:hover, .diag__opt:active { border-color: var(--green); background: var(--green-light); color: var(--green-dark); }
.diag__result-badge { display: inline-block; background: var(--gold-light); color: var(--bronze); font-size: 0.72rem; font-weight: 700; padding: 4px 14px; border-radius: 999px; margin-bottom: 12px; }
.diag__result-name { font-size: 1.4rem; font-weight: 900; color: var(--green-dark); margin-bottom: 10px; }
.diag__result-name small { font-size: 0.65em; color: var(--text-sub); font-weight: 500; }
.diag__result-reason { font-size: 0.88rem; color: var(--text-sub); margin-bottom: 16px; line-height: 1.8; }
.diag__result-stats { display: flex; justify-content: center; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.diag__stat { background: var(--bg-alt); border-radius: var(--radius-sm); padding: 10px 16px; min-width: 90px; }
.diag__stat strong { display: block; font-size: 1.3rem; color: var(--cta-red); }
.diag__stat span { font-size: 0.68rem; color: var(--text-sub); }
.diag__result .btn { max-width: 380px; margin: 0 auto 12px; }
.diag__result-phone { display: block; font-weight: 700; color: var(--green); margin-bottom: 16px; text-decoration: none; }
.diag__retry { background: none; border: none; color: var(--text-light); font-size: 0.8rem; text-decoration: underline; cursor: pointer; font-family: inherit; }
.sticky-cta__btn--web { position: relative; }
.sticky-cta__btn--web::before { content: ''; position: absolute; inset: 0; border-radius: inherit; box-shadow: 0 0 0 0 rgba(220,38,38,0.5); animation: stickyPulse 2.4s ease-out infinite; pointer-events: none; }
@keyframes stickyPulse { 0% { box-shadow: 0 0 0 0 rgba(220,38,38,0.45); } 70% { box-shadow: 0 0 0 10px rgba(220,38,38,0); } 100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); } }
@media (min-width: 480px) { .hero__cta-row { flex-direction: row; justify-content: center; } .hero__cta-row .btn { width: auto; min-width: 220px; } }