/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-section a {
    text-decoration: none;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2196F3;
    margin: 0;
}

.brand-name a {
    color: inherit;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
}

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

.hero-text {
    text-align: left;
}

.hero-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.feature-icon {
    font-size: 1.2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-dashboard-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #f8f9fa;
}

.centered-section {
    text-align: center;
}

.centered-section .container > * {
    margin-left: auto;
    margin-right: auto;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-image {
    margin: 1rem 0;
}

.feature-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 4rem 0;
}

.products h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.product-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.product-image {
    margin-bottom: 1.5rem;
    text-align: center;
}

.product-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2196F3;
    margin-bottom: 1rem;
    text-align: center;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2196F3;
    text-align: center;
}

.product-card p {
    color: #666;
    margin-bottom: 1.5rem;
    text-align: center;
}

.product-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.product-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2196F3;
    font-weight: bold;
}

.cta-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #1976D2;
    transform: translateY(-2px);
}

.cta-button.enterprise {
    background: #FF5722;
}

.cta-button.enterprise:hover {
    background: #E64A19;
}

/* Dashboard Preview */
.dashboard-preview {
    padding: 4rem 0;
    background: #f8f9fa;
}

.dashboard-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.dashboard-image {
    margin: 2rem auto;
    max-width: 800px;
    text-align: center;
}

.dashboard-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.dashboard-preview p {
    color: #666;
    font-size: 1.1rem;
}

/* OSINT Capabilities */
.osint-capabilities {
    padding: 4rem 0;
}

.osint-capabilities h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.capability-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #2196F3;
}

.capability-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.capability-item p {
    color: #666;
}

/* Security Section */
.security {
    padding: 4rem 0;
    background: #f8f9fa;
}

.security h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.security-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.security-text p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.security-text ul {
    list-style: none;
}

.security-text li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.security-text li::before {
    content: "🔒";
    position: absolute;
    left: 0;
}

.security-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* Case Studies */
.case-studies {
    padding: 4rem 0;
}

.case-studies h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.case-study-image {
    margin: 2rem auto;
    max-width: 800px;
    text-align: center;
}

.case-study-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.case-studies p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 2rem;
}

/* About page images */
.about-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 4/3;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Image placeholders */
.image-placeholder {
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: #888;
    font-style: italic;
}

/* Pricing */
.pricing {
    padding: 4rem 0;
    background: #f8f9fa;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
}

.pricing-card.featured {
    border-color: #2196F3;
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2196F3;
    margin-bottom: 1rem;
}

.pricing-card p {
    color: #666;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-info p {
    color: #666;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2196F3;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1.5rem 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #2196F3;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-btn.accept {
    background: #2196F3;
    color: white;
}

.cookie-btn.accept:hover {
    background: #1976D2;
}

.cookie-btn.reject {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
}

.cookie-btn.reject:hover {
    background: #333;
    color: white;
}

.cookie-btn.customize {
    background: #FF5722;
    color: white;
}

.cookie-btn.customize:hover {
    background: #E64A19;
}

.cookie-link {
    color: #2196F3;
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Cookie Customization Panel */
.cookie-customization {
    background: rgba(0, 0, 0, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 0;
}

.cookie-custom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-custom-content h4 {
    color: #2196F3;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.cookie-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.cookie-option {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
}

.cookie-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
}

.cookie-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid #666;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #2196F3;
    border-color: #2196F3;
}

.cookie-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.cookie-checkbox input[type="checkbox"]:disabled + .checkmark {
    background: #666;
    border-color: #666;
}

.cookie-option-text strong {
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.cookie-option-text p {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.cookie-custom-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .security-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cookie-options {
        grid-template-columns: 1fr;
    }
    
    .cookie-custom-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features h2,
    .products h2,
    .dashboard-preview h2,
    .osint-capabilities h2,
    .security h2,
    .case-studies h2,
    .pricing h2,
    .contact h2 {
        font-size: 2rem;
    }
}