﻿:root {
    --primary: #E85D04;
    --primary-hover: #D05202;
    --primary-active: #B74601;
    --primary-subtle: #FFF4EC;
    --primary-surface: #FFE7D6;
    --accent: #F77F00;
    --accent-subtle: #FFF8F2;
    --background-primary: #FFFFFF;
    --background-secondary: #FFFBF8;
    --background-tertiary: #FBF5F0;
    --surface-card: #FFFFFF;
    --surface-elevated: #FFFFFF;
    --surface-accent-tint: #FFF1E6;
    --text-primary: #1A1B25;
    --text-secondary: #5F6575;
    --text-muted: #8E95A5;
    --border-subtle: #F6E8DF;
    --border-medium: #EED8CB;
    --border-active: #E85D04;
    --status-success: #16A34A;
    --status-warning: #E85D04;
    --status-error: #DC2626;
    --status-info: #0284C7;
    --shadow-tint: rgba(232, 93, 4, 0.08);
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --card-radius: 16px;
    --btn-radius: 10px;
    --badge-radius: 6px;
    --input-radius: 10px;
    --transition-smooth: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.theme-warm-light {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--background-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.font-mono {
    font-family: var(--font-mono);
}

.site-container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .site-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* ===== header ===== */
.site-header-block {
    background-color: #FFFFFF;
    border-bottom: 1px solid #F6E8DF;
    box-shadow: 0 2px 10px rgba(232, 93, 4, 0.05);
    z-index: 1030
}

.site-header-topbar {
    background-color: #FFFBF8;
    border-bottom: 1px solid #F6E8DF;
    font-size: 0.8125rem
}

.site-header-topbar .header-meta-tag {
    color: #E85D04;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    display: inline-flex;
    align-items: center
}

.site-header-block .header-contact-link {
    color: #5F6575;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem
}

.site-header-block .header-contact-link:hover {
    color: #E85D04
}

.site-header-block .header-contact-link i {
    color: #E85D04;
    font-size: 1.1rem
}

.site-header-block .site-navbar {
    background-color: #FFFFFF;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem
}

.site-header-block .header-brand-logo {
    max-width: 44px;
    max-height: 44px;
    width: 44px;
    height: 44px;
    object-fit: contain
}

.site-header-block .header-brand-name {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.2;
    color: #1A1B25;
    letter-spacing: -0.02em
}

.site-header-block .header-brand-tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    color: #8E95A5;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1
}

.site-header-block .header-brand-center {
    text-decoration: none;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1)
}

.site-header-block .header-brand-center:hover {
    transform: translateY(-1px)
}

.site-header-block .header-nav-item {
    color: #1A1B25;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1)
}

.site-header-block .header-nav-item:hover {
    color: #E85D04;
    background-color: #FFF4EC
}

.site-header-block .navbar-toggler {
    border: 1px solid #EED8CB;
    background-color: #FFFBF8;
    padding: 0.45rem 0.65rem;
    border-radius: 8px
}

.site-header-block .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.2);
    outline: none
}

.site-header-block .header-cta-btn {
    background-color: #E85D04;
    color: #FFFFFF;
    border: 1px solid #E85D04;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1)
}

.site-header-block .header-cta-btn:hover {
    background-color: #D05202;
    color: #FFFFFF;
    border-color: #D05202
}

.site-header-block .header-mobile-contacts {
    border-color: #F6E8DF !important
}

@media(max-width:991.98px) {
    .site-header-block .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1rem 0;
        border-top: 1px solid #F6E8DF;
        margin-top: 0.75rem
    }

    .site-header-block .header-nav-item {
        padding: 0.65rem 0.75rem;
        font-size: 0.875rem;
        border-radius: 6px
    }
}

/* ===== hero ===== */
.hero-section {
    background: radial-gradient(ellipse at 85% 15%, #FFF4EC 0%, #FFFFFF 65%);
    border-bottom: 1px solid #F6E8DF;
}

.hero-badge {
    background-color: #FFF4EC;
    border: 1px solid #FED7AA;
    color: #E85D04;
    border-radius: 9999px;
    padding: 6px 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    font-weight: 600;
}

.hero-title {
    color: #1A1B25;
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.hero-lead {
    color: #5F6575;
    font-size: 1.125rem;
    line-height: 1.6;
}

.hero-btn-primary {
    background-color: #E85D04;
    color: #FFFFFF;
    border: 1px solid #E85D04;
    border-radius: 10px;
    font-weight: 600;
    padding: 12px 26px;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(232, 93, 4, 0.2);
}

.hero-btn-primary:hover {
    background-color: #D05202;
    border-color: #D05202;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(232, 93, 4, 0.3);
}

.hero-btn-secondary {
    background-color: #FFF4EC;
    color: #E85D04;
    border: 1px solid #FED7AA;
    border-radius: 10px;
    font-weight: 600;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn-secondary:hover {
    background-color: #FFE7D6;
    border-color: #FDBA74;
    color: #D05202;
    transform: translateY(-2px);
}

.pillar-card {
    background: #FFFFFF;
    border: 1px solid #F6E8DF;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.pillar-card:hover {
    border-color: #E85D04;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 93, 4, 0.08);
}

.pillar-icon {
    color: #E85D04;
    font-size: 1.5rem;
    display: block;
}

.pillar-label {
    color: #1A1B25;
    font-size: 0.8125rem;
    font-weight: 600;
}

.hero-image-card {
    background: #FFFFFF;
    border: 1px solid #F6E8DF;
    border-radius: 16px;
    overflow: hidden;
}

.hero-image-frame {
    height: 250px;
    background-color: #FFFBF8;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay {
    background: linear-gradient(180deg, rgba(26, 27, 37, 0.1) 0%, rgba(26, 27, 37, 0.45) 100%);
}

.hero-overlay-tag {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border: 1px solid #FED7AA;
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: #1A1B25;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #16A34A;
    vertical-align: middle;
}

.hero-telemetry-box {
    background: #FFFBF8;
}

.telemetry-label {
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    color: #8E95A5;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.telemetry-code {
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    color: #E85D04;
    font-weight: 700;
}

.js-telemetry-item {
    background: #FFFFFF;
    border: 1px solid #EED8CB;
    border-left: 3px solid #E85D04;
    transition: all 0.2s ease;
}

.telemetry-title {
    color: #1A1B25;
    font-size: 0.9375rem;
}

.badge-crit {
    font-size: 0.6875rem;
    font-family: 'JetBrains Mono', monospace;
    background: #FFF4EC;
    color: #DC2626;
    border: 1px solid #FCA5A5;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.telemetry-desc {
    font-size: 0.8125rem;
    color: #5F6575;
    line-height: 1.45;
}

.border-top-subtle {
    border-top: 1px solid #F6E8DF;
}

.telemetry-meta {
    font-size: 0.75rem;
    color: #5F6575;
}

.telemetry-link {
    font-size: 0.8125rem;
    color: #E85D04;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.telemetry-link:hover {
    color: #D05202;
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.125rem;
    }

    .hero-image-frame {
        height: 220px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .hero-lead {
        font-size: 0.9375rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .hero-image-frame {
        height: 180px;
    }
}

/* ===== numbers_case ===== */
.numbers-case-section {
    background-color: #FFFBF8;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1A1B25;
    overflow: hidden
}

.numbers-case-section .numbers-case-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background-color: #FFF4EC;
    border: 1px solid #FED7AA;
    border-radius: 6px;
    color: #E85D04;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em
}

.numbers-case-section .numbers-case-title {
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1A1B25
}

.numbers-case-section .numbers-case-subtitle {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #5F6575;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto
}

.numbers-case-section .numbers-metric-card {
    background-color: #FFFFFF;
    border: 1px solid #F6E8DF;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(232, 93, 4, 0.04), 0 2px 4px rgba(30, 41, 59, 0.03);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.numbers-case-section .numbers-metric-card:hover {
    transform: translateY(-4px);
    border-color: #E85D04;
    box-shadow: 0 12px 32px rgba(232, 93, 4, 0.12), 0 4px 8px rgba(30, 41, 59, 0.04)
}

.numbers-case-section .metric-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px
}

.numbers-case-section .metric-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #FFE7D6;
    color: #E85D04;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem
}

.numbers-case-section .metric-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: #5F6575;
    text-transform: uppercase;
    letter-spacing: 0.02em
}

.numbers-case-section .metric-value {
    font-size: 2.25rem;
    line-height: 1.1;
    font-weight: 800;
    color: #E85D04;
    letter-spacing: -0.02em;
    margin-bottom: 4px
}

.numbers-case-section .metric-unit {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A1B25
}

.numbers-case-section .metric-baseline {
    font-size: 0.875rem;
    color: #5F6575
}

.numbers-case-section .metric-footer {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #F6E8DF
}

.numbers-case-section .metric-delta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.numbers-case-section .metric-delta.text-success {
    color: #16A34A
}

.numbers-case-section .numbers-case-breakdown-card {
    background-color: #FFFFFF;
    border: 1px solid #F6E8DF;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(232, 93, 4, 0.06)
}

.numbers-case-section .border-bottom-subtle {
    border-bottom: 1px solid #F6E8DF
}

.numbers-case-section .badge-incident-id {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: #FFF4EC;
    color: #E85D04;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #FED7AA
}

.numbers-case-section .breakdown-headline {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.35;
    color: #1A1B25
}

.numbers-case-section .btn-tab {
    background-color: #FFFBF8;
    color: #5F6575;
    border: 1px solid #EED8CB;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 16px;
    transition: all 0.2s ease;
    cursor: pointer
}

.numbers-case-section .btn-tab:hover {
    background-color: #FFF4EC;
    color: #E85D04;
    border-color: #FED7AA
}

.numbers-case-section .btn-tab.active {
    background-color: #E85D04;
    color: #FFFFFF;
    border-color: #E85D04;
    box-shadow: 0 4px 12px rgba(232, 93, 4, 0.25)
}

.numbers-case-section .phase-pane {
    display: none
}

.numbers-case-section .phase-pane.active {
    display: block
}

.numbers-case-section .phase-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1A1B25;
    margin-bottom: 12px
}

.numbers-case-section .phase-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #5F6575;
    margin-bottom: 16px
}

.numbers-case-section .phase-list span {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #1A1B25
}

.numbers-case-section .code-telemetry-box {
    background-color: #1A1B25;
    border: 1px solid #2D3142;
    border-radius: 12px;
    padding: 16px;
    color: #F8FAFC;
    font-family: 'JetBrains Mono', monospace;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3)
}

.numbers-case-section .telemetry-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #2D3142
}

.numbers-case-section .telemetry-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #DC2626;
    display: inline-block
}

.numbers-case-section .telemetry-dot:nth-child(2) {
    background-color: #F59E0B
}

.numbers-case-section .telemetry-dot:nth-child(3) {
    background-color: #10B981
}

.numbers-case-section .telemetry-title {
    font-size: 0.6875rem;
    color: #94A3B8;
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em
}

.numbers-case-section .telemetry-content {
    font-size: 0.75rem;
    line-height: 1.6;
    color: #CBD5E1;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word
}

.numbers-case-section .telemetry-success {
    border-color: #065F46
}

.numbers-case-section .telemetry-success .telemetry-content {
    color: #A7F3D0
}

.numbers-case-section .numbers-case-cta-banner {
    background: linear-gradient(135deg, #FFF4EC 0%, #FFE7D6 100%);
    border: 1px solid #FED7AA;
    border-radius: 16px
}

.numbers-case-section .cta-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1A1B25
}

.numbers-case-section .cta-text {
    font-size: 0.9375rem;
    color: #5F6575
}

.numbers-case-section .numbers-btn-primary {
    background-color: #E85D04;
    color: #FFFFFF;
    border: 1px solid #E85D04;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 12px 24px;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(232, 93, 4, 0.18)
}

.numbers-case-section .numbers-btn-primary:hover {
    background-color: #D05202;
    border-color: #D05202;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 93, 4, 0.28)
}

@media (max-width:767.98px) {
    .numbers-case-section .numbers-case-title {
        font-size: 16px !important;
        hyphens: auto
    }

    .numbers-case-section .breakdown-headline {
        font-size: 14px !important;
        hyphens: auto
    }

    .numbers-case-section .phase-title,
    .numbers-case-section .cta-title {
        font-size: 14px !important;
        hyphens: auto
    }

    .numbers-case-section .metric-value {
        font-size: 1.75rem
    }

    .numbers-case-section .btn-tab {
        width: 100%;
        text-align: center
    }
}

/* ===== tech_stack ===== */
#tech-stack-section {
    background-color: #FFFBF8;
    border-top: 1px solid #F6E8DF;
    border-bottom: 1px solid #F6E8DF;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#tech-stack-section .tech-stack-badge {
    background-color: #FFF4EC;
    border: 1px solid #FED7AA;
    border-radius: 6px;
    padding: 6px 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #E85D04;
}

#tech-stack-section .tech-stack-title {
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 700;
    color: #1A1B25;
    letter-spacing: -0.02em;
}

#tech-stack-section .tech-stack-subtitle {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #5F6575;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

#tech-stack-section .tech-filter-bar {
    background-color: #FFFFFF;
    border: 1px solid #F6E8DF;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(232, 93, 4, 0.04);
}

#tech-stack-section .tech-filter-btn {
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #5F6575;
    transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

#tech-stack-section .tech-filter-btn:hover {
    background-color: #FFF4EC;
    color: #E85D04;
    border-color: #FED7AA;
}

