.trust1-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    backdrop-filter: blur(4px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.trust1-popup.show {
    display: flex;
    animation: fadeIn .25s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===============================
   CARD
=================================*/

.trust1-inner {
    background: #000;
    padding: 50px 45px;
    border-radius: 22px;
    width: 95%;
    max-width: 700px;
    position: relative;
    box-shadow: 0 0 50px rgba(0,0,0,.6);
}

.trust1-calculator {
    color: #fff;
}

/* ===============================
   TITLE
=================================*/

.trust1-title {
    text-align: center;
    color: #d4a017;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.trust1-subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 40px;
    font-size: 16px;
}

/* ===============================
   FIELDS
=================================*/

.trust1-group {
    margin-bottom: 28px;
}

.trust1-group label {
    display: block;
    margin-bottom: 10px;
    color: #f0b414;
    font-weight: 600;
    font-size: 15px;
}

/* Input wrapper */
.trust1-input-wrap {
    position: relative;
}

/* ICON PERFECT CENTER FIX */
.trust1-input-wrap i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 16px;
    pointer-events: none;
}

/* INPUT PERFECT HEIGHT FIX */
.trust1-input-wrap input {
    width: 100%;
    height: 56px;              /* fixed height for perfect centering */
    padding: 0 18px 0 50px;    /* left spacing for icon */
    border-radius: 16px;
    border: 1px solid #333;
    background: linear-gradient(145deg, #2d2d2d, #1e1e1e);
    color: #fff;
    font-size: 15px;
    transition: all .3s ease;
}

.trust1-input-wrap input::placeholder {
    color: #888;
}

.trust1-input-wrap input:focus {
    border-color: #f0b414;
    outline: none;
    box-shadow: 0 0 0 3px rgba(240,180,20,.15);
}

/* ===============================
   BUTTON (MATCH IMAGE)
=================================*/

.trust1-open-btn,
.trust1-calc-btn {
    width: 100%;
    height: 58px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    font-weight: 600;
    font-size: 16px;
    background: linear-gradient(145deg, #3c3c3c, #2a2a2a);
    color: #f0b414;
    transition: .3s ease;
}

.trust1-open-btn:hover,
.trust1-calc-btn:hover {
    background: #f0b414;
    color: #000;
}

/* ===============================
   RESULT
=================================*/

.trust1-result {
    margin-top: 30px;
}

.trust1-result div {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #333;
    padding: 12px 0;
    font-size: 15px;
}

/* ===============================
   APPLY LINK
=================================*/

.trust1-apply {
    margin-top: 20px;
    font-size: 15px;
    color: #ddd;
}

.trust1-apply a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.trust1-apply a:hover {
    color: #f0b414;
}

/* ===============================
   NOTE
=================================*/

.trust1-note {
    margin-top: 20px;
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
    text-align: center;
}

/* ===============================
   CLOSE BUTTON
=================================*/

.trust1-close {
    position: absolute;
    right: 30px;
    top: 25px;
    font-size: 20px;
    color: #f0b414;
    cursor: pointer;
    transition: .3s ease;
}

.trust1-close:hover {
    transform: rotate(90deg);
    color: #fff;
}

/* ===============================
   RESPONSIVE
=================================*/

@media (max-width: 768px) {

    .trust1-inner {
        padding: 35px 25px;
    }

    .trust1-title {
        font-size: 26px;
    }

    .trust1-input-wrap input {
        height: 52px;
    }

    .trust1-open-btn,
    .trust1-calc-btn {
        height: 52px;
    }
}
