.info-page {
    min-height: 100vh;
    background: hsl(var(--background))
}

.info-page-hero {
    background: linear-gradient(135deg, hsl(var(--primary)/.1) 0%, hsl(var(--secondary)/.3) 100%);
    padding: 3rem 1.5rem 4rem;
    text-align: center
}

.info-page-hero-content {
    max-width: 800px;
    margin: 0 auto
}

.info-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    line-height: 1.2
}

@media (min-width: 768px) {
    .info-page-title {
        font-size: 3.5rem
    }
}

.info-page-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6
}

.info-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem
}

.info-page-content-narrow {
    max-width: 800px
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    border-radius: 9999px;
    font-size: .875rem;
    font-weight: 500
}

.info-badge-primary {
    background: hsl(var(--primary)/.1);
    color: hsl(var(--primary))
}

.info-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all .2s ease
}

.info-card:hover {
    border-color: hsl(var(--primary)/.3);
    box-shadow: 0 4px 20px hsl(var(--primary)/.1)
}

.info-search-box {
    position: relative;
    max-width: 500px;
    margin: 2rem auto 0
}

.info-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid hsl(var(--border));
    border-radius: .75rem;
    background: hsl(var(--background));
    font-size: 1rem;
    color: hsl(var(--foreground));
    transition: all .2s ease
}

.info-search-input:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary)/.1)
}

.info-search-input::placeholder {
    color: hsl(var(--muted-foreground))
}

.info-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(var(--muted-foreground))
}

.info-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 2rem;
    justify-content: center
}

.info-chip {
    padding: .5rem 1rem;
    border-radius: 9999px;
    font-size: .875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s ease;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--background));
    color: hsl(var(--muted-foreground))
}

.info-chip:hover {
    border-color: hsl(var(--primary));
    color: hsl(var(--primary))
}

.info-chip.active {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border-color: hsl(var(--primary))
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.faq-item {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: .75rem;
    overflow: hidden;
    transition: all .2s ease
}

.faq-item:hover {
    border-color: hsl(var(--primary)/.3)
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    transition: all .2s ease
}

.faq-question:hover {
    color: hsl(var(--primary))
}

.faq-question-icon {
    transition: transform .2s ease;
    color: hsl(var(--muted-foreground))
}

.faq-item.open .faq-question-icon {
    transform: rotate(180deg)
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6
}

.timeline {
    position: relative;
    padding-left: 2rem
}

.timeline::before {
    content: '';
    position: absolute;
    left: .5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: hsl(var(--border))
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem
}

.timeline-item:last-child {
    padding-bottom: 0
}

.timeline-marker {
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: hsl(var(--primary));
    border: 3px solid hsl(var(--background));
    box-shadow: 0 0 0 2px hsl(var(--primary))
}

.timeline-marker.completed {
    background: hsl(var(--primary))
}

.timeline-marker.current {
    background: hsl(142.1 76.2% 36.3%);
    box-shadow: 0 0 0 2px hsl(142.1 76.2% 36.3%)
}

.timeline-marker.upcoming {
    background: hsl(var(--muted));
    box-shadow: 0 0 0 2px hsl(var(--muted))
}

.timeline-content {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: .75rem;
    padding: 1.25rem
}

.timeline-date {
    font-size: .75rem;
    font-weight: 600;
    color: hsl(var(--primary));
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .5rem
}

.timeline-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: .5rem
}

.timeline-description {
    font-size: .875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6
}

.team-grid {
    display: grid;
    grid-template-columns:1fr;
    gap: 1.5rem
}

@media (min-width: 640px) {
    .team-grid {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns:repeat(3, 1fr)
    }
}

.team-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    overflow: hidden;
    transition: all .2s ease
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px hsl(var(--foreground)/.1)
}

.team-card-image {
    height: 200px;
    background: linear-gradient(135deg, hsl(var(--primary)/.2), hsl(var(--secondary)/.3));
    display: flex;
    align-items: center;
    justify-content: center
}

.team-card-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700
}

.team-card-content {
    padding: 1.5rem
}

.team-card-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: .25rem
}

.team-card-role {
    font-size: .875rem;
    color: hsl(var(--primary));
    font-weight: 500;
    margin-bottom: .75rem
}

.team-card-bio {
    font-size: .875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin-bottom: 1rem
}

.team-card-socials {
    display: flex;
    gap: .75rem
}

