/* Leadpro - Brand Identity Refresh */

:root {
    /* Brand Colors - Nurtur/Leadpro Guidelines */
    --primary: #5EC1CA;
    --primary-hover: #379DA6;
    --secondary: #48B7C2;
    --primary-light: #e8f7f8;
    --primary-glow: rgba(94, 193, 202, 0.15);
    --accent: #4A90E2;

    /* Text Colors */
    --text-primary: #272C33;
    --text-secondary: #676767;
    --text-supplementary: #999999;

    /* Background Colors */
    --bg-white: #ffffff;
    --bg-100: #f7f8fa;
    --bg-300: #E4E7F2;
    --bg-900: #272C33;

    /* Legacy mappings */
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #E4E7F2;

    /* Shadows - more dramatic */
    --shadow-sm: 0 2px 8px rgba(39, 44, 51, 0.06);
    --shadow-md: 0 8px 24px rgba(39, 44, 51, 0.1);
    --shadow-lg: 0 16px 48px rgba(39, 44, 51, 0.14);
    --shadow-xl: 0 24px 64px rgba(39, 44, 51, 0.18);
    --shadow-glow: 0 8px 32px rgba(94, 193, 202, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary) !important;
    text-decoration: none;
}

.navbar-brand span {
    color: var(--text-primary);
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0 0.75rem;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 1px;
}

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

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

/* Nav dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-dropdown-chevron {
    transition: transform 0.2s ease;
    opacity: 0.5;
}

.nav-dropdown:hover .nav-dropdown-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    transform: translateX(-50%) translateY(6px);
    z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 0.55rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.15s ease;
}

.nav-dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

@media (max-width: 991px) {
    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        padding: 0 0 0 1rem;
        display: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        display: block;
        transform: none;
    }
}

.navbar-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-buttons .btn {
    padding: 0.4rem 1.15rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    box-shadow: none;
}

.navbar-buttons .btn-primary {
    box-shadow: none;
}

.navbar-buttons .btn-primary:hover {
    box-shadow: 0 4px 12px rgba(94, 193, 202, 0.3) !important;
}

.navbar-buttons .btn-outline-primary {
    border-width: 1.5px !important;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%) !important;
    border: none !important;
    color: var(--bg-white) !important;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 16px rgba(94, 193, 202, 0.3);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(94, 193, 202, 0.4) !important;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-hover) 100%) !important;
}

.btn-outline-primary {
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    background: transparent !important;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    color: var(--bg-white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-light {
    background-color: var(--bg-white) !important;
    color: var(--primary) !important;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    border: none !important;
    transition: var(--transition);
}

.btn-light:hover {
    background-color: var(--bg-100) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-demo {
    color: var(--bg-white) !important;
    border: 2px solid rgba(255, 255, 255, 0.35) !important;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08) !important;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-demo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 50%;
    color: var(--bg-white);
    flex-shrink: 0;
    transition: var(--transition);
}

.btn-demo:hover {
    background: rgba(255, 255, 255, 0.14) !important;
    border-color: rgba(255, 255, 255, 0.55) !important;
    transform: translateY(-2px);
    color: var(--bg-white) !important;
}

.btn-demo:hover .btn-demo-icon {
    box-shadow: 0 0 12px rgba(94, 193, 202, 0.5);
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: var(--bg-900);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(94, 193, 202, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--bg-white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--primary);
    position: relative;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.7;
    font-weight: 300;
}

.hero .text-muted small {
    color: rgba(255, 255, 255, 0.5) !important;
}

.hero-row {
    min-height: calc(100vh - 8rem - 220px);
}

.hero-image {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

/* Hero Video Thumbnail */
.hero-video-thumb {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    text-decoration: none;
    opacity: 0;
    transform: translateY(30px);
    animation: heroThumbFadeIn 0.7s ease 0.3s forwards;
}

.hero-video-thumb:hover .hero-video-play {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(94, 193, 202, 0.6);
}

