/* Homepage Info Sections */
.info-section {
    padding: 60px 20px;
    margin: 40px 0;
}

.info-section.bg-alt {
    background-color: var(--bg-alt);
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.text-center {
    text-align: center;
    margin-bottom: 40px;
}

.text-center h2 {
    font-size: 2rem;
    color: var(--text-heading);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.text-muted {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-item h4 {
    color: #0284c7;
    margin: 20px 0 10px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.feature-item p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

.icon-wrapper {
    display: inline-flex;
    margin-bottom: 15px;
}

/* Types Grid */
.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.type-item h4 {
    color: #0f172a;
    margin: 15px 0 10px;
    font-size: 1rem;
}

.type-item p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
}

.icon-wrapper.dark svg {
    stroke: #334155;
    width: 36px;
    height: 36px;
}

/* Trust Grid */
.trust-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    flex: 1;
    max-width: 400px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.trustpilot-logo, .consumeraffairs-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.trustpilot-logo h3, .consumeraffairs-logo h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #111827;
}

.consumeraffairs-logo h3 {
    color: #0284c7;
    font-size: 1rem;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Disclosures */
.disclosures {
    max-width: 1100px;
    margin: 60px auto;
    padding: 40px 30px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.disclosures h4 {
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #0f172a;
}

.disclosures p, .disclosures li {
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 15px;
}

.disclosures ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .features-grid, .trust-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .types-grid {
        grid-template-columns: 1fr;
    }
}