.team-social-link {
    width: 2rem;
    height: 2rem;
    border-radius: .5rem;
    background: hsl(var(--muted));
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--muted-foreground));
    transition: all .2s ease
}

.team-social-link:hover {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground))
}

.dealer-grid {
    display: grid;
    grid-template-columns:1fr;
    gap: 1.5rem
}

@media (min-width: 640px) {
    .dealer-grid {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (min-width: 1024px) {
    .dealer-grid {
        grid-template-columns:repeat(3, 1fr)
    }
}

.dealer-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all .2s ease
}

.dealer-card:hover {
    border-color: hsl(var(--primary)/.3);
    box-shadow: 0 4px 20px hsl(var(--primary)/.1)
}

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

.dealer-card-logo {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: .75rem;
    background: hsl(var(--primary)/.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--primary))
}

.dealer-card-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: hsl(var(--foreground))
}

.dealer-card-info p {
    font-size: .75rem;
    color: hsl(var(--muted-foreground))
}

.dealer-card-description {
    font-size: .875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin-bottom: 1rem
}

.dealer-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1rem
}

.dealer-tag {
    padding: .25rem .75rem;
    background: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    border-radius: 9999px;
    font-size: .75rem;
    font-weight: 500
}

.dealer-card-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: hsl(var(--primary));
    font-size: .875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s ease
}

.dealer-card-link:hover {
    gap: .75rem
}

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

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-top: 2.5rem;
    margin-bottom: 1rem
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-top: 2rem;
    margin-bottom: .75rem
}

.legal-content p {
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    margin-bottom: 1rem
}

.legal-content ul, .legal-content ol {
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem
}

.legal-content li {
    margin-bottom: .5rem
}

.legal-content a {
    color: hsl(var(--primary));
    text-decoration: underline;
    transition: opacity .2s ease
}

.legal-content a:hover {
    opacity: .8
}

.legal-box {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: .75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem
}

.legal-box p {
    margin-bottom: .25rem
}

.legal-box p:last-child {
    margin-bottom: 0
}

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

@media (min-width: 768px) {
    .info-stats {
        grid-template-columns:repeat(4, 1fr)
    }
}

.info-stat {
    text-align: center;
    padding: 1.5rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: .75rem
}

.info-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--primary))
}

.info-stat-label {
    font-size: .875rem;
    color: hsl(var(--muted-foreground));
    margin-top: .25rem
}

.info-cta-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, hsl(var(--primary)/.1), hsl(var(--secondary)/.2));
    border-radius: 1.5rem;
    margin-top: 3rem
}

.info-cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: .75rem
}

.info-cta-description {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    max-width: 500px;
    margin: 0 auto 1.5rem
}

.info-empty-state {
    text-align: center;
    padding: 4rem 2rem
}

.info-empty-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    color: hsl(var(--muted-foreground))
}

.info-empty-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: .5rem
}

.info-empty-description {
    color: hsl(var(--muted-foreground))
}

/* ============================================
   DOCUMENTATION PAGE STYLES
   ============================================ */

.doc-hero {
    background: linear-gradient(135deg, hsl(var(--primary) / 0.08) 0%, hsl(var(--secondary) / 0.15) 100%);
    padding: 6rem 1.5rem 4rem;
    text-align: center;
}

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

.doc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.doc-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .doc-hero h1 {
        font-size: 3rem;
    }
}

.doc-hero p {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.doc-search {
    position: relative;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.doc-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(var(--muted-foreground));
    width: 1.25rem;
    height: 1.25rem;
}

.doc-search-input {
    width: 100%;
    padding-left: 3rem !important;
    height: 3rem;
    border-radius: 0.75rem;
    font-size: 1rem;
}

.doc-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.doc-quick-links button {
    gap: 0.5rem;
}

/* Main Layout */
.doc-main {
    padding: 3rem 1.5rem;
    background: hsl(var(--background));
}

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

@media (min-width: 1024px) {
    .doc-container {
        grid-template-columns: 280px 1fr;
        gap: 3rem;
    }
}

/* Sidebar / TOC */
.doc-sidebar {
    display: none;
}

@media (min-width: 1024px) {
    .doc-sidebar {
        display: block;
        position: sticky;
        top: 2rem;
        height: fit-content;
    }
}

.doc-toc {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 1.5rem;
}

.doc-toc h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--muted-foreground));
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.doc-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.doc-toc button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: transparent;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-align: left;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    transition: all 0.2s ease;
}

