 /* =========================
   COMPANY LEGITIMACY – LUXURY DARK
========================= */

.company-legitimacy {
    padding: 130px 20px;
    background: linear-gradient(to bottom, #000814, #001d3d);
    position: relative;
    overflow: hidden;
    color: #d1d5db;
}

/* HEADER */
.company-legitimacy .section-label {
    display: inline-block;
    color: var(--brand-yellow);
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 12px;
}

.company-legitimacy h2 {
    font-size: 38px;
    color: var(--brand-yellow);
    max-width: 900px;
    margin-bottom: 80px;
}

/* GRID – STRUCTURED, NOT ROLLING */
.legitimacy-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* TRUST CARDS */
.trust-box {
    background: #0f0f30; /* SAME AS TESTIMONIAL CARD */
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.7);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    color: #d1d5db;
}

/* SUBTLE GOLD ACCENT */
.trust-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        to right,
        var(--brand-yellow),
        transparent
    );
    opacity: 0.4;
}

/* HOVER */
.trust-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 45px 90px rgba(255,204,0,0.15);
}

/* TITLES */
.trust-box h3 {
    font-size: 18px;
    color: var(--brand-yellow);
    margin-bottom: 15px;
}

/* TEXT */
.trust-box p,
.trust-box li {
    font-size: 15px;
    line-height: 1.7;
    color: #d1d5db;
}

.trust-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* FOUNDER – FEATURED CARD */
.trust-box-founder {
    grid-column: span 3;
    background: linear-gradient(
        135deg,
        #0f0f30,
        #001d3d
    );
    border-left: 6px solid var(--brand-yellow);
}

/* DISCLAIMER */
.legitimacy-footer {
    max-width: 1000px;
    margin: 90px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 14px;
    color: #a0aec0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .legitimacy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-box-founder {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .legitimacy-grid {
        grid-template-columns: 1fr;
    }

    .trust-box-founder {
        grid-column: span 1;
    }

    .company-legitimacy h2 {
        font-size: 28px;
    }
}

/* CENTER HEADER TEXT */
.company-legitimacy .section-label,
.company-legitimacy h2 {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ICON STYLE */
.icon-gold {
    color: var(--brand-yellow); /* subtle gold */
    margin-right: 10px;
    font-size: 1.2rem;
    vertical-align: middle;
    transition: transform 0.3s ease, color 0.3s ease;
}

.trust-box:hover .icon-gold {
    transform: scale(1.2);
    color: #ffdd55; /* slightly brighter gold on hover */
}

/* Make H3 align icons nicely */
.trust-box h3 {
    display: flex;
    align-items: center;
    gap: 8px; /* space between icon and text */
}