#tech-stack-section .tech-filter-btn.active {
    background-color: #E85D04;
    color: #FFFFFF;
    border-color: #E85D04;
    box-shadow: 0 4px 12px rgba(232, 93, 4, 0.25);
}

#tech-stack-section .tech-card {
    background-color: #FFFFFF;
    border: 1px solid #F6E8DF;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(232, 93, 4, 0.04);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease, box-shadow 0.28s ease;
}

#tech-stack-section .tech-card:hover {
    transform: translateY(-4px);
    border-color: #E85D04;
    box-shadow: 0 12px 32px rgba(232, 93, 4, 0.12);
}

#tech-stack-section .tech-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: #FFE7D6;
    color: #E85D04;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: transform 0.2s ease;
}

#tech-stack-section .tech-card:hover .tech-icon-box {
    transform: scale(1.08);
}

#tech-stack-section .tech-cat-badge {
    background-color: #FFF8F2;
    border: 1px solid #F3DFC9;
    border-radius: 6px;
    padding: 4px 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: #E85D04;
}

#tech-stack-section .tech-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1B25;
    line-height: 1.35;
    letter-spacing: -0.015em;
}

#tech-stack-section .tech-spec-tag {
    background-color: #FBF5F0;
    border: 1px solid #EED8CB;
    border-radius: 4px;
    padding: 2px 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #5F6575;
}

#tech-stack-section .tech-card-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #5F6575;
}

#tech-stack-section .tech-audit-status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #16A34A;
}

#tech-stack-section .tech-link-inline {
    font-size: 0.875rem;
    font-weight: 600;
    color: #E85D04;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

#tech-stack-section .tech-link-inline:hover {
    color: #D05202;
    text-decoration: underline;
}

#tech-stack-section .tech-workflow-banner {
    background: linear-gradient(135deg, #FFF4EC 0%, #FFE7D6 100%);
    border: 1px solid #FED7AA;
}

#tech-stack-section .tech-banner-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: #FFFFFF;
    color: #E85D04;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 12px rgba(232, 93, 4, 0.1);
}

#tech-stack-section .tech-banner-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1A1B25;
    line-height: 1.35;
}

#tech-stack-section .tech-banner-desc {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #5F6575;
}

#tech-stack-section .tech-action-btn {
    background-color: #E85D04;
    color: #FFFFFF;
    border: 1px solid #E85D04;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(232, 93, 4, 0.2);
}

#tech-stack-section .tech-action-btn:hover {
    background-color: #D05202;
    color: #FFFFFF;
    border-color: #D05202;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 93, 4, 0.3);
}

@media (max-width: 767.98px) {
    #tech-stack-section .tech-stack-title {
        font-size: 1.5rem;
    }

    #tech-stack-section .tech-card-title {
        font-size: 1.125rem;
    }

    #tech-stack-section .tech-filter-bar {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start !important;
        padding: 4px;
    }

    #tech-stack-section .tech-filter-btn {
        padding: 6px 12px;
        font-size: 0.8125rem;
        white-space: nowrap;
    }

    #tech-stack-section .tech-workflow-banner {
        text-align: center;
    }

    #tech-stack-section .tech-action-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== glossary ===== */
.rr-glossary-section {
    background-color: #FFFBF8;
    position: relative;
    border-top: 1px solid #F6E8DF;
    border-bottom: 1px solid #F6E8DF;
    padding-top: 4rem;
    padding-bottom: 4rem
}

.rr-glossary-section .rr-glossary-tag {
    background-color: #FFF4EC;
    border: 1px solid #FED7AA;
    color: #E85D04;
    padding: 6px 14px;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    font-weight: 600
}

.rr-glossary-section .rr-glossary-tag i {
    font-size: 1rem
}

.rr-glossary-section .rr-glossary-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: #1A1B25;
    font-size: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.25
}

.rr-glossary-section .rr-glossary-lead {
    font-size: 1.0625rem;
    color: #5F6575;
    line-height: 1.6;
    margin-bottom: 0
}

.rr-glossary-section .rr-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #FFFFFF;
    color: #5F6575;
    border: 1px solid #EED8CB;
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all .28s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer
}

.rr-glossary-section .rr-filter-btn i {
    font-size: 1.05rem;
    color: #8E95A5;
    transition: color .28s ease
}

.rr-glossary-section .rr-filter-btn:hover {
    background-color: #FFF4EC;
    color: #E85D04;
    border-color: #FED7AA
}

.rr-glossary-section .rr-filter-btn:hover i {
    color: #E85D04
}

.rr-glossary-section .rr-filter-btn.active {
    background-color: #E85D04;
    color: #FFFFFF;
    border-color: #E85D04;
    box-shadow: 0 4px 12px rgba(232, 93, 4, 0.22)
}

.rr-glossary-section .rr-filter-btn.active i {
    color: #FFFFFF
}

.rr-glossary-section .rr-term-card {
    background-color: #FFFFFF;
    border: 1px solid #F6E8DF;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: all .28s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(232, 93, 4, 0.03)
}

.rr-glossary-section .rr-term-card:hover {
    transform: translateY(-4px);
    border-color: #FED7AA;
    box-shadow: 0 12px 28px rgba(232, 93, 4, 0.09)
}

.rr-glossary-section .rr-term-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 14px
}

.rr-glossary-section .rr-badge-category {
    background-color: #FFF4EC;
    border: 1px solid #FED7AA;
    color: #E85D04;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px
}

.rr-glossary-section .rr-term-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #8E95A5;
    font-weight: 500
}

.rr-glossary-section .rr-term-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1A1B25;
    margin-bottom: 10px;
    line-height: 1.35
}

.rr-glossary-section .rr-term-desc {
    font-size: 0.9375rem;
    color: #5F6575;
    line-height: 1.55;
    margin-bottom: 16px;
    flex-grow: 1
}

.rr-glossary-section .rr-term-footer {
    border-top: 1px solid #FBF5F0;
    padding-top: 12px;
    display: flex;
    align-items: center
}

.rr-glossary-section .rr-term-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: #8E95A5;
    font-weight: 500
}

.rr-glossary-section .rr-term-hint i {
    color: #E85D04;
    font-size: 0.95rem
}

@media(max-width:767.98px) {
    .rr-glossary-section {
        padding-top: 3rem;
        padding-bottom: 3rem
    }

    .rr-glossary-section .rr-glossary-heading {
        font-size: 1.5rem;
        hyphens: auto
    }

    .rr-glossary-section .rr-glossary-lead {
        font-size: 0.9375rem
    }

    .rr-glossary-section .rr-term-title {
        font-size: 1.05rem
    }

    .rr-glossary-section .rr-filter-btn {
        font-size: 0.8125rem;
        padding: 6px 12px
    }
}

/* ===== mistakes ===== */
.rr-mistakes-section {
    background-color: #FFFBF8;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif
}

.rr-mistakes-section .rr-mistakes-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FFF4EC;
    border: 1px solid #FED7AA;
    color: #E85D04;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px
}

.rr-mistakes-section .rr-mistakes-title {
    color: #1A1B25;
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 12px
}

.rr-mistakes-section .rr-mistakes-subtitle {
    color: #5F6575;
    font-size: 1.0625rem;
    line-height: 1.6;
    max-width: 680px
}

.rr-mistakes-section .rr-mistakes-card {
    background: #FFFFFF;
    border: 1px solid #F6E8DF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(232, 93, 4, 0.06), 0 2px 4px rgba(30, 41, 59, 0.03);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s cubic-bezier(0.16, 1, 0.3, 1)
}

.rr-mistakes-section .rr-mistakes-card:hover {
    transform: translateY(-4px);
    border-color: #E85D04;
    box-shadow: 0 12px 32px rgba(232, 93, 4, 0.12), 0 4px 8px rgba(30, 41, 59, 0.04)
}

.rr-mistakes-section .rr-mistakes-thumb {
    position: relative;
    width: 100%;
    overflow: hidden
}

.rr-mistakes-section .rr-card-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: transform 0.35s ease
}

.rr-mistakes-section .rr-mistakes-card:hover .rr-card-img {
    transform: scale(1.04)
}

.rr-mistakes-section .rr-tag-indicator {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #FFF4EC;
    border: 1px solid #FED7AA;
    color: #DC2626;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px
}

.rr-mistakes-section .rr-meta-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #8E95A5;
    font-size: 0.8125rem;
    font-family: 'JetBrains Mono', monospace
}

.rr-mistakes-section .rr-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.rr-mistakes-section .rr-card-heading {
    font-size: 1.1875rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.015em;
    margin-bottom: 8px
}

.rr-mistakes-section .rr-card-heading-link {
    color: #1A1B25;
    text-decoration: none;
    transition: color 0.2s ease
}

.rr-mistakes-section .rr-card-heading-link:hover {
    color: #E85D04
}

.rr-mistakes-section .rr-card-text {
    color: #5F6575;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0
}

.rr-mistakes-section .rr-card-footer {
    border-top: 1px solid #F6E8DF
}

.rr-mistakes-section .rr-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #FFF4EC;
    color: #E85D04;
    border: 1px solid #FED7AA;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease
}

.rr-mistakes-section .rr-action-btn:hover {
    background: #E85D04;
    color: #FFFFFF;
    border-color: #E85D04;
    box-shadow: 0 4px 12px rgba(232, 93, 4, 0.25)
}

.rr-mistakes-section .rr-view-all-btn {
    background: #E85D04;
    color: #FFFFFF;
    border: 1px solid #E85D04;
    border-radius: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1)
}

.rr-mistakes-section .rr-view-all-btn:hover {
    background: #D05202;
    border-color: #D05202;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 93, 4, 0.25)
}

@media(max-width:767.98px) {
    .rr-mistakes-section .rr-mistakes-title {
        font-size: 1.5rem;
        hyphens: auto
    }

    .rr-mistakes-section .rr-card-heading {
        font-size: 1.125rem
    }

    .rr-mistakes-section .rr-card-img {
        height: 180px
    }

    .rr-mistakes-section .rr-view-all-btn {
        width: 100%
    }
}

/* ===== scenarios ===== */
.scenarios-section {
    background-color: #FFFBF8;
    position: relative
}

.scenarios-section__badge {
    background-color: #FFF4EC;
    border: 1px solid #FED7AA;
    color: #E85D04;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-family: 'JetBrains Mono', monospace
}

.scenarios-section__title {
    color: #1A1B25;
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.25;
    letter-spacing: -0.02em
}

.scenarios-section__subtitle {
    color: #5F6575;
    font-size: 1.0625rem;
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto
}

.scenarios-section__filter-btn {
    background: #FFFFFF;
    border: 1px solid #EED8CB;
    color: #5F6575;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all .25s ease;
    cursor: pointer
}

.scenarios-section__filter-btn:hover {
    background-color: #FFF4EC;
    color: #E85D04;
    border-color: #FED7AA
}

.scenarios-section__filter-btn.active {
    background-color: #E85D04;
    color: #FFFFFF;
    border-color: #E85D04;
    box-shadow: 0 4px 12px rgba(232, 93, 4, 0.2)
}

.scenarios-card {
    background: #FFFFFF;
    border: 1px solid #F6E8DF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(232, 93, 4, 0.04);
    transition: transform .28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .28s cubic-bezier(0.16, 1, 0.3, 1), border-color .28s cubic-bezier(0.16, 1, 0.3, 1)
}

.scenarios-card:hover {
    transform: translateY(-4px);
    border-color: #E85D04;
    box-shadow: 0 12px 32px rgba(232, 93, 4, 0.12)
}

.scenarios-card__image-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #FBF5F0
}

.scenarios-card__img-link {
    display: block;
    width: 100%;
    height: 100%
}

.scenarios-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease
}

.scenarios-card:hover .scenarios-card__img {
    transform: scale(1.04)
}

.scenarios-card__tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(26, 27, 37, 0.85);
    backdrop-filter: blur(4px);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    padding: 4px 10px;
    border-radius: 6px
}

.scenarios-card__meta {
    font-size: 0.8125rem;
    color: #8E95A5;
    font-family: 'JetBrains Mono', monospace
}

.scenarios-card__title {
    font-size: 1.25rem;
    line-height: 1.35;
    font-weight: 700
}

.scenarios-card__title-link {
    color: #1A1B25;
    text-decoration: none;
    transition: color .2s ease
}

.scenarios-card__title-link:hover {
    color: #E85D04
}

.scenarios-card__desc {
    color: #5F6575;
    font-size: 0.9375rem;
    line-height: 1.6
}

.scenarios-card__footer {
    border-top: 1px solid #F6E8DF
}

.scenarios-card__stat {
    font-size: 0.8125rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: #1A1B25
}

.scenarios-card__btn {
    background-color: #FFF4EC;
    color: #E85D04;
    border: 1px solid #FED7AA;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all .2s ease
}

.scenarios-card__btn:hover {
    background-color: #E85D04;
    color: #FFFFFF;
    border-color: #E85D04
}

.scenarios-section__view-all-btn {
    background-color: #E85D04;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid #E85D04;
    transition: all .25s ease;
    box-shadow: 0 4px 14px rgba(232, 93, 4, 0.2)
}

.scenarios-section__view-all-btn:hover {
    background-color: #D05202;
    border-color: #D05202;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 93, 4, 0.3)
}

