:root {
    --navy-deep: #0f1d3a;
    --navy-primary: #1a2b4a;
    --slate: #475569;
    --slate-light: #64748b;
    --accent-gold: #d4af37;
    --accent-teal: #14b8a6;
    --bg-light: #f8fafc;
    --white: #ffffff;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--navy-deep);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(15, 29, 58, 0.08);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Crimson Pro', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy-deep);
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--accent-teal);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--slate);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.cta-button {
    background: var(--navy-primary);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--navy-primary);
}

.cta-button:hover {
    background: var(--navy-deep);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 29, 58, 0.2);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(20, 184, 166, 0.03) 0%, rgba(26, 43, 74, 0.05) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(26, 43, 74, 0.015) 2px, rgba(26, 43, 74, 0.015) 4px);
    z-index: 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(20, 184, 166, 0.1);
    color: var(--accent-teal);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

h1 {
    font-family: 'Crimson Pro', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--navy-deep);
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--slate);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Box */
.search-container {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 12px 24px rgba(15, 29, 58, 0.08),
        0 0 0 1px rgba(15, 29, 58, 0.06);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.search-label {
    font-family: 'Crimson Pro', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 1.5rem;
    display: block;
}

.search-wrapper {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1.3rem 5rem 1.3rem 1.5rem;
    font-size: 1.05rem;
    border: 2px solid rgba(15, 29, 58, 0.1);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-teal);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
}

.search-button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy-primary);
    color: var(--white);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.search-button:hover {
    background: var(--navy-deep);
    transform: translateY(-50%) scale(1.02);
}

.search-hint {
    margin-top: 1rem;
    padding: 0.8rem 1.2rem;
    background: rgba(20, 184, 166, 0.08);
    border-left: 3px solid var(--accent-teal);
    border-radius: 6px;
    color: var(--slate);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Example Questions */
.examples-label {
    font-size: 0.9rem;
    color: var(--slate-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.example-questions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.example-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(15, 29, 58, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.example-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-teal);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.example-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-teal);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.example-card:hover {
    transform: translateX(8px);
    border-color: var(--accent-teal);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.15);
}

.example-card:hover::before {
    transform: scaleY(1);
}

.example-icon {
    width: 36px;
    height: 36px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--accent-teal);
    font-weight: 700;
}

.example-text {
    font-size: 0.95rem;
    color: var(--navy-deep);
    line-height: 1.5;
    font-weight: 500;
}

/* Features Section */
.features {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Crimson Pro', serif;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--navy-deep);
}

.section-subtitle {
    text-align: center;
    color: var(--slate);
    font-size: 1.15rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(15, 29, 58, 0.08);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(15, 29, 58, 0.12);
    border-color: var(--accent-teal);
}

.feature-number {
    font-family: 'Crimson Pro', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(20, 184, 166, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

.feature-title {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy-deep);
}

.feature-description {
    color: var(--slate);
    line-height: 1.7;
}

/* Trust Section */
.trust-section {
    background: var(--navy-primary);
    color: var(--white);
    padding: 5rem 2rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255, 255, 255, 0.02) 40px, rgba(255, 255, 255, 0.02) 80px);
    z-index: 0;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.trust-title {
    font-family: 'Crimson Pro', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.trust-text {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.trust-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-gold);
    transition: opacity 0.3s ease;
}

.trust-link:hover {
    opacity: 0.8;
}

