@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend+Deca:wght@100..900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Lexend Deca', sans-serif;
    background-color: #18062B;
    color: #F0F0F0;
    line-height: 1.6;
    min-height: 100vh;
}

.page {
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* === NAV === */
.nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.nav__logo { text-decoration: none; }
.nav__logo img { width: 80px; }
.nav__right { display: flex; align-items: center; gap: 24px; }
.nav__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #2D1A45;
    color: #7C6A94;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}
.nav__close:hover {
    border-color: #4A3566;
    color: #B8A5CC;
}

/* === SPLIT LAYOUT === */
.split {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    width: 100%;
}

/* === LEFT SIDE: COPY === */
.split__left {
    padding-top: 12px;
}

.tier-badge {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #A78BFA;
    margin-bottom: 16px;
}

.split__title {
    font-family: 'Merriweather', serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 24px;
}

.split__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}
.split__amount {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.split__amount sup {
    font-size: 20px;
    font-weight: 500;
    vertical-align: super;
    position: relative;
    top: -4px;
}
.split__period {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #7C6A94;
}
.split__trial {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #9B8AB5;
    margin-bottom: 28px;
}

.split__divider {
    height: 1px;
    background: #2D1A45;
    margin-bottom: 24px;
}

.split__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.split__features li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #D1C4E0;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}
.split__features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #A78BFA;
    font-weight: 600;
    font-size: 13px;
}
.split__features li.feat--gold::before {
    color: #D4A853;
}
.split__features li.feat--gold {
    color: #E8DDF0;
}
.split__features li.feat--gold strong {
    font-weight: 600;
    color: #fff;
}

.split__children {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #7C6A94;
    padding-top: 16px;
    border-top: 1px solid #2D1A45;
}

/* === RIGHT SIDE: FORM === */
.split__right {
    position: sticky;
    top: 40px;
}

.form-card {
    background: rgba(26, 12, 46, 0.6);
    border: 1px solid #2D1A45;
    border-radius: 20px;
    padding: 36px 32px;
}

.form-card__title {
    font-family: 'Merriweather', serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.form-card__sub {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    color: #9B8AB5;
    margin-bottom: 28px;
}

.form-card__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-card__row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
}

.form-card__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-card__field--small {
    width: 90px;
}

.form-card__label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #7C6A94;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-card__input {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #F0F0F0;
    background: #150820;
    border: 1px solid #2D1A45;
    border-radius: 10px;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}
.form-card__input:focus {
    border-color: #6915B7;
}
.form-card__input::placeholder {
    color: #4A3566;
}

.form-card__select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237C6A94' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-card__hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
}

.form-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #6915B7;
    border: none;
    border-radius: 14px;
    padding: 16px 24px;
    margin-top: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.form-card__btn:hover { background: #7B22D4; transform: translateY(-1px); }
.form-card__btn:disabled { opacity: 0.7; cursor: wait; transform: none; }
.form-card__btn-text { display: inline; }
.form-card__btn-loader {
    display: inline-flex;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-card__error {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #F87171;
    text-align: center;
    min-height: 20px;
}
.form-card__terms {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #7C6A94;
    text-align: center;
}
.form-card__privacy {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #4A3566;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.form-card__lock {
    flex-shrink: 0;
}

/* === HOW IT WORKS FLOW === */
.flow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 64px;
}
.flow__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 16px;
}
.flow__step {
    text-align: center;
}
.flow__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(105, 21, 183, 0.2);
    border: 1px solid rgba(105, 21, 183, 0.4);
    border-radius: 50%;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #A78BFA;
    margin-bottom: 10px;
}
.flow__text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #B8A5CC;
}
.flow__arrow {
    width: 20px;
    height: 1px;
    background: #3D2560;
    margin-top: 16px;
    flex-shrink: 0;
}

/* === ANCHOR === */
.anchor {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px 64px;
    text-align: center;
}
.anchor__text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: #9B8AB5;
}
.anchor__text strong {
    color: #D1C4E0;
    font-weight: 500;
}

/* === COMPARISON === */
.compare {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px 64px;
}
.compare__title {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7C6A94;
    text-align: center;
    margin-bottom: 24px;
}
.compare__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.compare__item {
    background: #1A0C2E;
    border: 1px solid #2D1A45;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}
.compare__item--highlight {
    border-color: #6915B7;
    background: linear-gradient(180deg, #1E0A35 0%, #1A0C2E 100%);
}
.compare__item-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #7C6A94;
    margin-bottom: 6px;
}
.compare__item-value {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #F0F0F0;
}
.compare__item--highlight .compare__item-value {
    color: #A78BFA;
}
.compare__item-note {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #4A3566;
    margin-top: 4px;
}

/* === TRIAL BANNER === */
.trial-banner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px 80px;
    text-align: center;
}
.trial-banner__box {
    background: linear-gradient(135deg, #1E0A35 0%, #251240 100%);
    border: 1px solid #3D2560;
    border-radius: 20px;
    padding: 40px 32px;
}
.trial-banner__title {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.trial-banner__text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: #B8A5CC;
    margin-bottom: 24px;
}
.trial-banner__cta {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    background: #6915B7;
    padding: 16px 32px;
    border-radius: 28px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.trial-banner__cta:hover {
    background: #7B22D4;
    transform: translateY(-1px);
}
.trial-banner__note {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #4A3566;
    margin-top: 14px;
}

/* === FAQ === */
.faq {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px 100px;
}
.faq__title {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 36px;
}
.faq__item {
    border-bottom: 1px solid #2D1A45;
    padding: 20px 0;
}
.faq__q {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #F0F0F0;
    margin-bottom: 8px;
}
.faq__a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #9B8AB5;
}

/* === FOOTER === */
.footer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #2D1A45;
    margin-top: auto;
    width: 100%;
}
.footer__left { display: flex; align-items: center; gap: 12px; }
.footer__logo { width: 50px; }
.footer__copy {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #7C6A94;
}
.footer__right { display: flex; gap: 24px; }
.footer__link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #7C6A94;
    text-decoration: none;
    transition: color 0.2s;
}
.footer__link:hover { color: #B8A5CC; }

/* === RESPONSIVE === */
@media (max-width: 860px) {
    .split {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 40px 24px 60px;
    }
    .split__right {
        position: static;
    }
    .split__title {
        font-size: 28px;
    }
    .flow__inner {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .flow__arrow {
        display: none;
    }
}

@media (max-width: 520px) {
    .split {
        padding: 32px 16px 48px;
        gap: 36px;
    }
    .split__title {
        font-size: 24px;
    }
    .split__amount {
        font-size: 34px;
    }
    .form-card {
        padding: 28px 20px;
    }
    .form-card__row {
        grid-template-columns: 1fr;
    }
    .form-card__field--small {
        width: 100%;
    }
    .compare__grid {
        grid-template-columns: 1fr;
    }
    .footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .footer__left { flex-direction: column; gap: 8px; }
}