@media(max-width:767.98px) {
    .scenarios-section__title {
        font-size: 1.625rem;
        hyphens: auto
    }

    .scenarios-section__subtitle {
        font-size: 0.9375rem
    }

    .scenarios-card__title {
        font-size: 1.125rem
    }

    .scenarios-card__image-wrap {
        height: 180px
    }
}

/* ===== contact_form ===== */
.rr-contact-section {
    background-color: #FFFBF8;
    padding: 80px 0;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1A1B25;
}

@media (max-width: 767.98px) {
    .rr-contact-section {
        padding: 48px 0;
    }
}

.rr-contact-section .rr-contact-info-card {
    background: linear-gradient(180deg, #FFF4EC 0%, #FFFFFF 100%);
    border: 1px solid #FED7AA;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(232, 93, 4, 0.06);
}

.rr-contact-section .rr-contact-form-card {
    background-color: #FFFFFF;
    border: 1px solid #F6E8DF;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(232, 93, 4, 0.06);
}

.rr-contact-section .rr-contact-badge {
    background-color: #FFE7D6;
    border: 1px solid #FED7AA;
    color: #E85D04;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

.rr-contact-section .rr-contact-badge i {
    font-size: 1rem;
}

.rr-contact-section .rr-contact-heading {
    color: #1A1B25;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

@media (max-width: 767.98px) {
    .rr-contact-section .rr-contact-heading {
        font-size: 1.5rem;
    }
}

.rr-contact-section .rr-contact-desc {
    color: #5F6575;
    font-size: 1rem;
    line-height: 1.6;
}

.rr-contact-section .rr-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background-color: #FFF4EC;
    border: 1px solid #FED7AA;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E85D04;
    font-size: 1.25rem;
}

.rr-contact-section .rr-detail-label {
    font-size: 0.8125rem;
    color: #8E95A5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 2px;
}

.rr-contact-section .rr-detail-link {
    color: #1A1B25;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-all;
}

.rr-contact-section .rr-detail-link:hover {
    color: #E85D04;
}

.rr-contact-section .rr-detail-text {
    color: #1A1B25;
    font-style: normal;
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.rr-contact-section .rr-contact-info-bottom {
    border-top: 1px solid #FED7AA;
}

.rr-contact-section .rr-availability-pill {
    background-color: #FFFFFF;
    border: 1px solid #FED7AA;
    padding: 10px 14px;
    border-radius: 8px;
}

.rr-contact-section .rr-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #16A34A;
    display: inline-block;
    flex-shrink: 0;
}

.rr-contact-section .rr-availability-text {
    font-size: 0.8125rem;
    color: #5F6575;
    font-weight: 500;
}

.rr-contact-section .rr-form-title {
    color: #1A1B25;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.35;
}

@media (max-width: 767.98px) {
    .rr-contact-section .rr-form-title {
        font-size: 1.25rem;
    }
}

.rr-contact-section .rr-form-subtitle {
    color: #5F6575;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.rr-contact-section .rr-form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1A1B25;
    margin-bottom: 6px;
    display: block;
}

.rr-contact-section .rr-required-mark {
    color: #DC2626;
}

.rr-contact-section .rr-form-control {
    background-color: #FFFBF8;
    border: 1px solid #EED8CB;
    border-radius: 10px;
    color: #1A1B25;
    font-size: 0.9375rem;
    padding: 12px 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rr-contact-section .rr-form-control:focus {
    background-color: #FFFFFF;
    border-color: #E85D04;
    color: #1A1B25;
    box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.15);
    outline: none;
}

.rr-contact-section .rr-form-control::placeholder {
    color: #8E95A5;
    opacity: 1;
}

.rr-contact-section .rr-textarea {
    resize: vertical;
    min-height: 130px;
}

.rr-contact-section .rr-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid #EED8CB;
    border-radius: 4px;
    background-color: #FFFBF8;
    cursor: pointer;
}

.rr-contact-section .rr-checkbox:checked {
    background-color: #E85D04;
    border-color: #E85D04;
}

.rr-contact-section .rr-checkbox:focus {
    box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.15);
    border-color: #E85D04;
}

.rr-contact-section .rr-consent-label {
    font-size: 0.8125rem;
    color: #5F6575;
    cursor: pointer;
    user-select: none;
}

.rr-contact-section .rr-btn-submit {
    background-color: #E85D04;
    color: #FFFFFF;
    border: 1px solid #E85D04;
    border-radius: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.rr-contact-section .rr-btn-submit:hover {
    background-color: #D05202;
    border-color: #D05202;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 93, 4, 0.25);
}

.rr-contact-section .rr-btn-submit:active {
    background-color: #B74601;
    border-color: #B74601;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .rr-contact-section .rr-btn-submit {
        width: auto;
    }
}

/* ===== footer ===== */
.rr-site-footer {
    background-color: #FFFBF8;
    border-top: 1px solid #F6E8DF;
    padding-top: 64px;
    padding-bottom: 36px;
    color: #5F6575;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
}

.rr-site-footer .rr-footer-logo {
    max-width: 44px;
    max-height: 44px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.rr-site-footer .rr-brand-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1A1B25;
    letter-spacing: -0.02em;
}

.rr-site-footer .rr-brand-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #5F6575;
    max-width: 360px;
}

.rr-site-footer .rr-telemetry-badge {
    background-color: #FFF4EC;
    border: 1px solid #FED7AA;
    border-radius: 6px;
    padding: 6px 12px;
}

.rr-site-footer .rr-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #16A34A;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.rr-site-footer .rr-telemetry-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: #E85D04;
    letter-spacing: 0.02em;
}

.rr-site-footer .rr-footer-heading {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1A1B25;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}

.rr-site-footer .rr-nav-link {
    color: #5F6575;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 3px 0;
}

.rr-site-footer .rr-nav-link i {
    font-size: 1.1rem;
    color: #8E95A5;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.rr-site-footer .rr-nav-link:hover {
    color: #E85D04;
    transform: translateX(4px);
}

.rr-site-footer .rr-nav-link:hover i {
    color: #E85D04;
}

.rr-site-footer .rr-contact-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background-color: #FFE7D6;
    color: #E85D04;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid #FED7AA;
}

.rr-site-footer .rr-contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #8E95A5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.rr-site-footer .rr-contact-value {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1A1B25;
    line-height: 1.4;
}

.rr-site-footer .rr-contact-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1A1B25;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.rr-site-footer .rr-contact-link:hover {
    color: #E85D04;
    text-decoration: underline;
}

.rr-site-footer .rr-footer-bottom {
    border-top: 1px solid #F6E8DF;
}

.rr-site-footer .rr-copyright-text {
    font-size: 0.875rem;
    color: #8E95A5;
}

.rr-site-footer .rr-legal-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #5F6575;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.rr-site-footer .rr-legal-link:hover {
    color: #E85D04;
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .rr-site-footer {
        padding-top: 48px;
        padding-bottom: 28px;
    }

    .rr-site-footer .rr-brand-title {
        font-size: 1.125rem;
    }

    .rr-site-footer .rr-footer-heading {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .rr-site-footer .rr-brand-desc {
        font-size: 0.875rem;
    }

    .rr-site-footer .rr-legal-nav {
        flex-direction: row;
        gap: 12px;
    }
}

/* ===== PAGE: about ===== */
.about-casebook-section {
  background-color: #FFFFFF;
  color: #1A1B25;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about-casebook-section__badge {
  display: inline-flex;
  align-items: center;
  background-color: #FFF4EC;
  border: 1px solid #FED7AA;
  color: #E85D04;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
}

.about-casebook-section__title {
  color: #1A1B25;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

@media (max-width: 767.98px) {
  .about-casebook-section__title {
    font-size: 1.125rem;
    hyphens: auto;
  }
}

.about-casebook-section__lead {
  color: #5F6575;
  font-size: 1.0625rem;
  line-height: 1.6;
}

.about-casebook-section__subtitle {
  color: #1A1B25;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

@media (max-width: 767.98px) {
  .about-casebook-section__subtitle {
    font-size: 1rem;
    hyphens: auto;
  }
}

.about-casebook-section__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #E85D04;
  color: #FFFFFF !important;
  border: 1px solid #E85D04;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-casebook-section__btn-primary:hover {
  background-color: #D05202;
  border-color: #D05202;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 93, 4, 0.22);
}

.about-casebook-section__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF4EC;
  color: #E85D04 !important;
  border: 1px solid #FED7AA;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-casebook-section__btn-secondary:hover {
  background-color: #FFE7D6;
  border-color: #FDBA74;
  transform: translateY(-2px);
}

.about-casebook-section__telemetry-box {
  background: #FFFBF8;
  border: 1px solid #F6E8DF;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(232, 93, 4, 0.04);
}

.about-casebook-section__terminal-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.about-casebook-section__status-pill {
  background-color: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #16A34A;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.about-casebook-section__metric-row {
  font-size: 0.9375rem;
  border-bottom: 1px dashed #F6E8DF;
}

.about-casebook-section__metric-row:last-child {
  border-bottom: none;
}

.about-casebook-section__card {
  background: #FFFFFF;
  border: 1px solid #F6E8DF;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(232, 93, 4, 0.03);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-casebook-section__card:hover {
  border-color: #E85D04;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(232, 93, 4, 0.1);
}

.about-casebook-section__card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFE7D6;
  color: #E85D04;
  font-size: 1.5rem;
  border-radius: 12px;
}

.about-casebook-section__card-title {
  color: #1A1B25;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 767.98px) {
  .about-casebook-section__card-title {
    font-size: 0.875rem;
    hyphens: auto;
  }
}

.about-casebook-section__card-text {
  font-size: 0.9375rem;
  line-height: 1.55;
}

.about-casebook-section__methodology-block {
  background: #FFFBF8;
  border: 1px solid #F6E8DF;
  border-radius: 16px;
}

.about-casebook-section__tab-btn {
  background: #FFFFFF;
  border: 1px solid #F6E8DF;
  border-radius: 12px;
  color: #1A1B25;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease;
}

.about-casebook-section__tab-btn:hover {
  border-color: #FED7AA;
  background: #FFFDFB;
}

.about-casebook-section__tab-btn.active {
  border-color: #E85D04;
  background: #FFF4EC;
  box-shadow: 0 2px 8px rgba(232, 93, 4, 0.08);
}

.about-casebook-section__tab-step {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  font-weight: 700;
  color: #E85D04;
  background: #FFE7D6;
  padding: 6px 10px;
  border-radius: 6px;
}

.about-casebook-section__console-box {
  background: #1A1B25;
  border: 1px solid #333644;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about-casebook-section__tag-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
}

.about-casebook-section__code-line {
  background: #11121A;
  border-left: 3px solid #E85D04;
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
}

