/* Marketing page content components */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title p {
    color: #94a3b8;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.content-panel {
    background: rgba(30, 41, 59, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 32px;
}

.content-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.content-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.info-card {
    background: rgba(30, 41, 59, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(120, 50, 255, 0.25);
}

.info-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.info-card p {
    color: #94a3b8;
    line-height: 1.65;
    font-size: 0.95rem;
}

.stat-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-bar .stat {
    background: rgba(30, 41, 59, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px 16px;
}

.stat-bar .stat .value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #2575fc;
    margin-bottom: 6px;
}

.stat-bar .stat .label {
    color: #94a3b8;
    font-size: 0.9rem;
}

.media-card {
    background: rgba(30, 41, 59, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.media-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.media-card .media-body {
    padding: 24px;
}

.media-card .tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #2575fc;
    margin-bottom: 10px;
}

.media-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.media-card p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.92rem;
    margin-bottom: 14px;
}

.media-card a {
    color: #2575fc;
    text-decoration: none;
    font-weight: 600;
}

#cta,
.cta-section {
    text-align: center;
    background: rgba(30, 41, 59, 0.92);
    padding: 60px;
    border-radius: 20px;
    margin: 40px auto;
}

#cta h2,
.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

#cta p,
.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #94a3b8;
    line-height: 1.7;
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 36px 0 14px;
    color: #f8fafc;
}

.legal-content h3 {
    font-size: 1.15rem;
    margin: 24px 0 10px;
    color: #e2e8f0;
}

.legal-content p,
.legal-content li {
    color: #94a3b8;
    margin-bottom: 12px;
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.avatar-chip {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .content-grid-2,
    .content-grid-3,
    .content-grid-4,
    .stat-bar {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .content-grid-2,
    .content-grid-3,
    .content-grid-4,
    .stat-bar {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}