:root {
    --primary-dark-blue: #0B192C;
    --blue: #1E3E62;
    --light-blue: #008DDA;
    --white: #FFFFFF;
    --light-gray: #F5F7F8;
    --graphite: #333333;
    --accent-orange: #FF6500;
    --font-primary: 'Plus Jakarta Sans', sans-serif;
}

body.floating-panel-theme {
    font-family: var(--font-primary);
    background-color: var(--light-gray);
    color: var(--blue);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.text-muted {
    color: #5C6B73 !important;
}

.floating-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(30, 62, 98, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.floating-card {
    background-color: var(--white);
    border: 1px solid rgba(30, 62, 98, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px -10px rgba(11, 25, 44, 0.05), 0 1px 3px rgba(11, 25, 44, 0.02);
    padding: 2.5rem;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    margin-bottom: 2rem;
}

.floating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(11, 25, 44, 0.12), 0 1px 5px rgba(11, 25, 44, 0.03);
}

.floating-card-dark {
    background-color: var(--primary-dark-blue);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.floating-btn-primary {
    background-color: var(--accent-orange);
    color: var(--white);
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(255, 101, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.floating-btn-primary:hover {
    background-color: #e05900;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 101, 0, 0.4);
    color: var(--white);
}

.floating-btn-secondary {
    background-color: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.floating-btn-secondary:hover {
    background-color: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}

.status-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35em 0.75em;
    border-radius: 50px;
    display: inline-block;
}

.status-badge-unresolved {
    background-color: rgba(255, 101, 0, 0.1);
    color: var(--accent-orange);
}

.status-badge-resolved {
    background-color: rgba(0, 141, 218, 0.1);
    color: var(--light-blue);
}

.status-badge-contradictory {
    background-color: rgba(11, 25, 44, 0.1);
    color: var(--primary-dark-blue);
}

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

.timeline-panel::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: rgba(30, 62, 98, 0.1);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-blue);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px rgba(0, 141, 218, 0.2);
}

.checkpoint-card {
    border-left: 4px solid var(--light-blue);
}

/* ===== header ===== */
.drawingoutcome-header {
    background-color: #0B192C;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.drawingoutcome-header-nav {
    padding: 0.75rem 0;
}

.drawingoutcome-logo-img {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.drawingoutcome-brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.drawingoutcome-header .nav-link {
    color: #D1D5DB;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    transition: color 0.25s ease;
}

.drawingoutcome-header .nav-link:hover,
.drawingoutcome-header .nav-link:focus,
.drawingoutcome-header .nav-link.active {
    color: #FF6500;
}

.drawingoutcome-cta-btn {
    background-color: #FF6500;
    color: #0B192C;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    transition: all 0.25s ease;
    border: none;
}

.drawingoutcome-cta-btn:hover {
    background-color: #FF8533;
    color: #0B192C;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 101, 0, 0.3);
}

@media (max-width: 991.98px) {
    .drawingoutcome-header-nav .navbar-collapse {
        background-color: #0B192C;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        margin-top: 0.5rem;
        padding-bottom: 1rem;
    }

    .drawingoutcome-header .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .drawingoutcome-header .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

@media (min-width: 992px) {
    .drawingoutcome-header-nav .container-fluid {
        position: relative;
    }

    .drawingoutcome-logo-wrapper {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0 !important;
    }

    .drawingoutcome-logo-spacer {
        width: 180px;
    }

    .drawingoutcome-nav-left {
        flex: 1;
        justify-content: flex-end;
    }

    .drawingoutcome-nav-right {
        flex: 1;
        justify-content: flex-start;
    }
}

/* ===== hero ===== */
.drawing-hero {
    background-color: #0B192C;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    z-index: 1;
}

.drawing-hero .drawing-hero__bg-glow {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(0, 141, 218, 0.15) 0%, rgba(11, 25, 44, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

.drawing-hero .drawing-hero__grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: -1;
}

.drawing-hero .drawing-hero__image-wrapper {
    max-width: 480px;
    height: 520px;
    z-index: 2;
}

.drawing-hero .drawing-hero__portrait-container {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background-color: #1E3E62;
}

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

.drawing-hero .drawing-hero__widget {
    position: absolute;
    background: rgba(30, 62, 98, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.drawing-hero .drawing-hero__widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.drawing-hero .widget--status {
    top: 8%;
    left: -10%;
}

.drawing-hero .widget--conflict {
    bottom: 25%;
    left: -15%;
    max-width: 260px;
}

.drawing-hero .widget--stats {
    top: 15%;
    right: -10%;
}

.drawing-hero .widget--owner {
    bottom: 8%;
    right: -5%;
}

.drawing-hero .widget__badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.drawing-hero .badge--resolved {
    background-color: rgba(0, 141, 218, 0.2);
    color: #008DDA;
}

.drawing-hero .widget__text {
    font-size: 0.8rem;
    color: #D1D5DB;
    font-weight: 500;
}

.drawing-hero .text-orange {
    color: #FF6500;
}

.drawing-hero .widget__title {
    font-size: 0.85rem;
    font-weight: 700;
}

.drawing-hero .widget__desc {
    font-size: 0.75rem;
    color: #D1D5DB;
    line-height: 1.4;
}

.drawing-hero .widget__icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: rgba(255, 101, 0, 0.2);
    color: #FF6500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.drawing-hero .widget__number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

.drawing-hero .widget__label {
    font-size: 0.7rem;
    color: #D1D5DB;
}

.drawing-hero .text-blue-light {
    color: #008DDA;
    font-size: 1.25rem;
}

.drawing-hero .widget__owner-title {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #D1D5DB;
    line-height: 1.2;
}

.drawing-hero .widget__owner-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #FFFFFF;
}

.drawing-hero .drawing-hero__tag {
    background-color: rgba(0, 141, 218, 0.15);
    color: #008DDA;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 141, 218, 0.3);
}

.drawing-hero .drawing-hero__headline {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: #FFFFFF;
}

.drawing-hero .drawing-hero__subheadline {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #D1D5DB;
    max-width: 540px;
}

.drawing-hero .drawing-hero__cta {
    background-color: #FF6500;
    border: none;
    color: #FFFFFF;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(255, 101, 0, 0.4);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.drawing-hero .drawing-hero__cta:hover {
    background-color: #e05900;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 101, 0, 0.6);
    color: #FFFFFF;
}

.drawing-hero .drawing-hero__metrics-row {
    margin-top: 2rem;
}

.drawing-hero .metric-item {
    display: flex;
    flex-direction: column;
}

.drawing-hero .metric-number {
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
}

.drawing-hero .metric-label {
    font-size: 0.85rem;
    color: #D1D5DB;
    margin-top: 4px;
}

.drawing-hero .metric-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 991.98px) {
    .drawing-hero .drawing-hero__image-wrapper {
        margin-top: 3rem;
        max-width: 380px;
        height: 420px;
    }

    .drawing-hero .widget--status {
        left: -5%;
    }

    .drawing-hero .widget--conflict {
        left: -10%;
        max-width: 220px;
    }

    .drawing-hero .widget--stats {
        right: -5%;
    }

    .drawing-hero .widget--owner {
        right: -2%;
    }
}

@media (max-width: 767.98px) {
    .drawing-hero .drawing-hero__headline {
        font-size: 18px !important;
    }

    .drawing-hero .drawing-hero__subheadline {
        font-size: 0.9rem;
    }

    .drawing-hero .drawing-hero__image-wrapper {
        max-width: 300px;
        height: 340px;
    }

    .drawing-hero .drawing-hero__widget {
        padding: 8px 12px;
    }

    .drawing-hero .widget--status {
        left: -2%;
        top: 5%;
    }

    .drawing-hero .widget--conflict {
        left: -5%;
        bottom: 20%;
        max-width: 180px;
    }

    .drawing-hero .widget--stats {
        right: -2%;
        top: 12%;
    }

    .drawing-hero .widget--owner {
        right: -2%;
        bottom: 5%;
    }

    .drawing-hero .widget__number {
        font-size: 0.95rem;
    }

    .drawing-hero .widget__title {
        font-size: 0.75rem;
    }

    .drawing-hero .widget__desc {
        font-size: 0.65rem;
    }

    .drawing-hero .metric-number {
        font-size: 1.5rem;
    }

    .drawing-hero .metric-label {
        font-size: 0.75rem;
    }
}

/* ===== cost-of-inaction ===== */
.cost-of-inaction-block {
    background-color: #0B192C;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #FFFFFF;
}

.cost-of-inaction-block .badge {
    background-color: rgba(0, 141, 218, 0.15);
    color: #008DDA;
    border: 1px solid rgba(0, 141, 218, 0.3);
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.cost-of-inaction-block .section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #FFFFFF !important;
}

.cost-of-inaction-block .section-subtitle {
    color: #D1D5DB;
    font-size: 1.125rem;
}

.cost-of-inaction-block .calculator-panel,
.cost-of-inaction-block .form-panel {
    background-color: #1E3E62;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cost-of-inaction-block .calculator-panel:hover,
.cost-of-inaction-block .form-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.cost-of-inaction-block .panel-title {
    font-weight: 700;
    font-size: 1.5rem;
}

.cost-of-inaction-block .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #D1D5DB !important;
}

.cost-of-inaction-block .form-control,
.cost-of-inaction-block .form-select {
    background-color: #0B192C;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: border-color 0.2s ease;
}

.cost-of-inaction-block .form-control:focus,
.cost-of-inaction-block .form-select:focus {
    background-color: #0B192C;
    border-color: #008DDA;
    color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(0, 141, 218, 0.25);
}

.cost-of-inaction-block .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.cost-of-inaction-block .form-text {
    font-size: 0.775rem;
    margin-top: 0.25rem;
}

.cost-of-inaction-block .result-card {
    background-color: #0B192C;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.cost-of-inaction-block .highlight-card {
    border-left: 4px solid #FF6500;
}

.cost-of-inaction-block .btn-submit {
    background-color: #FF6500;
    color: #FFFFFF;
    font-weight: 600;
    padding: 0.85rem 1.5rem;
    border-radius: 8px;
    border: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.cost-of-inaction-block .btn-submit:hover {
    background-color: #e05900;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.cost-of-inaction-block .text-primary-light {
    color: #008DDA;
}

/* ===== post-start-process ===== */
.post-start-process {
    background-color: #F5F7F8;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.post-start-process .timeline-badge {
    background-color: rgba(255, 101, 0, 0.1);
    color: #FF6500;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-start-process .timeline-main-title {
    color: #0B192C;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.post-start-process .timeline-subtitle {
    color: #5C6B73;
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 400;
}

.post-start-process .timeline-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(30, 62, 98, 0.1);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(11, 25, 44, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.post-start-process .timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(11, 25, 44, 0.08);
    border-color: rgba(0, 141, 218, 0.3);
}

.post-start-process .timeline-card-header {
    border-bottom: 1px solid #F5F7F8;
    padding-bottom: 1rem;
}

.post-start-process .timeline-date {
    font-size: 0.875rem;
    color: #5C6B73;
    font-weight: 500;
}

.post-start-process .timeline-step {
    font-size: 0.75rem;
    font-weight: 700;
    background-color: #1E3E62;
    color: #FFFFFF;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.post-start-process .timeline-icon-wrap {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 141, 218, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-start-process .timeline-icon-wrap i {
    font-size: 1.5rem;
    color: #008DDA;
}

.post-start-process .timeline-card-title {
    color: #1E3E62;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.post-start-process .timeline-card-text {
    color: #5C6B73;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .post-start-process .timeline-main-title {
        font-size: 1.75rem;
    }

    .post-start-process .timeline-subtitle {
        font-size: 1rem;
    }

    .post-start-process .timeline-card {
        padding: 1.5rem;
    }
}

/* ===== contractor-questions ===== */
.contractor-questions-section {
    background-color: #F5F7F8;
    padding: 80px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1E3E62;
}

.contractor-questions-section .info-panel {
    background-color: #FFFFFF;
    border: 1px solid rgba(30, 62, 98, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px -10px rgba(11, 25, 44, 0.06), 0 1px 3px rgba(11, 25, 44, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contractor-questions-section .info-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(11, 25, 44, 0.1);
}

.contractor-questions-section .badge-accent {
    background-color: rgba(255, 101, 0, 0.1);
    color: #FF6500;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.contractor-questions-section .section-title {
    color: #0B192C;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
}

.contractor-questions-section .section-desc {
    color: #5C6B73;
    font-size: 1rem;
    line-height: 1.6;
}

.contractor-questions-section .cta-box {
    background-color: #0B192C;
    border-radius: 12px;
    color: #FFFFFF;
}

.contractor-questions-section .cta-title {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 600;
}

.contractor-questions-section .cta-desc {
    color: #D1D5DB;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contractor-questions-section .btn-primary-custom {
    background-color: #FF6500;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 101, 0, 0.2);
    border: none;
}

.contractor-questions-section .btn-primary-custom:hover {
    background-color: #e05900;
    transform: translateY(-2px);
    color: #FFFFFF;
}

.contractor-questions-section .accordion-panel {
    background-color: #FFFFFF;
    border: 1px solid rgba(30, 62, 98, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px -10px rgba(11, 25, 44, 0.06), 0 1px 3px rgba(11, 25, 44, 0.02);
}

.contractor-questions-section .accordion-item-custom {
    border-bottom: 1px solid rgba(30, 62, 98, 0.08);
    padding: 16px 0;
}

.contractor-questions-section .accordion-item-custom:last-child {
    border-bottom: none;
}

.contractor-questions-section .accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: #1E3E62;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.2s ease;
    gap: 16px;
    cursor: pointer;
}

.contractor-questions-section .accordion-trigger:hover {
    color: #008DDA;
}

.contractor-questions-section .accordion-trigger .icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(30, 62, 98, 0.05);
    color: #1E3E62;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.contractor-questions-section .accordion-trigger[aria-expanded="true"] {
    color: #008DDA;
}

.contractor-questions-section .accordion-trigger[aria-expanded="true"] .icon-wrap {
    transform: rotate(180deg);
    background-color: #008DDA;
    color: #FFFFFF;
}

.contractor-questions-section .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contractor-questions-section .content-inner {
    padding-top: 12px;
    padding-bottom: 8px;
}

.contractor-questions-section .content-inner p {
    color: #5C6B73;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767.98px) {
    .contractor-questions-section {
        padding: 40px 0;
    }

    .contractor-questions-section .section-title {
        font-size: 1.5rem;
    }

    .contractor-questions-section .accordion-trigger {
        font-size: 1rem;
    }
}

/* ===== stages-checkpoints ===== */
.stages-checkpoints-section {
    background-color: #0B192C;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
    position: relative;
    padding: 5rem 0;
}

.stages-checkpoints-section .badge-accent {
    background-color: rgba(255, 101, 0, 0.15);
    color: #FF6500;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stages-checkpoints-section .section-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #FFFFFF !important;
}

.stages-checkpoints-section .section-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #D1D5DB;
}

.stages-checkpoints-section .step-nav-btn {
    background-color: #1E3E62;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: #FFFFFF;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.stages-checkpoints-section .step-nav-btn:hover {
    transform: translateY(-3px);
    background-color: #244b75;
    border-color: rgba(0, 141, 218, 0.3);
}

.stages-checkpoints-section .step-nav-btn.active {
    background-color: #008DDA;
    border-color: #008DDA;
    box-shadow: 0 8px 30px rgba(0, 141, 218, 0.3);
}

.stages-checkpoints-section .step-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    transition: color 0.3s ease;
}

.stages-checkpoints-section .step-nav-btn.active .step-num {
    color: #FFFFFF;
}

.stages-checkpoints-section .step-btn-content {
    flex-grow: 1;
}

.stages-checkpoints-section .step-btn-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #FFFFFF !important;
}

.stages-checkpoints-section .step-btn-desc {
    font-size: 0.875rem;
    color: #D1D5DB;
    margin-bottom: 0;
    line-height: 1.4;
}

.stages-checkpoints-section .step-nav-btn.active .step-btn-desc {
    color: rgba(255, 255, 255, 0.9);
}

.stages-checkpoints-section .step-arrow {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, color 0.3s ease;
}

.stages-checkpoints-section .step-nav-btn.active .step-arrow {
    color: #FFFFFF;
    transform: translateX(3px);
}

.stages-checkpoints-section .step-display-card {
    background-color: #1E3E62;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.stages-checkpoints-section .step-content-pane {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.stages-checkpoints-section .step-content-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.stages-checkpoints-section .pane-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.stages-checkpoints-section .pane-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 101, 0, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6500;
    font-size: 2rem;
}

.stages-checkpoints-section .pane-meta {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #FF6500;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.25rem;
}

.stages-checkpoints-section .pane-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0;
    color: #FFFFFF !important;
}

.stages-checkpoints-section .pane-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #D1D5DB;
}

.stages-checkpoints-section .info-sub-card {
    background-color: rgba(11, 25, 44, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    height: 100%;
}

.stages-checkpoints-section .info-title {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF !important;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stages-checkpoints-section .info-title i {
    color: #008DDA;
    font-size: 1.25rem;
}

.stages-checkpoints-section .info-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #D1D5DB;
    margin-bottom: 0;
}

.stages-checkpoints-section .border-top {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.stages-checkpoints-section .btn-accent {
    background-color: #FF6500;
    color: #FFFFFF;
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 101, 0, 0.3);
    text-decoration: none;
}

.stages-checkpoints-section .btn-accent:hover {
    background-color: #e05900;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 101, 0, 0.4);
}

@media (max-width: 767.98px) {
    .stages-checkpoints-section .section-title {
        font-size: 1.5rem !important;
    }

    .stages-checkpoints-section .pane-title {
        font-size: 1.35rem !important;
    }

    .stages-checkpoints-section .pane-description {
        font-size: 1rem;
    }

    .stages-checkpoints-section .step-nav-btn {
        padding: 1rem;
    }

    .stages-checkpoints-section .step-num {
        font-size: 1.35rem;
    }

    .stages-checkpoints-section .step-btn-title {
        font-size: 1rem !important;
    }
}

/* ===== cases-grid ===== */
.cases-grid-block {
    background-color: #F5F7F8;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.cases-grid-block .text-primary-orange {
    color: #FF6500;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.cases-grid-block .text-dark-blue {
    color: #0B192C;
}

.cases-grid-block .text-secondary-gray {
    color: #5C6B73;
}

.cases-grid-block .filter-btn {
    background-color: #FFFFFF;
    border: 1px solid rgba(30, 62, 98, 0.15);
    color: #1E3E62;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(11, 25, 44, 0.05);
}

.cases-grid-block .filter-btn:hover {
    border-color: #008DDA;
    color: #008DDA;
}

.cases-grid-block .filter-btn.active {
    background-color: #1E3E62;
    border-color: #1E3E62;
    color: #FFFFFF;
}

.cases-grid-block .case-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(30, 62, 98, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 25, 44, 0.05);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cases-grid-block .case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(11, 25, 44, 0.12);
}

.cases-grid-block .case-card-img-wrap {
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.cases-grid-block .case-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cases-grid-block .case-card:hover .case-card-img {
    transform: scale(1.05);
}

.cases-grid-block .badge-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.cases-grid-block .status-unresolved {
    background-color: #FF6500;
    color: #FFFFFF;
}

.cases-grid-block .status-contradictory {
    background-color: #1E3E62;
    color: #FFFFFF;
}

.cases-grid-block .status-resolved {
    background-color: #008DDA;
    color: #FFFFFF;
}

.cases-grid-block .case-card-meta {
    font-size: 0.75rem;
    color: #5C6B73;
}

.cases-grid-block .case-card-meta i {
    font-size: 0.875rem;
    vertical-align: middle;
}

.cases-grid-block .meta-divider {
    color: rgba(92, 107, 115, 0.3);
}

.cases-grid-block .case-card-title-link {
    text-decoration: none;
}

.cases-grid-block .case-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0B192C;
    line-height: 1.3;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.9rem;
}

.cases-grid-block .case-card-title-link:hover .case-card-title {
    color: #008DDA;
}

.cases-grid-block .case-card-excerpt {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #5C6B73;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.9rem;
}

.cases-grid-block .btn-primary-custom {
    background-color: #FF6500;
    color: #FFFFFF;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 101, 0, 0.2);
}

.cases-grid-block .btn-primary-custom:hover {
    background-color: #E05300;
    color: #FFFFFF;
    box-shadow: 0 6px 16px rgba(255, 101, 0, 0.35);
    transform: translateY(-1px);
}

@media (max-width: 767.98px) {
    .cases-grid-block h2 {
        font-size: 16px !important;
        hyphens: auto;
    }

    .cases-grid-block h3 {
        font-size: 14px !important;
        hyphens: auto;
    }
}

/* ===== founder-message ===== */
.founder-message-section {
    background-color: #F5F7F8;
    padding: 80px 0;
}

.founder-message-section .founder-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(30, 62, 98, 0.1);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(11, 25, 44, 0.05);
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-message-section .founder-card.is-hovered {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11, 25, 44, 0.08);
}

.founder-message-section .founder-image-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #1E3E62;
    box-shadow: 0 8px 20px rgba(30, 62, 98, 0.15);
}