.about-casebook-section__cta-box {
  background: linear-gradient(135deg, #FFF4EC 0%, #FFE7D6 100%);
  border: 1px solid #FED7AA;
  border-radius: 20px;
}

.about-casebook-section__cta-title {
  color: #1A1B25;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.25;
}

@media (max-width: 767.98px) {
  .about-casebook-section__cta-title {
    font-size: 1rem;
    hyphens: auto;
  }
}

.about-casebook-section__cta-lead {
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== PAGE: recovery-mistakes ===== */
.category-mistakes-section { background-color: #FFFFFF; color: #1A1B25; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; } .category-mistakes-section .category-mistakes-badge { display: inline-block; background-color: #FFF4EC; border: 1px solid #FED7AA; color: #E85D04; font-family: 'JetBrains Mono', monospace; font-size: 0.8125rem; font-weight: 600; padding: 6px 14px; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.05em; } .category-mistakes-section .category-mistakes-title { font-size: 2.5rem; font-weight: 800; color: #1A1B25; line-height: 1.2; letter-spacing: -0.025em; } .category-mistakes-section .category-mistakes-lead { font-size: 1.0625rem; color: #5F6575; line-height: 1.6; max-width: 760px; } .category-mistakes-section .category-mistakes-tag-code { display: inline-flex; align-items: center; background-color: #FFFBF8; border: 1px solid #EED8CB; color: #5F6575; font-family: 'JetBrains Mono', monospace; font-size: 0.8125rem; padding: 4px 12px; border-radius: 6px; } .category-mistakes-section .category-mistakes-toolbar { background-color: #FFFBF8; border: 1px solid #F6E8DF; border-radius: 14px; padding: 16px 20px; } .category-mistakes-section .category-mistakes-search { position: relative; } .category-mistakes-section .category-mistakes-search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 1.25rem; color: #8E95A5; pointer-events: none; } .category-mistakes-section .category-mistakes-input { background-color: #FFFFFF; border: 1px solid #EED8CB; color: #1A1B25; border-radius: 10px; padding: 10px 14px 10px 42px; font-size: 0.9375rem; font-family: 'Plus Jakarta Sans', sans-serif; transition: all 0.2s ease; } .category-mistakes-section .category-mistakes-input::placeholder { color: #8E95A5; opacity: 1; } .category-mistakes-section .category-mistakes-input:focus { background-color: #FFFFFF; border-color: #E85D04; color: #1A1B25; box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.15); outline: none; } .category-mistakes-section .category-mistakes-filter-btn { background-color: #FFFFFF; border: 1px solid #EED8CB; color: #5F6575; font-size: 0.875rem; font-weight: 600; padding: 8px 16px; border-radius: 8px; transition: all 0.2s ease; cursor: pointer; } .category-mistakes-section .category-mistakes-filter-btn:hover { background-color: #FFF4EC; color: #E85D04; border-color: #FED7AA; } .category-mistakes-section .category-mistakes-filter-btn.active { background-color: #E85D04; border-color: #E85D04; color: #FFFFFF; } .category-mistakes-section .category-mistakes-card { background-color: #FFFFFF; border: 1px solid #F6E8DF; border-radius: 16px; overflow: hidden; transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 4px 16px rgba(232, 93, 4, 0.04), 0 2px 4px rgba(30, 41, 59, 0.02); } .category-mistakes-section .category-mistakes-card:hover { transform: translateY(-4px); border-color: #E85D04; box-shadow: 0 12px 32px rgba(232, 93, 4, 0.12), 0 4px 8px rgba(30, 41, 59, 0.04); } .category-mistakes-section .category-mistakes-card-media { position: relative; width: 100%; aspect-ratio: 16 / 10; background-color: #FBF5F0; overflow: hidden; } .category-mistakes-section .category-mistakes-img-link { display: block; width: 100%; height: 100%; } .category-mistakes-section .category-mistakes-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; } .category-mistakes-section .category-mistakes-card:hover .category-mistakes-img { transform: scale(1.04); } .category-mistakes-section .category-mistakes-status-pill { position: absolute; top: 12px; right: 12px; background-color: rgba(26, 27, 37, 0.85); color: #FFFFFF; font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 6px; backdrop-filter: blur(4px); display: inline-flex; align-items: center; } .category-mistakes-section .category-mistakes-card-body { padding: 24px; } .category-mistakes-section .category-mistakes-meta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 0.8125rem; color: #8E95A5; font-family: 'JetBrains Mono', monospace; } .category-mistakes-section .category-mistakes-card-title { font-size: 1.25rem; font-weight: 700; line-height: 1.35; color: #1A1B25; } .category-mistakes-section .category-mistakes-title-link { color: #1A1B25; text-decoration: none; transition: color 0.2s ease; } .category-mistakes-section .category-mistakes-title-link:hover { color: #E85D04; } .category-mistakes-section .category-mistakes-card-desc { font-size: 0.9375rem; color: #5F6575; line-height: 1.55; } .category-mistakes-section .category-mistakes-card-footer { border-top: 1px solid #F6E8DF; display: flex; align-items: center; justify-content: space-between; gap: 10px; } .category-mistakes-section .category-mistakes-subtag { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; font-weight: 600; color: #E85D04; background-color: #FFF4EC; padding: 3px 8px; border-radius: 4px; display: inline-flex; align-items: center; } .category-mistakes-section .category-mistakes-action-link { font-size: 0.875rem; font-weight: 700; color: #1A1B25; text-decoration: none; display: inline-flex; align-items: center; transition: color 0.2s ease, transform 0.2s ease; } .category-mistakes-section .category-mistakes-action-link:hover { color: #E85D04; transform: translateX(3px); } .category-mistakes-section .category-mistakes-empty-icon { font-size: 3rem; color: #E85D04; } .category-mistakes-section .category-mistakes-empty-title { font-size: 1.25rem; font-weight: 700; color: #1A1B25; } .category-mistakes-section .category-mistakes-empty-desc { font-size: 0.9375rem; color: #5F6575; } @media (max-width: 767.98px) { .category-mistakes-section .category-mistakes-title { font-size: 1.125rem; hyphens: auto; } .category-mistakes-section .category-mistakes-lead { font-size: 0.875rem; } .category-mistakes-section .category-mistakes-card-title { font-size: 0.875rem; } .category-mistakes-section .category-mistakes-toolbar { padding: 12px; } .category-mistakes-section .category-mistakes-filter-btn { font-size: 0.8125rem; padding: 6px 12px; } }

/* ===== PAGE: cases ===== */
.cases-catalog-section {
  background-color: #FFFBF8;
  color: #1A1B25;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cases-catalog-section .cases-badge {
  background-color: #FFF4EC;
  border: 1px solid #FED7AA;
  color: #E85D04;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.cases-catalog-section .cases-main-title {
  color: #1A1B25;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.cases-catalog-section .cases-lead-text {
  color: #5F6575;
  font-size: 1.125rem;
  line-height: 1.6;
}

.cases-catalog-section .cases-meta-pill {
  background-color: #FFFFFF;
  border: 1px solid #EED8CB;
  border-left: 3px solid #E85D04;
  color: #8E95A5;
  font-size: 0.8125rem;
  padding: 6px 14px;
  border-radius: 6px;
}

.cases-catalog-section .cases-controls-wrapper {
  background-color: #FFFFFF;
  border: 1px solid #F6E8DF;
  box-shadow: 0 2px 8px rgba(232, 93, 4, 0.04);
}

.cases-catalog-section .cases-filter-btn {
  background-color: #FFF4EC;
  color: #5F6575;
  border: 1px solid #FED7AA;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.cases-catalog-section .cases-filter-btn:hover {
  background-color: #FFE7D6;
  color: #E85D04;
  border-color: #FDBA74;
}

.cases-catalog-section .cases-filter-btn.active {
  background-color: #E85D04;
  color: #FFFFFF;
  border-color: #E85D04;
}

.cases-catalog-section .cases-search-box .cases-search-icon {
  left: 14px;
  color: #8E95A5;
  font-size: 1.25rem;
}

.cases-catalog-section .cases-search-input {
  background-color: #FFFBF8;
  border: 1px solid #EED8CB;
  border-radius: 10px;
  padding: 10px 14px 10px 42px;
  font-size: 0.9375rem;
  color: #1A1B25;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cases-catalog-section .cases-search-input::placeholder {
  color: #8E95A5;
}

.cases-catalog-section .cases-search-input:focus {
  background-color: #FFFFFF;
  border-color: #E85D04;
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.15);
  color: #1A1B25;
}

.cases-catalog-section .cases-counter-text {
  color: #8E95A5;
  font-size: 0.875rem;
}

.cases-catalog-section .cases-status-indicator {
  color: #5F6575;
  font-size: 0.875rem;
  font-weight: 500;
}

.cases-catalog-section .cases-card {
  background-color: #FFFFFF;
  border: 1px solid #F6E8DF;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(232, 93, 4, 0.04);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.cases-catalog-section .cases-card:hover {
  transform: translateY(-4px);
  border-color: #E85D04;
  box-shadow: 0 12px 32px rgba(232, 93, 4, 0.12);
}

.cases-catalog-section .cases-card-img-wrap {
  height: 200px;
  background-color: #FFF4EC;
  overflow: hidden;
}

.cases-catalog-section .cases-card-img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cases-catalog-section .cases-card:hover .cases-card-img {
  transform: scale(1.04);
}

.cases-catalog-section .cases-card-tag {
  background-color: rgba(26, 27, 37, 0.85);
  color: #FFFFFF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.cases-catalog-section .cases-card-meta {
  color: #8E95A5;
  font-size: 0.75rem;
}

.cases-catalog-section .cases-title-link {
  color: #1A1B25;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cases-catalog-section .cases-title-link:hover {
  color: #E85D04;
}

.cases-catalog-section .cases-card-desc {
  color: #5F6575;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.cases-catalog-section .cases-card-footer {
  border-color: #F6E8DF !important;
}

.cases-catalog-section .cases-classification-tag {
  color: #E85D04;
  font-size: 0.8125rem;
  font-weight: 600;
}

.cases-catalog-section .cases-read-btn {
  background-color: #FFF4EC;
  color: #E85D04;
  border: 1px solid #FED7AA;
  font-weight: 600;
  border-radius: 8px;
  padding: 6px 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cases-catalog-section .cases-read-btn:hover {
  background-color: #E85D04;
  color: #FFFFFF;
  border-color: #E85D04;
}

.cases-catalog-section .cases-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #FFE7D6;
}

@media (max-width: 767.98px) {
  .cases-catalog-section .cases-main-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .cases-catalog-section .cases-card-title {
    font-size: 0.875rem;
  }
  .cases-catalog-section .cases-lead-text {
    font-size: 0.9375rem;
  }
}

/* ===== PAGE: brand-support ===== */
.brand-support-page .bsp-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  background-color: #FFF4EC;
  color: #E85D04;
  border: 1px solid #FED7AA;
}

.brand-support-page .bsp-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: #1A1B25;
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.brand-support-page .bsp-lead-text {
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 820px;
}

.brand-support-page .bsp-meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background-color: #FFFBF8;
  border: 1px solid #F6E8DF;
  border-radius: 8px;
  font-size: 0.875rem;
}

.brand-support-page .bsp-code-label {
  color: #E85D04;
  background-color: #FFE7D6;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8125rem;
}

.brand-support-page .bsp-tab-btn {
  border: 1px solid transparent;
  color: #5F6575;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 10px 18px;
  border-radius: 8px;
  background-color: transparent;
  transition: all 0.2s ease;
}

.brand-support-page .bsp-tab-btn:hover {
  color: #E85D04;
  background-color: #FFF4EC;
}

.brand-support-page .bsp-tab-btn.active {
  background-color: #E85D04;
  color: #FFFFFF;
  border-color: #E85D04;
  box-shadow: 0 4px 12px rgba(232, 93, 4, 0.2);
}

.brand-support-page .bsp-card {
  border-radius: 16px;
  border-color: #F6E8DF !important;
  background-color: #FFFFFF;
}

.brand-support-page .bsp-status-badge {
  background-color: #FFF4EC;
  color: #E85D04;
  border: 1px solid #FED7AA;
  font-size: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
}

.brand-support-page .bsp-highlight-box {
  background-color: #FFFBF8;
  border-left-color: #E85D04 !important;
}

.brand-support-page .bsp-metric-card {
  background-color: #FFFBF8;
  border-color: #F6E8DF !important;
}

.brand-support-page .bsp-step-item {
  background-color: #FFFFFF;
  border-color: #F6E8DF !important;
  transition: border-color 0.2s ease;
}

.brand-support-page .bsp-step-item.active {
  border-color: #E85D04 !important;
}

