/* AirComply Marketing Website Styles */

:root {
    /* Colors */
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #3385FF;
    --secondary: #00D9FF;
    --dark: #0A1628;
    --dark-2: #1a2847;
    --gray-900: #0F172A;
    --gray-800: #1E293B;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748B;
    --gray-400: #94A3B8;
    --gray-300: #CBD5E1;
    --gray-200: #E2E8F0;
    --gray-100: #F1F5F9;
    --gray-50: #F8FAFC;
    --white: #FFFFFF;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    --gradient-dark: linear-gradient(135deg, #0A1628 0%, #1a2847 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Spacing */
    --container-width: 1200px;
    
    /* Typography */
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark);
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    font-size: 1.75rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

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

.btn-text {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.btn-text:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.badge-icon {
    font-size: 1.25rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

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

.hero-description {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 3rem;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--white);
    color: var(--primary);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.92);
    margin-top: 0.25rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trust Bar */
.trust-bar {
    padding: 1.5rem 0;
    background: #0A1628;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.trust-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9375rem;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 700px;
    margin: 0 auto;
}

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

.feature-card {
    position: relative;
    padding: 2.5rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.02) 0%, rgba(0, 217, 255, 0.02) 100%);
}

.feature-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.375rem 0.75rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-description {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.125rem;
}

/* Demo Preview */
.demo-preview-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.demo-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-preview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.demo-preview-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.demo-screen-mockup {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.mockup-header {
    padding: 1rem;
    background: var(--gray-100);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-400);
}

.mockup-content {
    padding: 3rem;
    text-align: center;
}

.step-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.demo-step-preview h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.demo-step-preview p {
    color: rgba(255, 255, 255, 0.92);
}

/* Pricing Preview */
.pricing-preview-section {
    padding: 6rem 0;
    background: var(--white);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.pricing-card {
    position: relative;
    padding: 3rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 20px;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9375rem;
}

.pricing-price {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-200);
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-700);
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    font-family: var(--font-mono);
}

.period {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.92);
}

.price-annual {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9375rem;
}

.save-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--success);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    margin-left: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--gray-700);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-icon {
    flex-shrink: 0;
    color: var(--success);
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-pricing:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.pricing-cta {
    text-align: center;
}

.btn-text-large {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.2s ease;
}

.btn-text-large:hover {
    color: var(--primary-dark);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-dark);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: var(--white);
    color: var(--primary);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.cta-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
}

.footer-description {
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-heading {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

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

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
}

/* Page Hero */
.page-hero {
    padding: 10rem 0 4rem;
    background: var(--gradient-dark);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 700px;
    margin: 0 auto;
}

/* Features Detail Section */
.features-detail-section {
    padding: 6rem 0;
}

.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
}

.feature-detail.reverse {
    direction: rtl;
}

.feature-detail.reverse > * {
    direction: ltr;
}

.feature-badge-large {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 217, 255, 0.1));
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.feature-detail h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-detail-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-benefits {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.feature-benefits h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-benefits ul {
    list-style: none;
    padding: 0;
}

.feature-benefits li {
    padding: 0.75rem 0;
    color: var(--gray-700);
    line-height: 1.6;
}

.feature-benefits li strong {
    color: var(--primary);
}

.feature-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.92);
    margin-top: 0.25rem;
}

.feature
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .demo-preview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Page Hero */
.page-hero {
    padding: 10rem 0 4rem;
    background: var(--gradient-dark);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 700px;
    margin: 0 auto;
}

/* Features Detail Pages */
.features-detail-section {
    padding: 6rem 0;
    background: var(--white);
}

.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem 0;
}

.feature-detail.reverse {
    direction: rtl;
}

.feature-detail.reverse > * {
    direction: ltr;
}

.feature-badge-large {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 217, 255, 0.1));
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.feature-detail-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-detail-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-benefits {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.feature-benefits h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-benefits ul {
    list-style: none;
    padding: 0;
}

.feature-benefits li {
    padding: 0.75rem 0;
    color: var(--gray-700);
    line-height: 1.6;
    border-bottom: 1px solid var(--gray-200);
}

.feature-benefits li:last-child {
    border-bottom: none;
}

.feature-benefits li strong {
    color: var(--primary);
    font-weight: 600;
}

.feature-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Manrope', sans-serif;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.92);
    margin-top: 0.5rem;
}

.feature-detail-visual {
    position: relative;
}

.visual-mockup {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 2rem;
}

.mockup-window {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.window-bar {
    background: var(--gray-200);
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
}

.window-content {
    padding: 3rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-animation, .task-list-preview, .chat-preview, .doc-grid, .facility-grid, .kb-list {
    width: 100%;
}

.upload-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    width: 70%;
    height: 100%;
    background: var(--gradient-primary);
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.task-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.task-item.critical { border-left: 4px solid var(--error); }
.task-item.high { border-left: 4px solid var(--warning); }
.task-item.completed { border-left: 4px solid var(--success); }

.task-icon {
    font-size: 1.5rem;
}

.task-info strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.task-info p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}

.chat-message {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.chat-message.user {
    background: var(--primary);
    color: var(--white);
    margin-left: 2rem;
}

.chat-message.ai {
    background: var(--gray-100);
    color: var(--gray-900);
    margin-right: 2rem;
}

.doc-grid, .facility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.doc-card, .facility-card {
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}

.kb-item {
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

/* Pricing Full Section */
.pricing-full-section {
    padding: 6rem 0;
    background: var(--white);
}

.pricing-cards-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.pricing-card-full {
    position: relative;
    padding: 3rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.pricing-card-full:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card-full.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.pricing-card-full.regulator {
    border-color: var(--gray-400);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.pricing-price-full {
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 2px solid var(--gray-200);
    border-bottom: 2px solid var(--gray-200);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.price-row .label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}

.price-row .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    font-family: 'Manrope', sans-serif;
}

.price-row.highlight {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 217, 255, 0.05));
    padding: 1rem;
    border-radius: 8px;
    margin: 0.5rem 0;
}

.price-row.highlight .amount {
    color: var(--primary);
}

.price-row .period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
}

.price-row .save {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--success);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    margin-left: 1rem;
}

