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

:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #64748b;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-white);
}

/* Cookie Notice */
.cookie-notice {
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    font-size: 14px;
    position: relative;
    z-index: 1000;
}

.cookie-text {
    color: var(--text-secondary);
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
}

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

.btn-close-cookie {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
}

/* Header */
.navbar {
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 24px;
    color: var(--primary-color);
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-icon {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.btn-icon:hover {
    background-color: var(--background-light);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    padding: 80px 0 120px;
    background: linear-gradient(135deg, var(--background-white) 0%, var(--background-light) 100%);
}

.hero-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 1.1rem;
    border-radius: 8px;
}

.btn-outline-secondary {
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-outline-secondary:hover {
    background-color: var(--text-primary);
    border-color: var(--text-primary);
    color: white;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-diagram {
    position: relative;
    width: 100%;
    height: 100%;
}

.network-node {
    position: absolute;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.network-node:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.network-node i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
}

.network-node span {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-node {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    z-index: 2;
}

.main-node i,
.main-node span {
    color: white;
}

.node-1 {
    top: 10%;
    left: 20%;
}

.node-2 {
    top: 20%;
    right: 10%;
}

.node-3 {
    bottom: 20%;
    right: 15%;
}

.node-4 {
    bottom: 10%;
    left: 15%;
}

/* Companies Section */
.companies-section {
    padding: 60px 0;
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    align-items: center;
}

.company-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.company-logo:hover {
    opacity: 1;
}

.company-logo i {
    font-size: 32px;
    color: var(--text-secondary);
}

.company-logo span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Introduction Section */
.introduction-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: var(--background-white);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Performance Section */
.performance-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.performance-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.tag {
    background-color: var(--background-white);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.tag.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.performance-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.performance-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.performance-example {
    font-size: 1rem;
    color: var(--text-secondary);
    padding: 16px;
    background-color: var(--background-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

/* Use Cases Section */
.use-cases-section {
    padding: 80px 0;
    background-color: var(--background-white);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.use-case-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.use-case-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.use-case-label {
    background-color: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.company-icon {
    font-size: 20px;
    color: var(--text-secondary);
}

.company-name {
    font-weight: 600;
    color: var(--text-primary);
}

.use-case-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.case-study-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.case-study-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    border-color: white;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: white;
    padding: 60px 0 20px;
}

.footer-top {
    margin-bottom: 40px;
}

.footer-brand {
    margin-bottom: 24px;
}

.footer-brand .logo-icon {
    color: white;
}

.footer-brand .logo-text {
    color: white;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-copyright,
.footer-trademark {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 4px;
}

.footer-contact {
    font-size: 14px;
}

.footer-contact p {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .companies-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 24px;
    }
    
    .network-diagram {
        height: 300px;
    }
    
    .network-node {
        padding: 12px;
    }
    
    .network-node span {
        font-size: 8px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .performance-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .footer-contact {
        text-align: left !important;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .use-case-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .performance-tags {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hidden class for cookie notice */
.hidden {
    display: none !important;
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-white) 0%, var(--background-light) 100%);
}

.pricing-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.pricing-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cloud-providers {
    text-align: center;
}

.cloud-providers h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.provider-logos {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.provider-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.provider-item i {
    font-size: 32px;
    color: var(--text-secondary);
}

.provider-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-plans {
    padding: 80px 0;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -4px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.plan-price {
    margin-bottom: 8px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.price-note {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.pricing-features {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-item i {
    color: var(--success-color);
    font-size: 16px;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.accordion-button {
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

/* Contact Page Styles */
.contact-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-white) 0%, var(--background-light) 100%);
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.contact-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-info-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.contact-info-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-details h5 {
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-details p {
    margin: 0;
    color: var(--text-secondary);
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.is-invalid {
    border-color: var(--error-color) !important;
}

/* Legal Pages Styles */
.legal-content {
    padding: 80px 0;
}

.legal-header {
    text-align: center;
    margin-bottom: 48px;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.last-updated {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.legal-body h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.legal-body p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.legal-body ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-body li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.legal-body a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-body a:hover {
    text-decoration: underline;
}