.brand-support-page .bsp-step-num {
  width: 32px;
  height: 32px;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.brand-support-page .bsp-step-item.active .bsp-step-num {
  background-color: #E85D04 !important;
}

.brand-support-page .bsp-scenario-card {
  border-radius: 16px;
  background-color: #FFFBF8;
  border-color: #F6E8DF !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-support-page .bsp-scenario-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(232, 93, 4, 0.08);
}

.brand-support-page .bsp-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-support-page .cursor-pointer {
  cursor: pointer;
}

.brand-support-page .bsp-log-box {
  border-color: #EED8CB !important;
  line-height: 1.7;
}

@media (max-width: 767.98px) {
  .brand-support-page .bsp-main-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .brand-support-page h2.h4 {
    font-size: 1rem;
    hyphens: auto;
  }
  .brand-support-page h3.h5,
  .brand-support-page h3.h6 {
    font-size: 0.875rem;
    hyphens: auto;
  }
  .brand-support-page .bsp-tab-btn {
    font-size: 0.8125rem;
    padding: 8px 12px;
    width: 100%;
    text-align: center;
  }
}

/* ===== PAGE: contact ===== */
.contact-block { background-color: #FFFBF8; color: #1A1B25; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; } .contact-block__header { max-width: 820px; } .contact-block__badge { display: inline-flex; align-items: center; background-color: #FFF4EC; border: 1px solid #FED7AA; color: #E85D04; font-family: 'JetBrains Mono', monospace; font-size: 0.8125rem; font-weight: 600; padding: 4px 12px; border-radius: 6px; } .contact-block__title { font-size: 2.5rem; font-weight: 800; line-height: 1.2; color: #1A1B25; letter-spacing: -0.025em; } .contact-block__lead { font-size: 1.0625rem; line-height: 1.6; color: #5F6575; margin-bottom: 0.75rem; } .contact-block__meta-tag code { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; background-color: #FBF5F0; border: 1px solid #EED8CB; color: #E85D04; padding: 3px 8px; border-radius: 4px; } .contact-block__info-card, .contact-block__form-card { background-color: #FFFFFF; border: 1px solid #F6E8DF; border-radius: 16px; padding: 32px; box-shadow: 0 4px 16px rgba(232, 93, 4, 0.04); } .contact-block__section-title { font-size: 1.375rem; font-weight: 700; line-height: 1.35; color: #1A1B25; } .contact-block__info-text, .contact-block__form-subtitle { font-size: 0.9375rem; line-height: 1.55; color: #5F6575; } .contact-block__channel { display: flex; align-items: flex-start; gap: 14px; padding: 12px 14px; background-color: #FFFBF8; border: 1px solid #F6E8DF; border-radius: 10px; transition: border-color 0.2s ease, transform 0.2s ease; } .contact-block__channel:hover { border-color: #E85D04; transform: translateY(-2px); } .contact-block__icon-box { width: 40px; height: 40px; border-radius: 8px; background-color: #FFE7D6; color: #E85D04; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; } .contact-block__channel-content { display: flex; flex-direction: column; } .contact-block__channel-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: #8E95A5; margin-bottom: 2px; } .contact-block__channel-value { font-size: 0.9375rem; font-weight: 600; color: #1A1B25; text-decoration: none; word-break: break-all; } a.contact-block__channel-value:hover { color: #E85D04; text-decoration: underline; } .contact-block__notice { background-color: #FFF4EC; border: 1px solid #FED7AA; border-radius: 10px; padding: 16px; } .contact-block__notice-title { font-size: 0.9375rem; font-weight: 700; color: #1A1B25; } .contact-block__notice-text { font-size: 0.8125rem; line-height: 1.5; color: #5F6575; } .contact-block__label { font-size: 0.875rem; font-weight: 600; color: #1A1B25; margin-bottom: 6px; } .contact-block .form-control, .contact-block .form-select { background-color: #FFFBF8; border: 1px solid #EED8CB; border-radius: 0 10px 10px 0; color: #1A1B25; font-size: 0.9375rem; padding: 10px 14px; } .contact-block textarea.form-control { border-radius: 10px; } .contact-block .input-group-text { background-color: #FBF5F0; border: 1px solid #EED8CB; border-right: none; border-radius: 10px 0 0 10px; color: #E85D04; font-size: 1.1rem; } .contact-block .form-control::placeholder, .contact-block textarea::placeholder { color: #8E95A5; opacity: 1; } .contact-block .form-control:focus, .contact-block .form-select:focus { background-color: #FFFFFF; border-color: #E85D04; box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.2); color: #1A1B25; } .contact-block .form-check-input { border-color: #EED8CB; background-color: #FFFBF8; margin-top: 0.25rem; } .contact-block .form-check-input:checked { background-color: #E85D04; border-color: #E85D04; } .contact-block .form-check-input:focus { border-color: #E85D04; box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.2); } .contact-block__check-label { font-size: 0.8125rem; color: #5F6575; line-height: 1.4; } .contact-block__submit-btn { background-color: #E85D04; color: #FFFFFF; border: 1px solid #E85D04; border-radius: 10px; font-weight: 600; font-size: 0.9375rem; padding: 12px 28px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; } .contact-block__submit-btn:hover { background-color: #D05202; border-color: #D05202; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(232, 93, 4, 0.25); color: #FFFFFF; } @media (max-width: 767.98px) { .contact-block__title { font-size: 18px; hyphens: auto; } .contact-block__section-title { font-size: 16px; hyphens: auto; } .contact-block__notice-title { font-size: 14px; } .contact-block__info-card, .contact-block__form-card { padding: 20px 16px; } .contact-block__submit-btn { width: 100%; } }

/* ===== PAGE: privacy ===== */
.privacy-content-block {
  background-color: #FFFBF8;
  color: #1A1B25;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.privacy-content-block .privacy-sidebar {
  top: 96px;
  z-index: 10;
}

.privacy-content-block .privacy-nav-card {
  border-color: #F6E8DF !important;
  box-shadow: 0 4px 16px rgba(232, 93, 4, 0.04);
}

.privacy-content-block .privacy-nav-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #8E95A5;
}

.privacy-content-block .privacy-nav-link {
  font-size: 0.875rem;
  color: #5F6575;
  transition: all 0.2s ease;
}

.privacy-content-block .privacy-nav-link:hover {
  background-color: #FFF4EC;
  color: #E85D04;
}

.privacy-content-block .privacy-nav-link.active {
  background-color: #FFF4EC;
  color: #E85D04;
  font-weight: 600;
  border-left: 3px solid #E85D04;
}

.privacy-content-block .privacy-body {
  border-color: #F6E8DF !important;
  box-shadow: 0 4px 20px rgba(232, 93, 4, 0.05);
}

.privacy-content-block .privacy-badge {
  background-color: #FFF4EC;
  border: 1px solid #FED7AA;
  color: #E85D04;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 600;
}

.privacy-content-block .privacy-main-title {
  color: #1A1B25;
  line-height: 1.25;
}

.privacy-content-block .privacy-section {
  scroll-margin-top: 110px;
}

.privacy-content-block .privacy-section h2 {
  color: #1A1B25;
}

.privacy-content-block .privacy-section-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: #E85D04;
  background-color: #FFF4EC;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid #FED7AA;
}

.privacy-content-block .privacy-callout {
  background-color: #FFFBF8;
  border-left: 3px solid #E85D04 !important;
}

.privacy-content-block .privacy-btn-primary {
  background-color: #E85D04;
  border: 1px solid #E85D04;
  color: #FFFFFF;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 10px;
  transition: all 0.28s ease;
}

.privacy-content-block .privacy-btn-primary:hover {
  background-color: #D05202;
  border-color: #D05202;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 93, 4, 0.2);
}

.privacy-content-block .privacy-btn-secondary {
  background-color: #FFF4EC;
  border: 1px solid #FED7AA;
  color: #E85D04;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 10px;
  transition: all 0.28s ease;
}

.privacy-content-block .privacy-btn-secondary:hover {
  background-color: #FFE7D6;
  border-color: #FDBA74;
  color: #D05202;
}

@media (max-width: 991.98px) {
  .privacy-content-block .privacy-sidebar {
    position: static;
    margin-bottom: 24px;
  }
}