/* Footer */
footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    font-family: 'Crimson Pro', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-title {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

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

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

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

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

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

/* Results Dashboard */
.results-dashboard {
    background: var(--bg-light);
    padding: 2rem 0 4rem;
    margin-top: 80px;
}

.results-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.results-title-section {
    flex: 1;
    min-width: 300px;
}

.results-title {
    font-family: 'Crimson Pro', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

.results-query {
    color: var(--slate);
    font-size: 1.1rem;
    font-style: italic;
}

.results-actions {
    display: flex;
    gap: 1rem;
}

.action-button {
    background: var(--white);
    border: 2px solid rgba(15, 29, 58, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy-deep);
}

.action-button:hover {
    background: var(--navy-primary);
    color: var(--white);
    border-color: var(--navy-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 29, 58, 0.15);
}

/* Summary Cards */
.summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.summary-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(15, 29, 58, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(15, 29, 58, 0.1);
    border-color: var(--accent-teal);
}

.card-label {
    font-size: 0.9rem;
    color: var(--slate-light);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.card-value {
    font-family: 'Crimson Pro', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 0.3rem;
}

.card-sublabel {
    font-size: 0.85rem;
    color: var(--slate-light);
}

/* Main Chart */
.results-chart {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(15, 29, 58, 0.08);
    margin-bottom: 3rem;
}

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

.chart-header h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

.chart-subtitle {
    color: var(--slate);
    font-size: 1rem;
}

.chart-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(15, 29, 58, 0.05);
}

/* Key Findings */
.key-findings {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(15, 29, 58, 0.08);
    margin-bottom: 2rem;
}

.key-findings h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 2rem;
}

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

.finding-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.finding-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.finding-content h4 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

.finding-content p {
    color: var(--slate);
    line-height: 1.7;
}

/* Technical Details */
.technical-details {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(15, 29, 58, 0.08);
    overflow: hidden;
}

.details-toggle {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    font-family: 'Crimson Pro', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-deep);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.details-toggle:hover {
    background: var(--bg-light);
}

.toggle-icon {
    color: var(--accent-teal);
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.details-toggle.active .toggle-icon {
    transform: rotate(90deg);
}

.details-content {
    padding: 0 2rem 2rem;
}

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

.detail-section h4 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.detail-section ul {
    list-style: none;
    padding: 0;
}

.detail-section li {
    color: var(--slate);
    padding: 0.5rem 0;
    line-height: 1.6;
    border-bottom: 1px solid rgba(15, 29, 58, 0.05);
}

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

.detail-section a {
    color: var(--accent-teal);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.detail-section a:hover {
    opacity: 0.7;
}

/* General Section Styles */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.subsection-title {
    font-family: 'Crimson Pro', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--navy-deep);
}

/* Model Library Section */
.model-library {
    background: var(--white);
}

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

.model-category {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(15, 29, 58, 0.08);
    transition: all 0.3s ease;
}

.model-category:hover {
    border-color: var(--accent-teal);
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-icon {
    font-size: 2rem;
}

.category-title {
    font-family: 'Crimson Pro', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-deep);
}

.category-description {
    color: var(--slate);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.model-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.model-item {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-teal);
    cursor: pointer;
    transition: all 0.3s ease;
}

.model-item:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.15);
}

.model-name {
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 0.3rem;
}

.model-meta {
    font-size: 0.85rem;
    color: var(--slate-light);
}

.custom-model-cta {
    margin-top: 3rem;
    background: var(--navy-primary);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.custom-model-cta h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.custom-model-cta p {
    color: rgba(255, 255, 255, 0.85);
}

.cta-button-secondary {
    background: var(--white);
    color: var(--navy-primary);
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Documentation Section */
.documentation {
    background: var(--bg-light);
}

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

.docs-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(15, 29, 58, 0.08);
}

.docs-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.docs-title {
    font-family: 'Crimson Pro', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--navy-deep);
}

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

.docs-list li {
    margin-bottom: 0.8rem;
}

.docs-list a {
    color: var(--slate);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.docs-list a:hover {
    color: var(--accent-teal);
    padding-left: 0.5rem;
}

.video-tutorials {
    margin-top: 4rem;
}

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

.video-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(15, 29, 58, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 29, 58, 0.12);
}

.video-thumbnail {
    background: linear-gradient(135deg, var(--navy-primary), var(--accent-teal));
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.video-info {
    padding: 1.5rem;
}

.video-title {
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

.video-duration {
    font-size: 0.85rem;
    color: var(--slate-light);
}

/* API Access Section */
.api-access {
    background: var(--white);
}

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

.api-feature-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(15, 29, 58, 0.08);
}

.api-badge {
    display: inline-block;
    background: var(--accent-teal);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.api-feature-card h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--navy-deep);
}

.api-feature-card p {
    color: var(--slate);
    line-height: 1.6;
}

.api-endpoints {
    margin-top: 4rem;
}

.endpoint-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(15, 29, 58, 0.08);
}

.endpoint-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.http-method {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.http-method.get {
    background: rgba(20, 184, 166, 0.1);
    color: var(--accent-teal);
}

.http-method.post {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
}

.endpoint-path {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: var(--navy-deep);
    background: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
}

.endpoint-description {
    color: var(--slate);
    margin-bottom: 1rem;
}

.code-example {
    background: var(--navy-deep);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1rem;
}

.code-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-header span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
}

