﻿/* Hero Theme Override - Indigo/Blue for Otomasyon */
.kamera-hero-bg {
    background: radial-gradient(ellipse 80% 50% at 50% 30%, rgba(79, 70, 229, 0.15), transparent 50%), linear-gradient(180deg, #0f172a 0%, #312e81 50%, #0f172a 100%);
}

    .kamera-hero-bg::before {
        background-image: radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.1) 1px, transparent 1px), radial-gradient(circle at 80% 70%, rgba(129, 140, 248, 0.08) 1px, transparent 1px);
    }

.kamera-hero-badge {
    background: rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.3);
    color: #a5b4fc;
}

.kamera-hero-title .title-gradient {
    background: linear-gradient(135deg, #4f46e5, #818cf8, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kamera-hero .breadcrumb a:hover,
.kamera-hero .breadcrumb .current {
    color: #818cf8;
}

.kamera-cta {
    background: linear-gradient(135deg, #312e81 0%, #0f172a 100%);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

    .stat-card:hover {
        border-color: #4f46e5;
        box-shadow: 0 8px 24px rgba(79, 70, 229, 0.1);
        transform: translateY(-4px);
    }

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #4f46e5;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* FAQ Accordion Styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

    .faq-accordion .faq-item {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

        .faq-accordion .faq-item:hover {
            border-color: #4f46e5;
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.1);
        }

        .faq-accordion .faq-item.active {
            border-color: #4f46e5;
            background: #fff;
            box-shadow: 0 4px 16px rgba(79, 70, 229, 0.15);
        }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.2s ease;
}

    .faq-question:hover {
        color: #4f46e5;
    }

    .faq-question span {
        flex: 1;
    }

.faq-icon {
    flex-shrink: 0;
    color: #64748b;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #4f46e5;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

/* System Components */
.system-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.system-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

    .system-card:hover {
        border-color: #4f46e5;
        box-shadow: 0 8px 24px rgba(79, 70, 229, 0.1);
    }

.system-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4f46e5, #818cf8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: white;
}

.system-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.system-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .system-grid {
        grid-template-columns: 1fr;
    }
}

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-weight: 600;
    color: #475569;
    transition: all 0.3s ease;
}

    .brand-item:hover {
        border-color: #4f46e5;
        background: #eef2ff;
        color: #4338ca;
    }