.hero-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 24px rgba(94, 193, 202, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-video-play svg {
    margin-left: 3px;
}

.hero-video-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 56px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    background: rgba(0, 0, 0, 0.55);
    padding: 4px 14px;
    border-radius: 6px;
}

@keyframes heroThumbFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video Overlay */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-overlay-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease;
    z-index: 1;
}

.video-overlay-close:hover {
    color: white;
}

.video-overlay-content {
    width: 92%;
    max-width: 1280px;
}

.video-overlay-content video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

/* Product Suite Section */
.product-suite {
    padding: 7rem 0;
    background: var(--bg-100);
    position: relative;
}

.product-suite::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, #D0E7E9 0%, var(--bg-white) 35%);
    border-radius: 40px 40px 0 0;
}

.product-suite > .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.7;
    font-weight: 300;
}

.suite-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.suite-card {
    background: var(--bg-100);
    border-radius: 16px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
}

.suite-card-body {
    flex: 1;
    min-width: 0;
}

.suite-card-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.suite-card-headline {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.suite-card-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}

.suite-card-points li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    line-height: 1.5;
}

.suite-card-check {
    color: var(--primary);
    flex-shrink: 0;
}

.suite-card-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.suite-card-link:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

.suite-card-image {
    flex-shrink: 0;
    width: 380px;
    height: 320px;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bg-300);
}

.suite-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* Remaining products - subtle list */
.suite-more {
    margin-top: 3rem;
    border-top: 1px solid var(--bg-300);
    padding-top: 2rem;
}

.suite-more-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    border: 1px solid transparent;
}

.suite-more-item:hover {
    background: var(--bg-100);
    border-color: var(--bg-300);
}

.suite-more-item + .suite-more-item {
    border-top: 1px solid var(--bg-300);
}

.suite-more-item:hover + .suite-more-item {
    border-top-color: transparent;
}

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

.suite-more-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
    transition: var(--transition);
}

.suite-more-item:hover .suite-more-name {
    color: var(--primary);
}

.suite-more-headline {
    font-size: 0.9rem;
    color: var(--text-supplementary);
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: 300;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.suite-more-arrow {
    color: var(--text-supplementary);
    flex-shrink: 0;
    margin-left: 1rem;
    transition: var(--transition);
}

.suite-more-item:hover .suite-more-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .suite-card {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }

    .suite-card-image {
        width: 100%;
        height: 220px;
        order: -1;
    }

    .suite-card-headline {
        font-size: 1.35rem;
    }

    .suite-more-headline {
        white-space: normal;
    }
}

/* Agent Logos Section */
.agent-logos {
    padding: 1.25rem 0 1.5rem;
    background: var(--bg-100);
    border-top: 1px solid var(--bg-300);
    position: relative;
    z-index: 1;
}

.agent-logos-title {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-supplementary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.agent-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.agent-logos-row img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .agent-logos-row {
        gap: 2rem;
    }

    .agent-logos-row img {
        height: 60px;
    }
}

/* Integrations Section */
.integrations {
    padding: 7rem 0;
    background-color: var(--bg-100);
}

.integration-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--bg-300);
}

.integration-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.integration-card-logo {
    width: 96px;
    height: 96px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.integration-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0;
}

.integration-card-summary {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    margin-bottom: 0;
    line-height: 1.7;
    font-weight: 300;
}

/* Pricing Section */
.pricing {
    padding: 7rem 0;
    background-color: var(--bg-white);
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 2px solid var(--bg-300);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: var(--bg-white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-supplementary);
}

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

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--bg-300);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    color: var(--primary);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Pricing Modules */
.pricing-module {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 2px solid var(--bg-300);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-hover));
    opacity: 0;
    transition: var(--transition);
}

.pricing-module:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.pricing-module:hover::before {
    opacity: 1;
}

.pricing-module-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.pricing-module-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.pricing-module-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-supplementary);
}

.pricing-module-summary {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    flex-grow: 1;
    line-height: 1.7;
    font-weight: 300;
}

.pricing-module-footnote {
    font-size: 0.8rem;
    color: var(--text-supplementary);
    margin-bottom: 0;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-300);
    font-style: italic;
}

