/* =========================================
   TRUST STRIPE (FINAL PREMIUM VERSION)
========================================= */

.commercial-stripe {
    padding: 20px 0;
}

/* container aligned to page */
.commercial-stripe-container {
    max-width: 1100px;
    margin: 0 auto;

    background: #f8fafc;
    border: 1px solid #e6edf3;
    border-radius: 10px;

    padding: 16px 20px;

    display: flex;
    align-items: center;
    gap: 18px;

    transition: all 0.25s ease;
}

/* subtle lift */
.commercial-stripe-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
    background: #ffffff;
}

/* =========================================
   ICON (BIGGER + PREMIUM FEEL)
========================================= */

.stripe-icon {
    flex-shrink: 0;
}

.shield-svg {
    width: 60px;
    height: 60px;
    color: #06283D;

    filter: drop-shadow(0 4px 10px rgba(6, 40, 61, 0.12));
}

/* =========================================
   TEXT
========================================= */

.stripe-content {
    flex: 1;
}

.stripe-content h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #06283D;
    letter-spacing: -0.2px;
}

/* trust tag */
.stripe-tag {
    display: inline-block;
    margin-top: 4px;

    font-size: 12px;
    font-weight: 600;
    color: #0e7490;
    letter-spacing: 0.3px;
}

.stripe-content p {
    margin: 6px 0 0;
    font-size: 13.5px;
    color: #5b6875;
    line-height: 1.5;
    opacity: 0.9;
}

/* =========================================
   CTA BUTTON (STROKE ONLY)
========================================= */

.stripe-btn {
    flex-shrink: 0;

    padding: 10px 16px;
    border: 1px solid #06283D;
    border-radius: 8px;

    color: #06283D;
    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition: 0.2s ease;

    display: inline-flex;
    align-items: center;
}

/* arrow animation */
.stripe-btn::after {
    content: "→";
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.stripe-btn:hover {
    background: #06283D;
    color: #fff;
}

.stripe-btn:hover::after {
    transform: translateX(3px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .commercial-stripe-container {
        flex-direction: column;
        text-align: center;
    }

    .stripe-content {
        flex: unset;
    }

    .stripe-btn {
        width: 100%;
        justify-content: center;
    }

    .shield-svg {
        width: 64px;
        height: 64px;
    }
}