/* Features Section */
.features-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.features-section .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.features-section .section-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #3675ff;
    border-radius: 2px;
}

.features-section h2 {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 80px;
    color: #000000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    text-align: left;
}

.feature-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: #3675ff;
    fill: none;
    stroke-width: 1.5;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #000000;
}


.feature-card p {
    font-size: 19px;
    line-height: 1.7;
    color: #667085;
}

/* Agent Feature Card Link (for clickable cards) */
.agent-feature-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.agent-feature-card-link .feature-card {
    background: #f8fafc;
    padding: 32px;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.agent-feature-card-link:hover .feature-card {
    background: #f1f5f9;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.btn-blue {
    background: #3675ff !important;
    color: white !important;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    display: inline-block;
}

.btn-blue:hover {
    background: #2563eb !important;
    transform: translateY(-1px);
}


/* Responsive */
@media (max-width: 768px) {
    .features-section {
        padding: 24px 20px;
        /* Reduced from 40px */
    }

    .features-section h2 {
        font-size: 28px;
        /* Reduced from 32px */
        margin-bottom: 30px;
        /* Reduced from 40px */
        line-height: 1.25;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        /* Reduced from 64px */
        max-width: 400px;
        margin: 0 auto;
    }

    /* Force smaller images on mobile to override inline styles */
    .feature-card img {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 16px !important;
    }

    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .feature-card p {
        font-size: 16px;
        line-height: 1.5;
    }
}