.pricing-module-signup {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    align-self: flex-start;
}

.pricing-module-signup:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: var(--bg-white);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

@media (max-width: 768px) {
    .pricing-module {
        margin-bottom: 1.5rem;
    }

    .pricing-module-name {
        font-size: 1.25rem;
    }

    .pricing-module-price {
        font-size: 2rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 7rem 0;
    background-color: var(--bg-100);
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--bg-300);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    padding-left: 1.25rem;
    border-left: 3px solid var(--primary);
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), rgba(94, 193, 202, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.testimonial-avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--text-supplementary);
    margin-bottom: 0;
}

/* CTA Section */
.cta {
    padding: 7rem 0;
    background: var(--bg-900);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(94, 193, 202, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--bg-white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Footer */
.footer {
    background-color: var(--bg-900);
    color: var(--bg-white);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 101;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--bg-white);
}

.footer-description {
    color: var(--text-supplementary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--text-supplementary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: var(--text-supplementary);
    font-size: 0.85rem;
}

.footer-nurtur {
    color: var(--text-supplementary);
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-nurtur a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 7rem 0 3rem;
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero .col-lg-6:last-child {
        display: none;
    }

    .hero-row {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 7rem 0 3rem;
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero .col-lg-6:last-child {
        display: none;
    }

    .pricing-card {
        margin-bottom: 1.5rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .nav-link::after {
        display: none;
    }
}

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

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

/* Utility Classes */
.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.text-muted {
    color: var(--text-supplementary) !important;
}

/* Products Page */
.products-hero {
    padding: 8rem 0 4rem;
    background: var(--bg-900);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(94, 193, 202, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.products-hero .section-title {
    color: var(--bg-white);
}

.products-hero .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.products-listing {
    padding: 4rem 0 6rem;
    background: var(--bg-100);
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.product-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--bg-300);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-hover));
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.product-card-headline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    flex-grow: 1;
    line-height: 1.7;
    font-weight: 300;
}

.product-card-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.product-card-points li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.3rem 0;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.product-card-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.product-card-image {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-100);
}

.product-card-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.product-card-cta {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.product-card:hover .product-card-cta {
    letter-spacing: 0.02em;
}

/* Product Detail Page */
.product-hero {
    padding: 8rem 0 4rem;
    background: var(--bg-900);
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(94, 193, 202, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.product-back-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    font-weight: 500;
}

.product-back-link:hover {
    color: var(--bg-white);
}

.product-hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--bg-white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.product-hero-headline {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.product-hero-points {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.product-hero-points li {
    color: rgba(255, 255, 255, 0.75);
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.product-hero-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(94, 193, 202, 0.4);
}

.product-hero-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #ffffff;
    padding: 1rem;
}

.product-hero-image img {
    width: 100%;
    display: block;
}

@media (max-width: 991px) {
    .product-hero-image {
        margin-top: 2rem;
    }
}

/* How It Works */
.product-how-it-works {
    padding: 6rem 0;
    background: var(--bg-white);
}

.product-step {
    text-align: center;
    padding: 2rem 1.5rem;
}

.product-step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    box-shadow: var(--shadow-glow);
}

.product-step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.product-step-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

/* Product Features */
.product-features {
    padding: 6rem 0;
    background: var(--bg-100);
}

.product-feature-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.75rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--bg-300);
    position: relative;
    overflow: hidden;
}

.product-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--primary), var(--primary-hover));
    transition: var(--transition);
}

.product-feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: transparent;
}

.product-feature-card:hover::before {
    height: 100%;
}

.product-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.product-feature-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 300;
}

/* Product CTA */
.product-cta {
    padding: 6rem 0;
    background: var(--bg-900);
    position: relative;
    overflow: hidden;
}

.product-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(94, 193, 202, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.product-cta h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--bg-white);
    margin-bottom: 0.75rem;
}

.product-cta p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.product-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover)) !important;
}

