/* Общие стили */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    background-color: #0b0e14;
    overflow-x: hidden;
}
input, button, select {
    font-family: 'Montserrat', sans-serif;
}

/* БЛОК 1: Главный экран */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(11, 14, 20, 0.3), rgba(11, 14, 20, 0.6)), url('images/entry.png') center center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}
.hero-header-text {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
    margin-top: 20px;
}
.text-badge {
    font-weight: 900;
    font-size: 24px;
    line-height: 1.2;
    text-transform: uppercase;
    max-width: 300px;
    text-align: left;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
.text-badge.right {
    text-align: right;
}
.highlight-yellow {
    background-color: #ffc107;
    color: #000;
    padding: 2px 6px;
    display: inline-block;
}
.main-title-container {
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: auto 0;
    position: relative;
}
.skew-banner {
    background: #ffb703;
    color: #0f1118;
    padding: 15px 40px;
    transform: skewX(-10deg);
    border: 3px solid #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}
.skew-banner h1 {
    transform: skewX(10deg);
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* КНОПКА БЛОКА 1 */
.hero-cta {
    z-index: 2;
    margin-bottom: 20px;
}
.btn-download {
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #000000;
    border: 2px solid #ffffff;
    padding: 16px 45px;
    font-size: 18px;
    font-weight: 900;
    border-radius: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
    animation: yellow-orange-pulse 3s infinite ease-in-out;
    transition: 0.3s;
}
.btn-download:hover {
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.8);
    border-color: #ffcc00;
}
.sub-btn-text {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.9);
}

/* БЛОК 2: Мотивационный блок */
.income-block {
    background-color: #0f131c;
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #1f2635;
    scroll-margin-top: 20px;
}
.income-block h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.income-block p {
    color: #e2e8f0;
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Стили для секретного бонуса */
.bonus-alert-box {
    display: none;
    background: linear-gradient(135deg, rgba(255, 183, 3, 0.15), rgba(255, 102, 0, 0.15));
    border: 2px dashed #ffb703;
    border-radius: 12px;
    padding: 20px;
    max-width: 750px;
    margin: 0 auto 30px auto;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 183, 3, 0.1);
}
.bonus-alert-box h3 {
    color: #ffb703;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-inline {
    display: inline-flex;
    background: rgba(255,255,255,0.03);
    border: 1px solid #222d3f;
    border-radius: 50px;
    padding: 8px;
    max-width: 600px;
    width: 100%;
}
.form-inline input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 0 20px;
    flex-grow: 1;
    font-size: 16px;
}
.form-inline input::placeholder {
    color: #4e5d73;
}

