* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-tap-highlight-color: transparent;
    user-select: none;

}

body {
    background: #fff8fb;
    overflow-x: hidden;
    color: #1f1f1f;
}

.hero {
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background:
        radial-gradient(circle at top right, #ffdce9 0%, transparent 30%),
        radial-gradient(circle at bottom left, #ffeef5 0%, transparent 35%);
}

.container {
    width: 100%;
    max-width: 1180px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffe2ee;
    color: #ff2f7d;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: bold;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero h1 span {
    color: #ff2f7d;
}

.description {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 650px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.card {
    background: white;
    padding: 22px;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .3s;
}

.card:hover {
    transform: translateY(-5px);
}

.icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #ff2f7d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.card p {
    color: #666;
    line-height: 1.6;
    font-size: .95rem;
}

.form-box {
    background: white;
    padding: 40px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
}

.form-box::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: #ff2f7d10;
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.form-top {
    position: relative;
    z-index: 2;
}

.form-mini {
    color: #ff2f7d;
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
}

.form-box h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.form-box p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 28px;
}

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

input {
    border: none;
    background: #ffffff;
    border: 1px solid #ff2f7d;
    padding: 18px;

    border-radius: 16px;
    font-size: 1rem;
    transform: scale(1.1);
    outline: none;
    transition: .2s;

    animation: floatInput 3s ease-in-out infinite;
    will-change: transform;

}

input:focus {
    background: white;
    box-shadow: 0 0 0 2px #ff2f7d35;
}

button {
    border: none;
    background: #ff2f7d;
    color: white;
    padding: 18px;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: .3s;
}

button:hover {
    transform: translateY(-2px);
    background: #eb1d6c;
}

.social-proof {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.users {
    display: flex;
}

.user {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
    background: #ffd0e3;
}

.user:nth-child(2) {
    background: #ffbdd6;
}

.user:nth-child(3) {
    background: #ffaccb;
}

.counter {
    font-size: .95rem;
    color: #666;
}

.floating {
    position: absolute;
    left: -35px;
    bottom: 30px;
    background: white;
    padding: 15px 18px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    font-size: .95rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media(max-width:980px) {

    .container {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .floating {
        display: none;
    }
}






.__env_status_ok {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    z-index: 9999;
    display: none;

    animation: popupShow 0.4s ease;
}

.__env_status_ok_icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #e8fff0;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: bold;
}

.__env_status_ok h2 {
    color: #111;
    font-size: 24px;
    margin-bottom: 14px;
}

.__env_status_ok p {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}

.__env_status_ok_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9998;
    backdrop-filter: blur(4px);
}

@keyframes popupShow {
    from {
        opacity: 0;
        transform: translate(-50%, -45%) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}





.exit-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;

    opacity: 0;
    pointer-events: none;
    transition: .35s;
    backdrop-filter: blur(4px);
}


.exit-popup-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.exit-popup {
    width: 95%;
    max-width: 520px;
    background: white;
    padding: 35px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, .25);

    transform: translateY(40px) scale(.95);
    transition: .35s;
}

.exit-popup-overlay.active .exit-popup {
    transform: translateY(0px) scale(1);
}

.exit-popup::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #ff2f7d10;
    top: -100px;
    right: -100px;
}

.exit-close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: #f3f3f3;
    font-size: 1rem;
}

.exit-badge {
    display: inline-flex;
    padding: 10px 16px;
    background: #ffe1ed;
    color: #ff2f7d;
    border-radius: 999px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.exit-popup h2 {
    font-size: 2.4rem;
    line-height: 1.1;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.exit-popup h2 span {
    color: #ff2f7d;
}

.exit-popup p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.exit-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.exit-benefit {
    background: #fff7fa;
    padding: 14px;
    border-radius: 14px;
    font-weight: 500;
}

#popupLeadForm {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 2;
}

#popupLeadForm input {
    width: 100%;
    border: none;
    background: #ffffff;
    border: 1px solid #ff2f7d;
    padding: 18px;
    border-radius: 16px;
    outline: none;
    font-size: 1rem;

    animation: floatInput 3s ease-in-out infinite;
    will-change: transform;
}

@keyframes floatInput {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

#popupLeadForm button {
    border: none;
    padding: 18px;
    border-radius: 16px;
    background: #ff2f7d;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: .25s;
}

#popupLeadForm button:hover {
    transform: translateY(-2px);
    background: #eb1d6c;
}

.exit-popup small {
    display: block;
    margin-top: 18px;
    color: #777;
    text-align: center;
    position: relative;
    z-index: 2;
}

@media(max-width:600px) {

    .exit-popup {
        padding: 28px;
    }

    .exit-popup h2 {
        font-size: 2rem;
    }

}


.id_err_valid {
    color: red;
    font-size: 14px;
    font-family: 'Times New Roman', Times, serif;
    width: 100%;
    text-align: center;

}