@media (max-width: 768px) {
    .product-hero-title {
        font-size: 2rem;
    }

    .product-hero-headline {
        font-size: 1rem;
    }

    .products-hero {
        padding: 6rem 0 3rem;
    }

    .product-hero {
        padding: 6rem 0 3rem;
    }
}

/* Internal Guides Page */
.internal-guides-header {
    padding: 8rem 0 3rem;
    background: var(--bg-900);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.internal-guides-header::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(94, 193, 202, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.internal-guides-header h1 {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--bg-white);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.internal-guides-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    font-weight: 300;
}

.internal-guides-list {
    padding: 4rem 0 6rem;
    background: var(--bg-100);
}

.guide-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--bg-300);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-hover));
    opacity: 0;
    transition: var(--transition);
}

.guide-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    color: inherit;
}

.guide-card:hover::before {
    opacity: 1;
}

.guide-card-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.guide-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.guide-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.guide-card:hover .guide-card-link {
    letter-spacing: 0.02em;
}

/* Internal Guide Detail Page */
.internal-guide-detail {
    padding: 8rem 0 6rem;
    background: var(--bg-white);
}

.internal-guide-detail .container {
    max-width: 800px;
}

.guide-back-link {
    display: inline-block;
    color: var(--text-supplementary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.guide-back-link:hover {
    color: var(--primary);
}

.internal-guide-detail h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--bg-300);
}

.guide-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.guide-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.guide-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.guide-content p {
    margin-bottom: 1.25rem;
}

.guide-content ul, .guide-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.guide-content li {
    margin-bottom: 0.5rem;
}

.guide-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.guide-content code {
    background: var(--bg-100);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
}

.guide-content pre {
    background: var(--bg-900);
    color: rgba(255, 255, 255, 0.85);
    padding: 1.25rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.guide-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* Confluence Guides */
.confluence-guides {
    padding: 4rem 0 6rem;
    background: var(--bg-100);
}

.guides-search {
    position: relative;
    max-width: 480px;
    margin: 0 auto 3rem;
}

.guides-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-supplementary);
    pointer-events: none;
}

.guides-search-input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    border: 1px solid var(--bg-300);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-white);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.guides-search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(94, 193, 202, 0.15);
}

.guides-search-input::placeholder {
    color: var(--text-supplementary);
}

.confluence-folder {
    margin-bottom: 3rem;
}

.confluence-folder:last-child {
    margin-bottom: 0;
}

.confluence-folder-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

/* Guide Reader with Sidebar */
.guide-reader {
    padding-top: 5rem;
    min-height: 100vh;
    background: var(--bg-white);
}

.guide-reader-layout {
    display: flex;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.guide-sidebar {
    width: 300px;
    min-width: 300px;
    border-right: 1px solid var(--bg-300);
    padding: 2rem 1.5rem;
    position: sticky;
    top: 5rem;
    height: calc(100vh - 5rem);
    overflow-y: auto;
}

.guide-sidebar-back {
    display: inline-block;
    color: var(--text-supplementary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.guide-sidebar-back:hover {
    color: var(--primary);
}

.guide-sidebar-search {
    position: relative;
    margin-bottom: 1.25rem;
}

.guide-sidebar-search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-supplementary);
    pointer-events: none;
}

.guide-sidebar-search-input {
    width: 100%;
    padding: 0.6rem 0.75rem 0.6rem 2.25rem;
    border: 1px solid var(--bg-300);
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: inherit;
    background: var(--bg-100);
    color: var(--text-primary);
    transition: var(--transition);
}

.guide-sidebar-search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(94, 193, 202, 0.15);
    background: var(--bg-white);
}

.guide-sidebar-search-input::placeholder {
    color: var(--text-supplementary);
}

.guide-sidebar-no-results {
    font-size: 0.85rem;
    color: var(--text-supplementary);
    text-align: center;
    padding: 1rem 0;
}

.guide-sidebar-nav {
    /* scrollable nav area */
}

.guide-sidebar-section {
    margin-bottom: 1.5rem;
}

.guide-sidebar-heading {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-supplementary);
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

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