.doc-toc button:hover {
    background: hsl(var(--muted));
    color: hsl(var(--foreground));
}

.doc-toc button.active {
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    font-weight: 500;
}

/* Content Area */
.doc-content {
    min-width: 0;
}

.doc-section {
    margin-bottom: 4rem;
    scroll-margin-top: 2rem;
}

.doc-section-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid hsl(var(--border));
}

.doc-section-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: hsl(var(--primary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary));
    flex-shrink: 0;
}

.doc-section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.25rem;
}

.doc-section-header p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.doc-articles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Article */
.doc-article {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 1.5rem;
    scroll-margin-top: 2rem;
    transition: border-color 0.2s ease;
}

.doc-article:hover {
    border-color: hsl(var(--primary) / 0.3);
}

.doc-article-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.doc-article h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.doc-copy-link {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.doc-article:hover .doc-copy-link {
    opacity: 1;
}

.doc-article-content {
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    margin-bottom: 1rem;
}

.doc-steps,
.doc-tips,
.doc-warnings {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
}

.doc-steps {
    background: hsl(var(--secondary));
}

.doc-tips {
    background: hsl(var(--primary) / 0.08);
}

.doc-warnings {
    background: hsl(28 95% 55% / 0.1);
}

.doc-steps h4,
.doc-tips h4,
.doc-warnings h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.doc-steps h4 {
    color: hsl(var(--foreground));
}

.doc-tips h4 {
    color: hsl(var(--primary));
}

.doc-warnings h4 {
    color: hsl(28 95% 45%);
}

.doc-steps ol,
.doc-tips ul,
.doc-warnings ul {
    margin: 0;
    padding-left: 1.25rem;
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    line-height: 1.7;
}

.doc-steps li,
.doc-tips li,
.doc-warnings li {
    margin-bottom: 0.25rem;
}

.doc-steps li:last-child,
.doc-tips li:last-child,
.doc-warnings li:last-child {
    margin-bottom: 0;
}

/* No Results */
.doc-no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
}

.doc-no-results svg {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.doc-no-results h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.doc-no-results p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

/* CTA Section */
.doc-cta {
    background: linear-gradient(135deg, hsl(var(--primary) / 0.1) 0%, hsl(var(--secondary) / 0.2) 100%);
    padding: 4rem 1.5rem;
}

.doc-cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.doc-cta h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.75rem;
}

.doc-cta p {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

.doc-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.doc-cta-buttons button {
    gap: 0.5rem;
}

/* ============================================
   CHANGELOG PAGE STYLES
   ============================================ */

.changelog-timeline {
    position: relative;
    padding-left: 2rem;
}

.changelog-timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, hsl(var(--primary)), hsl(var(--border)));
}

.changelog-entry {
    position: relative;
    padding-bottom: 2.5rem;
}

.changelog-entry:last-child {
    padding-bottom: 0;
}

.changelog-entry-marker {
    position: absolute;
    left: -1.0rem;
    top: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: hsl(var(--primary));
    border: 3px solid hsl(var(--background));
    box-shadow: 0 0 0 2px hsl(var(--primary));
}

.changelog-entry:first-child .changelog-entry-marker {
    width: 1.25rem;
    height: 1.25rem;
    left: -1.025rem;
}

.changelog-entry-content {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.changelog-entry-content:hover {
    border-color: hsl(var(--primary) / 0.3);
    box-shadow: 0 4px 20px hsl(var(--primary) / 0.08);
}

.changelog-entry-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.changelog-version {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--primary));
    background: hsl(var(--primary) / 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.changelog-date {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

.changelog-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.changelog-description {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin-bottom: 1rem;
}

.changelog-changes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.changelog-change {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.changelog-change-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.625rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.changelog-change-text {
    font-size: 0.875rem;
    color: hsl(var(--foreground));
    line-height: 1.5;
}

@media (max-width: 640px) {
    .changelog-timeline {
        padding-left: 1.5rem;
    }

    .changelog-entry-marker {
        left: -1.25rem;
        width: 0.75rem;
        height: 0.75rem;
    }

    .changelog-entry:first-child .changelog-entry-marker {
        width: 1rem;
        height: 1rem;
        left: -1.375rem;
    }

    .changelog-entry-content {
        padding: 1rem;
    }

    .changelog-change {
        flex-direction: column;
        gap: 0.25rem;
    }
}