.founder-message-section .founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-message-section .founder-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B192C;
    margin-bottom: 4px;
}

.founder-message-section .founder-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #5C6B73;
    margin-bottom: 12px;
}

.founder-message-section .founder-signature {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-style: italic;
    font-size: 1.25rem;
    color: #1E3E62;
    border-top: 1px dashed rgba(30, 62, 98, 0.2);
    display: inline-block;
    padding-top: 8px;
}

.founder-message-section .quote-icon {
    font-size: 2.5rem;
    color: #FF6500;
    line-height: 1;
}

.founder-message-section .section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #0B192C;
}

.founder-message-section .lead-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    color: #1E3E62;
}

.founder-message-section .body-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5C6B73;
}

.founder-message-section .btn-primary-custom {
    background-color: #FF6500;
    color: #FFFFFF;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(255, 101, 0, 0.2);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.founder-message-section .btn-primary-custom:hover {
    background-color: #e05900;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 101, 0, 0.3);
}

@media (max-width: 767.98px) {
    .founder-message-section {
        padding: 50px 0;
    }

    .founder-message-section .founder-card {
        padding: 30px 20px;
    }

    .founder-message-section .founder-image-wrapper {
        width: 150px;
        height: 150px;
    }

    .founder-message-section .section-title {
        font-size: 1.5rem;
    }

    .founder-message-section .lead-text {
        font-size: 1rem;
    }

    .founder-message-section .btn-primary-custom {
        width: 100%;
        justify-content: center;
    }
}