.guide-sidebar-item a {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.5rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    line-height: 1.4;
}

.guide-sidebar-item a:hover {
    background: var(--bg-100);
    color: var(--text-primary);
}

.guide-sidebar-item.active a {
    background: var(--primary-light);
    color: var(--primary-hover);
    font-weight: 600;
}

.guide-sidebar-external {
    flex-shrink: 0;
    opacity: 0.5;
}

.guide-reader-content {
    flex: 1;
    min-width: 0;
    padding: 2rem 3rem 4rem;
    max-width: 800px;
}

.guide-reader-content h1 {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--bg-300);
}

@media (max-width: 992px) {
    .guide-reader-layout {
        flex-direction: column;
    }

    .guide-sidebar {
        width: 100%;
        min-width: 0;
        position: static;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--bg-300);
        padding: 1.5rem;
    }

    .guide-reader-content {
        padding: 2rem 1.5rem 4rem;
    }
}

@media (max-width: 768px) {
    .internal-guides-header {
        padding: 6rem 0 2rem;
    }

    .internal-guides-header h1 {
        font-size: 2rem;
    }

    .internal-guide-detail h1 {
        font-size: 1.75rem;
    }
}

/* ===========================================
   API Guide Documentation Page
   =========================================== */

.apidoc {
    display: flex;
    min-height: 100vh;
    padding-top: 70px; /* navbar height */
}

/* Sidebar */
.apidoc-sidebar {
    position: fixed;
    top: 70px;
    left: 0;
    width: 240px;
    height: calc(100vh - 70px);
    overflow-y: auto;
    background: var(--bg-white);
    border-right: 1px solid var(--bg-300);
    z-index: 100;
}

.apidoc-sidebar-header {
    padding: 1.5rem 1.25rem 1rem;
    border-bottom: 1px solid var(--bg-300);
}

.apidoc-sidebar-header h2 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin: 0;
}

.apidoc-sidebar-nav {
    padding: 0.5rem 0;
}

.apidoc-sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.15s ease;
}

.apidoc-sidebar-method {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    flex-shrink: 0;
    font-size: 0;
    overflow: hidden;
}

.apidoc-sidebar-link:hover {
    color: var(--text-primary);
    background: var(--bg-100);
}

.apidoc-sidebar-link.active {
    color: var(--primary);
    border-left-color: var(--primary);
    background: var(--primary-light);
    font-weight: 500;
}

/* Main content area */
.apidoc-main {
    margin-left: 240px;
    flex: 1;
    min-width: 0;
}

.apidoc-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    color: var(--text-supplementary);
    font-size: 1.1rem;
}

/* Each endpoint row: docs left, examples right */
.apidoc-endpoint {
    display: flex;
    min-height: 300px;
}

.apidoc-endpoint-docs {
    flex: 1;
    padding: 2.5rem 3rem;
    min-width: 0;
    border-bottom: 1px solid var(--bg-300);
}

.apidoc-endpoint-examples {
    width: 45%;
    flex-shrink: 0;
    background: var(--bg-900);
    padding: 2.5rem 2rem;
    min-width: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.apidoc-endpoint-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
}

.apidoc-endpoint-url {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    background: var(--primary-light);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 1.25rem;
    word-break: break-all;
}

.apidoc-copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-supplementary);
    padding: 0.15rem;
    margin-left: auto;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    flex-shrink: 0;
}

.apidoc-copy-btn:hover {
    color: var(--primary);
    background: rgba(94, 193, 202, 0.12);
}

.apidoc-copy-btn .apidoc-copy-check {
    display: none;
}

.apidoc-copy-btn.copied .apidoc-copy-icon {
    display: none;
}

.apidoc-copy-btn.copied .apidoc-copy-check {
    display: inline;
    color: #2e9e6b;
}

.apidoc-http-method {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    color: #fff;
    line-height: 1.4;
    flex-shrink: 0;
}

