/* Custom CSS for Surface Guard Website */

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --dark-color: #000000;
    --light-color: #ffffff;
    --gradient-primary: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #333333 100%);
    --gradient-secondary: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    --gradient-hero: linear-gradient(135deg, #000000 0%, #1a1a2e 50%, #16213e 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
}

.language-selector select {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.language-selector select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.language-selector select option {
    background: var(--dark-color);
    color: white;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 5rem;
}

.hero-title .text-primary {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

.floating-card:first-child {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1.5s;
}

.hero-graphic {
    width: 300px;
    height: 300px;
    position: relative;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-node {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    animation: pulse 2s ease-in-out infinite;
}

.network-node:nth-child(1) {
    top: 20%;
    left: 50%;
    animation-delay: 0s;
}

.network-node:nth-child(2) {
    bottom: 20%;
    left: 20%;
    animation-delay: 0.7s;
}

.network-node:nth-child(3) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.4s;
}

/* Section Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

/* Story Section */
.story-section {
    background: var(--gradient-primary);
    position: relative;
}

.story-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    z-index: 2;
    border: 4px solid var(--dark-color);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-left: 2rem;
    flex: 1;
    backdrop-filter: blur(10px);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Tool Section */
.tool-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.tool-screenshot {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.tool-screenshot:hover .screenshot-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Vulnerability Section */
.vulnerability-section {
    background: var(--gradient-primary);
}

.vulnerability-explanation {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.vulnerability-risks {
    list-style: none;
    padding: 0;
}

.vulnerability-risks li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.vulnerability-risks li i {
    margin-right: 0.5rem;
}

.vulnerability-screenshot {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.solution-box {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid var(--success-color);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

/* Integrations Section */
.integrations-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.integrations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.integrations-grid {
    position: relative;
    z-index: 2;
}

.integration-category-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.5rem;
}

.integration-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.integration-card:hover::before {
    transform: scaleX(1);
}

.integration-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.integration-icon.teams {
    background: linear-gradient(135deg, #5b5fc7 0%, #6264a7 100%);
    color: white;
}

.integration-icon.discord {
    background: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
    color: white;
}

.integration-icon.slack {
    background: linear-gradient(135deg, #4a154b 0%, #611f69 100%);
    color: white;
}

.integration-icon.splunk {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.integration-icon.wazuh {
    background: linear-gradient(135deg, #1f4e79 0%, #2e5984 100%);
    color: white;
}

.integration-card:hover .integration-icon {
    transform: scale(1.1) rotate(5deg);
}

.integration-card h4 {
    color: var(--light-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.integration-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.integration-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
}

.siem-card {
    border: 2px solid rgba(255, 193, 7, 0.3);
    background: rgba(255, 193, 7, 0.05);
}

.siem-card:hover {
    border-color: var(--warning-color);
    background: rgba(255, 193, 7, 0.1);
}

.integration-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.integration-benefits {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.integration-benefits h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.benefit-icon:hover {
    transform: scale(1.1);
}

.integration-benefits h5 {
    color: var(--light-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.integration-benefits p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* AI Section */
.ai-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 100%);
}

.ai-feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.ai-feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.ai-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.ai-demo {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
}

.ai-conversation {
    max-width: 600px;
    margin: 0 auto;
}

.ai-message {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 15px;
}

.ai-question {
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid var(--primary-color);
}

.ai-answer {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid var(--success-color);
}

.ai-message i {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-secondary);
    position: relative;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    margin: 0.5rem;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-guarantee {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-contact .btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact .btn:hover {
    transform: translateY(-3px);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .timeline-content {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .story-timeline::before {
        display: none;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .floating-card {
        position: relative;
        margin: 1rem 0;
    }
    
    .hero-image {
        height: auto;
        padding: 2rem 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}



/* Testing Statistics Banner */
.testing-stats-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #007bff;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.testing-stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0.05) 100%);
    z-index: 1;
}

.stats-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.stats-icon {
    font-size: 3rem;
    color: #007bff;
    margin-right: 30px;
}

.stats-text {
    flex: 1;
    text-align: center;
}

.stats-text h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 300;
}

.stats-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 20px 0;
}

.stats-number .counter {
    font-size: 4rem;
    font-weight: 700;
    color: #007bff;
    text-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}

.stats-number .stats-suffix {
    font-size: 3rem;
    color: #007bff;
    margin-left: 5px;
}

.stats-text p {
    color: #cccccc;
    font-size: 1.1rem;
    margin: 0;
}

.stats-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.pulse-dot {
    width: 20px;
    height: 20px;
    background: #007bff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.pulse-dot.delay-1 {
    animation-delay: 0.5s;
}

.pulse-dot.delay-2 {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.pricing-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #007bff;
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2);
}

.pricing-card.featured {
    border: 2px solid #007bff;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 0 0 15px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.pricing-header {
    text-align: center;
    padding: 40px 30px 30px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0.05) 100%);
}

.pricing-card.featured .pricing-header {
    padding-top: 60px;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.pricing-icon.startup {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.pricing-icon.business {
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    color: white;
}

.pricing-icon.custom {
    background: linear-gradient(135deg, #fd7e14 0%, #e83e8c 100%);
    color: white;
}

.pricing-header h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.pricing-price .currency {
    font-size: 1.2rem;
    color: #007bff;
    margin-right: 5px;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #007bff;
}

.pricing-price .period {
    font-size: 1rem;
    color: #cccccc;
    margin-left: 5px;
}

.pricing-price .custom-text {
    font-size: 1.5rem;
    color: #007bff;
    font-weight: 600;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #333;
    color: #cccccc;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #28a745;
    margin-right: 15px;
    font-size: 1.1rem;
}

.pricing-action {
    padding: 30px;
    text-align: center;
}

.pricing-action .btn {
    width: 100%;
    padding: 15px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* ROI Section */
.roi-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.roi-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.roi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.roi-card.prevention {
    border: 2px solid #28a745;
}

.roi-card.prevention:hover {
    box-shadow: 0 15px 30px rgba(40, 167, 69, 0.2);
}

.roi-card.incident {
    border: 2px solid #dc3545;
}

.roi-card.incident:hover {
    box-shadow: 0 15px 30px rgba(220, 53, 69, 0.2);
}

.roi-header {
    text-align: center;
    padding: 40px 30px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.roi-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.roi-card.prevention .roi-icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.roi-card.incident .roi-icon {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
}

.roi-header h3 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
}

.roi-content {
    padding: 30px;
}

.roi-price {
    text-align: center;
    margin-bottom: 30px;
}

.roi-price .roi-range {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.roi-card.prevention .roi-price .roi-range {
    color: #28a745;
}

.roi-card.incident .roi-price .roi-range {
    color: #dc3545;
}

.roi-price.danger .roi-range {
    color: #dc3545;
    text-shadow: 0 0 20px rgba(220, 53, 69, 0.5);
}

.roi-price .roi-period {
    color: #cccccc;
    font-size: 1rem;
}

.roi-content p {
    color: #cccccc;
    text-align: center;
    margin-bottom: 30px;
}

.roi-benefits, .roi-costs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item, .cost-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.benefit-item i {
    color: #28a745;
    margin-right: 15px;
    font-size: 1.1rem;
}

.cost-item i {
    color: #dc3545;
    margin-right: 15px;
    font-size: 1.1rem;
}

.benefit-item span, .cost-item span {
    color: #cccccc;
}

.roi-conclusion {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #007bff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.roi-conclusion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0.05) 100%);
    z-index: 1;
}

.conclusion-content {
    position: relative;
    z-index: 2;
}

.conclusion-content h4 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.conclusion-content p {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.conclusion-cta .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .testing-stats-banner {
        padding: 30px 20px;
    }
    
    .stats-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .stats-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .stats-number .counter {
        font-size: 3rem;
    }
    
    .stats-number .stats-suffix {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-top: 20px;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .roi-price .roi-range {
        font-size: 2rem;
    }
    
    .conclusion-content h4 {
        font-size: 1.5rem;
    }
    
    .conclusion-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .stats-number .counter {
        font-size: 2.5rem;
    }
    
    .stats-number .stats-suffix {
        font-size: 1.8rem;
    }
    
    .pricing-header {
        padding: 30px 20px 20px;
    }
    
    .pricing-features, .pricing-action {
        padding: 20px;
    }
    
    .roi-header {
        padding: 30px 20px 15px;
    }
    
    .roi-content {
        padding: 20px;
    }
    
    .roi-conclusion {
        padding: 30px 20px;
    }
}

