/* Trade Pulse Technologies — Home Page Styles */

.hero {
    padding: 12rem 0 8rem;
    background: radial-gradient(circle at 50% 50%, #1a1e2a 0%, #05070a 100%);
    position: relative;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background-image: url('../../images/grid.svg');
    opacity: 0.05;
    pointer-events: none;
}

.hero h2 {
    font-size: 5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    letter-spacing: -2px;
    background: linear-gradient(to bottom, #fff 30%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 2rem auto 3rem;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Trust Bar ─── */

.trust-bar {
    padding: 3rem 0;
    background: var(--secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-bar-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.trust-bar-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .trust-bar-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
}

.featured-products {
    padding: 8rem 0;
}

.testimonials {
    padding: 8rem 0;
    background: var(--secondary);
}

.founder-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg), #0f172a);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.founder-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(to right, var(--accent), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.founder-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.founder-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

@media (max-width: 768px) {
    .hero h2 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .founder-grid { grid-template-columns: 1fr; gap: 3rem; }
    .founder-content h2 { font-size: 2.5rem; }
}