.apidoc-method-get { background-color: #2e9e6b; }
.apidoc-method-post { background-color: #2e7dd1; }
.apidoc-method-put { background-color: #d19a2e; }
.apidoc-method-patch { background-color: #9b6dd7; }
.apidoc-method-delete { background-color: #d14040; }

.apidoc-endpoint-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    white-space: pre-line;
}

/* Example code blocks */
.apidoc-example-block {
    margin-bottom: 1rem;
}

.apidoc-example-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.apidoc-response-content-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0.35rem;
}

.apidoc-payload-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.4);
    padding: 0.2rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.apidoc-payload-copy:hover {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.1);
}

.apidoc-payload-copy .apidoc-copy-check { display: none; }
.apidoc-payload-copy.copied .apidoc-copy-icon { display: none; }
.apidoc-payload-copy.copied .apidoc-copy-check { display: inline; color: #2e9e6b; }

.apidoc-example-code {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1.25rem;
    overflow-x: auto;
    margin: 0;
}

.apidoc-example-code code {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.8rem;
    line-height: 1.6;
    color: #e0e0e0;
    white-space: pre;
}

/* JSON syntax highlighting */
.json-key {
    color: #7ec8e3;
}

.json-string {
    color: #a8d89f;
}

.json-number {
    color: #d4a0e0;
}

.json-bool {
    color: #f0a56b;
}

.json-null {
    color: #e06c75;
    font-style: italic;
}

/* Collapsible response */
.apidoc-response-block .apidoc-response-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.apidoc-response-block.open .apidoc-response-content {
    max-height: 2000px;
}

.apidoc-response-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.15s ease;
    margin-bottom: 0.5rem;
}

.apidoc-response-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
}

.apidoc-response-chevron {
    transition: transform 0.3s ease;
}

.apidoc-response-block.open .apidoc-response-chevron {
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 1024px) {
    .apidoc-sidebar {
        width: 200px;
    }

    .apidoc-main {
        margin-left: 200px;
    }

    .apidoc-endpoint-docs {
        padding: 2rem;
    }

    .apidoc-endpoint-examples {
        width: 40%;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .apidoc {
        flex-direction: column;
    }

    .apidoc-sidebar {
        position: relative;
        top: auto;
        width: 100%;
        height: auto;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid var(--bg-300);
    }

    .apidoc-sidebar-nav {
        display: flex;
        overflow-x: auto;
        padding: 0.5rem 0.75rem;
        gap: 0.25rem;
    }

    .apidoc-sidebar-link {
        white-space: nowrap;
        border-left: none;
        border-bottom: 2px solid transparent;
        padding: 0.4rem 0.75rem;
        border-radius: 6px;
    }

    .apidoc-sidebar-link.active {
        border-left-color: transparent;
        border-bottom-color: var(--primary);
        border-radius: 6px 6px 0 0;
    }

    .apidoc-main {
        margin-left: 0;
    }

    .apidoc-endpoint {
        flex-direction: column;
        min-height: auto;
    }

    .apidoc-endpoint-docs {
        padding: 1.5rem;
    }

    .apidoc-endpoint-examples {
        width: 100%;
        padding: 1.5rem;
    }
}

/* ===========================================
   Cookie Consent Banner
   =========================================== */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5000;
    background: var(--bg-900);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-consent-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.cookie-consent-text a:hover {
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 0.55rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-consent-accept {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(94, 193, 202, 0.3);
}

.cookie-consent-accept:hover {
    box-shadow: 0 4px 16px rgba(94, 193, 202, 0.4);
    transform: translateY(-1px);
}

.cookie-consent-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-consent-decline:hover {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Cookie preferences floating toggle */
.cookie-toggle {
    position: fixed;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 4999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-900);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.6);
}

.cookie-toggle.visible {
    opacity: 1;
    transform: scale(1);
}

.cookie-toggle:hover {
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(94, 193, 202, 0.25);
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .cookie-consent-buttons {
        width: 100%;
    }

    .cookie-consent-btn {
        flex: 1;
    }

    .cookie-toggle {
        bottom: 1rem;
        left: 1rem;
        width: 40px;
        height: 40px;
    }
}