/* ===== footer ===== */
.drawingoutcome-footer {
    background-color: #F5F7F8;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.drawingoutcome-footer .footer-wrapper {
    background-color: #0B192C;
    color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(11, 25, 44, 0.15);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.drawingoutcome-footer .footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.drawingoutcome-footer .footer-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #D1D5DB;
}

.drawingoutcome-footer .footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    position: relative;
    padding-bottom: 8px;
}

.drawingoutcome-footer .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #FF6500;
}

.drawingoutcome-footer .footer-links-list li {
    margin-bottom: 0.5rem;
}

.drawingoutcome-footer .footer-link {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.drawingoutcome-footer .footer-link:hover {
    color: #008DDA;
    transform: translateX(3px);
}

.drawingoutcome-footer .footer-contact-info {
    font-size: 0.875rem;
}

.drawingoutcome-footer .footer-contact-text {
    color: #D1D5DB;
    line-height: 1.5;
}

.drawingoutcome-footer .footer-icon {
    color: #FF6500;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.drawingoutcome-footer .footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.drawingoutcome-footer .footer-copyright {
    font-size: 0.8rem;
    color: #D1D5DB;
}

.drawingoutcome-footer .footer-tagline {
    font-size: 0.8rem;
    color: #D1D5DB;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 767.98px) {
    .drawingoutcome-footer .footer-wrapper {
        padding: 2rem 1.25rem;
    }

    .drawingoutcome-footer .footer-title {
        margin-top: 1rem;
    }
}

/* ===== PAGE: about ===== */
.drawing-methodology {
  background-color: #0B192C;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #F5F7F8;
}

.drawing-methodology__panel {
  background-color: #1E3E62;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.drawing-methodology__badge {
  background-color: #008DDA;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.drawing-methodology .btn-primary {
  background-color: #FF6500;
  border-color: #FF6500;
  color: #FFFFFF;
  font-weight: 600;
  transition: all 0.3s ease;
}

.drawing-methodology .btn-primary:hover {
  background-color: #e05900;
  border-color: #e05900;
  transform: translateY(-2px);
}

.drawing-methodology .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
  transition: all 0.3s ease;
}

