/* Security Page Specific Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 20px;
    margin: 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Table of Contents */
.toc-section {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 20px;
}

.toc-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #1e293b;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.toc-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.toc-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
    color: #3b82f6;
}

.toc-number {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
}

.toc-title {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Introduction Section */
.intro-section {
    padding: 40px 20px;
    text-align: center;
}

.intro-section h2 {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 2rem;
}

.intro-section p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.key-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature p {
    color: #64748b;
    line-height: 1.5;
}

/* Security Companies */
.security-systems {
    padding: 40px 20px;
}

.security-company {
    background: white;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.company-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e2e8f0;
}

.company-info h2 {
    color: #1e293b;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.company-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.rating-text {
    color: #64748b;
    font-weight: 600;
}

.company-tagline {
    color: #3b82f6;
    font-weight: 600;
    font-size: 1.1rem;
}

.company-logo img {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.company-details {
    padding: 30px;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.pros h3, .cons h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros li, .cons li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 20px;
}

.pros li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.cons li::before {
    content: "✗";
    color: #ef4444;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.pricing-info {
    margin-bottom: 30px;
}

.pricing-info h3 {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pricing-tier {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.pricing-tier.featured {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.pricing-tier h4 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 15px;
}

.pricing-tier ul {
    list-style: none;
    padding: 0;
}

.pricing-tier li {
    padding: 5px 0;
    color: #64748b;
    position: relative;
    padding-left: 20px;
}

.pricing-tier li::before {
    content: "•";
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.key-features-list {
    margin-bottom: 30px;
}

.key-features-list h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.key-features-list ul {
    list-style: none;
    padding: 0;
}

.key-features-list li {
    padding: 8px 0;
    color: #64748b;
    border-bottom: 1px solid #f1f5f9;
}

.verdict {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.verdict h3 {
    color: #92400e;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.verdict p {
    color: #78350f;
    line-height: 1.6;
}

/* Comparison Table */
.comparison-section {
    padding: 40px 20px;
    background: #f8fafc;
    margin: 40px 0;
    border-radius: 20px;
}

.comparison-section h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 30px;
    font-size: 2rem;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comparison-table th {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
}

.comparison-table tr:hover {
    background: #f8fafc;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    padding: 40px 20px;
}

.faq-section h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 40px;
    font-size: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.faq-item h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 40px 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #78350f;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .company-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .company-details {
        padding: 20px;
    }
    
    .company-header {
        padding: 20px;
    }
} 