/* Общая анимация пульсации */
@keyframes yellow-orange-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 183, 3, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 0 18px 6px rgba(255, 102, 0, 0.5); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 183, 3, 0.4); }
}
.btn-gradient-orange {
    background: linear-gradient(270deg, #ffcc00, #ff6600, #ffcc00);
    background-size: 400% 400%;
    color: #000000;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 900;
    border-radius: 40px;
    cursor: pointer;
    text-transform: uppercase;
    animation: yellow-orange-pulse 3s infinite ease-in-out;
    transition: all 0.3s ease;
}

/* БЛОК 3: Финальный экран */
.footer-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('bg-footer.jpg') center center/cover no-repeat;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.footer-container {
    width: 100%;
    display: flex;
    flex-grow: 1;
}
.footer-left-form {
    background: rgba(0, 0, 0, 0.85);
    width: 45%;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.footer-left-form h2 {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.2;
}
.footer-left-form h2 span {
    color: #ffb703;
}
.input-group {
    position: relative;
    margin-bottom: 20px;
}
.input-group input {
    width: 100%;
    padding: 15px 15px 15px 20px;
    background: #ffffff;
    border: none;
    font-size: 16px;
    color: #000;
}
.phone-input-wrapper {
    display: flex;
    background: #fff;
}
.country-select {
    background: #e0e0e0;
    color: #000;
    border: none;
    padding: 0 10px;
    font-size: 14px;
}
.phone-input-wrapper input {
    padding-left: 15px;
}
.input-hint {
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    margin-top: 8px;
    margin-bottom: 25px;
    opacity: 0.8;
}

@keyframes fast-flash {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(0.98); background-color: #ff9100; box-shadow: 0 0 20px #ffb703; }
}
.btn-yellow-submit {
    background: #ffb703;
    color: #000;
    border: none;
    width: 100%;
    padding: 18px;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    animation: fast-flash 1.2s infinite ease-in-out;
}

.footer-right-info {
    width: 55%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.footer-right-info h2 {
    font-size: 64px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 40px;
}
.footer-right-info h2 span {
    color: #ffb703;
    display: block;
}
.footer-links-info {
    border-top: 1px solid rgba(255,255,255,0.4);
    padding-top: 30px;
}
.privacy-link {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 30px;

    background: none;
    border: none;
    cursor: pointer;
}
.copy-text {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
}

.risk-warning-block {
    background-color: #07090d;
    padding: 30px 40px;
    border-top: 2px solid #222d3f;
    font-size: 12px;
    line-height: 1.6;
    color: #718096;
    text-align: justify;
}
.risk-warning-title {
    font-weight: 700;
    color: #a0aec0;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

/* СОЦ. ДОКАЗАТЕЛЬСТВО */
.social-proof-toast {
    position: fixed;
    bottom: -100px;
    left: 20px;
    background: rgba(15, 19, 28, 0.95);
    border: 1px solid #ffcc00;
    border-radius: 8px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    z-index: 999;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
    opacity: 0;
    pointer-events: none;
    max-width: 320px;
}
.social-proof-toast.show { bottom: 20px; opacity: 1; }
.toast-icon { font-size: 18px; background: rgba(255, 204, 0, 0.1); padding: 6px; border-radius: 50%; color: #ffcc00; display: flex; align-items: center; justify-content: center; }
.toast-text { font-size: 13px; color: #e2e8f0; font-weight: 500; line-height: 1.4; }
.toast-text strong { color: #ffcc00; }

/* ВИДЖЕТ ЗВОНКА */
@keyframes phone-shake {
    0%, 100% { transform: rotate(0); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-5deg); }
    20%, 40%, 60%, 80% { transform: rotate(5deg); }
}
.incoming-call-widget {
    position: fixed;
    top: -150px;
    right: 20px;
    width: 320px;
    background: #161b26;
    border: 2px solid #2ecc71;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.incoming-call-widget.active {
    top: 20px;
    opacity: 1;
}
.call-info-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}
.call-avatar {
    width: 48px;
    height: 48px;
    background: #222d3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 2px solid #ffb703;
    animation: phone-shake 2s infinite ease-in-out;
}
.call-text-meta {
    flex-grow: 1;
}
.call-caller-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}
.call-status-label {
    font-size: 12px;
    color: #2ecc71;
    font-weight: 500;
}
.call-actions-row {
    display: flex;
    gap: 10px;
}
.btn-call-action {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.2s;
    color: #fff;
}
.btn-call-action.decline { background-color: #e74c3c; }
.btn-call-action.decline:hover { background-color: #c0392b; }
.btn-call-action.accept { background-color: #2ecc71; animation: yellow-orange-pulse 2s infinite; }
.btn-call-action.accept:hover { background-color: #27ae60; }

/* ЭКРАН ТРУБКИ (МОДАЛКА) */
.video-call-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 14, 20, 0.98);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.video-call-overlay.active {
    display: flex;
}
.video-call-container {
    background: #111622;
    width: 100%;
    max-width: 700px;
    border-radius: 20px;
    border: 1px solid #222d3f;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
}
.video-call-header {
    padding: 15px 20px;
    background: #161b26;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222d3f;
}
.video-call-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffb703;
}
.video-player-wrapper {
    position: relative;
    width: 100%;
    background: #000;
    aspect-ratio: 16/9;
}
.video-player-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-call-footer-cta {
    padding: 25px 20px;
    background: #161b26;
    text-align: center;
}

/* КНОПКА ПОД ВИДЕО */
.btn-video-cta {
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #000000;
    border: 2px solid #ffffff;
    padding: 16px 45px;
    font-size: 18px;
    font-weight: 900;
    border-radius: 30px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
    animation: yellow-orange-pulse 2.5s infinite ease-in-out;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-video-cta:hover {
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.8);
    border-color: #ffcc00;
    transform: scale(1.02);
}

/* Адаптивность */
@media (max-width: 992px) {
    .hero-header-text { flex-direction: column; align-items: center; gap: 20px; }
    .text-badge, .text-badge.right { text-align: center; }
    .skew-banner h1 { font-size: 26px; }
    .footer-container { flex-direction: column; }
    .footer-left-form, .footer-right-info { width: 100%; padding: 40px 20px; }
    .footer-right-info h2 { font-size: 36px; }
    .form-inline { flex-direction: column; border-radius: 10px; gap: 10px; background: transparent; border: none; padding: 0; }
    .form-inline input { background: #1f2635; padding: 15px; border-radius: 10px; width: 100%; }
    .btn-gradient-orange { border-radius: 10px; width: 100%; }
    .risk-warning-block { padding: 20px; text-align: left; }
    .social-proof-toast { left: 10px; right: 10px; max-width: calc(100% - 20px); }
    .incoming-call-widget { left: 10px; right: 10px; width: auto; }
    .form-popup { padding: 35px 30px 0 30px; }
    .close-link-wrap { top: -12%; right: -4%; }
}

/* ===================== МОДАЛЬНАЯ ФОРМА .form-popup ===================== */

.form-popup {
    background: rgba(25, 27, 29, .85);
    width: 100%;
    height: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
    position: fixed;
    overflow-y: auto;
    display: none;
    padding: 80px 20px;
}

.form-popup__wrap {
    max-width: 420px;
    width: 100%;
    position: relative;
    margin: 0 auto;
    border-radius: 18px;
    background-color: #161920;
    padding-bottom: 30px;
}

.form-popup-background {
    padding: 25px 15px 15px;
    border-top-left-radius: 17px;
    border-top-right-radius: 17px;
    background-color: #1a1f2e;
}

.form-popup__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 15px;
    color: #ffffff;
    text-shadow: 2px 2px 4px #000000;
    line-height: 1.3;
}

.close-link-wrap {
    position: absolute;
    top: -14px;
    right: -14px;
    line-height: 36px;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 40px;
    width: 40px;
    z-index: 10;
    border-radius: 50%;
    background-color: #ffba00;
    color: #000;
    transition: background-color 0.2s;
}

.close-link-wrap:hover {
    background-color: #e6a800;
}

.form-group {
    position: relative;
    margin-bottom: 14px;
}

.form-group .icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 14px;
}

.form-field {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    width: 100%;
    padding: 13px 12px 13px 38px;
    border: 1px solid #dedede;
    border-radius: 10px;
    color: #333;
    background: #ffffff;
    outline: none;
}

.form-field[type="tel"] {
    padding-left: 12px;
}

.phone-wrap {
    display: flex;
}

.form-input__example {
    color: #fff;
    font-size: 11px;
    margin-top: -10px;
    margin-bottom: 4px;
    min-height: 16px;
}

label.error {
    font-size: 11px;
    color: #fbff00;
    position: absolute;
    bottom: -20px;
    width: 100%;
    left: 0;
}

.form-button {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    max-width: 360px;
    width: 100%;
    padding: 15px;
    margin: 20px auto 0;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
    background-color: #ffba00;
    color: #000;
    animation: fast-flash 1.2s infinite ease-in-out;
}

.form-button:active {
    transform: translate3d(2px, 2px, 0);
}

.iti-mobile .iti--container {
    /* position: absolute; */
}

.iti {
    width: 100%;
}


/* Выпадающий список стран */
.iti__country-list {
    min-width: 300px;
    max-height: 200px;
    background-color: #1e2535;
    border: 1px solid #2e3a50;
    color: #e2e8f0;
    z-index: 10000;
}
.iti__country {
    color: #e2e8f0;
}
.iti__country.iti__highlight,
.iti__country:hover {
    background-color: #2a3347;
    color: #fff;
}
.iti__country-name {
    color: #e2e8f0;
}
.iti__dial-code {
    color: #ffb703;
}
.iti__divider {
    border-bottom-color: #2e3a50;
}
.iti__selected-flag {
    background-color: transparent;
}
.iti__selected-dial-code {
    color: #333;
}

/* ===================== ПОПАП ПОЛИТИКИ КОНФИДЕНЦИАЛЬНОСТИ ===================== */

.policy {
    background: rgba(25, 27, 29, .85);
    width: 100%;
    height: 100%;
    z-index: 10000;
    top: 0;
    left: 0;
    position: fixed;
    overflow-y: auto;
    padding: 0 20px;
    display: none;
}

.policy-in {
    max-width: 600px;
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.policy-header {
    background-color: #312f30;
    color: #fff;
    padding: 20px;
    position: relative;
}

.policy-header p {
    font-size: 18px;
    padding-top: 12px;
}

.policy-title {
    font-size: 21px;
    font-weight: 700;
}

.policy-content {
    background-color: #fff;
    color: #000;
    padding: 20px;
}

.policy-text {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.policy-content-title {
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 15px;
}

.policy-content-subtitle {
    font-size: 21px;
    font-weight: 700;
    margin: 30px 0;
}

.policy-list li {
    list-style-type: circle;
    margin-left: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.policy-close {
    background-color: #424559;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    border: none;
    border-radius: 3px;
    color: #fff;
    padding: 8px 16px;
    display: block;
    width: 170px;
    cursor: pointer;
    transition: .3s;
    margin-top: 15px;
}

.policy-close:hover {
    background-color: #36393d;
}

.close-link-policy {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 20px;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.close-link-policy:hover {
    color: #ffb703;
}

@media (max-width: 380px) {
    .policy-title { font-size: 19px; }
    .policy-content-title { font-size: 23px !important; }
}