.drawing-methodology .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.drawing-methodology__card {
  background-color: #1E3E62;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.drawing-methodology__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.drawing-methodology__card-icon {
  background-color: rgba(0, 141, 218, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.drawing-methodology__card-icon i {
  color: #008DDA !important;
}

.drawing-methodology__sim-display {
  background-color: #0B192C;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.drawing-methodology__sim-visual {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

.drawing-methodology__sim-visual img {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.drawing-methodology .js-step-btn {
  transition: all 0.3s ease;
  border-left: 3px solid transparent !important;
}

.drawing-methodology .js-step-btn.active {
  background-color: #1E3E62 !important;
  border-left: 3px solid #FF6500 !important;
  color: #FFFFFF !important;
}

.drawing-methodology .js-step-btn:hover:not(.active) {
  background-color: rgba(255, 255, 255, 0.05) !important;
}

.drawing-methodology .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #008DDA;
}

.drawing-methodology .accordion-button::after {
  filter: invert(1);
}

.drawing-methodology__img-container {
  overflow: hidden;
  border-radius: 8px;
}

.drawing-methodology__img-container img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.drawing-methodology__img-container:hover img {
  transform: scale(1.03);
}

/* ===== PAGE: case-archive ===== */
.archive-section {
  background-color: #0B192C;
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
}

.archive-section .filters-panel {
  background-color: #1E3E62;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.archive-section .search-wrapper .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: #008DDA;
}

.archive-section .form-control {
  background-color: #0B192C;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  padding-left: 45px;
  border-radius: 8px;
  height: 48px;
  transition: border-color 0.2s ease;
}

.archive-section .form-control:focus {
  background-color: #0B192C;
  color: #FFFFFF;
  border-color: #008DDA;
  box-shadow: none;
}

.archive-section .form-control::placeholder {
  color: #D1D5DB;
  opacity: 0.7;
}

.archive-section .btn-filter {
  background-color: #0B192C;
  color: #D1D5DB;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.archive-section .btn-filter:hover {
  background-color: #1E3E62;
  color: #FFFFFF;
  border-color: #008DDA;
  transform: translateY(-2px);
}

.archive-section .btn-filter.active {
  background-color: #FF6500;
  color: #FFFFFF;
  border-color: #FF6500;
  box-shadow: 0 4px 15px rgba(255, 101, 0, 0.3);
}

.archive-section .case-card {
  background-color: #1E3E62;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.archive-section .case-card:hover {
  transform: translateY(-6px);
  border-color: #008DDA;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.archive-section .case-card-img-holder {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: #0B192C;
}

.archive-section .case-card-img-holder img {
  object-fit: cover;
  transition: transform 0.4s ease;
}

.archive-section .case-card:hover .case-card-img-holder img {
  transform: scale(1.05);
}

.archive-section .category-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: #0B192C;
  color: #008DDA;
  border: 1px solid rgba(0, 141, 218, 0.4);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.archive-section .card-meta {
  font-size: 0.8rem;
  color: #D1D5DB;
}

.archive-section .card-meta .meta-item i {
  color: #008DDA;
  margin-right: 4px;
  vertical-align: middle;
}

.archive-section .card-title-link {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.35;
  transition: color 0.2s ease;
  display: block;
}

.archive-section .card-title-link:hover {
  color: #008DDA;
}

.archive-section .card-text {
  color: #D1D5DB;
  font-size: 0.92rem;
  line-height: 1.6;
}

.archive-section .comments-count {
  font-size: 0.8rem;
  color: #D1D5DB;
}

.archive-section .comments-count i {
  margin-right: 4px;
}

.archive-section .btn-card-action {
  background-color: #0B192C;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 6px 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.archive-section .btn-card-action:hover {
  background-color: #008DDA;
  color: #FFFFFF;
  border-color: #008DDA;
}

.archive-section .no-results-panel {
  background-color: #1E3E62;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.archive-section .btn-reset {
  background-color: #FF6500;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.archive-section .btn-reset:hover {
  opacity: 0.9;
  color: #FFFFFF;
}

.archive-section .btn-load-more {
  background-color: #1E3E62;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.archive-section .btn-load-more:hover {
  background-color: #008DDA;
  border-color: #008DDA;
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  .archive-section h1 {
    font-size: 18px !important;
  }
  .archive-section h2 {
    font-size: 16px !important;
  }
  .archive-section h3 {
    font-size: 14px !important;
  }
  .archive-section .btn-filter {
    font-size: 0.78rem !important;
    padding: 6px 12px !important;
  }
  .archive-section .filters-panel {
    padding: 15px !important;
  }
  .archive-section .case-card-img-holder {
    height: 180px;
  }
}

/* ===== PAGE: decision-matrix ===== */
.matrix-section {
  background-color: #F5F7F8;
  padding: 60px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1E3E62;
}
.matrix-section .scenario-card {
  background: #FFFFFF;
  border: 1px solid rgba(30, 62, 98, 0.1);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(11, 25, 44, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.matrix-section .scenario-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(11, 25, 44, 0.08);
}
.matrix-section .scenario-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: #0B192C;
}
.matrix-section .scenario-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.matrix-section .scenario-card:hover .scenario-img {
  transform: scale(1.05);
}
.matrix-section .badge-category {
  background-color: #1E3E62;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.matrix-section .card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.matrix-section .card-title {
  color: #0B192C;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.3;
}
.matrix-section .card-title a {
  color: #0B192C;
  text-decoration: none;
  transition: color 0.2s ease;
}
.matrix-section .card-title a:hover {
  color: #008DDA;
}
.matrix-section .card-text {
  color: #5C6B73;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.matrix-section .btn-accent {
  background-color: #FF6500;
  color: #FFFFFF;
  font-weight: 600;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.matrix-section .btn-accent:hover {
  background-color: #e05900;
  color: #FFFFFF;
}
.matrix-section .btn-outline-custom {
  border: 1px solid #1E3E62;
  color: #1E3E62;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  background: transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.matrix-section .btn-outline-custom:hover {
  background-color: #1E3E62;
  color: #FFFFFF;
}
.matrix-section .filter-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.matrix-section .filter-btn {
  background-color: #FFFFFF;
  border: 1px solid rgba(30, 62, 98, 0.15);
  color: #1E3E62;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.matrix-section .filter-btn.active,
.matrix-section .filter-btn:hover {
  background-color: #1E3E62;
  color: #FFFFFF;
  border-color: #1E3E62;
}
.matrix-section .form-panel {
  background: #0B192C;
  color: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(11, 25, 44, 0.25);
  margin-top: 60px;
}
.matrix-section .form-panel h3 {
  color: #FFFFFF;
  font-weight: 700;
}
.matrix-section .form-control {
  background-color: #1E3E62;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border-radius: 8px;
  padding: 12px 16px;
}
.matrix-section .form-control:focus {
  background-color: #1E3E62;
  border-color: #008DDA;
  box-shadow: none;
  color: #FFFFFF;
}
.matrix-section .form-control::placeholder {
  color: #D1D5DB;
  opacity: 0.8;
}
.matrix-section .form-label {
  font-weight: 500;
  color: #D1D5DB;
}

/* ===== PAGE: guides ===== */
.guides-grid-section {
  background-color: #F5F7F8;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.guides-grid-section .filter-panel {
  border: 1px solid rgba(30, 62, 98, 0.08);
}

.guides-grid-section .search-wrapper .search-icon {
  font-size: 1.25rem;
  left: 1rem;
}

.guides-grid-section .search-wrapper .form-control {
  border: 1px solid rgba(30, 62, 98, 0.15);
  border-radius: 8px;
  background-color: #FFFFFF;
  color: #1E3E62;
}

.guides-grid-section .search-wrapper .form-control::placeholder {
  color: #a0aec0;
}

.guides-grid-section .search-wrapper .form-control:focus {
  border-color: #008DDA;
  box-shadow: 0 0 0 3px rgba(0, 141, 218, 0.15);
  outline: none;
}

.guides-grid-section .btn-filter {
  background-color: #FFFFFF;
  border: 1px solid rgba(30, 62, 98, 0.15);
  color: #1E3E62;
  border-radius: 8px;
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.guides-grid-section .btn-filter:hover,
.guides-grid-section .btn-filter.active {
  background-color: #1E3E62;
  color: #FFFFFF;
  border-color: #1E3E62;
}

.guides-grid-section .guide-card {
  border-radius: 12px;
  background-color: #FFFFFF;
  border: 1px solid rgba(30, 62, 98, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guides-grid-section .guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(11, 25, 44, 0.08) !important;
}

.guides-grid-section .guide-img-link {
  height: 240px;
  overflow: hidden;
}

.guides-grid-section .guide-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.guides-grid-section .guide-card:hover .guide-img-link img {
  transform: scale(1.05);
}

.guides-grid-section .badge-tag {
  background-color: #FF6500;
  color: #FFFFFF;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(255, 101, 0, 0.25);
}

.guides-grid-section .text-dark-blue {
  color: #0B192C;
  font-weight: 700;
}

.guides-grid-section .text-dark-blue:hover {
  color: #008DDA;
}

.guides-grid-section .card-title {
  font-size: 1.25rem;
  line-height: 1.4;
}

.guides-grid-section .meta-info {
  font-size: 0.85rem;
  font-weight: 500;
}

.guides-grid-section .btn-card-action {
  background-color: #F5F7F8;
  color: #1E3E62;
  border: 1px solid rgba(30, 62, 98, 0.1);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.guides-grid-section .btn-card-action:hover {
  background-color: #1E3E62;
  color: #FFFFFF;
  border-color: #1E3E62;
}

.guides-grid-section .newsletter-panel {
  background-color: #0B192C !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.guides-grid-section .newsletter-panel .bg-orange {
  background-color: #FF6500 !important;
}

.guides-grid-section .newsletter-form .form-control {
  border-radius: 8px 0 0 8px;
  font-size: 0.95rem;
}

.guides-grid-section .newsletter-form .form-control:focus {
  box-shadow: none;
  border: 2px solid #008DDA;
}

.guides-grid-section .newsletter-form .btn-subscribe {
  background-color: #FF6500;
  color: #FFFFFF;
  font-weight: 600;
  border-radius: 0 8px 8px 0;
  border: none;
  transition: background-color 0.2s ease;
}

.guides-grid-section .newsletter-form .btn-subscribe:hover {
  background-color: #e05900;
}

.guides-grid-section .z-index-2 {
  position: relative;
  z-index: 2;
}

@media (max-width: 767.98px) {
  .guides-grid-section .newsletter-form .form-control {
    border-radius: 8px;
    margin-bottom: 0.5rem;
  }
  .guides-grid-section .newsletter-form .btn-subscribe {
    border-radius: 8px;
    width: 100%;
  }
  .guides-grid-section .newsletter-form .input-group {
    display: block;
  }
  .guides-grid-section .guide-img-link {
    height: 180px;
  }
}

/* ===== PAGE: contacts ===== */
.contacts-block {
  background-color: #F5F7F8;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.contacts-block__badge {
  background-color: rgba(0, 141, 218, 0.15);
  color: #008DDA;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contacts-block__main-title {
  color: #0B192C;
  font-size: 2.5rem;
  font-weight: 800;
}
.contacts-block__subtitle {
  color: #5C6B73;
  font-size: 1.125rem;
  line-height: 1.6;
}
.contacts-block__panel {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(30, 62, 98, 0.08);
  box-shadow: 0 12px 35px rgba(11, 25, 44, 0.05);
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contacts-block__panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(11, 25, 44, 0.08);
}
.contacts-block__section-title {
  color: #0B192C;
  font-size: 1.75rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}
.contacts-block__section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #FF6500;
  border-radius: 2px;
}
.contacts-block__icon-box {
  background-color: rgba(255, 101, 0, 0.1);
  color: #FF6500;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.contacts-block__item-title {
  color: #1E3E62;
  font-size: 1.1rem;
  font-weight: 600;
}
.contacts-block__item-text {
  color: #5C6B73;
  font-size: 0.95rem;
}
.contacts-block__link {
  color: #008DDA;
  text-decoration: none;
  transition: color 0.2s ease;
}
.contacts-block__link:hover {
  color: #FF6500;
  text-decoration: underline;
}
.contacts-block__notice {
  background-color: rgba(30, 62, 98, 0.04);
  border-left: 4px solid #1E3E62;
}
.contacts-block__notice p {
  color: #1E3E62;
}
.contacts-block__label {
  color: #1E3E62;
  font-weight: 600;
  font-size: 0.9rem;
}
.contacts-block .form-control {
  background-color: #F5F7F8;
  border: 1px solid rgba(30, 62, 98, 0.15);
  color: #0B192C;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.contacts-block .form-control::placeholder {
  color: #a0acb5;
  opacity: 1;
}
.contacts-block .form-control:focus {
  background-color: #FFFFFF;
  border-color: #FF6500;
  box-shadow: 0 0 0 4px rgba(255, 101, 0, 0.15);
  color: #0B192C;
}
.contacts-block__btn {
  background-color: #FF6500;
  color: #FFFFFF;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(255, 101, 0, 0.25);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.contacts-block__btn:hover {
  background-color: #E05900;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 101, 0, 0.35);
}
.contacts-block__btn:active {
  transform: translateY(0);
}
@media (max-width: 991px) {
  .contacts-block__panel {
    padding: 2rem 1.5rem;
  }
  .contacts-block__main-title {
    font-size: 2rem;
  }
}

/* ===== PAGE: privacy ===== */
.privacy-policy-block {
  background-color: #F5F7F8;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.privacy-policy-block .text-dark-blue {
  color: #0B192C;
}
.privacy-policy-block .text-secondary-color {
  color: #5C6B73;
}
.privacy-policy-block .bg-accent-orange {
  background-color: #FF6500 !important;
}
.privacy-policy-block .privacy-search-wrapper {
  max-width: 500px;
}
.privacy-policy-block .privacy-search-wrapper .form-control {
  border-color: rgba(30, 62, 98, 0.2);
  color: #0B192C;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
}
.privacy-policy-block .privacy-search-wrapper .form-control::placeholder {
  color: #5C6B73;
  opacity: 0.7;
}
.privacy-policy-block .privacy-search-wrapper .form-control:focus {
  border-color: #008DDA;
  box-shadow: 0 0 0 3px rgba(0, 141, 218, 0.15);
}
.privacy-policy-block .privacy-search-wrapper .input-group-text {
  border-color: rgba(30, 62, 98, 0.2);
  color: #5C6B73;
}
.privacy-policy-block .privacy-nav-card {
  background: #FFFFFF;
  border: 1px solid rgba(30, 62, 98, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(11, 25, 44, 0.04);
}
.privacy-policy-block .sticky-top-offset {
  position: sticky;
  top: 100px;
  z-index: 10;
}
.privacy-policy-block .privacy-nav-card .nav-link {
  color: #5C6B73;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}
.privacy-policy-block .privacy-nav-card .nav-link:hover {
  background: rgba(0, 141, 218, 0.05);
  color: #008DDA;
}
.privacy-policy-block .privacy-nav-card .nav-link.active {
  background: #1E3E62;
  color: #FFFFFF;
}
.privacy-policy-block .privacy-card {
  background: #FFFFFF;
  border: 1px solid rgba(30, 62, 98, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(11, 25, 44, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.privacy-policy-block .privacy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(11, 25, 44, 0.08);
}
.privacy-policy-block .privacy-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(0, 141, 218, 0.1);
  color: #008DDA;
  font-size: 1.25rem;
}
@media (max-width: 991.98px) {
  .privacy-policy-block .sticky-top-offset {
    position: static;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .privacy-policy-block h1 {
    font-size: 18px !important;
  }
  .privacy-policy-block h2 {
    font-size: 16px !important;
  }
  .privacy-policy-block h3 {
    font-size: 14px !important;
  }
}

/* ===== PAGE: terms ===== */
.terms-section {
  background-color: #F5F7F8;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1E3E62;
}

.terms-section .terms-tag-badge {
  background-color: rgba(0, 141, 218, 0.1);
  color: #008DDA;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(0, 141, 218, 0.2);
}

.terms-section .terms-heading-main {
  color: #0B192C;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.2;
}

.terms-section .terms-lead-text {
  font-size: 1.125rem;
  color: #5C6B73;
  line-height: 1.6;
}


.terms-section .terms-filter-panel {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(11, 25, 44, 0.04);
}

.terms-section .max-width-md {
  max-width: 480px;
}

.terms-section .terms-search-icon {
  color: #5C6B73;
  font-size: 1.25rem;
}

.terms-section .form-control {
  background-color: #F5F7F8;
  border: 1px solid #E5E7EB;
  color: #1E3E62;
  border-radius: 8px;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.terms-section .form-control:focus {
  background-color: #FFFFFF;
  border-color: #008DDA;
  box-shadow: 0 0 0 3px rgba(0, 141, 218, 0.15);
  outline: none;
}

.terms-section .form-control::placeholder {
  color: #A0AEC0;
}


.terms-section .terms-sidebar-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(11, 25, 44, 0.04);
}

.terms-section .terms-sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0B192C;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.terms-section .terms-sidebar-card .nav-link {
  color: #5C6B73;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.terms-section .terms-sidebar-card .nav-link:hover {
  color: #008DDA;
  background-color: rgba(0, 141, 218, 0.05);
}

.terms-section .terms-sidebar-card .nav-link.active {
  color: #008DDA;
  background-color: rgba(0, 141, 218, 0.08);
  border-left-color: #008DDA;
  font-weight: 600;
}


.terms-section .terms-content-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(11, 25, 44, 0.04);
  transition: all 0.3s ease;
}

.terms-section .terms-content-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(11, 25, 44, 0.08);
}

.terms-section .terms-card-title {
  color: #0B192C;
  font-size: 1.25rem;
  font-weight: 700;
}

.terms-section .terms-body-text {
  color: #5C6B73;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.terms-section .terms-body-text:last-child {
  margin-bottom: 0;
}

.terms-section .terms-list {
  color: #5C6B73;
  font-size: 0.95rem;
  padding-left: 1.25rem;
  line-height: 1.65;
}

.terms-section .terms-list li {
  margin-bottom: 0.5rem;
}


.terms-section .btn {
  border-radius: 8px;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.terms-section .btn-primary {
  background-color: #FF6500;
  border-color: #FF6500;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(255, 101, 0, 0.2);
}

.terms-section .btn-primary:hover {
  background-color: #E05900;
  border-color: #E05900;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 101, 0, 0.3);
}

.terms-section .btn-outline-secondary {
  color: #1E3E62;
  border-color: #D1D5DB;
  background-color: transparent;
}

.terms-section .btn-outline-secondary:hover {
  background-color: #F5F7F8;
  border-color: #1E3E62;
  color: #0B192C;
  transform: translateY(-1px);
}

.terms-section .terms-no-results {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
}


.terms-highlight {
  background-color: rgba(255, 101, 0, 0.15);
  border-bottom: 2px solid #FF6500;
  color: #0B192C;
  padding: 0 2px;
  border-radius: 2px;
}


@media (max-width: 991px) {
  .terms-section .terms-sidebar-card {
    position: relative !important;
    top: 0 !important;
    margin-bottom: 1.5rem;
  }
  
  .terms-section .terms-heading-main {
    font-size: 1.85rem;
  }
}

/* ===== PAGE: disclaimer ===== */
.doc-disclaimer-section {
  background-color: #F5F7F8;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.doc-disclaimer-section .doc-disclaimer-card {
  background: #FFFFFF;
  border: 1px solid rgba(30, 62, 98, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(11, 25, 44, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doc-disclaimer-section .doc-disclaimer-card.bg-blue {
  background-color: #0B192C !important;
  border: none;
}

.doc-disclaimer-section .text-dark-blue {
  color: #0B192C !important;
}

.doc-disclaimer-section .text-secondary-blue {
  color: #333333 !important;
  font-size: 1rem;
  line-height: 1.6;
}

.doc-disclaimer-section .text-orange {
  color: #FF6500 !important;
}

.doc-disclaimer-section .text-light-blue {
  color: #D1D5DB !important;
}

.doc-disclaimer-section .doc-tab-btn {
  border: 1px solid rgba(30, 62, 98, 0.1);
  background-color: #FFFFFF;
  color: #1E3E62;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}

.doc-disclaimer-section .doc-tab-btn:hover {
  border-color: #008DDA;
  background-color: #F5F7F8;
  color: #0B192C;
  transform: translateY(-2px);
}

.doc-disclaimer-section .doc-tab-btn.active {
  background-color: #0B192C;
  color: #FFFFFF;
  border-color: #0B192C;
  box-shadow: 0 4px 15px rgba(11, 25, 44, 0.15);
}

.doc-disclaimer-section .doc-tab-btn.active i {
  color: #FF6500;
}

.doc-disclaimer-section .doc-btn-primary {
  background-color: #FF6500;
  color: #FFFFFF;
  border: none;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 10px rgba(255, 101, 0, 0.2);
}

.doc-disclaimer-section .doc-btn-primary:hover {
  background-color: #E05900;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 101, 0, 0.3);
}

.doc-disclaimer-section .doc-alert-box {
  background-color: rgba(255, 101, 0, 0.05);
  border-left: 4px solid #FF6500;
}

.comment-card {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #FFFFFF;
    border: 1px solid rgba(30, 62, 98, 0.08);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px -10px rgba(11, 25, 44, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 16px;
}

.comment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px -8px rgba(11, 25, 44, 0.12);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.comment-author-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Avatar System with Fallback Support */
.avatar-initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #FFFFFF;
    text-transform: uppercase;
    flex-shrink: 0;
}

.avatar-initials img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.bg-primary-blue {
    background-color: #1E3E62;
}

.comment-author-details {
    display: flex;
    flex-direction: column;
}

.comment-author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0B192C;
    line-height: 1.2;
}

.comment-author-role {
    font-size: 0.813rem;
    color: #5C6B73;
    margin-top: 2px;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.comment-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-verified {
    background-color: rgba(0, 141, 218, 0.1);
    color: #008DDA;
}

.comment-time {
    font-size: 0.813rem;
    color: #5C6B73;
}

.comment-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 16px;
}

.comment-actions {
    display: flex;
    gap: 16px;
    border-top: 1px solid rgba(30, 62, 98, 0.06);
    padding-top: 12px;
}

.comment-action-btn {
    background: none;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #5C6B73;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.comment-action-btn i {
    font-size: 1.1rem;
}

.comment-action-btn:hover {
    color: #FF6500;
    background-color: rgba(255, 101, 0, 0.05);
}

@media (max-width: 576px) {
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .comment-meta {
        margin-top: 4px;
    }
}

.comment-card.reply-comment {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #F5F7F8;
    border: 1px solid rgba(30, 62, 98, 0.06);
    border-left: 3px solid #008DDA;
    border-radius: 0 12px 12px 0;
    padding: 20px;
    margin-left: 48px;
    box-shadow: 0 4px 15px -5px rgba(11, 25, 44, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 12px;
}

.comment-card.reply-comment:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -5px rgba(11, 25, 44, 0.08);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.comment-author-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Avatar System with Fallback Support */
.avatar-initials {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: #FFFFFF;
    text-transform: uppercase;
    flex-shrink: 0;
}

.avatar-initials img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.bg-accent-orange {
    background-color: #FF6500;
}

.comment-author-details {
    display: flex;
    flex-direction: column;
}

.comment-author-name {
    font-size: 0.938rem;
    font-weight: 700;
    color: #0B192C;
    line-height: 1.2;
}

.comment-author-role {
    font-size: 0.75rem;
    color: #5C6B73;
    margin-top: 1px;
}

.comment-time {
    font-size: 0.75rem;
    color: #5C6B73;
}

.comment-content {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 12px;
}

.comment-actions {
    display: flex;
    gap: 16px;
    border-top: 1px solid rgba(30, 62, 98, 0.04);
    padding-top: 10px;
}

.comment-action-btn {
    background: none;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.813rem;
    font-weight: 600;
    color: #5C6B73;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.comment-action-btn i {
    font-size: 1rem;
}

.comment-action-btn:hover {
    color: #FF6500;
    background-color: rgba(255, 101, 0, 0.05);
}

@media (max-width: 576px) {
    .comment-card.reply-comment {
        margin-left: 16px;
        padding: 16px;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ===== PAGE TEMPLATE: case-archive ===== */
.drawingoutcome-header {
    background-color: #0B192C;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.drawingoutcome-header-nav {
    padding: 0.75rem 0;
}

.drawingoutcome-logo-img {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.drawingoutcome-brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.drawingoutcome-header .nav-link {
    color: #D1D5DB;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    transition: color 0.25s ease;
}

.drawingoutcome-header .nav-link:hover,
.drawingoutcome-header .nav-link:focus,
.drawingoutcome-header .nav-link.active {
    color: #FF6500;
}

.drawingoutcome-cta-btn {
    background-color: #FF6500;
    color: #0B192C;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    transition: all 0.25s ease;
    border: none;
}

.drawingoutcome-cta-btn:hover {
    background-color: #FF8533;
    color: #0B192C;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 101, 0, 0.3);
}

@media (max-width: 991.98px) {
    .drawingoutcome-header-nav .navbar-collapse {
        background-color: #0B192C;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        margin-top: 0.5rem;
        padding-bottom: 1rem;
    }

    .drawingoutcome-header .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .drawingoutcome-header .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

@media (min-width: 992px) {
    .drawingoutcome-header-nav .container-fluid {
        position: relative;
    }

    .drawingoutcome-logo-wrapper {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0 !important;
    }

    .drawingoutcome-logo-spacer {
        width: 180px;
    }

    .drawingoutcome-nav-left {
        flex: 1;
        justify-content: flex-end;
    }

    .drawingoutcome-nav-right {
        flex: 1;
        justify-content: flex-start;
    }
}

.drawingoutcome-footer {
    background-color: #F5F7F8;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.drawingoutcome-footer .footer-wrapper {
    background-color: #0B192C;
    color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(11, 25, 44, 0.15);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.drawingoutcome-footer .footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.drawingoutcome-footer .footer-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #D1D5DB;
}

.drawingoutcome-footer .footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    position: relative;
    padding-bottom: 8px;
}

.drawingoutcome-footer .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #FF6500;
}

.drawingoutcome-footer .footer-links-list li {
    margin-bottom: 0.5rem;
}

.drawingoutcome-footer .footer-link {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.drawingoutcome-footer .footer-link:hover {
    color: #008DDA;
    transform: translateX(3px);
}

.drawingoutcome-footer .footer-contact-info {
    font-size: 0.875rem;
}

.drawingoutcome-footer .footer-contact-text {
    color: #D1D5DB;
    line-height: 1.5;
}

.drawingoutcome-footer .footer-icon {
    color: #FF6500;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.drawingoutcome-footer .footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.drawingoutcome-footer .footer-copyright {
    font-size: 0.8rem;
    color: #D1D5DB;
}

.drawingoutcome-footer .footer-tagline {
    font-size: 0.8rem;
    color: #D1D5DB;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 767.98px) {
    .drawingoutcome-footer .footer-wrapper {
        padding: 2rem 1.25rem;
    }

    .drawingoutcome-footer .footer-title {
        margin-top: 1rem;
    }
}

.case-detail-page-wrapper {
    background-color: #F5F7F8;
    color: #1E3E62;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.case-detail-page-wrapper .case-detail-hero {
    background-color: #0B192C;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.case-detail-page-wrapper .case-detail-hero__bg-glow {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 141, 218, 0.1) 0%, rgba(11, 25, 44, 0) 80%);
    pointer-events: none;
    z-index: -1;
}

.case-detail-page-wrapper .case-detail-hero__grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: -1;
}

.case-detail-page-wrapper .case-detail-hero__tag {
    background-color: rgba(0, 141, 218, 0.15);
    color: #008DDA;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 141, 218, 0.3);
}

.case-detail-page-wrapper .case-detail-hero__title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.3;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .case-detail-page-wrapper .case-detail-hero__title {
        font-size: 1.5rem !important;
    }
}

.case-detail-page-wrapper .case-panel {
    background: #FFFFFF;
    border: 1px solid rgba(11, 25, 44, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(11, 25, 44, 0.04);
    padding: 1.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-detail-page-wrapper .case-panel:hover {
    box-shadow: 0 15px 35px rgba(11, 25, 44, 0.08);
}

.case-detail-page-wrapper .case-image-panel {
    padding: 0;
    overflow: hidden;
}

.case-detail-page-wrapper .case-main-img {
    height: 400px;
    object-fit: cover;
    display: block;
}

@media (max-width: 767.98px) {
    .case-detail-page-wrapper .case-main-img {
        height: 250px;
    }
}

.case-detail-page-wrapper .case-panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #F5F7F8;
    padding-bottom: 1rem;
}

.case-detail-page-wrapper .panel-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0B192C;
    margin-bottom: 0;
}

.case-detail-page-wrapper .icon-accent {
    font-size: 1.75rem;
    color: #FF6500;
}

.case-detail-page-wrapper .section-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #1E3E62;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-detail-page-wrapper .section-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5C6B73;
}

.case-detail-page-wrapper .panel-divider {
    border-color: #F5F7F8;
    margin: 1.5rem 0;
}

.case-detail-page-wrapper .case-sidebar-panel {
    background: #FFFFFF;
    border: 1px solid rgba(11, 25, 44, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(11, 25, 44, 0.04);
    padding: 1.5rem;
}

.case-detail-page-wrapper .highlighted-panel {
    background-color: #0B192C;
    border-color: rgba(255, 255, 255, 0.1);
}

.case-detail-page-wrapper .sidebar-panel-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0B192C;
    margin-bottom: 1rem;
}

.case-detail-page-wrapper .highlighted-panel .sidebar-panel-title {
    color: #FFFFFF;
}

.case-detail-page-wrapper .sidebar-panel-desc {
    font-size: 0.85rem;
    color: #5C6B73;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.case-detail-page-wrapper .bg-dark-input {
    background-color: #1E3E62 !important;
    color: #FFFFFF !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.case-detail-page-wrapper .bg-dark-input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.case-detail-page-wrapper .btn-accent {
    background-color: #FF6500;
    color: #FFFFFF;
    border: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.case-detail-page-wrapper .btn-accent:hover {
    background-color: #e05900;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.case-detail-page-wrapper .comment-card {
    background: #F5F7F8;
    border: 1px solid rgba(11, 25, 44, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.25s ease;
}

.case-detail-page-wrapper .reply-comment {
    margin-left: 2.5rem;
    border-left: 3px solid #FF6500;
}

.case-detail-page-wrapper .comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0.75rem;
}

.case-detail-page-wrapper .comment-author-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.case-detail-page-wrapper .avatar-initials {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.case-detail-page-wrapper .bg-primary-blue {
    background-color: #1E3E62;
}

.case-detail-page-wrapper .bg-accent-orange {
    background-color: #FF6500;
}

.case-detail-page-wrapper .comment-author-details {
    display: flex;
    flex-direction: column;
}

.case-detail-page-wrapper .comment-author-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0B192C;
}

.case-detail-page-wrapper .comment-author-role {
    font-size: 0.75rem;
    color: #5C6B73;
}

.case-detail-page-wrapper .comment-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
}

.case-detail-page-wrapper .comment-badge {
    background-color: rgba(0, 141, 218, 0.1);
    color: #008DDA;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.case-detail-page-wrapper .comment-time {
    color: #5C6B73;
}

.case-detail-page-wrapper .comment-content {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #1E3E62;
    margin-bottom: 0.75rem;
}

.case-detail-page-wrapper .comment-actions {
    display: flex;
    gap: 12px;
}

.case-detail-page-wrapper .comment-action-btn {
    background: transparent;
    border: none;
    color: #5C6B73;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.case-detail-page-wrapper .comment-action-btn:hover {
    background-color: rgba(11, 25, 44, 0.05);
    color: #008DDA;
}

.case-detail-page-wrapper .comment-action-btn.active {
    color: #FF6500;
    background-color: rgba(255, 101, 0, 0.05);
}

.case-detail-page-wrapper .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1E3E62;
}

.case-detail-page-wrapper .form-control {
    border-radius: 6px;
    border: 1px solid rgba(11, 25, 44, 0.15);
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
}

.case-detail-page-wrapper .form-control:focus {
    border-color: #008DDA;
    box-shadow: 0 0 0 3px rgba(0, 141, 218, 0.15);
}

.case-detail-page-wrapper .comment-submit-btn {
    background-color: #1E3E62;
    border-color: #1E3E62;
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s;
}

.case-detail-page-wrapper .comment-submit-btn:hover {
    background-color: #0B192C;
    border-color: #0B192C;
}

.case-detail-page-wrapper .comments-states-switch .btn-outline-primary {
    border-color: rgba(0, 141, 218, 0.3);
    color: #008DDA;
    font-weight: 600;
    padding: 6px 16px;
}

.case-detail-page-wrapper .comments-states-switch .btn-outline-primary:hover,
.case-detail-page-wrapper .comments-states-switch .btn-outline-primary.active {
    background-color: #008DDA;
    border-color: #008DDA;
    color: #FFFFFF;
}

/* ===== PAGE TEMPLATE: decision-matrix ===== */
.drawingoutcome-header {
    background-color: #0B192C;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.drawingoutcome-header-nav {
    padding: 0.75rem 0;
}

.drawingoutcome-logo-img {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.drawingoutcome-brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.drawingoutcome-header .nav-link {
    color: #D1D5DB;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    transition: color 0.25s ease;
}

.drawingoutcome-header .nav-link:hover,
.drawingoutcome-header .nav-link:focus,
.drawingoutcome-header .nav-link.active {
    color: #FF6500;
}

.drawingoutcome-cta-btn {
    background-color: #FF6500;
    color: #0B192C;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    transition: all 0.25s ease;
    border: none;
}

.drawingoutcome-cta-btn:hover {
    background-color: #FF8533;
    color: #0B192C;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 101, 0, 0.3);
}

@media (max-width: 991.98px) {
    .drawingoutcome-header-nav .navbar-collapse {
        background-color: #0B192C;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        margin-top: 0.5rem;
        padding-bottom: 1rem;
    }

    .drawingoutcome-header .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .drawingoutcome-header .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

@media (min-width: 992px) {
    .drawingoutcome-header-nav .container-fluid {
        position: relative;
    }

    .drawingoutcome-logo-wrapper {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0 !important;
    }

    .drawingoutcome-logo-spacer {
        width: 180px;
    }

    .drawingoutcome-nav-left {
        flex: 1;
        justify-content: flex-end;
    }

    .drawingoutcome-nav-right {
        flex: 1;
        justify-content: flex-start;
    }
}

.drawing-hero {
    background-color: #0B192C;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    z-index: 1;
}

.drawing-hero .drawing-hero__bg-glow {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(0, 141, 218, 0.15) 0%, rgba(11, 25, 44, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

.drawing-hero .drawing-hero__grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: -1;
}

.drawing-hero .drawing-hero__image-wrapper {
    max-width: 480px;
    height: 520px;
    z-index: 2;
}

.drawing-hero .drawing-hero__portrait-container {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background-color: #1E3E62;
}

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

.drawing-hero .drawing-hero__widget {
    position: absolute;
    background: rgba(30, 62, 98, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.drawing-hero .drawing-hero__widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.drawing-hero .widget--status {
    top: 8%;
    left: -10%;
}

.drawing-hero .widget--conflict {
    bottom: 25%;
    left: -15%;
    max-width: 260px;
}

.drawing-hero .widget--stats {
    top: 15%;
    right: -10%;
}

.drawing-hero .widget__badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.drawing-hero .badge--resolved {
    background-color: rgba(0, 141, 218, 0.2);
    color: #008DDA;
}

.drawing-hero .widget__text {
    font-size: 0.8rem;
    color: #D1D5DB;
    font-weight: 500;
}

.drawing-hero .text-orange {
    color: #FF6500;
}

.drawing-hero .widget__title {
    font-size: 0.85rem;
    font-weight: 700;
}

.drawing-hero .widget__desc {
    font-size: 0.75rem;
    color: #D1D5DB;
    line-height: 1.4;
}

.drawing-hero .widget__icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: rgba(255, 101, 0, 0.2);
    color: #FF6500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.drawing-hero .widget__number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

.drawing-hero .widget__label {
    font-size: 0.7rem;
    color: #D1D5DB;
}

.drawing-hero .drawing-hero__tag {
    background-color: rgba(0, 141, 218, 0.15);
    color: #008DDA;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 141, 218, 0.3);
}

.drawing-hero .drawing-hero__headline {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: #FFFFFF;
}

.drawing-hero .drawing-hero__subheadline {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #D1D5DB;
    max-width: 540px;
}

.drawing-hero .drawing-hero__cta {
    background-color: #FF6500;
    border: none;
    color: #FFFFFF;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(255, 101, 0, 0.4);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.drawing-hero .drawing-hero__cta:hover {
    background-color: #e05900;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 101, 0, 0.6);
    color: #FFFFFF;
}

@media (max-width: 991.98px) {
    .drawing-hero .drawing-hero__image-wrapper {
        margin-top: 3rem;
        max-width: 380px;
        height: 420px;
    }

    .drawing-hero .widget--status {
        left: -5%;
    }

    .drawing-hero .widget--conflict {
        left: -10%;
        max-width: 220px;
    }

    .drawing-hero .widget--stats {
        right: -5%;
    }
}

@media (max-width: 767.98px) {
    .drawing-hero .drawing-hero__headline {
        font-size: 18px !important;
    }

    .drawing-hero .drawing-hero__subheadline {
        font-size: 0.9rem;
    }

    .drawing-hero .drawing-hero__image-wrapper {
        max-width: 300px;
        height: 340px;
    }

    .drawing-hero .drawing-hero__widget {
        padding: 8px 12px;
    }

    .drawing-hero .widget--status {
        left: -2%;
        top: 5%;
    }

    .drawing-hero .widget--conflict {
        left: -5%;
        bottom: 20%;
        max-width: 180px;
    }

    .drawing-hero .widget--stats {
        right: -2%;
        top: 12%;
    }
}

.drawingoutcome-footer {
    background-color: #F5F7F8;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.drawingoutcome-footer .footer-wrapper {
    background-color: #0B192C;
    color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(11, 25, 44, 0.15);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.drawingoutcome-footer .footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.drawingoutcome-footer .footer-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #D1D5DB;
}

.drawingoutcome-footer .footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    position: relative;
    padding-bottom: 8px;
}

.drawingoutcome-footer .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #FF6500;
}

.drawingoutcome-footer .footer-links-list li {
    margin-bottom: 0.5rem;
}

.drawingoutcome-footer .footer-link {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.drawingoutcome-footer .footer-link:hover {
    color: #008DDA;
    transform: translateX(3px);
}

.drawingoutcome-footer .footer-contact-info {
    font-size: 0.875rem;
}

.drawingoutcome-footer .footer-contact-text {
    color: #D1D5DB;
    line-height: 1.5;
}

.drawingoutcome-footer .footer-icon {
    color: #FF6500;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.drawingoutcome-footer .footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.drawingoutcome-footer .footer-copyright {
    font-size: 0.8rem;
    color: #D1D5DB;
}

.drawingoutcome-footer .footer-tagline {
    font-size: 0.8rem;
    color: #D1D5DB;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 767.98px) {
    .drawingoutcome-footer .footer-wrapper {
        padding: 2rem 1.25rem;
    }

    .drawingoutcome-footer .footer-title {
        margin-top: 1rem;
    }
}

.drawingoutcome-detail-page .breadcrumb-link {
    color: #008DDA;
    text-decoration: none;
    font-weight: 500;
}

.drawingoutcome-detail-page .breadcrumb-link:hover {
    color: #FF6500;
}

.drawingoutcome-detail-page .detail-panel {
    background-color: #1E3E62;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.drawingoutcome-detail-page .meta-panel {
    background-color: #0B192C;
    padding: 1.25rem 2rem;
}

.drawingoutcome-detail-page .meta-label {
    font-size: 0.75rem;
    color: #D1D5DB;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.drawingoutcome-detail-page .meta-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFFFFF;
}

.drawingoutcome-detail-page .content-panel-title {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.75rem;
}

.drawingoutcome-detail-page .content-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    max-height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.drawingoutcome-detail-page .content-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drawingoutcome-detail-page .content-body {
    line-height: 1.7;
    font-size: 1rem;
}

.drawingoutcome-detail-page .content-body h1,
.drawingoutcome-detail-page .content-body h2,
.drawingoutcome-detail-page .content-body h3,
.drawingoutcome-detail-page .content-body h4 {
    color: #FFFFFF;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.drawingoutcome-detail-page .content-body h2 {
    font-size: 1.4rem;
}

.drawingoutcome-detail-page .content-body h3 {
    font-size: 1.2rem;
}

.drawingoutcome-detail-page .content-body p {
    margin-bottom: 1.25rem;
}

.drawingoutcome-detail-page .content-body ul {
    list-style: none;
    padding-left: 0;
}

.drawingoutcome-detail-page .content-body ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.drawingoutcome-detail-page .content-body ul li::before {
    content: "\e9c4";
    font-family: 'boxicons' !important;
    position: absolute;
    left: 0;
    top: 2px;
    color: #FF6500;
}

.drawingoutcome-detail-page .panel-badge {
    background-color: rgba(255, 101, 0, 0.15);
    color: #FF6500;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.drawingoutcome-detail-page .criterion-item {
    background-color: #0B192C;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.drawingoutcome-detail-page .criterion-title {
    font-size: 1.05rem;
    font-weight: 600;
}

.drawingoutcome-detail-page .criterion-desc {
    font-size: 0.85rem;
}

.drawingoutcome-detail-page .criterion-toggles .btn {
    background-color: #1E3E62;
    color: #D1D5DB;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    padding: 0.5rem 1rem;
}

.drawingoutcome-detail-page .criterion-toggles .btn.active {
    background-color: #FF6500;
    color: #FFFFFF;
    border-color: #FF6500;
}

.drawingoutcome-detail-page .matrix-output-box {
    background-color: #0B192C;
    border: 1px solid rgba(255, 101, 0, 0.3);
}

.drawingoutcome-detail-page .output-score {
    font-size: 2.25rem;
    font-weight: 800;
}

.drawingoutcome-detail-page .output-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.drawingoutcome-detail-page .output-recommendation-text {
    font-size: 1.15rem;
}

.drawingoutcome-detail-page .comment-card {
    background-color: #0B192C;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1.5rem;
}

.drawingoutcome-detail-page .comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.drawingoutcome-detail-page .comment-author-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.drawingoutcome-detail-page .avatar-initials {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 0.95rem;
}

.drawingoutcome-detail-page .bg-primary-blue {
    background-color: #008DDA;
}

.drawingoutcome-detail-page .bg-accent-orange {
    background-color: #FF6500;
}

.drawingoutcome-detail-page .comment-author-details {
    display: flex;
    flex-direction: column;
}

.drawingoutcome-detail-page .comment-author-name {
    font-weight: 600;
    color: #FFFFFF;
    font-size: 0.95rem;
}

.drawingoutcome-detail-page .comment-author-role {
    font-size: 0.75rem;
    color: #D1D5DB;
}

.drawingoutcome-detail-page .comment-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.drawingoutcome-detail-page .comment-badge {
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.drawingoutcome-detail-page .status-verified {
    background-color: rgba(0, 141, 218, 0.2);
    color: #008DDA;
}

.drawingoutcome-detail-page .comment-time {
    font-size: 0.75rem;
    color: #D1D5DB;
}

.drawingoutcome-detail-page .comment-content {
    font-size: 0.925rem;
    color: #D1D5DB;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.drawingoutcome-detail-page .comment-actions {
    display: flex;
    gap: 1rem;
}

.drawingoutcome-detail-page .comment-action-btn {
    background: none;
    border: none;
    color: #D1D5DB;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.drawingoutcome-detail-page .comment-action-btn:hover,
.drawingoutcome-detail-page .comment-action-btn.active {
    color: #FF6500;
}

.drawingoutcome-detail-page .custom-input {
    background-color: #0B192C;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    border-radius: 6px;
    padding: 0.65rem 0.75rem;
}

.drawingoutcome-detail-page .custom-input:focus {
    background-color: #0B192C;
    border-color: #FF6500;
    box-shadow: none;
    color: #FFFFFF;
}

.drawingoutcome-detail-page .custom-input::placeholder {
    color: #8c9bb0;
    opacity: 1;
}

.drawingoutcome-detail-page .btn-orange {
    background-color: #FF6500;
    color: #FFFFFF;
    transition: all 0.2s ease;
}

.drawingoutcome-detail-page .btn-orange:hover {
    background-color: #e05900;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 101, 0, 0.3);
    color: #FFFFFF;
}

.drawingoutcome-detail-page .share-btn {
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.drawingoutcome-detail-page .share-btn:hover {
    transform: translateY(-2px);
    color: #FFFFFF;
}

.drawingoutcome-detail-page .share-twitter {
    background-color: #1DA1F2;
}

.drawingoutcome-detail-page .share-facebook {
    background-color: #1877F2;
}

.drawingoutcome-detail-page .share-linkedin {
    background-color: #0A66C2;
}

.drawingoutcome-detail-page .sidebar-links-list {
    list-style: none;
}

.drawingoutcome-detail-page .sidebar-links-list li {
    font-size: 0.9rem;
}

/* ===== PAGE TEMPLATE: guides ===== */
.drawingoutcome-header {
    background-color: #0B192C;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.drawingoutcome-header-nav {
    padding: 0.75rem 0;
}

.drawingoutcome-logo-img {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.drawingoutcome-brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.drawingoutcome-header .nav-link {
    color: #D1D5DB;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    transition: color 0.25s ease;
}

.drawingoutcome-header .nav-link:hover,
.drawingoutcome-header .nav-link:focus,
.drawingoutcome-header .nav-link.active {
    color: #FF6500;
}

.drawingoutcome-cta-btn {
    background-color: #FF6500;
    color: #0B192C;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    transition: all 0.25s ease;
    border: none;
}

.drawingoutcome-cta-btn:hover {
    background-color: #FF8533;
    color: #0B192C;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 101, 0, 0.3);
}

@media (max-width: 991.98px) {
    .drawingoutcome-header-nav .navbar-collapse {
        background-color: #0B192C;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        margin-top: 0.5rem;
        padding-bottom: 1rem;
    }

    .drawingoutcome-header .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .drawingoutcome-header .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

@media (min-width: 992px) {
    .drawingoutcome-header-nav .container-fluid {
        position: relative;
    }

    .drawingoutcome-logo-wrapper {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0 !important;
    }

    .drawingoutcome-logo-spacer {
        width: 180px;
    }

    .drawingoutcome-nav-left {
        flex: 1;
        justify-content: flex-end;
    }

    .drawingoutcome-nav-right {
        flex: 1;
        justify-content: flex-start;
    }
}

.drawing-hero {
    background-color: #0B192C;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    z-index: 1;
}

.drawing-hero .drawing-hero__bg-glow {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(0, 141, 218, 0.15) 0%, rgba(11, 25, 44, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

.drawing-hero .drawing-hero__grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: -1;
}

.drawing-hero .drawing-hero__image-wrapper {
    max-width: 480px;
    height: 520px;
    z-index: 2;
}

.drawing-hero .drawing-hero__portrait-container {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background-color: #1E3E62;
}

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

.drawing-hero .drawing-hero__widget {
    position: absolute;
    background: rgba(30, 62, 98, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.drawing-hero .drawing-hero__widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.drawing-hero .widget--status {
    top: 8%;
    left: -10%;
}

.drawing-hero .widget--owner {
    bottom: 8%;
    right: -5%;
}

.drawing-hero .widget__badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.drawing-hero .badge--resolved {
    background-color: rgba(0, 141, 218, 0.2);
    color: #008DDA;
}

.drawing-hero .widget__text {
    font-size: 0.8rem;
    color: #D1D5DB;
    font-weight: 500;
}

.drawing-hero .text-blue-light {
    color: #008DDA;
    font-size: 1.25rem;
}

.drawing-hero .widget__owner-title {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #D1D5DB;
    line-height: 1.2;
}

.drawing-hero .widget__owner-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #FFFFFF;
}

.drawing-hero .drawing-hero__tag {
    background-color: rgba(0, 141, 218, 0.15);
    color: #008DDA;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 141, 218, 0.3);
}

.drawing-hero .drawing-hero__headline {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: #FFFFFF;
}

.drawing-hero .drawing-hero__subheadline {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #D1D5DB;
    max-width: 540px;
}

.drawing-hero .drawing-hero__cta {
    background-color: #FF6500;
    border: none;
    color: #FFFFFF;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(255, 101, 0, 0.4);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.drawing-hero .drawing-hero__cta:hover {
    background-color: #e05900;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 101, 0, 0.6);
    color: #FFFFFF;
}

.drawing-hero .drawing-hero__metrics-row {
    margin-top: 2rem;
}

.drawing-hero .metric-item {
    display: flex;
    flex-direction: column;
}

.drawing-hero .metric-number {
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
}

.drawing-hero .metric-label {
    font-size: 0.85rem;
    color: #D1D5DB;
    margin-top: 4px;
}

.drawing-hero .metric-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 991.98px) {
    .drawing-hero .drawing-hero__image-wrapper {
        margin-top: 3rem;
        max-width: 380px;
        height: 420px;
    }

    .drawing-hero .widget--status {
        left: -5%;
    }

    .drawing-hero .widget--owner {
        right: -2%;
    }
}

@media (max-width: 767.98px) {
    .drawing-hero .drawing-hero__headline {
        font-size: 18px !important;
    }

    .drawing-hero .drawing-hero__subheadline {
        font-size: 0.9rem;
    }

    .drawing-hero .drawing-hero__image-wrapper {
        max-width: 300px;
        height: 340px;
    }

    .drawing-hero .drawing-hero__widget {
        padding: 8px 12px;
    }

    .drawing-hero .widget--status {
        left: -2%;
        top: 5%;
    }

    .drawing-hero .widget--owner {
        right: -2%;
        bottom: 5%;
    }

    .drawing-hero .widget__number {
        font-size: 0.95rem;
    }

    .drawing-hero .metric-number {
        font-size: 1.5rem;
    }

    .drawing-hero .metric-label {
        font-size: 0.75rem;
    }
}

.drawingoutcome-footer {
    background-color: #F5F7F8;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.drawingoutcome-footer .footer-wrapper {
    background-color: #0B192C;
    color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(11, 25, 44, 0.15);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.drawingoutcome-footer .footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.drawingoutcome-footer .footer-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #D1D5DB;
}

.drawingoutcome-footer .footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    position: relative;
    padding-bottom: 8px;
}

.drawingoutcome-footer .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #FF6500;
}

.drawingoutcome-footer .footer-links-list li {
    margin-bottom: 0.5rem;
}

.drawingoutcome-footer .footer-link {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.drawingoutcome-footer .footer-link:hover {
    color: #008DDA;
    transform: translateX(3px);
}

.drawingoutcome-footer .footer-contact-info {
    font-size: 0.875rem;
}

.drawingoutcome-footer .footer-contact-text {
    color: #D1D5DB;
    line-height: 1.5;
}

.drawingoutcome-footer .footer-icon {
    color: #FF6500;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.drawingoutcome-footer .footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.drawingoutcome-footer .footer-copyright {
    font-size: 0.8rem;
    color: #D1D5DB;
}

.drawingoutcome-footer .footer-tagline {
    font-size: 0.8rem;
    color: #D1D5DB;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 767.98px) {
    .drawingoutcome-footer .footer-wrapper {
        padding: 2rem 1.25rem;
    }

    .drawingoutcome-footer .footer-title {
        margin-top: 1rem;
    }
}

.guides-detail-block {
    background-color: #F5F7F8;
    color: #1E3E62;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.guides-detail-block .floating-panel {
    background-color: #FFFFFF;
    border-radius: 16px;
    border: 1px solid rgba(11, 25, 44, 0.08);
    box-shadow: 0 10px 30px rgba(11, 25, 44, 0.05);
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guides-detail-block .floating-panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(11, 25, 44, 0.08);
}

.guides-detail-block h1,
.guides-detail-block h2,
.guides-detail-block h3,
.guides-detail-block h4,
.guides-detail-block h5,
.guides-detail-block h6 {
    color: #0B192C;
}

.guides-article-body h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0B192C;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.guides-article-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0B192C;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.guides-article-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1E3E62;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.guides-article-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 1.25rem;
}

.guides-article-body ul {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    list-style-type: square;
}

.guides-article-body li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 0.5rem;
}

.guides-article-body strong {
    color: #0B192C;
    font-weight: 700;
}

.guides-comments-section {
    background-color: #F5F7F8;
}

.guides-comments-section .comment-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(11, 25, 44, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(11, 25, 44, 0.03);
    transition: all 0.3s ease;
}

.guides-comments-section .comment-card.reply-comment {
    background-color: #FAFBFC;
    border-left: 3px solid #FF6500;
}

.guides-comments-section .comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.guides-comments-section .comment-author-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guides-comments-section .avatar-initials {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #FFFFFF;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.guides-comments-section .bg-primary-blue {
    background-color: #1E3E62;
}

.guides-comments-section .bg-accent-orange {
    background-color: #FF6500;
}

.guides-comments-section .comment-author-details {
    display: flex;
    flex-direction: column;
}

.guides-comments-section .comment-author-name {
    font-weight: 700;
    color: #0B192C;
    font-size: 0.95rem;
}

.guides-comments-section .comment-author-role {
    font-size: 0.75rem;
    color: #5C6B73;
}

.guides-comments-section .comment-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.guides-comments-section .comment-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.guides-comments-section .status-verified {
    background-color: rgba(0, 141, 218, 0.1);
    color: #008DDA;
}

.guides-comments-section .comment-time {
    color: #5C6B73;
}

.guides-comments-section .comment-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1E3E62;
    margin-bottom: 1rem;
}

.guides-comments-section .comment-actions {
    display: flex;
    gap: 1rem;
}

.guides-comments-section .comment-action-btn {
    background: none;
    border: none;
    padding: 0;
    color: #5C6B73;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.guides-comments-section .comment-action-btn:hover,
.guides-comments-section .comment-action-btn.active {
    color: #FF6500;
}

.guides-comments-section .form-control {
    background-color: #F5F7F8;
    color: #1E3E62;
    border: 1px solid rgba(11, 25, 44, 0.15);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.guides-comments-section .form-control:focus {
    background-color: #FFFFFF;
    color: #1E3E62;
    border-color: #FF6500;
    box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.15);
}

.guides-comments-section .form-control::placeholder {
    color: #5C6B73;
    opacity: 0.8;
}

.guides-detail-block .newsletter-input {
    background-color: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.guides-detail-block .newsletter-input:focus {
    background-color: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    border-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.guides-detail-block .newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.guides-comments-section .btn-primary {
    background-color: #0B192C;
    border: 1px solid #0B192C;
    color: #FFFFFF;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
}

.guides-comments-section .btn-primary:hover {
    background-color: #1E3E62;
    border-color: #1E3E62;
    transform: translateY(-1px);
}

.guides-detail-block .btn-accent {
    background-color: #FF6500;
    color: #FFFFFF;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    transition: all 0.2s ease;
}

.guides-detail-block .btn-accent:hover {
    background-color: #FF8533;
    transform: translateY(-1px);
}

.guides-comments-section .js-state-btn {
    border: 1px solid rgba(11, 25, 44, 0.15);
    background-color: #FFFFFF;
    color: #1E3E62;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.guides-comments-section .js-state-btn:hover,
.guides-comments-section .js-state-btn.active {
    background-color: #0B192C;
    color: #FFFFFF;
    border-color: #0B192C;
}

.guides-detail-block .accent-bg {
    background-color: #1E3E62;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guides-detail-block .share-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F5F7F8;
    color: #1E3E62;
    border: 1px solid rgba(11, 25, 44, 0.1);
    transition: all 0.2s ease;
    text-decoration: none;
}

.guides-detail-block .share-icon-btn:hover {
    background-color: #FF6500;
    color: #FFFFFF;
    transform: scale(1.1);
}

.guides-detail-block .recent-post-link {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(11, 25, 44, 0.05);
    transition: transform 0.2s ease;
}

.guides-detail-block .recent-post-link:hover {
    transform: translateX(4px);
}

.guides-detail-block .recent-post-item:last-child .recent-post-link {
    border-bottom: none;
}

/* ===== site repair overrides ===== */
@media (min-width: 992px) {
    .drawingoutcome-header-nav .container-fluid {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        flex-wrap: nowrap;
        position: relative;
    }

    .drawingoutcome-logo-wrapper {
        position: static;
        transform: none;
        flex: 0 0 auto;
        min-width: max-content;
        margin: 0 !important;
    }

    .drawingoutcome-header-nav .navbar-collapse {
        flex: 1 1 auto;
        min-width: 0;
    }

    .drawingoutcome-header-nav .navbar-collapse > .d-flex {
        justify-content: flex-end !important;
        gap: 1rem;
    }

    .drawingoutcome-logo-spacer {
        display: none !important;
        width: 0;
    }

    .drawingoutcome-nav-left,
    .drawingoutcome-nav-right {
        flex: 0 0 auto;
        align-items: center;
        justify-content: flex-end;
        gap: 0.25rem;
    }

    .drawingoutcome-header .nav-link,
    .drawingoutcome-cta-btn {
        white-space: nowrap;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .drawingoutcome-brand-name {
        font-size: 1.05rem;
    }

    .drawingoutcome-logo-img {
        max-width: 38px;
    }

    .drawingoutcome-header .nav-link {
        font-size: 0.86rem;
        padding-inline: 0.45rem;
    }

    .drawingoutcome-cta-btn {
        font-size: 0.84rem;
        padding-inline: 0.9rem;
    }
}

.drawing-hero .drawing-hero__image-wrapper {
    max-width: min(480px, calc(100vw - 2rem));
}

.drawing-hero .widget--status {
    left: 2%;
}

.drawing-hero .widget--conflict {
    left: 2%;
    max-width: min(260px, calc(100% - 2rem));
}

.drawing-hero .widget--stats,
.drawing-hero .widget--owner {
    right: 2%;
}

@media (max-width: 767.98px) {
    .drawing-hero .widget--status,
    .drawing-hero .widget--conflict {
        left: 8px;
    }

    .drawing-hero .widget--stats,
    .drawing-hero .widget--owner {
        right: 8px;
    }
}

.drawing-methodology .text-secondary,
.drawing-methodology .accordion-body,
.drawing-methodology__sim-content {
    color: #E4ECF4 !important;
    opacity: 1;
}

.drawing-methodology .text-light,
.drawing-methodology__lead {
    color: #F7FBFF !important;
}

.drawing-methodology__panel,
.drawing-methodology__card {
    background-color: #21476c;
    border-color: rgba(255, 255, 255, 0.16);
}

.drawing-methodology__sim-display {
    background-color: #071a2f;
    border-color: rgba(255, 255, 255, 0.18);
}

.drawing-methodology #faqAccordion .accordion-item {
    background-color: rgba(7, 26, 47, 0.52) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    padding: 0 !important;
    overflow: hidden;
}

.drawing-methodology #faqAccordion .accordion-button {
    background-color: rgba(255, 255, 255, 0.04) !important;
    color: #FFFFFF !important;
    padding: 1rem 1.25rem;
}

.drawing-methodology #faqAccordion .accordion-button:not(.collapsed) {
    background-color: rgba(0, 141, 218, 0.18) !important;
    color: #FFFFFF !important;
}

.drawing-methodology #faqAccordion .accordion-body {
    padding: 0 1.25rem 1.25rem;
}

.case-detail-page-wrapper .case-panel .text-white,
.case-detail-page-wrapper .case-panel .panel-title {
    color: #0B192C !important;
}

.case-detail-page-wrapper .case-panel .text-white-50,
.case-detail-page-wrapper .case-panel .section-text,
.case-detail-page-wrapper .case-panel .text-muted {
    color: #425466 !important;
    opacity: 1 !important;
}

.case-detail-page-wrapper .case-panel .section-subtitle,
.case-detail-page-wrapper .case-panel .form-label {
    color: #1E3E62 !important;
}

.case-detail-page-wrapper .case-sidebar-panel:not(.highlighted-panel) .text-white,
.case-detail-page-wrapper .case-sidebar-panel:not(.highlighted-panel) .sidebar-panel-title {
    color: #0B192C !important;
}

.case-detail-page-wrapper .case-sidebar-panel:not(.highlighted-panel) .text-white-50,
.case-detail-page-wrapper .case-sidebar-panel:not(.highlighted-panel) .sidebar-panel-desc {
    color: #425466 !important;
    opacity: 1 !important;
}

.drawingoutcome-thanks .thanks-card {
    background: #FFFFFF !important;
    border-color: rgba(11, 25, 44, 0.12) !important;
    box-shadow: 0 18px 45px rgba(11, 25, 44, 0.16) !important;
}

.drawingoutcome-thanks .thanks-title {
    color: #0B192C !important;
}

.drawingoutcome-thanks .thanks-text {
    color: #30465f !important;
    opacity: 1 !important;
}

.drawingoutcome-thanks .btn-thanks-secondary {
    color: #0B192C !important;
    border-color: rgba(11, 25, 44, 0.26) !important;
}

.drawingoutcome-thanks .btn-thanks-secondary:hover {
    background-color: rgba(11, 25, 44, 0.06) !important;
    color: #0B192C !important;
}

.drawingoutcome-footer .footer-featured-case {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.drawingoutcome-footer .footer-featured-kicker {
    display: block;
    color: #FF6500;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.drawingoutcome-footer .footer-featured-title {
    color: #FFFFFF;
    display: inline-block;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.45;
    text-decoration: none;
    margin-bottom: 0.8rem;
}

.drawingoutcome-footer .footer-featured-title:hover {
    color: #FF8533;
}

.drawingoutcome-footer .footer-featured-links {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.drawingoutcome-footer .footer-featured-link {
    font-size: 0.82rem;
}

.drawing-methodology #faqAccordion .accordion-button {
    justify-content: center;
    text-align: center;
    padding-left: 3rem;
    padding-right: 3rem;
    position: relative;
}

.drawing-methodology #faqAccordion .accordion-button::after {
    position: absolute;
    right: 1.25rem;
    margin-left: 0;
}

.drawing-methodology #faqAccordion .accordion-body {
    text-align: center;
    padding: 1.25rem 1.5rem;
}

.bluebeam-page__cta-row {
    max-width: 880px;
}

.bluebeam-page__cta {
    border-radius: 8px;
    font-weight: 700;
    padding: 0.85rem 1.2rem;
    text-decoration: none;
}

.bluebeam-page__cta-primary {
    background-color: #FF6500;
    border: 1px solid #FF6500;
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(255, 101, 0, 0.25);
}

.bluebeam-page__cta-primary:hover {
    background-color: #e05900;
    border-color: #e05900;
    color: #FFFFFF;
}

.bluebeam-page__cta-outline {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #FFFFFF;
}

.bluebeam-page__cta-outline:hover {
    background-color: rgba(255, 255, 255, 0.14);
    color: #FFFFFF;
}

#bluebeam-case-overview,
#bluebeam-revu-case,
#conflicting-requirements,
#review-outcome {
    scroll-margin-top: 110px;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .drawingoutcome-header-nav .container-fluid {
        gap: 0.75rem;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .drawingoutcome-brand-name {
        font-size: 0.95rem;
    }

    .drawingoutcome-logo-img {
        max-width: 34px;
    }

    .drawingoutcome-header .nav-link {
        font-size: 0.78rem;
        padding-inline: 0.3rem;
    }

    .drawingoutcome-cta-btn {
        font-size: 0.78rem;
        padding-inline: 0.65rem;
    }
}
