/* features.css - Features page styles */

.features-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.features-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.features-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.core-features {
    padding: 6rem 0;
    background: #f8fafc;
}

.core-features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #f4c430;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ai-gradient {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.automation-gradient {
    background: linear-gradient(135deg, #f59e0b, #f4c430);
}

.security-gradient {
    background: linear-gradient(135deg, #10b981, #059669);
}

.analytics-gradient {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.integration-gradient {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.collaboration-gradient {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.feature-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #374151;
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.feature-spotlight {
    padding: 6rem 0;
    background: white;
}

.spotlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.spotlight-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.spotlight-text p {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.spotlight-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.spotlight-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.spotlight-benefits strong {
    display: block;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.spotlight-benefits p {
    color: #6b7280;
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

.cta-button {
    background: #f4c430;
    color: #1a1a1a;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 196, 48, 0.3);
}

.spotlight-visual {
    display: flex;
    justify-content: center;
}

.ai-dashboard {
    background: #1a1a1a;
    border-radius: 1rem;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    color: white;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #404040;
}

.dashboard-header h4 {
    color: #f4c430;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.insight-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.insight-card {
    background: #2d2d2d;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s ease;
}

.insight-card:hover {
    transform: scale(1.02);
}

.insight-card.risk {
    border-left: 4px solid #ef4444;
}

.insight-card.performance {
    border-left: 4px solid #10b981;
}

.insight-card.prediction {
    border-left: 4px solid #3b82f6;
}

.insight-icon {
    font-size: 1.5rem;
}

.insight-content {
    flex: 1;
}

.insight-label {
    display: block;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.insight-value {
    display: block;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

.technical-specs {
    padding: 6rem 0;
    background: #f8fafc;
}

.technical-specs h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.spec-category {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.spec-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.spec-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-category li {
    padding: 0.75rem 0;
    color: #374151;
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    padding-left: 1.5rem;
}

.spec-category li:last-child {
    border-bottom: none;
}

.spec-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #f4c430;
    font-weight: bold;
    font-size: 1.25rem;
}

.features-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-cta {
    background: #f4c430;
    color: #1a1a1a;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-cta:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 196, 48, 0.3);
}

.secondary-cta {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: 2px solid white;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}