/* ===== PAGE: terms ===== */
.terms-document-section { background-color: #FFFBF8; color: #1A1B25; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
.terms-document-section .terms-nav-card { background: #FFFFFF; border: 1px solid #F6E8DF; border-radius: 16px; padding: 24px; box-shadow: 0 4px 16px rgba(232, 93, 4, 0.04); top: 32px; z-index: 10; }
.terms-document-section .terms-nav-title { font-weight: 700; font-size: 1rem; color: #1A1B25; letter-spacing: -0.01em; }
.terms-document-section .text-primary-accent { color: #E85D04 !important; }
.terms-document-section .terms-quick-nav .terms-nav-link { display: flex; align-items: center; padding: 9px 12px; font-size: 0.875rem; color: #5F6575; text-decoration: none; border-radius: 8px; font-weight: 500; transition: all 0.2s ease-in-out; }
.terms-document-section .terms-quick-nav .terms-nav-link:hover { color: #E85D04; background-color: #FFF4EC; }
.terms-document-section .terms-quick-nav .terms-nav-link.active { color: #E85D04; background-color: #FFE7D6; font-weight: 700; }
.terms-document-section .terms-summary-box { background: #FFFBF8; border: 1px dashed #EED8CB; border-radius: 10px; padding: 14px; }
.terms-document-section .terms-meta-label { font-size: 0.75rem; font-family: 'JetBrains Mono', monospace; text-transform: uppercase; color: #5F6575; font-weight: 600; }
.terms-document-section .terms-meta-date { font-weight: 700; font-size: 0.9375rem; color: #1A1B25; }
.terms-document-section .terms-meta-revision { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: #8E95A5; }
.terms-document-section .terms-content-card { background: #FFFFFF; border: 1px solid #F6E8DF; border-radius: 16px; padding: 36px; box-shadow: 0 4px 16px rgba(232, 93, 4, 0.04); }
@media (max-width: 767.98px) { .terms-document-section .terms-content-card { padding: 20px; } }
.terms-document-section .terms-badge { display: inline-flex; align-items: center; background-color: #FFF4EC; border: 1px solid #FED7AA; color: #E85D04; font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 6px; }
.terms-document-section .terms-main-title { font-size: 2.25rem; font-weight: 800; color: #1A1B25; letter-spacing: -0.025em; line-height: 1.2; }
@media (max-width: 767.98px) { .terms-document-section .terms-main-title { font-size: 1.125rem; } }
.terms-document-section .terms-intro-lead { font-size: 1.0625rem; color: #5F6575; line-height: 1.6; margin-bottom: 0; }
.terms-document-section .terms-article { scroll-margin-top: 40px; }
.terms-document-section .terms-index-pill { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; background-color: #FFF4EC; color: #E85D04; font-family: 'JetBrains Mono', monospace; font-size: 0.8125rem; font-weight: 700; border: 1px solid #FED7AA; flex-shrink: 0; }
.terms-document-section .terms-section-title { font-size: 1.375rem; font-weight: 700; color: #1A1B25; letter-spacing: -0.015em; line-height: 1.3; }
@media (max-width: 767.98px) { .terms-document-section .terms-section-title { font-size: 1rem; } }
.terms-document-section .terms-text { font-size: 0.95rem; line-height: 1.65; color: #5F6575; margin-bottom: 1rem; }
.terms-document-section .terms-code-preview { background: #FFFBF8; border: 1px solid #EED8CB; border-left: 3px solid #E85D04; border-radius: 8px; overflow: hidden; }
.terms-document-section .terms-code-header { background: #FFF1E6; padding: 8px 14px; font-size: 0.75rem; font-family: 'JetBrains Mono', monospace; font-weight: 600; color: #1A1B25; }
.terms-document-section .terms-code-body { padding: 12px 14px; font-family: 'JetBrains Mono', monospace; font-size: 0.8125rem; color: #1A1B25; }
.terms-document-section .terms-feature-list { list-style: none; padding-left: 0; margin-bottom: 0; }
.terms-document-section .terms-feature-item { display: flex; align-items: flex-start; font-size: 0.9375rem; line-height: 1.55; color: #5F6575; margin-bottom: 8px; }
.terms-document-section .terms-subcard { background: #FFFBF8; border: 1px solid #F6E8DF; border-radius: 12px; padding: 20px; transition: border-color 0.2s ease; }
.terms-document-section .terms-subcard:hover { border-color: #FED7AA; }
.terms-document-section .terms-subcard-title { font-size: 1rem; font-weight: 700; color: #1A1B25; }
.terms-document-section .terms-subcard-text { font-size: 0.875rem; line-height: 1.5; color: #5F6575; }
.terms-document-section .terms-callout-box { background: linear-gradient(135deg, #FFF4EC 0%, #FFE7D6 100%); border: 1px solid #FED7AA; border-radius: 12px; padding: 20px; }
.terms-document-section .terms-callout-title { font-size: 1rem; font-weight: 700; color: #1A1B25; }
.terms-document-section .terms-callout-text { font-size: 0.875rem; line-height: 1.55; color: #5F6575; }
.terms-document-section .terms-inline-link { color: #E85D04; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.terms-document-section .terms-inline-link:hover { color: #D05202; text-decoration: none; }
.terms-document-section .terms-action-card { background: #FFFBF8; border: 1px solid #FED7AA; border-radius: 14px; }
.terms-document-section .terms-action-icon-wrap { width: 44px; height: 44px; border-radius: 10px; background: #FFE7D6; display: flex; align-items: center; justify-content: center; }
.terms-document-section .terms-action-title { font-size: 1.0625rem; font-weight: 700; color: #1A1B25; }
.terms-document-section .terms-action-desc { font-size: 0.875rem; color: #5F6575; }
.terms-document-section .btn-terms-action { background-color: #E85D04; color: #FFFFFF; font-weight: 600; font-size: 0.9375rem; padding: 10px 20px; border-radius: 8px; border: 1px solid #E85D04; transition: all 0.2s ease; }
.terms-document-section .btn-terms-action:hover { background-color: #D05202; border-color: #D05202; color: #FFFFFF; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232, 93, 4, 0.2); }

/* ===== PAGE: disclaimer ===== */
.disclaimer-page-section {
  background-color: #FFFBF8;
  min-height: 80vh;
  color: #1A1B25;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.disclaimer-page-section .disclaimer-badge {
  display: inline-block;
  background-color: #FFF4EC;
  border: 1px solid #FED7AA;
  color: #E85D04;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.disclaimer-page-section .disclaimer-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #8E95A5;
}

.disclaimer-page-section .disclaimer-main-title {
  color: #1A1B25;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.disclaimer-page-section .disclaimer-lead-text {
  color: #5F6575;
  font-size: 1.0625rem;
  line-height: 1.6;
}

.disclaimer-page-section .disclaimer-alert-card {
  background: #FFF4EC;
  border: 1px solid #FED7AA;
  border-left: 4px solid #E85D04;
  border-radius: 12px;
}

.disclaimer-page-section .disclaimer-alert-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #FFE7D6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E85D04;
  font-size: 1.5rem;
}

.disclaimer-page-section .disclaimer-alert-title {
  color: #1A1B25;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
}

.disclaimer-page-section .disclaimer-alert-description {
  color: #5F6575;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.disclaimer-page-section .disclaimer-content-block {
  background-color: #FFFFFF;
  border: 1px solid #F6E8DF;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(232, 93, 4, 0.04);
}

.disclaimer-page-section .disclaimer-section-heading {
  color: #1A1B25;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.disclaimer-page-section .disclaimer-paragraph {
  color: #5F6575;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.disclaimer-page-section .disclaimer-rule-card {
  background-color: #FFFBF8;
  border: 1px solid #EED8CB;
  border-radius: 10px;
}

.disclaimer-page-section .disclaimer-card-title {
  color: #1A1B25;
  font-size: 0.9375rem;
  font-weight: 600;
}

.disclaimer-page-section .disclaimer-card-text {
  color: #5F6575;
  font-size: 0.875rem;
  line-height: 1.5;
}

.disclaimer-page-section .disclaimer-list {
  color: #5F6575;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.disclaimer-page-section .disclaimer-list li::marker {
  color: #E85D04;
}

.disclaimer-page-section .disclaimer-contact-box {
  background-color: #FFF8F2;
  border: 1px solid #FED7AA;
  border-radius: 10px;
}

.disclaimer-page-section .disclaimer-contact-label {
  color: #1A1B25;
  font-size: 0.9375rem;
  font-weight: 600;
}

.disclaimer-page-section .disclaimer-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #E85D04;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.disclaimer-page-section .disclaimer-contact-btn:hover {
  background-color: #D05202;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 93, 4, 0.2);
}

.disclaimer-page-section .disclaimer-footer-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  color: #8E95A5;
}

@media (max-width: 767.98px) {
  .disclaimer-page-section .disclaimer-main-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .disclaimer-page-section .disclaimer-alert-title,
  .disclaimer-page-section .disclaimer-section-heading {
    font-size: 1rem;
    hyphens: auto;
  }
  .disclaimer-page-section .disclaimer-card-title {
    font-size: 0.875rem;
  }
  .disclaimer-page-section .disclaimer-lead-text {
    font-size: 0.9375rem;
  }
  .disclaimer-page-section .disclaimer-content-block {
    padding: 1.25rem;
  }
}

.comment-item {
    background-color: #FFFFFF;
    border-color: #F6E8DF !important;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.comment-item:hover {
    border-color: #FED7AA !important;
    box-shadow: 0 12px 32px rgba(232, 93, 4, 0.08), 0 4px 8px rgba(30, 41, 59, 0.04) !important;
}

.comment-avatar {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    background: linear-gradient(135deg, #FFF4EC 0%, #FFE7D6 100%);
    color: #E85D04;
    font-size: 0.9375rem;
    border: 1.5px solid #FED7AA;
    user-select: none;
}

.comment-author-name {
    color: #1A1B25;
    font-size: 1.0625rem;
}

.comment-role-badge {
    background-color: #FFF4EC;
    color: #E85D04;
    border: 1px solid #FED7AA;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
}

.comment-timestamp {
    font-size: 0.8125rem;
    color: #8E95A5 !important;
}

.comment-rating i {
    font-size: 1rem;
    color: #F77F00;
}

.comment-rating-score {
    font-size: 0.875rem;
    color: #1A1B25;
}

.comment-text {
    color: #5F6575;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.comment-code-snippet {
    background-color: #FFFBF8;
    border: 1px solid #EED8CB;
    border-left: 3px solid #E85D04;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
}

.comment-code-header {
    color: #8E95A5;
    font-size: 0.75rem;
}

.comment-code-label {
    font-weight: 600;
    color: #5F6575;
}

.comment-code-status {
    color: #16A34A;
    font-weight: 600;
}

.comment-code-body {
    color: #E85D04;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}

.comment-footer {
    border-color: #F6E8DF !important;
}

.comment-action-btn {
    color: #5F6575;
    border-color: transparent;
    background: transparent;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.comment-action-btn:hover {
    background-color: #FFF4EC;
    color: #E85D04;
}

.comment-verified-tag {
    font-size: 0.8125rem;
    color: #5F6575;
    font-weight: 500;
}

.reply-thread {
    border-left: 2px dashed #FED7AA;
}

.reply-connector-line {
    width: 16px;
    height: 2px;
    background-color: #FED7AA;
    top: 28px;
    left: 0;
}

.reply-item {
    background-color: #FFFBF8 !important;
    border-color: #F6E8DF !important;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.reply-item:hover {
    border-color: #FED7AA !important;
    background-color: #FFFFFF !important;
}

.reply-avatar {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    background: linear-gradient(135deg, #FFE7D6 0%, #FED7AA 100%);
    color: #B74601;
    font-size: 0.8125rem;
    border: 1.5px solid #FDBA74;
    user-select: none;
}

.reply-author-name {
    color: #1A1B25;
    font-size: 0.9375rem;
}

.reply-team-badge {
    background-color: #FFF1E6;
    color: #B74601;
    border: 1px solid #FED7AA;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 2px 8px;
}

.reply-timestamp {
    font-size: 0.75rem;
    color: #8E95A5 !important;
}

.reply-text {
    color: #5F6575;
    font-size: 0.875rem;
    line-height: 1.55;
}

.reply-mention {
    color: #E85D04;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
}

.reply-footer {
    border-color: #F6E8DF !important;
}

.reply-action-btn {
    color: #5F6575;
    border-color: transparent;
    background: transparent;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.reply-action-btn:hover {
    background-color: #FFF4EC;
    color: #E85D04;
}


/* ===== PAGE TEMPLATE: recovery-mistakes ===== */
.site-header-block {
    background-color: #FFFFFF;
    border-bottom: 1px solid #F6E8DF;
    box-shadow: 0 2px 10px rgba(232, 93, 4, 0.05);
    z-index: 1030;
}

.site-header-topbar {
    background-color: #FFFBF8;
    border-bottom: 1px solid #F6E8DF;
    font-size: 0.8125rem;
}

.site-header-topbar .header-meta-tag {
    color: #E85D04;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.site-header-block .header-contact-link {
    color: #5F6575;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
}

.site-header-block .header-contact-link:hover {
    color: #E85D04;
}

.site-header-block .header-contact-link i {
    color: #E85D04;
    font-size: 1.1rem;
}

.site-header-block .site-navbar {
    background-color: #FFFFFF;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.site-header-block .header-brand-logo {
    max-width: 44px;
    max-height: 44px;
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.site-header-block .header-brand-name {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.2;
    color: #1A1B25;
    letter-spacing: -0.02em;
}

.site-header-block .header-brand-tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    color: #8E95A5;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
}

.site-header-block .header-brand-center {
    text-decoration: none;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header-block .header-brand-center:hover {
    transform: translateY(-1px);
}

.site-header-block .header-nav-item {
    color: #1A1B25;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header-block .header-nav-item:hover,
.site-header-block .header-nav-item.active {
    color: #E85D04;
    background-color: #FFF4EC;
}

.site-header-block .navbar-toggler {
    border: 1px solid #EED8CB;
    background-color: #FFFBF8;
    padding: 0.45rem 0.65rem;
    border-radius: 8px;
}

.site-header-block .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.2);
    outline: none;
}

.site-header-block .header-cta-btn {
    background-color: #E85D04;
    color: #FFFFFF;
    border: 1px solid #E85D04;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header-block .header-cta-btn:hover {
    background-color: #D05202;
    color: #FFFFFF;
    border-color: #D05202;
}

.site-header-block .header-mobile-contacts {
    border-color: #F6E8DF !important;
}

@media(max-width:991.98px) {
    .site-header-block .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1rem 0;
        border-top: 1px solid #F6E8DF;
        margin-top: 0.75rem;
    }

    .site-header-block .header-nav-item {
        padding: 0.65rem 0.75rem;
        font-size: 0.875rem;
        border-radius: 6px;
    }
}

.hero-section {
    background: radial-gradient(ellipse at 85% 15%, #FFF4EC 0%, #FFFFFF 65%);
    border-bottom: 1px solid #F6E8DF;
}

.hero-badge {
    background-color: #FFF4EC;
    border: 1px solid #FED7AA;
    color: #E85D04;
    border-radius: 9999px;
    padding: 6px 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    font-weight: 600;
}

.hero-title {
    color: #1A1B25;
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.hero-lead {
    color: #5F6575;
    font-size: 1.125rem;
    line-height: 1.6;
}

.hero-btn-primary {
    background-color: #E85D04;
    color: #FFFFFF;
    border: 1px solid #E85D04;
    border-radius: 10px;
    font-weight: 600;
    padding: 12px 26px;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(232, 93, 4, 0.2);
}

.hero-btn-primary:hover {
    background-color: #D05202;
    border-color: #D05202;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(232, 93, 4, 0.3);
}

.hero-btn-secondary {
    background-color: #FFF4EC;
    color: #E85D04;
    border: 1px solid #FED7AA;
    border-radius: 10px;
    font-weight: 600;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn-secondary:hover {
    background-color: #FFE7D6;
    border-color: #FDBA74;
    color: #D05202;
    transform: translateY(-2px);
}

.pillar-card {
    background: #FFFFFF;
    border: 1px solid #F6E8DF;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.pillar-card:hover {
    border-color: #E85D04;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 93, 4, 0.08);
}

.pillar-icon {
    color: #E85D04;
    font-size: 1.5rem;
    display: block;
}

.pillar-label {
    color: #1A1B25;
    font-size: 0.8125rem;
    font-weight: 600;
}

.hero-image-card {
    background: #FFFFFF;
    border: 1px solid #F6E8DF;
    border-radius: 16px;
    overflow: hidden;
}

.hero-image-frame {
    height: 250px;
    background-color: #FFFBF8;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay {
    background: linear-gradient(180deg, rgba(26, 27, 37, 0.1) 0%, rgba(26, 27, 37, 0.45) 100%);
}

.hero-overlay-tag {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border: 1px solid #FED7AA;
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: #1A1B25;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #16A34A;
    vertical-align: middle;
}

.hero-telemetry-box {
    background: #FFFBF8;
}

.telemetry-label {
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    color: #8E95A5;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.telemetry-code {
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    color: #E85D04;
    font-weight: 700;
}

.js-telemetry-item {
    background: #FFFFFF;
    border: 1px solid #EED8CB;
    border-left: 3px solid #E85D04;
    transition: all 0.2s ease;
}

.telemetry-title {
    color: #1A1B25;
    font-size: 0.9375rem;
}

.badge-crit {
    font-size: 0.6875rem;
    font-family: 'JetBrains Mono', monospace;
    background: #FFF4EC;
    color: #DC2626;
    border: 1px solid #FCA5A5;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.telemetry-desc {
    font-size: 0.8125rem;
    color: #5F6575;
    line-height: 1.45;
}

.border-top-subtle {
    border-top: 1px solid #F6E8DF;
}

.telemetry-meta {
    font-size: 0.75rem;
    color: #5F6575;
}

.telemetry-link {
    font-size: 0.8125rem;
    color: #E85D04;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.telemetry-link:hover {
    color: #D05202;
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.125rem;
    }

    .hero-image-frame {
        height: 220px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .hero-lead {
        font-size: 0.9375rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .hero-image-frame {
        height: 180px;
    }
}

.detail-main-layout {
    background-color: #FFFFFF;
}

.detail-article-card {
    background-color: #FFFFFF;
    border: 1px solid #F6E8DF;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(232, 93, 4, 0.04);
}

.author-avatar-badge {
    width: 44px;
    height: 44px;
    background-color: #FFE7D6;
    font-size: 1.4rem;
    border: 1px solid #FED7AA;
}

.text-muted-custom {
    color: #8E95A5;
}

.author-name-text,
.meta-val-text {
    color: #1A1B25;
    font-size: 0.9375rem;
}

.detail-section-title {
    color: #1A1B25;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.sub-section-title {
    color: #1A1B25;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
}

.lead-detail-text {
    color: #5F6575;
    font-size: 1.0625rem;
    line-height: 1.65;
}

.technical-breakout-box {
    background-color: #FFFBF8;
    border: 1px solid #EED8CB;
    border-left: 4px solid #E85D04;
}

.breakout-title {
    color: #1A1B25;
    font-size: 1.0625rem;
    font-weight: 700;
}

.code-snippet-terminal {
    background-color: #1A1B25;
    color: #FFE7D6;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    line-height: 1.5;
    overflow-x: auto;
}

.custom-bullet-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.custom-bullet-list li {
    position: relative;
    padding-left: 24px;
    color: #5F6575;
    line-height: 1.55;
}

.custom-bullet-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #E85D04;
}

.custom-numbered-list {
    padding-left: 20px;
    color: #5F6575;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.custom-numbered-list li {
    line-height: 1.55;
}

.interactive-tabs-container {
    background-color: #FFFBF8;
    border: 1px solid #F6E8DF;
}

.tabs-block-heading {
    color: #1A1B25;
    font-size: 1.125rem;
    font-weight: 700;
}

.tab-switcher-btn {
    background-color: #FFFFFF;
    color: #5F6575;
    border: 1px solid #EED8CB;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 16px;
    transition: all 0.2s ease;
}

.tab-switcher-btn:hover {
    background-color: #FFF4EC;
    color: #E85D04;
    border-color: #FED7AA;
}

.tab-switcher-btn.active {
    background-color: #E85D04;
    color: #FFFFFF;
    border-color: #E85D04;
}

.pane-heading {
    color: #1A1B25;
    font-size: 1rem;
    font-weight: 700;
}

.accordion-block-heading {
    color: #1A1B25;
    font-size: 1.25rem;
    font-weight: 700;
}

.custom-faq-accordion .accordion-item {
    border-color: #F6E8DF;
}

.custom-faq-accordion .accordion-button {
    background-color: #FFFBF8;
    color: #1A1B25;
    font-weight: 600;
    font-size: 0.9375rem;
    box-shadow: none;
    padding: 14px 18px;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
    color: #E85D04;
    background-color: #FFF4EC;
}

.custom-faq-accordion .accordion-button::after {
    filter: sepia(100%) hue-rotate(330deg);
}

.custom-faq-accordion .accordion-body {
    color: #5F6575;
    font-size: 0.9375rem;
    line-height: 1.6;
    background-color: #FFFFFF;
}

.comments-main-title {
    color: #1A1B25;
    font-size: 1.25rem;
    font-weight: 700;
}

.comment-count-badge {
    background-color: #FFF4EC;
    color: #E85D04;
    border: 1px solid #FED7AA;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    padding: 6px 10px;
}

.comment-item,
.reply-item {
    border-color: #F6E8DF !important;
}

.comment-avatar,
.reply-avatar {
    width: 44px;
    height: 44px;
    background-color: #FFE7D6;
    color: #E85D04;
    font-size: 0.9375rem;
    border: 1px solid #FED7AA;
}

.comment-author-name,
.reply-author-name {
    color: #1A1B25;
    font-size: 0.9375rem;
}

.comment-role-badge,
.reply-team-badge {
    background-color: #FFF4EC;
    color: #E85D04;
    font-size: 0.6875rem;
    font-family: 'JetBrains Mono', monospace;
    border: 1px solid #FED7AA;
}

.comment-timestamp,
.reply-timestamp {
    font-size: 0.75rem;
}

.comment-rating-score {
    color: #1A1B25;
    font-size: 0.8125rem;
}

.comment-text,
.reply-text {
    color: #5F6575;
    font-size: 0.9375rem;
    line-height: 1.55;
}

.comment-code-snippet {
    background-color: #FFFBF8;
    border: 1px solid #EED8CB;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
}

.comment-code-label {
    color: #8E95A5;
    font-size: 0.75rem;
}

.comment-code-status {
    color: #16A34A;
    font-weight: 700;
    font-size: 0.75rem;
}

.comment-code-body {
    color: #1A1B25;
}

.comment-footer,
.reply-footer {
    border-color: #F6E8DF !important;
}

.comment-action-btn,
.reply-action-btn {
    color: #5F6575;
    background-color: #FFFBF8;
    border: 1px solid #EED8CB;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.comment-action-btn:hover,
.reply-action-btn:hover,
.comment-action-btn.active,
.reply-action-btn.active {
    color: #E85D04;
    background-color: #FFF4EC;
    border-color: #FED7AA;
}

.comment-verified-tag {
    color: #5F6575;
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
}

.reply-thread {
    border-left: 2px solid #FED7AA;
}

.reply-mention {
    color: #E85D04;
}

.form-title {
    color: #1A1B25;
    font-size: 1.125rem;
    font-weight: 700;
}

.custom-input,
.custom-textarea {
    background-color: #FFFBF8;
    border: 1px solid #EED8CB;
    color: #1A1B25;
    border-radius: 8px;
    font-size: 0.9375rem;
}

.custom-input:focus,
.custom-textarea:focus {
    background-color: #FFFFFF;
    border-color: #E85D04;
    box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.15);
    color: #1A1B25;
}

.custom-input::placeholder,
.custom-textarea::placeholder {
    color: #8E95A5;
    opacity: 1;
}

.form-submit-btn {
    background-color: #E85D04;
    color: #FFFFFF;
    border: 1px solid #E85D04;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.form-submit-btn:hover {
    background-color: #D05202;
    border-color: #D05202;
    color: #FFFFFF;
}

.sidebar-card {
    border-color: #F6E8DF !important;
}

.sidebar-heading {
    color: #1A1B25;
    font-size: 1.0625rem;
    font-weight: 700;
}

.recent-post-link {
    color: #1A1B25;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.recent-post-link:hover {
    color: #E85D04;
}

.sidebar-action-btn {
    background-color: #E85D04;
    border-color: #E85D04;
    color: #FFFFFF;
    border-radius: 8px;
    font-weight: 600;
    padding: 10px;
    font-size: 0.875rem;
}

.sidebar-action-btn:hover {
    background-color: #D05202;
    border-color: #D05202;
    color: #FFFFFF;
}

.sidebar-sub-btn {
    background-color: #FFF4EC;
    border-color: #FED7AA;
    color: #E85D04;
    border-radius: 8px;
    font-weight: 600;
    padding: 10px;
    font-size: 0.875rem;
}

.sidebar-sub-btn:hover {
    background-color: #FFE7D6;
    border-color: #FDBA74;
    color: #D05202;
}

.rr-site-footer {
    background-color: #FFFBF8;
    border-top: 1px solid #F6E8DF;
    padding-top: 64px;
    padding-bottom: 36px;
    color: #5F6575;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
}

.rr-site-footer .rr-footer-logo {
    max-width: 44px;
    max-height: 44px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.rr-site-footer .rr-brand-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1A1B25;
    letter-spacing: -0.02em;
}

.rr-site-footer .rr-brand-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #5F6575;
    max-width: 360px;
}

.rr-site-footer .rr-telemetry-badge {
    background-color: #FFF4EC;
    border: 1px solid #FED7AA;
    border-radius: 6px;
    padding: 6px 12px;
}

.rr-site-footer .rr-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #16A34A;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.rr-site-footer .rr-telemetry-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: #E85D04;
    letter-spacing: 0.02em;
}

.rr-site-footer .rr-footer-heading {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1A1B25;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}

.rr-site-footer .rr-nav-link {
    color: #5F6575;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 3px 0;
}

.rr-site-footer .rr-nav-link i {
    font-size: 1.1rem;
    color: #8E95A5;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.rr-site-footer .rr-nav-link:hover {
    color: #E85D04;
    transform: translateX(4px);
}

.rr-site-footer .rr-nav-link:hover i {
    color: #E85D04;
}

.rr-site-footer .rr-contact-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background-color: #FFE7D6;
    color: #E85D04;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid #FED7AA;
}

.rr-site-footer .rr-contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #8E95A5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.rr-site-footer .rr-contact-value {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1A1B25;
    line-height: 1.4;
}

.rr-site-footer .rr-contact-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1A1B25;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.rr-site-footer .rr-contact-link:hover {
    color: #E85D04;
    text-decoration: underline;
}

.rr-site-footer .rr-footer-bottom {
    border-top: 1px solid #F6E8DF;
}

.rr-site-footer .rr-copyright-text {
    font-size: 0.875rem;
    color: #8E95A5;
}

.rr-site-footer .rr-legal-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #5F6575;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.rr-site-footer .rr-legal-link:hover {
    color: #E85D04;
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .rr-site-footer {
        padding-top: 48px;
        padding-bottom: 28px;
    }

    .rr-site-footer .rr-brand-title {
        font-size: 1.125rem;
    }

    .rr-site-footer .rr-footer-heading {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .rr-site-footer .rr-brand-desc {
        font-size: 0.875rem;
    }

    .rr-site-footer .rr-legal-nav {
        flex-direction: row;
        gap: 12px;
    }

    .detail-section-title {
        font-size: 1rem;
        hyphens: auto;
    }

    .sub-section-title,
    .accordion-block-heading,
    .tabs-block-heading,
    .sidebar-heading,
    .comments-main-title {
        font-size: 0.875rem;
        hyphens: auto;
    }
}

/* ===== PAGE TEMPLATE: cases ===== */
.site-header-block {
    background-color: #FFFFFF;
    border-bottom: 1px solid #F6E8DF;
    box-shadow: 0 2px 10px rgba(232, 93, 4, 0.05);
    z-index: 1030;
}

.site-header-topbar {
    background-color: #FFFBF8;
    border-bottom: 1px solid #F6E8DF;
    font-size: 0.8125rem;
}

.site-header-topbar .header-meta-tag {
    color: #E85D04;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.site-header-block .header-contact-link {
    color: #5F6575;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
}

.site-header-block .header-contact-link:hover {
    color: #E85D04;
}

.site-header-block .header-contact-link i {
    color: #E85D04;
    font-size: 1.1rem;
}

.site-header-block .site-navbar {
    background-color: #FFFFFF;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.site-header-block .header-brand-logo {
    max-width: 44px;
    max-height: 44px;
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.site-header-block .header-brand-name {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.2;
    color: #1A1B25;
    letter-spacing: -0.02em;
}

.site-header-block .header-brand-tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    color: #8E95A5;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
}

.site-header-block .header-brand-center {
    text-decoration: none;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header-block .header-brand-center:hover {
    transform: translateY(-1px);
}

.site-header-block .header-nav-item {
    color: #1A1B25;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header-block .header-nav-item:hover,
.site-header-block .header-nav-item.active {
    color: #E85D04;
    background-color: #FFF4EC;
}

.site-header-block .navbar-toggler {
    border: 1px solid #EED8CB;
    background-color: #FFFBF8;
    padding: 0.45rem 0.65rem;
    border-radius: 8px;
}

.site-header-block .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.2);
    outline: none;
}

.site-header-block .header-cta-btn {
    background-color: #E85D04;
    color: #FFFFFF;
    border: 1px solid #E85D04;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header-block .header-cta-btn:hover {
    background-color: #D05202;
    color: #FFFFFF;
    border-color: #D05202;
}

.site-header-block .header-mobile-contacts {
    border-color: #F6E8DF !important;
}

@media(max-width:991.98px) {
    .site-header-block .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1rem 0;
        border-top: 1px solid #F6E8DF;
        margin-top: 0.75rem;
    }

    .site-header-block .header-nav-item {
        padding: 0.65rem 0.75rem;
        font-size: 0.875rem;
        border-radius: 6px;
    }
}

.hero-section {
    background: radial-gradient(ellipse at 85% 15%, #FFF4EC 0%, #FFFFFF 65%);
    border-bottom: 1px solid #F6E8DF;
}

.hero-badge {
    background-color: #FFF4EC;
    border: 1px solid #FED7AA;
    color: #E85D04;
    border-radius: 9999px;
    padding: 6px 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    font-weight: 600;
}

.hero-title {
    color: #1A1B25;
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.hero-lead {
    color: #5F6575;
    font-size: 1.125rem;
    line-height: 1.6;
}

.case-detail-template-page .case-breadcrumb-link {
    color: #5F6575;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.case-detail-template-page .case-breadcrumb-link:hover {
    color: #E85D04;
}

.case-detail-template-page .case-meta-strip {
    background-color: #FFFBF8;
    border: 1px solid #F6E8DF;
}

.case-detail-template-page .meta-strip-label {
    font-size: 0.75rem;
    color: #8E95A5;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.case-detail-template-page .meta-strip-value {
    font-size: 0.9375rem;
    color: #1A1B25;
    font-weight: 700;
}

.hero-image-card {
    background: #FFFFFF;
    border: 1px solid #F6E8DF;
    border-radius: 16px;
    overflow: hidden;
}

.hero-image-frame {
    height: 250px;
    background-color: #FFFBF8;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay {
    background: linear-gradient(180deg, rgba(26, 27, 37, 0.1) 0%, rgba(26, 27, 37, 0.45) 100%);
}

.hero-overlay-tag {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border: 1px solid #FED7AA;
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: #1A1B25;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #16A34A;
    vertical-align: middle;
}

.hero-telemetry-box {
    background: #FFFBF8;
}

.telemetry-label {
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    color: #8E95A5;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.telemetry-code {
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    color: #E85D04;
    font-weight: 700;
}

.telemetry-desc {
    font-size: 0.8125rem;
    color: #5F6575;
    line-height: 1.45;
}

.case-detail-template-page .case-heading-lvl2 {
    color: #1A1B25;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.case-detail-template-page .case-heading-lvl3 {
    color: #1A1B25;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.015em;
}

.case-detail-template-page .case-paragraph {
    color: #5F6575;
    font-size: 1rem;
    line-height: 1.65;
}

.case-detail-template-page .case-callout-box {
    background-color: #FFF4EC;
    border-color: #E85D04 !important;
}

.case-detail-template-page .case-tab-controls .nav-link {
    color: #5F6575;
    background-color: #FFFBF8;
    border: 1px solid #EED8CB;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 16px;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-detail-template-page .case-tab-controls .nav-link:hover {
    color: #E85D04;
    border-color: #FED7AA;
    background-color: #FFF4EC;
}

.case-detail-template-page .case-tab-controls .nav-link.active {
    color: #FFFFFF;
    background-color: #E85D04;
    border-color: #E85D04;
}

.case-detail-template-page .case-styled-list {
    list-style-type: none;
    padding-left: 0;
}

.case-detail-template-page .case-styled-list li {
    position: relative;
    padding-left: 24px;
    color: #5F6575;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.case-detail-template-page .case-styled-list li::before {
    content: "â†’";
    position: absolute;
    left: 0;
    top: 0;
    color: #E85D04;
    font-weight: 700;
}

.case-detail-template-page .case-code-block {
    background-color: #1A1B25;
    color: #FED7AA;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    overflow-x: auto;
}

.case-detail-template-page .accordion-button {
    color: #1A1B25;
    background-color: #FFFFFF;
    padding: 18px 20px;
    font-size: 1rem;
}

.case-detail-template-page .accordion-button:not(.collapsed) {
    color: #E85D04;
    background-color: #FFF4EC;
    box-shadow: none;
}

.case-detail-template-page .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.2);
    border-color: #FED7AA;
}

.comment-item {
    background-color: #FFFFFF;
    border: 1px solid #F6E8DF !important;
}

.comment-avatar {
    width: 44px;
    height: 44px;
    background-color: #FFE7D6;
    color: #E85D04;
    font-size: 0.9375rem;
}

.comment-author-name {
    color: #1A1B25;
    font-size: 0.9375rem;
}

.comment-role-badge {
    background-color: #FFF4EC;
    color: #E85D04;
    border: 1px solid #FED7AA;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
}

.comment-timestamp {
    font-size: 0.8125rem;
}

.comment-text {
    color: #5F6575;
    font-size: 0.9375rem;
    line-height: 1.55;
}

.comment-code-snippet {
    background-color: #FFFBF8;
    border: 1px solid #EED8CB;
}

.comment-code-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #8E95A5;
}

.comment-code-status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #16A34A;
    font-weight: 700;
}

.comment-code-body {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    color: #E85D04;
}

.comment-action-btn {
    color: #5F6575;
    background-color: #FFFBF8;
    border: 1px solid #EED8CB;
    font-weight: 600;
    font-size: 0.8125rem;
    padding: 4px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.comment-action-btn:hover,
.comment-action-btn.active {
    color: #E85D04;
    background-color: #FFF4EC;
    border-color: #FED7AA;
}

.comment-verified-tag {
    font-size: 0.8125rem;
    color: #5F6575;
}

.reply-thread .reply-connector-line {
    top: 0;
    bottom: 0;
    left: 8px;
    width: 2px;
    background-color: #FED7AA;
}

.reply-item {
    background-color: #FFFBF8;
    border: 1px solid #F6E8DF !important;
}

.reply-avatar {
    width: 38px;
    height: 38px;
    background-color: #FFE7D6;
    color: #E85D04;
    font-size: 0.875rem;
}

.reply-author-name {
    color: #1A1B25;
    font-size: 0.875rem;
}

.reply-team-badge {
    background-color: #FFF4EC;
    color: #E85D04;
    border: 1px solid #FED7AA;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
}

.reply-timestamp {
    font-size: 0.75rem;
}

.reply-text {
    color: #5F6575;
    font-size: 0.875rem;
    line-height: 1.5;
}

.reply-mention {
    color: #E85D04;
}

.reply-action-btn {
    color: #5F6575;
    background-color: #FFFFFF;
    border: 1px solid #EED8CB;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.reply-action-btn:hover,
.reply-action-btn.active {
    color: #E85D04;
    background-color: #FFF4EC;
    border-color: #FED7AA;
}

.case-detail-template-page .case-form-input {
    background-color: #FFFFFF;
    border: 1px solid #EED8CB;
    color: #1A1B25;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.9375rem;
}

.case-detail-template-page .case-form-input::placeholder {
    color: #8E95A5;
    opacity: 1;
}

.case-detail-template-page .case-form-input:focus {
    border-color: #E85D04;
    box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.2);
    outline: none;
}

.case-detail-template-page .case-btn-submit {
    background-color: #E85D04;
    color: #FFFFFF;
    border: 1px solid #E85D04;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 24px;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-detail-template-page .case-btn-submit:hover {
    background-color: #D05202;
    border-color: #D05202;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.case-detail-template-page .case-btn-sidebar {
    background-color: #FFF4EC;
    color: #E85D04;
    border: 1px solid #FED7AA;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-detail-template-page .case-btn-sidebar:hover {
    background-color: #FFE7D6;
    border-color: #FDBA74;
    color: #D05202;
}

.case-detail-template-page .recent-post-link {
    transition: transform 0.2s ease;
}

.case-detail-template-page .recent-post-link:hover {
    transform: translateX(4px);
}

.case-detail-template-page .recent-post-link:hover span {
    color: #E85D04 !important;
}

.rr-site-footer {
    background-color: #FFFBF8;
    border-top: 1px solid #F6E8DF;
    padding-top: 64px;
    padding-bottom: 36px;
    color: #5F6575;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
}

.rr-site-footer .rr-footer-logo {
    max-width: 44px;
    max-height: 44px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.rr-site-footer .rr-brand-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1A1B25;
    letter-spacing: -0.02em;
}

.rr-site-footer .rr-brand-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #5F6575;
    max-width: 360px;
}

.rr-site-footer .rr-telemetry-badge {
    background-color: #FFF4EC;
    border: 1px solid #FED7AA;
    border-radius: 6px;
    padding: 6px 12px;
}

.rr-site-footer .rr-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #16A34A;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.rr-site-footer .rr-telemetry-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: #E85D04;
    letter-spacing: 0.02em;
}

.rr-site-footer .rr-footer-heading {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1A1B25;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}

.rr-site-footer .rr-nav-link {
    color: #5F6575;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 3px 0;
}

.rr-site-footer .rr-nav-link i {
    font-size: 1.1rem;
    color: #8E95A5;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.rr-site-footer .rr-nav-link:hover {
    color: #E85D04;
    transform: translateX(4px);
}

.rr-site-footer .rr-nav-link:hover i {
    color: #E85D04;
}

.rr-site-footer .rr-contact-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background-color: #FFE7D6;
    color: #E85D04;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid #FED7AA;
}

.rr-site-footer .rr-contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #8E95A5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.rr-site-footer .rr-contact-value {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1A1B25;
    line-height: 1.4;
}

.rr-site-footer .rr-contact-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1A1B25;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.rr-site-footer .rr-contact-link:hover {
    color: #E85D04;
    text-decoration: underline;
}

.rr-site-footer .rr-footer-bottom {
    border-top: 1px solid #F6E8DF;
}

.rr-site-footer .rr-copyright-text {
    font-size: 0.875rem;
    color: #8E95A5;
}

.rr-site-footer .rr-legal-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #5F6575;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.rr-site-footer .rr-legal-link:hover {
    color: #E85D04;
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.125rem;
    }

    .hero-image-frame {
        height: 220px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .hero-lead {
        font-size: 0.9375rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .hero-image-frame {
        height: 180px;
    }

    .case-detail-template-page .case-heading-lvl2 {
        font-size: 1rem;
        hyphens: auto;
    }

    .case-detail-template-page .case-heading-lvl3 {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .rr-site-footer {
        padding-top: 48px;
        padding-bottom: 28px;
    }

    .rr-site-footer .rr-brand-title {
        font-size: 1.125rem;
    }

    .rr-site-footer .rr-footer-heading {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .rr-site-footer .rr-brand-desc {
        font-size: 0.875rem;
    }

    .rr-site-footer .rr-legal-nav {
        flex-direction: row;
        gap: 12px;
    }
}
/* ===== Macrium Reflect CTA Buttons ===== */
.brand-support-page .bsp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #E85D04;
    color: #E85D04;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 12px 24px;
    border-radius: 10px;
    background-color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.brand-support-page .bsp-cta-btn:hover {
    background-color: #FFF4EC;
    color: #D05202;
    border-color: #D05202;
    box-shadow: 0 4px 14px rgba(232, 93, 4, 0.18);
    transform: translateY(-1px);
}

.brand-support-page .bsp-cta-btn.active {
    background-color: #E85D04;
    color: #FFFFFF;
    border-color: #E85D04;
    box-shadow: 0 6px 18px rgba(232, 93, 4, 0.3);
}

.brand-support-page .bsp-cta-btn.active:hover {
    background-color: #D05202;
    color: #FFFFFF;
    border-color: #D05202;
}

/* ===== Responsive Fixes ===== */

/* 1. Read Case Study buttons in one line */
@media (max-width: 767.98px) {
    .scenarios-card__btn {
        white-space: nowrap;
        font-size: 0.8125rem;
        padding: 6px 12px;
    }
}

/* 2. Comments content within container, no overflow on mobile */
@media (max-width: 767.98px) {
    .comment-item,
    .reply-item {
        overflow: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .comment-content,
    .reply-content {
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
    }
    .comment-text,
    .reply-text {
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        padding-right: 0;
    }
    .comment-code-snippet {
        overflow-x: auto;
        max-width: 100%;
    }
    .comment-code-body {
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: pre-wrap;
    }
    .comment-footer {
        flex-wrap: wrap;
        gap: 8px !important;
    }
    .reply-footer {
        flex-wrap: wrap;
        gap: 8px !important;
    }
    .comment-avatar,
    .reply-avatar {
        flex-shrink: 0;
    }
}

/* 3. Governance & Process and Read Teardown in one line on mobile */
@media (max-width: 767.98px) {
    .cases-catalog-section .cases-card-footer {
        flex-wrap: nowrap;
        gap: 8px;
    }
    .cases-catalog-section .cases-classification-tag {
        white-space: nowrap;
        font-size: 0.75rem;
    }
    .cases-catalog-section .cases-read-btn {
        white-space: nowrap;
        font-size: 0.75rem;
        padding: 4px 10px;
        flex-shrink: 0;
    }
}



/* ===== Mobile navbar fixes ===== */
@media (max-width: 991.98px) {
    .site-header-block .site-navbar .container {
        flex-wrap: wrap;
        align-items: center;
    }
    .site-header-block .site-navbar .navbar-brand {
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
    }
    .site-header-block .site-navbar .navbar-brand .header-brand-name {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 0.9375rem;
        font-weight: 700;
    }
    .site-header-block .site-navbar .navbar-brand .header-brand-logo {
        width: 36px;
        height: 36px;
        max-width: 36px;
        max-height: 36px;
        flex-shrink: 0;
    }
    .site-header-block .site-navbar .navbar-toggler {
        flex: 0 0 auto;
        margin-left: auto;
    }
    .site-header-block .site-navbar .navbar-collapse {
        flex: 0 0 100%;
        position: relative;
        z-index: 1;
        background-color: #FFFFFF;
        width: 100%;
        margin-top: 0.75rem;
        padding: 1rem 0.75rem;
        border-radius: 0 0 12px 12px;
        border: 1px solid #F6E8DF;
        border-top: none;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    }
}
/* ===== Macrium CTA Section Before Footer ===== */
.bsp-cta-section {
    background-color: #FFFBF8;
    border-top: 1px solid #F6E8DF;
}

.bsp-cta-section .bsp-cta-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #E85D04;
    color: #E85D04;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 12px 24px;
    border-radius: 10px;
    background-color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.bsp-cta-section .bsp-cta-link-btn:hover {
    background-color: #E85D04;
    color: #FFFFFF;
    border-color: #E85D04;
    box-shadow: 0 6px 18px rgba(232, 93, 4, 0.3);
    transform: translateY(-2px);
}

/* ===== Fix disabled checkbox opacity in Macrium checklist ===== */
.brand-support-page .bsp-checklist .form-check-input:disabled {
    opacity: 1;
}

.brand-support-page .bsp-checklist .form-check-input:disabled ~ .form-check-label {
    opacity: 1;
    color: #1A1B25;
}

.brand-support-page .bsp-checklist .form-check-input:checked {
    background-color: #E85D04;
    border-color: #E85D04;
}

/* ===== Contact page: fix horizontal scroll on mobile ===== */
@media (max-width: 767.98px) {
    body {
        overflow-x: hidden;
    }
    .contact-block .contact-block__meta-tag code,
    .contact-block code,
    .hero-content code {
        word-break: break-all;
        overflow-wrap: break-word;
        white-space: normal;
        display: inline-block;
        max-width: 100%;
    }
    .contact-block__channel-value,
    .contact-block__channel-content,
    .contact-block__info-text,
    .contact-block__lead {
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    .contact-block__channel {
        min-width: 0;
        overflow: hidden;
    }
    .contact-block__channel-content {
        min-width: 0;
        flex: 1 1 auto;
        overflow: hidden;
    }
    .contact-block .font-monospace,
    .hero-content .font-monospace {
        white-space: normal;
        word-break: break-all;
        max-width: 100%;
    }
    .hero-content .d-inline-flex.align-items-center.gap-2.px-3.py-2.rounded.border.bg-white {
        max-width: 100%;
        overflow: hidden;
        word-break: break-all;
    }
}

/* ===== Global mobile text overflow fixes ===== */
@media (max-width: 767.98px) {
    /* Prevent monospace text from breaking char-by-char */
    .font-monospace,
    .text-muted.small.font-monospace,
    code,
    .bsp-code-label,
    .telemetry-code {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    /* Allow flex rows to wrap on mobile instead of stacking */
    .d-flex.align-items-center.justify-content-between {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    /* Badge + ID pattern: keep on one line, allow shrink */
    .d-flex.align-items-center.justify-content-between .badge {
        white-space: nowrap;
        flex-shrink: 1;
        font-size: 0.75rem;
    }

    .d-flex.align-items-center.justify-content-between .font-monospace {
        flex-shrink: 0;
        white-space: nowrap;
        font-size: 0.75rem;
    }

    /* Monospace blocks that need to wrap (longer text) */
    .bsp-log-box,
    .bsp-log-box .font-monospace,
    .comment-code-snippet,
    .comment-code-body {
        white-space: pre-wrap;
        word-break: break-all;
        overflow-wrap: break-word;
    }

    /* Cards body text */
    .card-body p,
    .card-body .text-secondary {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Meta pills and tags */
    .bsp-meta-pill,
    .cases-meta-pill,
    .category-mistakes-tag-code,
    .contact-block__meta-tag {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.75rem;
    }

    /* Telemetry boxes */
    .hero-telemetry-box .telemetry-label,
    .hero-telemetry-box .telemetry-code,
    .hero-telemetry-box .telemetry-desc {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* General: prevent any text from causing horizontal scroll */
    p, span, h1, h2, h3, h4, h5, h6, td, th, li, a {
        overflow-wrap: break-word;
    }

    /* Tables and code blocks: allow horizontal scroll within container only */
    table {
        display: block;
        overflow-x: auto;
        max-width: 100%;
    }

    /* Inline-flex badge containers in hero */
    .hero-content .d-inline-flex.align-items-center.gap-2.px-3.py-2.rounded.border.bg-white {
        max-width: 100%;
        overflow: hidden;
    }

    .hero-content .d-inline-flex.align-items-center.gap-2.px-3.py-2.rounded.border.bg-white .font-monospace {
        white-space: normal;
        word-break: break-all;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* ===== Fix Case Analysis buttons in one line on mobile ===== */
@media (max-width: 767.98px) {
    .category-mistakes-section .category-mistakes-card-footer {
        flex-wrap: nowrap;
        gap: 6px;
    }
    .category-mistakes-section .category-mistakes-subtag {
        white-space: nowrap;
        font-size: 0.6875rem;
        flex-shrink: 1;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .category-mistakes-section .category-mistakes-action-link {
        white-space: nowrap;
        font-size: 0.8125rem;
        flex-shrink: 0;
    }
}
