/* Tradytics Section */
.tradytics-cta {
    padding: 120px 0;
    background: linear-gradient(180deg, #0d0d0d 0%, #111 50%, #0d0d0d 100%);
}

.tradytics-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.tradytics-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.tradytics-icon {
    width: 40px;
    height: 40px;
}

.tradytics-wordmark {
    font-size: 1.6em;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.tradytics-header h2 {
    font-size: 2.5em;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 0;
}

.tradytics-highlight {
    color: #6b7cff;
}

/* Feature Cards Grid */
.tradytics-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.tradytics-feature-card {
    background: rgba(107, 124, 255, 0.04);
    border: 1px solid rgba(107, 124, 255, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.tradytics-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(107, 124, 255, 0.3);
    background: rgba(107, 124, 255, 0.08);
}

.tradytics-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: rgba(107, 124, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tradytics-feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: #6b7cff;
}

.tradytics-feature-card h3 {
    font-size: 1.2em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.tradytics-feature-card p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #999;
    margin: 0;
}

/* CTA Block */
.tradytics-cta-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.tradytics-footer-link {
    font-size: 0.95em;
    color: #888;
    margin: 0;
}

.tradytics-footer-link strong {
    color: #6b7cff;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1100px) {
    .tradytics-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tradytics-cta {
        padding: 80px 0;
    }

    .tradytics-header h2 {
        font-size: 2em;
    }

    .tradytics-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .tradytics-icon {
        width: 32px;
        height: 32px;
    }

    .tradytics-wordmark {
        font-size: 1.4em;
    }

    .tradytics-header h2 {
        font-size: 1.7em;
    }

    .tradytics-feature-card {
        padding: 24px 20px;
    }
}
