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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Ubuntu, sans-serif;
    line-height: 1.5;
    color: #2d3748;
    background-color: #ffffff;
    font-size: 14px;
    font-weight: 400;
}

/* App Layout */
.app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Fixed Header */
.header {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 64px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.logo-container:hover {
    opacity: 0.8;
}

.logo {
    color: #4f46e5;
    flex-shrink: 0;
    display: block;
    margin-left: 26px;
    margin-right: -100px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
}

.version-display {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f7fafc;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.version-label {
    font-size: 12px;
    color: #718096;
    font-weight: 500;
}

.version-number {
    font-size: 12px;
    color: #2d3748;
    font-weight: 600;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

/* Main Container */
.main-container {
    display: flex;
    margin-top: 64px;
    min-height: calc(100vh - 64px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0 24px;
}

/* Left Sidebar Navigation */
.sidebar {
    width: 320px;
    background: #fff;
    border-right: 1px solid #e2e8f0;
    overflow-y: auto;
    flex-shrink: 0;
}

.sidebar-content {
    padding: 24px 0;
}


/* Navigation Categories */
.nav-section {
    padding: 0 12px;
}

.nav-category {
    margin-bottom: 8px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    user-select: none;
}

.category-header:hover {
    background: #f7fafc;
}

.expand-icon {
    color: #a0aec0;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.category-header.expanded .expand-icon {
    transform: rotate(180deg);
}


.category-title {
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
}

.category-methods {
    margin-left: 24px;
    margin-top: 8px;
    border-left: 1px solid #e2e8f0;
    padding-left: 16px;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    max-height: 0;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    margin-bottom: 2px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.method-item:hover {
    background: #f7fafc;
}

.method-item.active {
    background: #eef2ff;
    border-left: 3px solid #4f46e5;
    margin-left: -3px;
}

.method-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 60px;
    width: 60px;
    text-align: center;
}

.method-icon {
    color: #4f46e5;
    flex-shrink: 0;
}

/* Introduction Navigation Item */
.nav-item.introduction-nav {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin: 0 12px 16px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    border: 1px solid transparent;
}

.nav-item.introduction-nav:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.nav-item.introduction-nav.active {
    background: #f3e8ff;
    border-color: #c4b5fd;
    color: #6b46c1;
}

.nav-item.introduction-nav .nav-icon {
    color: #6b46c1;
    margin-right: 12px;
    flex-shrink: 0;
}

.nav-item.introduction-nav .nav-title {
    font-size: 14px;
    font-weight: 500;
    color: inherit;
}

/* Authentication Navigation Item */
.nav-item.authentication-nav {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin: 0 12px 16px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    border: 1px solid transparent;
}

.nav-item.authentication-nav:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.nav-item.authentication-nav.active {
    background: #fef3c7;
    border-color: #f59e0b;
    color: #92400e;
}

.nav-item.authentication-nav .nav-icon {
    color: #f59e0b;
    margin-right: 12px;
    flex-shrink: 0;
}

.nav-item.authentication-nav .nav-title {
    font-size: 14px;
    font-weight: 500;
    color: inherit;
}

.method-badge.get {
    background: #dcfdf7;
    color: #065f46;
}

.method-badge.post {
    background: #dbeafe;
    color: #1e40af;
}

.method-badge.put {
    background: #fef3c7;
    color: #92400e;
}

.method-badge.delete {
    background: #fee2e2;
    color: #991b1b;
}

.method-name {
    font-size: 13px;
    color: #4a5568;
    font-weight: 500;
}

/* Main Content Area */
.main-content {
    flex: 1;
    background: #ffffff;
    overflow-y: auto;
}

/* Full-width header section */
.endpoint-header-section {
    background: #ffffff;
    padding: 32px 48px;
    border-bottom: 1px solid #e2e8f0;
}

/* Caution section */
.caution-section {
    margin-top: 24px;
    padding: 20px;
    background: #fef7f0;
    border: 1px solid #fed7aa;
    border-radius: 8px;
}

.caution-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.caution-item:last-child {
    margin-bottom: 0;
}

.caution-icon {
    font-size: 18px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.caution-content {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #92400e;
}

.caution-content strong {
    color: #78350f;
    font-weight: 600;
}

.caution-content code {
    background: #fbbf24;
    color: #78350f;
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 13px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 200px);
}

/* Right Column: Code Examples */
.code-column {
    background: rgb(255, 255, 255);
    padding: 24px;
    overflow-y: auto;
}

.code-section-header {
    padding: 0 0 16px 0;
    margin-bottom: 16px;
}

.code-section-header .section-title {
    color: #1a202c;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: -0.25px;
}

.code-section {
    margin-bottom: 24px;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2d3748;
    padding: 12px 16px;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid #4a5568;
}

.code-tabs {
    display: flex;
    gap: 4px;
}

.code-tab {
    background: transparent;
    border: none;
    color: #a0aec0;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.code-tab:hover {
    background: #4a5568;
    color: #e2e8f0;
}

.code-tab.active {
    background: #4f46e5;
    color: #fff;
}

.copy-button {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #4a5568;
    border: none;
    color: #e2e8f0;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-button:hover {
    background: #718096;
}

.copy-button.copied {
    background: #38a169;
    color: #fff;
}

.code-content {
    position: relative;
}

.code-block {
    display: none;
    margin: 0;
    padding: 20px;
    background: rgb(26, 32, 44);
    color: #e2e8f0;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
    overflow-x: auto;
    border-radius: 0 0 8px 8px;
    white-space: pre;
}

.code-block.active {
    display: block;
}

/* Response Section */
.response-section-header {
    padding: 24px 0 16px 0;
    margin-bottom: 0;
}

.response-section-header .section-title {
    color: #1a202c;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: -0.25px;
}

/* Response tabs container */
.response-section {
    margin-top: 0;
    background: #2d3748;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Response tabs - Elegant design */
.response-tabs {
    display: flex;
    gap: 2px;
    margin: 0 0 16px 0;
    padding: 4px;
    background: #1a202c;
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.response-tab {
    background: transparent;
    color: #a0aec0;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex: 1;
    text-align: center;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.response-tab:hover {
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

.response-tab.active {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: #ffffff;
    box-shadow: 
        0 4px 12px rgba(66, 153, 225, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.response-tab.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 6px;
    pointer-events: none;
}

/* Success tab styling */
.response-tab[data-status="success"].active {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    box-shadow: 
        0 4px 12px rgba(72, 187, 120, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Error tab styling */
.response-tab[data-status="400"].active,
.response-tab[data-status="401"].active {
    background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
    box-shadow: 
        0 4px 12px rgba(245, 101, 101, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.response-content {
    display: none;
    margin-top: 0;
    border-radius: 8px;
    overflow: hidden;
}

.response-content.active {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

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

.response-content .response-block {
    margin: 0;
    border: none;
    border-radius: 8px;
    background: rgb(26, 32, 44);
}

.response-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    padding: 0 0 12px 0;
    border-bottom: 1px solid #4a5568;
    margin-bottom: 16px;
}

.response-title {
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
}

.status-code {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

.status-code.success {
    background: #38a169;
    color: #fff;
}

.status-code.error {
    background: #e53e3e;
    color: #fff;
}

.response-content {
    background: rgb(26, 32, 44);
    border-radius: 0 0 8px 8px;
}

.response-block {
    margin: 0;
    padding: 20px;
    background: rgb(26, 32, 44);
    color: #e2e8f0;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
    overflow-x: auto;
    white-space: pre;
    border-radius: 0 0 8px 8px;
}

/* Left Column: Documentation */
.docs-column {
    padding: 32px;
    overflow-y: auto;
    background: #fff;
    border-right: 1px solid #e2e8f0;
}

.endpoint-info {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.endpoint-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.method-badge-large {
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 70px;
    text-align: center;
}

.method-badge-large.get {
    background: #dcfdf7;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.method-badge-large.post {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

.method-badge-large.put {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
}

.method-badge-large.delete {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.method-badge-large.create {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

.method-badge-large.list {
    background: #dcfdf7;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.method-badge-large.introduction {
    background: #f3e8ff;
    color: #6b46c1;
    border: 1px solid #c4b5fd;
}

.method-badge-large.enterprise {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: 1px solid #f093fb;
}

.endpoint-path {
    font-size: 28px;
    font-weight: 600;
    color: #1a202c;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    letter-spacing: -0.5px;
}

.endpoint-description {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Ubuntu, sans-serif;
    margin-top: 12px;
    max-width: none;
}

/* Section Styles */
.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
    letter-spacing: -0.25px;
}

/* Introduction Section - Professional Landing Page Style */
.introduction-section {
    padding: 0;
    margin: 0;
    max-width: none;
}

/* Hero Section */
.intro-hero {
    text-align: center;
    padding: 64px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    margin-bottom: 64px;
    color: white;
}

.hero-icon {
    margin-bottom: 24px;
}

.hero-icon svg {
    color: rgba(255, 255, 255, 0.9);
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #c4b5fd;
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 12px 0;
}

.benefit-description {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* Getting Started Section */
.getting-started {
    margin-bottom: 64px;
}

.section-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin: 0 0 48px 0;
    letter-spacing: -0.5px;
}

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

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 8px 0;
}

.step-description {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* API Overview Section */
.api-overview {
    margin-bottom: 64px;
}

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

.overview-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s ease;
}

.overview-item:hover {
    background: #ffffff;
    border-color: #c4b5fd;
    transform: translateY(-2px);
}

.overview-icon {
    font-size: 24px;
    margin-bottom: 12px;
    display: block;
}

.overview-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 8px 0;
}

.overview-description {
    font-size: 14px;
    line-height: 1.5;
    color: #4a5568;
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 48px 32px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.cta-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 8px 0;
}

.cta-description {
    font-size: 16px;
    color: #4a5568;
    margin: 0 0 32px 0;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-button.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .intro-hero {
        padding: 48px 24px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
}

/* Authentication Section */
.authentication-section {
    padding: 0;
    margin: 0;
    max-width: none;
}

.auth-hero {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 16px;
    margin-bottom: 48px;
    color: white;
}

.auth-icon {
    margin-bottom: 16px;
}

.auth-icon svg {
    color: rgba(255, 255, 255, 0.9);
}

.auth-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.auth-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.auth-content {
    max-width: none;
}

.auth-section {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e2e8f0;
}

.auth-section:last-child {
    border-bottom: none;
}

.auth-section-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 16px 0;
}

.auth-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 24px;
}

.auth-example {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    margin: 24px 0;
}

.example-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 12px 0;
}

.code-example {
    background: #1a202c;
    border-radius: 6px;
    padding: 12px 16px;
    font-family: 'Courier New', monospace;
}

.code-example code {
    color: #e2e8f0;
    font-size: 14px;
}

.auth-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.auth-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.auth-step .step-number {
    width: 32px;
    height: 32px;
    background: #f59e0b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.auth-step .step-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 8px 0;
}

.auth-step .step-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #4a5568;
    margin: 0;
}

.auth-best-practices {
    list-style: none;
    padding: 0;
    margin: 0;
}

.auth-best-practices li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
}

.auth-best-practices li:last-child {
    border-bottom: none;
}

.error-codes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.error-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
}

.error-code {
    font-weight: 600;
    color: #dc2626;
    font-size: 14px;
}

.error-description {
    color: #7f1d1d;
    font-size: 14px;
}

@media (max-width: 768px) {
    .auth-title {
        font-size: 28px;
    }
    
    .auth-subtitle {
        font-size: 16px;
    }
    
    .auth-hero {
        padding: 32px 24px;
    }
    
    .error-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Parameters Section */
.parameters-section {
    margin-bottom: 32px;
}

.parameters-list {
    space-y: 24px;
}

.parameter-item {
    padding: 20px;
    background: #f7fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 16px;
}

.parameter-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.parameter-name {
    background: #edf2f7;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 13px;
    color: #2d3748;
    font-weight: 600;
}

.parameter-type {
    font-size: 11px;
    color: #718096;
    font-weight: 500;
    font-style: italic;
}

.parameter-badge {
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.parameter-badge.required {
    background: #fed7d7;
    color: #9b2c2c;
}

.parameter-badge.optional {
    background: #e6fffa;
    color: #285e61;
}

.parameter-description {
    font-size: 9px;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Ubuntu, sans-serif;
}

.parameter-example {
    font-size: 9px;
    color: #2d3748;
    margin-bottom: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Ubuntu, sans-serif;
}

.parameter-example code {
    background: #edf2f7;
    padding: 2px 4px;
    border-radius: 3px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 11px;
    color: #2d3748;
}

.parameter-validation {
    font-size: 9px;
    color: #718096;
    font-style: italic;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Ubuntu, sans-serif;
}

/* Response Schema Section */
.response-schema-section {
    margin-bottom: 32px;
}

.schema-description {
    font-size: 9px;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Ubuntu, sans-serif;
}

.schema-properties {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
}

.schema-item {
    display: grid;
    grid-template-columns: 120px 80px 1fr;
    gap: 12px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.schema-item:last-child {
    border-bottom: none;
}

.schema-name {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 12px;
    color: #2d3748;
    font-weight: 600;
    background: #edf2f7;
    padding: 2px 6px;
    border-radius: 3px;
}

.schema-type {
    font-size: 10px;
    color: #718096;
    font-weight: 500;
    font-style: italic;
}

.schema-desc {
    font-size: 9px;
    color: #4a5568;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Ubuntu, sans-serif;
}

/* Status Codes Section */
.status-codes-section {
    margin-bottom: 32px;
}

.status-codes-list {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
}

.status-item {
    display: grid;
    grid-template-columns: 60px 140px 1fr;
    gap: 12px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.status-item:last-child {
    border-bottom: none;
}

.status-item .status-code {
    font-size: 11px;
    padding: 4px 6px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

.status-name {
    font-size: 11px;
    font-weight: 600;
    color: #2d3748;
}

.status-description {
    font-size: 9px;
    color: #4a5568;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Ubuntu, sans-serif;
}

/* Syntax Highlighting */
.code-block .keyword { color: #f687b3; }
.code-block .string { color: #68d391; }
.code-block .number { color: #fbb6ce; }
.code-block .boolean { color: #fc8181; }
.code-block .null { color: #f687b3; }
.code-block .property { color: #63b3ed; }
.code-block .punctuation { color: #a0aec0; }
.code-block .comment { color: #718096; font-style: italic; }

.response-block .keyword { color: #f687b3; }
.response-block .string { color: #68d391; }
.response-block .number { color: #fbb6ce; }
.response-block .boolean { color: #fc8181; }
.response-block .null { color: #f687b3; }
.response-block .property { color: #63b3ed; }
.response-block .punctuation { color: #a0aec0; }

/* Responsive Design */
@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .docs-column {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .endpoint-header-section {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        padding: 0 16px;
    }
    
    .sidebar {
        width: 100%;
        max-height: 300px;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .header-content {
        padding: 0 16px;
    }
    
    .logo-text {
        display: none;
    }
    
    .version-display {
        font-size: 11px;
    }
    
    .endpoint-header-section {
        padding: 16px;
    }
    
    .caution-section {
        margin-top: 16px;
        padding: 16px;
    }
    
    .caution-content {
        font-size: 13px;
    }
    
    .caution-icon {
        font-size: 16px;
        margin-right: 10px;
    }
    
    .code-column,
    .docs-column {
        padding: 16px;
    }
    
    .endpoint-path {
        font-size: 20px;
    }
    
    .schema-item,
    .status-item {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .endpoint-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .parameter-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

/* Enterprise Features Section */
.enterprise-features-section {
    margin: 48px 0;
}

.features-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.2;
}

.features-subtitle {
    font-size: 18px;
    color: #4a5568;
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.enterprise-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.feature-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 24px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.feature-card.highlight {
    border-color: #3182ce;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

.feature-card.core {
    border-color: #3182ce;
}

.feature-card.core:hover {
    border-color: #2c5aa0;
    box-shadow: 0 20px 25px -5px rgba(49, 130, 206, 0.15);
}

.feature-card.security {
    border-color: #38a169;
}

.feature-card.security:hover {
    border-color: #2f855a;
    box-shadow: 0 20px 25px -5px rgba(56, 161, 105, 0.15);
}

.feature-card.performance {
    border-color: #ed8936;
}

.feature-card.performance:hover {
    border-color: #dd6b20;
    box-shadow: 0 20px 25px -5px rgba(237, 137, 54, 0.15);
}

.feature-card.operations {
    border-color: #805ad5;
}

.feature-card.operations:hover {
    border-color: #6b46c1;
    box-shadow: 0 20px 25px -5px rgba(128, 90, 213, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    text-align: center;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.3;
}

.feature-description {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 16px;
}

.feature-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-badge:not(.security):not(.performance):not(.operations) {
    background: #3182ce;
    color: white;
}

.feature-badge.security {
    background: #38a169;
    color: white;
}

.feature-badge.performance {
    background: #ed8936;
    color: white;
}

.feature-badge.operations {
    background: #805ad5;
    color: white;
}

/* Additional Features Row */
.additional-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.additional-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.additional-feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.additional-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.additional-text {
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
    line-height: 1.4;
}

/* Responsive Design for Enterprise Features */
@media (max-width: 768px) {
    .enterprise-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-heading {
        font-size: 28px;
    }
    
    .features-subtitle {
        font-size: 16px;
        padding: 0 16px;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
    
    .feature-icon {
        font-size: 40px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .additional-features {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .enterprise-features-section {
        margin: 32px 0;
    }
    
    .features-heading {
        font-size: 24px;
    }
    
    .features-subtitle {
        font-size: 15px;
    }
    
    .feature-card {
        padding: 20px 16px;
    }
    
    .feature-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .feature-title {
        font-size: 16px;
    }
    
    .feature-description {
    font-size: 14px;
    }
}

/* Enterprise Features Navigation Item */
.nav-item.enterprise-nav {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin: 0 12px 16px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    border: 1px solid transparent;
}

.nav-item.enterprise-nav:hover {
    background: #fef7ff;
    border-color: #f093fb;
}

.nav-item.enterprise-nav.active {
    background: linear-gradient(135deg, #fef7ff 0%, #fdf2f8 100%);
    border-color: #f093fb;
    color: #be185d;
}

.nav-item.enterprise-nav .nav-icon {
    color: #f093fb;
    margin-right: 12px;
    flex-shrink: 0;
}

.nav-item.enterprise-nav .nav-title {
    font-size: 14px;
    font-weight: 500;
    color: inherit;
}

/* Get Started Navigation Styles */
.nav-item.get-started-nav {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin: 0 12px 16px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    border: 1px solid transparent;
}

.nav-item.get-started-nav:hover {
    background: #f0fdf4;
    border-color: #10b981;
}

.nav-item.get-started-nav.active {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: #10b981;
    color: #065f46;
}

.nav-item.get-started-nav .nav-icon {
    color: #10b981;
    margin-right: 12px;
    flex-shrink: 0;
}

.nav-item.get-started-nav .nav-title {
    font-size: 14px;
    font-weight: 500;
    color: inherit;
}

/* Get Started Badge Style */
.method-badge-large.get-started {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

/* Enterprise Features Page Styles */
.enterprise-section {
    padding: 0;
    max-width: none;
    width: 100%;
}


.feature-category {
    margin-bottom: 64px;
    padding: 0 24px;
}

.feature-category:first-child {
    padding-top: 32px;
}

.enterprise-section .category-title {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 42px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -1px;
    position: relative;
    padding-bottom: 16px;
}

.enterprise-section .category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 2px;
}

.category-icon {
    font-size: 48px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.category-description {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.enterprise-feature {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid #e1e8ed;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.08), 0 4px 10px -2px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.enterprise-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enterprise-feature:hover::before {
    opacity: 1;
}

.enterprise-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 12px 20px -5px rgba(0, 0, 0, 0.08);
    border-color: #d1d9e0;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8eef3;
    position: relative;
}

.feature-icon-large {
    font-size: 64px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.enterprise-feature:hover .feature-icon-large {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-name {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.5px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-description h4,
.feature-benefits h4,
.feature-example h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.3px;
    position: relative;
}

.feature-description h4::after,
.feature-benefits h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.feature-description {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 28px;
    border-radius: 16px;
    border-left: 4px solid #667eea;
    margin-bottom: 8px;
}

.feature-description p {
    font-size: 18px;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 400;
    max-width: none;
}

.feature-benefits {
    background: linear-gradient(135deg, #fefefe 0%, #f9fafb 100%);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.feature-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-benefits li {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-benefits li:hover {
    background: #f8fafc;
    border-left-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-benefits strong {
    color: #1a202c;
    font-weight: 700;
}

.feature-example {
    grid-column: 1 / -1;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e8eef3;
    position: relative;
}

.feature-example h4 {
    margin-bottom: 20px;
}

.code-example {
    background: linear-gradient(145deg, #1a202c 0%, #2d3748 100%);
    border-radius: 16px;
    padding: 28px;
    margin-top: 16px;
    overflow-x: auto;
    border: 1px solid #374151;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25), 0 4px 10px -2px rgba(0, 0, 0, 0.1);
    position: relative;
}

.code-example::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}

.code-example pre {
    margin: 0;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 15px;
    line-height: 1.6;
    color: #e2e8f0;
    font-weight: 400;
}

.code-example code {
    background: none;
    padding: 0;
    border-radius: 0;
    color: inherit;
    font-size: inherit;
}

/* Feature Badge Styles for Enterprise Page */
.enterprise-feature .feature-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.enterprise-feature:hover .feature-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.enterprise-feature .feature-badge.core {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: white;
}

.enterprise-feature .feature-badge.security {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    color: white;
}

.enterprise-feature .feature-badge.performance {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
}

.enterprise-feature .feature-badge.operations {
    background: linear-gradient(135deg, #805ad5 0%, #6b46c1 100%);
    color: white;
}

/* Q&A Navigation Item Styling */
.nav-item.qa-nav {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    color: #718096;
    user-select: none;
}

.nav-item.qa-nav:hover {
    background: #f7fafc;
    color: #2d3748;
}

.nav-item.qa-nav.active {
    background: linear-gradient(135deg, #f0f4ff 0%, #f5f7ff 100%);
    color: #4f46e5;
    border-left: 3px solid #4f46e5;
    padding-left: 13px;
}

.nav-item.qa-nav .nav-icon {
    flex-shrink: 0;
    color: inherit;
    transition: color 0.2s ease;
}

.nav-item.qa-nav .nav-title {
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

/* Q&A Page Styles */
.qa-section {
    padding: 0;
    max-width: none;
    width: 100%;
}

.qa-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -1px;
    padding: 32px 24px 0 24px;
}

.qa-subtitle {
    font-size: 18px;
    color: #718096;
    margin-bottom: 32px;
    padding: 0 24px;
    line-height: 1.6;
}

.qa-container {
    padding: 0 24px 32px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.qa-item {
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.qa-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e0;
}

.qa-item.active {
    box-shadow: 0 8px 16px rgba(79, 70, 229, 0.1);
    border-color: #667eea;
}

.qa-header {
    width: 100%;
    background: #f9fafb;
    border: none;
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
}

.qa-item.active .qa-header {
    background: linear-gradient(135deg, #f0f4ff 0%, #f5f7ff 100%);
}

.qa-header:hover {
    background: #f0f1f4;
}

.qa-item.active .qa-header:hover {
    background: linear-gradient(135deg, #e8ecff 0%, #eff2ff 100%);
}

.qa-question {
    flex: 1;
    text-align: left;
    line-height: 1.5;
}

.qa-toggle-icon {
    flex-shrink: 0;
    color: #718096;
    transition: transform 0.3s ease-out;
}

.qa-item.active .qa-toggle-icon {
    color: #667eea;
}

.qa-answer {
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.qa-answer-content {
    padding: 24px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.qa-answer-content p {
    margin: 0 0 20px 0;
    line-height: 1.7;
    color: #374151;
    font-size: 15px;
}

.qa-answer-content p:last-child {
    margin-bottom: 0;
}

.qa-example-block {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 16px 0;
    font-size: 14px;
    line-height: 1.6;
}

.qa-example-block h4 {
    margin: 0 0 12px 0;
    font-size: 14px;
    font-weight: 700;
    color: #1a202c;
}

.qa-example-block ul,
.qa-example-block ol {
    margin: 0;
    padding-left: 20px;
}

.qa-example-block li {
    margin: 8px 0;
    color: #374151;
    line-height: 1.6;
}

.qa-example-block pre {
    background: transparent;
    color: #1e293b;
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 12px 0 0 0;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.5;
}

.qa-example-block code {
    background: none;
    color: inherit;
    padding: 0;
    border-radius: 0;
    font-family: inherit;
    font-size: inherit;
}

.qa-tip-block,
.qa-note-block,
.qa-warning-block {
    background: #f8fafc;
    border-left: 4px solid #667eea;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 16px 0;
    font-size: 14px;
    line-height: 1.6;
}

.qa-note-block {
    border-left-color: #3b82f6;
}

.qa-warning-block {
    border-left-color: #f97316;
    background: #fef7ee;
}

.qa-tip-block strong,
.qa-note-block strong,
.qa-warning-block strong {
    color: #1a202c;
    font-weight: 700;
}

.qa-tip-block ul,
.qa-note-block ul,
.qa-warning-block ul {
    margin: 12px 0 0 0;
    padding-left: 20px;
    list-style: none;
}

.qa-tip-block li,
.qa-note-block li,
.qa-warning-block li {
    margin: 6px 0;
    color: #374151;
    line-height: 1.5;
}

.qa-tip-block li::before,
.qa-note-block li::before,
.qa-warning-block li::before {
    content: '✓ ';
    color: #667eea;
    font-weight: 600;
    margin-right: 8px;
}

.qa-note-block li::before {
    content: 'ℹ️ ';
    color: #3b82f6;
}

.qa-warning-block li::before {
    content: '⚠️ ';
    color: #f97316;
}

.info-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

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

.qa-answer-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
}

.qa-answer-content th {
    background: #f3f4f6;
    padding: 12px 8px;
    text-align: left;
    font-weight: 700;
    color: #1a202c;
}

.qa-answer-content td {
    padding: 12px 8px;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.qa-answer-content tr:hover {
    background: #f9fafb;
}

.qa-answer-content code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 13px;
    color: #374151;
}

.qa-answer-content a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s ease;
}

.qa-answer-content a:hover {
    color: #5568d3;
    text-decoration: underline;
}

/* Q&A Badge Styles */
.method-badge-large.qa {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Responsive Design for Enterprise Features Page */
@media (max-width: 1024px) {
    .feature-content {
        gap: 28px;
    }
    
    .enterprise-feature {
        padding: 32px;
    }
    
    .enterprise-section .category-title {
        font-size: 36px;
    }
    
    .feature-name {
        font-size: 28px;
    }
    
    .feature-icon-large {
        font-size: 56px;
        padding: 14px;
    }
    
}

@media (max-width: 768px) {
    .feature-category {
        padding: 0 20px;
        margin-bottom: 48px;
    }
    
    .enterprise-section .category-title {
        font-size: 32px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .category-icon {
        font-size: 40px;
        padding: 10px;
    }
    
    .enterprise-feature {
        padding: 28px;
        border-radius: 16px;
    }
    
    .feature-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .feature-icon-large {
        font-size: 52px;
        padding: 12px;
    }
    
    .feature-name {
        font-size: 26px;
        text-align: center;
    }
    
    .feature-content {
        gap: 24px;
    }
    
    .feature-description {
        padding: 20px;
    }
    
    .feature-benefits {
        padding: 20px;
    }
    
    .feature-benefits ul {
        gap: 12px;
    }
    
    .feature-benefits li {
        padding: 12px 16px;
    }
    
    .qa-container {
        padding: 0 16px 24px 16px;
    }
    
    .qa-title {
        font-size: 28px;
        padding: 24px 16px 0 16px;
    }
    
    .qa-subtitle {
        padding: 0 16px;
        margin-bottom: 24px;
    }
    
    .qa-header {
        padding: 16px;
    }
    
    .qa-answer-content {
        padding: 16px;
    }
    
    .qa-example-block {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .qa-example-block pre {
        padding: 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    
    .feature-category {
        padding: 0 16px;
        margin-bottom: 40px;
    }
    
    .enterprise-section .category-title {
        font-size: 24px;
    }
    
    .enterprise-feature {
        padding: 20px;
    }
    
    .feature-name {
        font-size: 20px;
    }
    
    .code-example {
        padding: 16px;
    }
    
    .code-example pre {
        font-size: 13px;
    }
    
    .qa-title {
        font-size: 20px;
        padding: 16px;
    }
    
    .qa-container {
        padding: 0 12px 16px 12px;
    }
    
    .qa-header {
        padding: 12px;
        font-size: 14px;
    }
    
    .qa-answer-content {
        padding: 12px;
    }
    
    .qa-answer-content p {
        font-size: 14px;
    }
}

/* Get Started Section Styles */
.get-started-section {
    padding: 0;
    max-width: none;
    width: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.get-started-hero {
    text-align: center;
    padding: 48px 24px 32px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.get-started-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.get-started-title {
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 16px 0;
    line-height: 1.1;
    letter-spacing: -1.5px;
    position: relative;
    z-index: 1;
}

.get-started-subtitle {
    font-size: 18px;
    margin: 0;
    opacity: 0.95;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.get-started-container {
    padding: 48px 24px;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.customer-path-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.customer-path-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.customer-path-card.new-customer {
    border-color: #10b981;
}

.customer-path-card.new-customer:hover {
    border-color: #059669;
}


.path-header {
    padding: 32px 32px 24px 32px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.new-customer .path-header {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-bottom-color: #10b981;
}


.path-icon {
    font-size: 48px;
    line-height: 1;
}

.path-title {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    color: #1a202c;
    flex: 1;
    letter-spacing: -0.5px;
}

.path-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.path-badge.quick {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}


.path-content {
    padding: 32px;
}

.path-description {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 32px 0;
}

.path-steps {
    margin: 32px 0;
}

.steps-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 24px 0;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 48px;
    bottom: -32px;
    width: 2px;
    background: linear-gradient(180deg, #e2e8f0 0%, transparent 100%);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 8px 0;
}

.step-description {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 16px 0;
}

.step-code {
    margin-top: 16px;
}

.step-code .response-block {
    margin: 0;
    font-size: 13px;
}

.path-tips {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8ecff 100%);
    border: 1px solid #c7d2fe;
    border-left: 4px solid #667eea;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
}

.tips-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 16px 0;
}

.path-tips ul,
.path-warning ul {
    margin: 0;
    padding-left: 24px;
    list-style: none;
}

.path-tips li,
.path-warning li {
    margin: 10px 0;
    color: #475569;
    line-height: 1.7;
    position: relative;
    padding-left: 8px;
}

.path-tips li::before {
    content: '✓';
    color: #667eea;
    font-weight: 700;
    margin-right: 12px;
    position: absolute;
    left: -24px;
}

.path-warning {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 1px solid #fed7aa;
    border-left: 4px solid #f97316;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
}

.warning-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 16px 0;
}

.path-warning li::before {
    content: '⚠️';
    margin-right: 12px;
    position: absolute;
    left: -28px;
}


.path-cta {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-button.primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.common-resources {
    padding: 48px 24px;
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border-top: 2px solid #e2e8f0;
}

.resources-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 32px 0;
    text-align: center;
    letter-spacing: -0.5px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.resource-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.resource-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.resource-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 12px 0;
}

.resource-description {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 20px 0;
}

.resource-link {
    display: inline-block;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
}

.resource-link:hover {
    color: #5568d3;
    transform: translateX(4px);
}

/* Responsive Design for Get Started Section */
@media (max-width: 1024px) {
    .get-started-container {
        padding: 32px 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .get-started-title {
        font-size: 30px;
    }
    
    .get-started-subtitle {
        font-size: 14px;
    }
    
    .path-header {
        padding: 24px 20px 20px 20px;
    }
    
    .path-title {
        font-size: 24px;
        width: 100%;
    }
    
    .path-content {
        padding: 24px 20px;
    }
    
    .step-item {
        gap: 16px;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .step-item:not(:last-child)::after {
        left: 17px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .common-resources {
        padding: 32px 20px;
    }
    
    .resources-title {
        font-size: 24px;
    }
}