/*********************************************************
 FILE: licence.css
 PREMIUM TRUST STRIPE + FULL RESPONSIVE CENTERED SYSTEM
*********************************************************/

/* =========================
   WRAPPER
========================= */

.licence-wrap {
    padding: 20px;
    display: flex;
    justify-content: center;
}

/* =========================
   CARD (DESKTOP)
========================= */

.licence-card {
    max-width: 1100px;
    width: 100%;

    background: #0f3d57;
    color: #ffffff;

    border-radius: 14px;
    padding: 16px 20px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    gap: 16px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.08);

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.licence-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

/* =========================
   ICON
========================= */

.licence-icon {
    flex-shrink: 0;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
}

/* =========================
   CONTENT
========================= */

.licence-content {
    flex: 1;
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 4px;

    text-align: left;
}

.licence-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.licence-text {
    font-size: 13.5px;
    line-height: 1.5;
    opacity: 0.92;
    max-width: 750px;
}

/* =========================
   CALL BUTTON (WHITE)
========================= */

.licence-btn {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 22px;

    background: #ffffff;
    color: #0f3d57;

    border-radius: 10px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 800;

    white-space: nowrap;

    border: 1px solid rgba(255, 255, 255, 0.25);

    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}


/* =========================
   TABLET + MOBILE (CENTERED SYSTEM)
========================= */

@media (max-width: 900px) {

    .licence-card {
        flex-direction: column;

        align-items: center;
        justify-content: center;

        text-align: center;

        gap: 12px;
    }

    .licence-content {
        align-items: center;
        text-align: center;
    }

    .licence-text {
        max-width: 600px;
    }

    .licence-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* =========================
   MOBILE TWEAKS
========================= */

@media (max-width: 576px) {

    .licence-card {
        padding: 16px;
    }

    .licence-icon {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .licence-title {
        font-size: 14px;
    }

    .licence-text {
        font-size: 12.5px;
    }
}

/* =========================
   SMALL PHONES
========================= */

@media (max-width: 380px) {

    .licence-title {
        font-size: 13px;
    }

    .licence-text {
        font-size: 12px;
    }

    .licence-btn {
        font-size: 13px;
        padding: 10px 14px;
        max-width: 100%;
    }
}