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

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

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

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

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #2563EB;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563EB;
}

.logo img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

/* Image optimization styles */
img {
    max-width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-list li {
    display: flex;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #2563EB;
}

.cta-button {
    background: #2563EB;
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2563EB;
    padding: 12px 24px;
    border: 2px solid #2563EB;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: #2563EB;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: #2563EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

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

.verified-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #f8fafc;
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    align-items: stretch;
}

.pricing-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 2px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #2563EB;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 30px;
    margin-bottom: 0;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563EB;
    font-weight: bold;
}

.enterprise-features-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 2px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.enterprise-features-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #2563EB;
}

.enterprise-features-card .plan-features li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
    font-size: 1.2rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #64748b;
    margin: 20px 0 0 0;
    text-align: left;
    font-style: italic;
}

/* Integration Section */
.integrations {
    padding: 100px 0;
    background: white;
}

.integrations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

.integration-card {
    background: #f8fafc;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.integration-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.integration-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.integration-features {
    list-style: none;
    margin-bottom: 30px;
}

.integration-features li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 25px;
    font-size: 1rem;
}

.integration-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563EB;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    line-height: 1.6;
}

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

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    color: #94a3b8;
}

/* Responsive Design */
@media (min-width: 1025px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }
    
    .pricing-content {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-list {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* Main Layout */
.main-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    gap: 40px;
}

.sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.content {
    flex: 1;
    min-width: 0;
}

/* Sidebar Navigation */
.sidebar-nav {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}

.sidebar-nav-section {
    color: #2563EB;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 15px 0 15px 0;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
}

.sidebar-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-nav-item {
    margin: 0;
}

.sidebar-nav-link {
    display: block;
    padding: 8px 0;
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.sidebar-nav-link:hover {
    color: #2563EB;
    text-decoration: none;
}

.sidebar-nav-sublist {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-left: 15px;
    margin-top: 5px;
}

.sidebar-nav-sublist .sidebar-nav-link {
    font-size: 0.85rem;
    padding: 4px 0;
}

/* MkDocs Content Overrides */
.md-content {
    line-height: 1.6;
}

.md-content h1, .md-content h2, .md-content h3, .md-content h4, .md-content h5, .md-content h6 {
    color: #2563EB;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.md-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.md-content h2 {
    font-size: 2rem;
    font-weight: 600;
}

.md-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.md-content p {
    margin-bottom: 1rem;
}

/* Cookie consent banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent p {
    margin: 0;
    color: #333;
    font-size: 0.9rem;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.75rem;
}

.cookie-consent-accept,
.cookie-consent-decline {
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid #2563EB;
}

.cookie-consent-accept {
    background: #2563EB;
    color: #ffffff;
}

.cookie-consent-accept:hover {
    background: #1d4ed8;
}

.cookie-consent-decline {
    background: #ffffff;
    color: #2563EB;
}

.cookie-consent-decline:hover {
    background: #eff6ff;
}

.md-content hr {
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    border: none;
    border-top: 1px solid #e2e8f0;
}

.md-content pre {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.md-content code {
    background: #f8fafc;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9em;
}

.md-content pre code {
    background: transparent;
    padding: 0;
}

.md-content blockquote {
    border-left: 4px solid #2563EB;
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-radius: 0 8px 8px 0;
}

.md-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.md-content th, .md-content td {
    border: 1px solid #e2e8f0;
    padding: 12px 16px;
    text-align: left;
}

.md-content th {
    background: #f8fafc;
    font-weight: 600;
    color: #2563EB;
}

.md-content ul, .md-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.md-content li {
    margin: 0.5rem 0;
}

.md-content a {
    color: #2563EB;
    text-decoration: none;
}

.md-content a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Responsive Sidebar */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        padding: 20px 10px;
    }
    
    .sidebar {
        width: 100%;
        position: static;
        order: 2;
    }
    
    .content {
        order: 1;
    }
}