.contact-price {
    text-align: center;
    padding: 2rem 0;
}

.contact-price h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-price p {
    color: rgba(255, 255, 255, 0.92);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.features-list li {
    padding: 0.75rem 0;
    color: var(--gray-700);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.pricing-faq {
    max-width: 900px;
    margin: 4rem auto 0;
    padding-top: 4rem;
    border-top: 2px solid var(--gray-200);
}

.pricing-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

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

.faq-item {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #475569;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    padding: 2rem 0;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 12px;
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-form-wrapper {
    padding: 3rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Legal Pages */
.legal-section {
    padding: 6rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.legal-section .last-updated {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 3rem 0 1rem;
}

.legal-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.legal-section p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
    color: var(--gray-700);
    line-height: 1.8;
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .feature-detail,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-detail.reverse {
        direction: ltr;
    }
    
    .pricing-cards-full {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .feature-detail-content h2 {
        font-size: 2rem;
    }
    
    .feature-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .doc-grid,
    .facility-grid {
        grid-template-columns: 1fr;
    }
}

/* Homepage Pricing Cards - Side by Side Fix */
.pricing-preview-section .pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.pricing-preview-section .pricing-card {
    min-height: 600px;
}

@media (max-width: 768px) {
    .pricing-preview-section .pricing-cards {
        grid-template-columns: 1fr;
    }
}

/* Improved Footer Structure */
.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-col h4 {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Fix Footer to 1 Row x 4 Columns */
.footer-content {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
    gap: 3rem !important;
    margin-bottom: 3rem !important;
}

.footer-brand {
    max-width: 100% !important;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr !important;
    }
}

/* Fix Watch Demo button visibility */
.hero-cta .secondary {
    color: var(--white) !important;
}

.hero-cta .secondary:hover {
    background: rgba(255, 255, 255, 0.15) !important;
}

/* Fix Watch Demo button in hero - force white text */
.hero .btn-secondary {
    color: white !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.hero .btn-secondary:hover {
    border-color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

/* Ensure consistent logo font across all pages */
.logo,
.logo-text,
.footer-logo,
.footer-logo .logo-text {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.75rem !important;
    letter-spacing: -0.5px !important;
}

.navbar .logo-text {
    font-size: 1.5rem !important;
}

/* Security Page Styles */
.security-section,
.compliance-section,
.data-ownership-section,
.infrastructure-section,
.incident-section,
.security-faq-section {
    padding: 6rem 0;
}

.security-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.security-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.security-intro p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
}

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

.security-card {
    padding: 2.5rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.security-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.security-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.security-card p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.security-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.security-list li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 1.5rem;
}

.security-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Compliance Section */
.compliance-section {
    background: var(--gray-50);
}

.compliance-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.compliance-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--gray-200);
}

.compliance-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.status-badge.active {
    background: var(--success);
    color: var(--white);
}

.status-badge.in-progress {
    background: var(--warning);
    color: var(--white);
}

.status-badge.roadmap {
    background: var(--gray-300);
    color: var(--gray-700);
}

/* Data Ownership */
.data-ownership-section {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
}

.data-ownership-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

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

.ownership-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    text-align: center;
}

.ownership-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Infrastructure */
.infrastructure-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

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

.infra-item {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 12px;
}

.infra-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.infra-item ul {
    list-style: none;
    padding: 0;
}

.infra-item li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 1.5rem;
}

.infra-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Incident Response */
.incident-section {
    background: var(--gray-50);
}

.incident-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.incident-content > p {
    text-align: center;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.incident-step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.incident-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Security FAQ */
.security-faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

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

.faq-security-item {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 12px;
}

.faq-security-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.faq-security-item p {
    color: var(--gray-700);
    line-height: 1.7;
}

.faq-security-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.faq-security-item a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .security-grid,
    .compliance-grid,
    .ownership-grid,
    .infrastructure-details,
    .incident-steps,
    .faq-security-grid {
        grid-template-columns: 1fr;
    }
}
/* Remove any forced logo styling - let natural CSS work */
.logo-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: inherit;
    letter-spacing: inherit;
}

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

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
}

/* Fix Security Page - 4 Cards Per Row */
.compliance-grid,
.infrastructure-details {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
}

@media (max-width: 1200px) {
    .compliance-grid,
    .infrastructure-details {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .compliance-grid,
    .infrastructure-details {
        grid-template-columns: 1fr !important;
    }
}

/* Force Consistent Logo Font Across ALL Pages */
.navbar .logo,
.navbar .logo-text,
.navbar .logo-text span {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.5rem !important;
    letter-spacing: -0.02em !important;
    line-height: 1 !important;
}

/* Ensure gradient Air and dark Comply both use same font */
.logo-text > span {
    font-family: inherit !important;
    font-weight: inherit !important;
    font-size: inherit !important;
}