.copy-btn {
    background: rgba(20, 184, 166, 0.2);
    color: var(--accent-teal);
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(20, 184, 166, 0.3);
}

.code-example pre {
    margin: 0;
    padding: 1.5rem;
    overflow-x: auto;
}

.code-example code {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.sdk-examples {
    margin-top: 4rem;
}

.code-tabs {
    margin-top: 2rem;
}

.tab-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tab-button {
    background: var(--bg-light);
    border: 1px solid rgba(15, 29, 58, 0.08);
    padding: 0.8rem 1.5rem;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--slate);
}

.tab-button:hover {
    background: var(--white);
    color: var(--navy-deep);
}

.tab-button.active {
    background: var(--navy-deep);
    color: var(--white);
    border-color: var(--navy-deep);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.api-cta {
    margin-top: 4rem;
    text-align: center;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
}

.api-cta h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--navy-deep);
}

.api-cta p {
    color: var(--slate);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing {
    background: var(--bg-light);
}

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

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid rgba(15, 29, 58, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(15, 29, 58, 0.15);
}

.pricing-card.featured {
    border-color: var(--accent-teal);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-teal);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(15, 29, 58, 0.08);
}

.plan-name {
    font-family: 'Crimson Pro', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy-deep);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--slate);
    margin-right: 0.2rem;
}

.price-amount {
    font-family: 'Crimson Pro', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--navy-deep);
}

.price-period {
    font-size: 1rem;
    color: var(--slate);
    margin-left: 0.3rem;
}

.plan-description {
    color: var(--slate);
    font-size: 0.95rem;
}

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

.plan-features li {
    padding: 0.8rem 0;
    color: var(--slate);
    border-bottom: 1px solid rgba(15, 29, 58, 0.05);
}

.plan-button {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    background: var(--bg-light);
    color: var(--navy-deep);
    border: 2px solid rgba(15, 29, 58, 0.1);
    transition: all 0.3s ease;
}

.plan-button:hover {
    background: var(--navy-primary);
    color: var(--white);
    border-color: var(--navy-primary);
}

.plan-button.primary {
    background: var(--navy-primary);
    color: var(--white);
    border-color: var(--navy-primary);
}

.plan-button.primary:hover {
    background: var(--navy-deep);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 29, 58, 0.2);
}

.pricing-faq {
    margin-top: 5rem;
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(15, 29, 58, 0.08);
}

.faq-item h4 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy-deep);
}

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }

    .nav-links {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .example-questions {
        grid-template-columns: 1fr;
    }

    .custom-model-cta {
        flex-direction: column;
        text-align: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 29, 58, 0.8);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--white);
    margin: 5% auto;
    max-width: 600px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(15, 29, 58, 0.3);
    animation: slideUp 0.4s ease-out;
    overflow: hidden;
}

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

.modal-header {
    background: var(--navy-primary);
    color: var(--white);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    color: var(--white);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0 0.5rem;
}

.modal-close:hover {
    color: var(--accent-teal);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.modal-description {
    color: var(--slate);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid rgba(15, 29, 58, 0.1);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn-cancel,
.btn-submit {
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-cancel {
    background: var(--bg-light);
    color: var(--slate);
    border: 2px solid rgba(15, 29, 58, 0.1);
}

.btn-cancel:hover {
    background: var(--white);
    border-color: var(--slate);
}

.btn-submit {
    background: var(--navy-primary);
    color: var(--white);
    border: 2px solid var(--navy-primary);
}

.btn-submit:hover {
    background: var(--navy-deep);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 29, 58, 0.2);
}

/* Variable Explorer Overlay */
.variable-explorer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: var(--white);
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.3s ease-out;
}

.variable-explorer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--navy-primary);
    color: var(--white);
    flex-shrink: 0;
}

.variable-explorer-title {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.variable-explorer-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0 0.5rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.variable-explorer-close:hover {
    color: var(--accent-teal);
    transform: rotate(90deg);
}

.variable-explorer-iframe {
    flex: 1;
    width: 100%;
    border: none;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% 1rem;
        max-width: 100%;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-cancel,
    .btn-submit {
        width: 100%;
    }
}
