:root {
    --purple: #864486;
    --orange: #f48020;
    --orange-deep: #ff6b35;
    --soft-bg: #fbf4f8;
    --text: #2d2530;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--soft-bg); }
body {
    margin: 0;
    min-height: 100%;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--soft-bg);
    color: var(--text);
}

.page-shell { min-height: 100vh; padding-bottom: 120px; }
.topbar {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px;
    background: #fff;
}
.logo { width: 180px; max-width: 43vw; height: auto; display: block; }
.divider { width: 2px; height: 32px; background: #f5c5a9; flex: 0 0 auto; }
.trust-badge { display: flex; align-items: flex-start; gap: 4px; line-height: 1; }
.trust-number { color: var(--orange); font-size: clamp(40px, 10vw, 48px); font-weight: 800; letter-spacing: -1px; }
.trust-text { color: var(--purple); text-transform: uppercase; padding-top: 5px; font-size: clamp(14px, 4vw, 18px); letter-spacing: .04em; display: flex; flex-direction: column; }

.video-hero {
    position: relative;
    width: 100%;
    height: clamp(240px, 52vw, 480px);
    overflow: hidden;
    background: #000;
}
.video-hero iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.offer-band {
    background: var(--purple);
    color: #fff;
    text-align: center;
    padding: 12px 12px 14px;
    border-radius: 0 0 16px 16px;
}
.offer-band h1 { margin: 0 0 4px; font-size: clamp(22px, 6.5vw, 34px); font-weight: 400; letter-spacing: .02em; }
.offer-band h1 strong { text-transform: uppercase; font-weight: 800; }
.offer-line { margin: 0; font-size: clamp(20px, 6vw, 30px); }
.offer-line span { color: var(--orange-deep); font-weight: 700; }
.offer-line sup, .limited-offer sup { font-size: 60%; }
.test-rotator { height: 64px; max-width: 448px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 20px; overflow: hidden; }
.test-rotator img { width: 26px; height: 26px; object-fit: contain; filter: brightness(0) invert(1); }
.test-rotator.is-changing { animation: slideItem .32s ease; }
.limited-offer {
    max-width: 760px;
    margin: 0 auto;
    border-radius: 999px;
    background: var(--orange);
    padding: 12px 16px;
    font-size: clamp(16px, 4vw, 22px);
    color: rgba(255,255,255,.92);
}
.limited-offer strong { color: #fff; text-decoration: underline; text-underline-offset: 4px; }

.why-section { padding: 0 8px 24px; }
.why-card {
    max-width: 672px;
    margin: 0 auto;
    transform: translateY(0);
    background: #fff;
    border-radius: 16px;
    padding: 12px 8px 18px;
    box-shadow: 0 22px 45px rgba(80, 30, 80, .20);
}
.why-card h2 { margin: 0 0 16px; text-align: center; color: var(--orange); font-size: clamp(22px, 5vw, 26px); font-weight: 500; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 4px; }
.benefit { min-height: 118px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; text-align: center; color: var(--purple); }
.benefit img { width: 52px; height: 52px; object-fit: contain; margin-bottom: 10px; }
.benefit strong { font-size: clamp(15px, 3.6vw, 18px); line-height: 1.15; font-weight: 700; }
.benefit span { margin-top: 3px; font-size: clamp(14px, 3.5vw, 15px); line-height: 1.15; }

.sticky-form {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: rgba(255,255,255,.96);
    padding: 8px 16px 22px;
    box-shadow: 0 -8px 28px rgba(60, 30, 60, .08);
}
.terms { max-width: 448px; margin: 0 auto 8px; text-align: right; color: var(--purple); font-size: 12px; font-weight: 700; }
.form-error { max-width: 448px; margin: 0 auto 8px; padding: 8px 12px; border-radius: 8px; background: #fff0f0; color: #b00020; font-size: 13px; }
.sticky-form form { max-width: 448px; margin: 0 auto; display: flex; align-items: stretch; border-radius: 10px; overflow: hidden; box-shadow: 0 15px 32px rgba(80, 30, 80, .22); }
.phone-input { flex: 1 1 auto; min-width: 0; display: flex; align-items: center; background: #fff; border: 1px solid var(--orange); border-right: 0; }
.phone-input span { padding: 15px 12px 15px 18px; border-right: 2px solid #e7e0e6; color: #575057; font-size: 14px; font-weight: 600; }
.phone-input input { width: 100%; min-width: 0; border: 0; outline: 0; padding: 15px 12px; font-size: 14px; color: #2b2b2b; }
.phone-input input::placeholder { color: #a1a1aa; }
.sticky-form button { flex: 0 0 auto; border: 0; padding: 13px 22px; background: linear-gradient(90deg, var(--orange), var(--orange-deep)); color: #fff; font-size: clamp(15px, 4vw, 18px); font-weight: 800; cursor: pointer; white-space: nowrap; }
.sticky-form button:hover { filter: brightness(.98); }
.sticky-form button:disabled { opacity: .6; cursor: not-allowed; }
.sticky-form button span { display: inline-block; animation: letterZoom 2.7s infinite; }
.sticky-form button i { display: inline-block; width: .28em; }
.sticky-form button span:nth-of-type(2) { animation-delay: .15s; }
.sticky-form button span:nth-of-type(3) { animation-delay: .3s; }
.sticky-form button span:nth-of-type(4) { animation-delay: .6s; }
.sticky-form button span:nth-of-type(5) { animation-delay: .9s; }
.sticky-form button span:nth-of-type(6) { animation-delay: 1.05s; }
.sticky-form button span:nth-of-type(7) { animation-delay: 1.2s; }
.sticky-form button span:nth-of-type(8) { animation-delay: 1.35s; }
.sticky-form button span:nth-of-type(9) { animation-delay: 1.65s; }
.sticky-form button span:nth-of-type(10) { animation-delay: 1.8s; }
.sticky-form button span:nth-of-type(11) { animation-delay: 1.95s; }
.sticky-form button span:nth-of-type(12) { animation-delay: 2.1s; }

.thank-you-body { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.thank-you-card { width: min(520px, 100%); background: #fff; border-radius: 22px; padding: 36px 24px; text-align: center; box-shadow: 0 22px 60px rgba(80, 30, 80, .18); }
.thank-you-card .logo { margin: 0 auto 22px; }
.thank-you-card h1 { margin: 0 0 12px; color: var(--purple); font-size: 36px; }
.thank-you-card p { margin: 0 auto 24px; color: #5d5360; line-height: 1.55; }
.thank-you-card a { display: inline-block; color: #fff; background: var(--orange); padding: 12px 18px; border-radius: 999px; text-decoration: none; font-weight: 700; }

@keyframes letterZoom { 0%, 70%, 100% { transform: scale(1); } 12% { transform: scale(1.28); } }
@keyframes slideItem { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 420px) {
    .topbar { gap: 11px; }
    .logo { width: 154px; }
    .divider { height: 28px; }
    .sticky-form { padding-left: 10px; padding-right: 10px; }
    .sticky-form button { padding-left: 16px; padding-right: 16px; }
    .benefit { min-height: 110px; }
}
