/* ================================================
   TRUST SECTION
   ================================================ */
.trust-section {
    display: block;
    width: 100%;
    background: var(--pg-bg-page);
    padding: 80px 5%;
}

.trust-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.trust-container h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0 0 40px;
    color: var(--pg-dark);
}

.trust-subtitle {
    font-size: 1rem;
    color: var(--pg-grey);
    margin: 0 0 48px;
    line-height: 1.5;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pg-galaxy-light-bg);
    border-radius: 50%;
    color: var(--pg-galaxy);
    transition: transform 0.2s ease, background 0.2s ease;
}

.trust-item:hover .trust-icon {
    transform: scale(1.08);
    background: var(--pg-galaxy-light-hover);
}

.trust-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--pg-dark);
    line-height: 1.3;
}

.trust-desc {
    font-size: 13px;
    color: var(--pg-grey);
    line-height: 1.5;
    max-width: 200px;
}

/* ================================================
   REVIEWS SECTION
   ================================================ */
.pg-home-reviews {
    padding: 64px 5%;
    background: var(--pg-white);
}

.pg-home-reviews-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.pg-home-reviews-inner h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--pg-dark);
    margin: 0 0 10px;
}

.pg-home-reviews-inner p {
    font-size: 1rem;
    color: var(--pg-grey);
    margin: 0 0 20px;
    line-height: 1.5;
}

.pg-home-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--pg-galaxy);
    text-decoration: none;
    transition: opacity 0.2s;
}

.pg-home-reviews-link:hover {
    opacity: 0.75;
}

