﻿:root {
    --color-primary-main: #2b354f;
    --color-primary-light: #49587e;
    --color-primary-dark: #161c2d;
    --color-primary-contrast: #ffffff;
    --color-secondary-main: #5c6b84;
    --color-secondary-light: #8998b3;
    --color-secondary-dark: #364154;
    --color-accent-main: #0066ff;
    --color-accent-chrome: #e2eafd;
    --color-accent-silver: #cbd5e1;
    --color-accent-titanium: #b59461;
    --bg-default: #f4f6fa;
    --bg-surface: #ffffff;
    --bg-surface-tint: #f0f4f9;
    --bg-surface-specular: #f8fafc;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted-val: #6b7280;
    --border-subtle: #e2e8f0;
    --border-chrome: #cbd5e1;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.theme-liquid-metal {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    background-color: var(--bg-default);
    color: var(--text-primary);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

a {
    color: var(--color-accent-main);
    text-decoration: none;
}

a:hover {
    color: var(--color-primary-main);
}

img,
video {
    max-width: 100%;
    height: auto;
}

/* ===== header ===== */
.site-header-block {
    background-color: #f8fafc;
    border-bottom: 1px solid #cbd5e1;
    box-shadow: 0 4px 20px 0 rgba(148, 163, 184, 0.25), inset 0 1px 0 #ffffff, inset 0 -1px 2px rgba(203, 213, 225, 0.5);
    z-index: 1030;
}

.site-header-block .site-navbar {
    padding: 0.875rem 0;
    background-color: #f8fafc;
}

.site-header-block .navbar-brand {
    text-decoration: none;
    padding: 0;
    margin-right: 1.5rem;
}

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

.site-header-block .brand-title-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.site-header-block .brand-name {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #161c2d;
    letter-spacing: -0.02em;
}

.site-header-block .brand-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #0066ff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-header-block .nav-link-list {
    display: flex;
    gap: 0.5rem;
}

.site-header-block .nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #2b354f;
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    border: 1px solid transparent;
}

.site-header-block .nav-link:hover,
.site-header-block .nav-link:focus {
    color: #0066ff;
    background-color: #e2eafd;
    border-color: #cbd5e1;
}

.site-header-block .custom-toggler {
    padding: 0.35rem 0.65rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(148, 163, 184, 0.15);
}

.site-header-block .custom-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 255, 0.25);
    outline: none;
}

.site-header-block .custom-toggler .navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 1.25em 1.25em;
}

.site-header-block .header-cta-btn {
    background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border: 1px solid #161c2d;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(22, 28, 45, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    text-decoration: none;
}

.site-header-block .header-cta-btn:hover,
.site-header-block .header-cta-btn:focus {
    background: linear-gradient(180deg, #3a4768 0%, #20273d 100%);
    color: #ffffff;
}

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

    .site-header-block .nav-link-list {
        flex-direction: column;
        gap: 0.25rem;
        margin-bottom: 1rem;
    }

    .site-header-block .nav-link {
        font-size: 0.8125rem;
        padding: 0.625rem 0.875rem;
    }

    .site-header-block .header-action-wrap {
        padding-top: 0.5rem;
        border-top: 1px solid #e2e8f0;
    }

    .site-header-block .header-cta-btn {
        width: 100%;
    }
}

/* ===== hero ===== */
.webevidence-hero-section {
    position: relative;
    background-color: #2b354f;
    padding-top: 4.5rem;
    padding-bottom: 5.5rem;
    overflow: hidden;
    color: #ffffff
}

.webevidence-hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1
}

.webevidence-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: blur(3px);
    opacity: 0.4
}

.webevidence-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(22, 28, 45, 0.85) 0%, rgba(43, 53, 79, 0.9) 60%, rgba(244, 246, 250, 0.3) 100%)
}

.webevidence-hero-content {
    z-index: 2
}

.webevidence-hero-pill-badge {
    background: linear-gradient(135deg, #ffffff 0%, #eef2ff 100%);
    color: #2b354f;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    border: 1px solid #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1)
}

.webevidence-hero-title {
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em
}

.webevidence-hero-lead {
    color: #e2eafd;
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto
}

.webevidence-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.75rem 1.625rem;
    border-radius: 10px;
    text-decoration: none;
    transition: none
}

.webevidence-btn-primary {
    background: linear-gradient(180deg, #0066ff 0%, #0052cc 100%);
    color: #ffffff;
    border: 1px solid #0047b3;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3)
}

.webevidence-btn-primary:hover {
    background: linear-gradient(180deg, #1a75ff 0%, #0059de 100%);
    color: #ffffff
}

.webevidence-btn-secondary {
    background: linear-gradient(180deg, #ffffff 0%, #e8edf4 100%);
    color: #161c2d;
    border: 1px solid #cbd5e1;
    box-shadow: 0 2px 6px rgba(148, 163, 184, 0.25), inset 0 1px 0 #ffffff
}

.webevidence-btn-secondary:hover {
    background: linear-gradient(180deg, #f8fafc 0%, #dbe3ed 100%);
    color: #161c2d
}

.webevidence-mockup-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.25), inset 0 1px 1px #ffffff;
    padding: 1.25rem;
    transform: perspective(1000px) rotateX(1.5deg);
    color: #111827
}

.webevidence-mockup-topbar {
    background: #edf2f7;
    border-radius: 10px;
    padding: 0.5rem 0.85rem;
    margin-bottom: 1.25rem;
    border: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 0.5rem
}

@media (max-width: 575.98px) {
    .webevidence-mockup-topbar {
        flex-wrap: wrap;
        gap: 0.4rem;
    }
    .webevidence-mockup-topbar .mockup-url-bar {
        font-size: 0.65rem;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        flex: 1 1 auto;
        min-width: 0;
    }
    .webevidence-mockup-topbar .mockup-badge {
        font-size: 0.65rem;
        white-space: nowrap;
        flex: 0 0 auto;
    }
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block
}

.mockup-dot-red {
    background: #ef4444
}

.mockup-dot-yellow {
    background: #f59e0b
}

.mockup-dot-green {
    background: #10b981
}

.mockup-url-bar {
    background: #ffffff;
    border: 1px solid #dbe2ea;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    color: #4b5563
}

.mockup-badge {
    background: #e2eafd;
    color: #0052cc;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 6px
}

.webevidence-claim-bar {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.85rem 1.25rem
}

.badge-claim {
    background: #2b354f;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    letter-spacing: 0.02em
}

.claim-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
    font-family: 'Space Grotesk', sans-serif
}

.badge-status {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #2b354f;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    box-shadow: inset 0 1px 0 #ffffff
}

.webevidence-source-card {
    background: #ffffff;
    border: 1px solid #dbe2ea;
    border-radius: 12px;
    padding: 1.1rem;
    height: 100%;
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.04)
}

.source-tag {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.25rem 0.5rem;
    border-radius: 4px
}

.tag-primary {
    background: #dcfce7;
    color: #15803d
}

.tag-secondary {
    background: #e0e7ff;
    color: #3730a3
}

.tag-derivative {
    background: #fee2e2;
    color: #b91c1c
}

.source-score {
    font-size: 0.75rem;
    font-weight: 600;
    color: #4b5563
}

.source-headline {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.35
}

.source-meta {
    border-top: 1px solid #f1f5f9;
    padding-top: 0.6rem;
    font-size: 0.775rem
}

.meta-item {
    display: flex;
    justify-content: space-between;
    padding: 0.2rem 0
}

.meta-label {
    color: #6b7280
}

.meta-value {
    color: #1e293b;
    font-weight: 500
}

.webevidence-hero-bottom-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45px;
    line-height: 0;
    z-index: 2
}

.webevidence-hero-bottom-curve svg {
    position: relative;
    display: block;
    width: 100%;
    height: 45px
}

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

    .webevidence-hero-title {
        font-size: 1.125rem;
        hyphens: auto
    }

    .claim-text {
        font-size: 0.95rem;
        hyphens: auto
    }

    .source-headline {
        font-size: 0.875rem;
        hyphens: auto
    }

    .webevidence-hero-lead {
        font-size: 0.875rem;
        line-height: 1.45
    }

    .webevidence-mockup-wrapper {
        padding: 0.85rem;
        transform: none
    }
}

/* ===== categories ===== */
.we-categories-section {
    background-color: #f4f6fa;
    position: relative;
}

.we-categories-section .we-pill-badge {
    background: linear-gradient(135deg, #ffffff 0%, #e2eafd 100%);
    border: 1px solid #cbd5e1;
    color: #0066ff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    box-shadow: 0 2px 6px -1px rgba(27, 38, 59, 0.06), inset 0 1px 0 #ffffff;
}

.we-categories-section .we-section-title {
    color: #111827;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.125rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.we-categories-section .we-section-desc {
    color: #4b5563;
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.6;
}

.we-categories-section .we-filter-bar {
    background: linear-gradient(135deg, #ffffff 0%, #edf2f7 100%);
    border: 1px solid #cbd5e1;
    box-shadow: 0 4px 12px rgba(27, 38, 59, 0.05), inset 0 1px 0 #ffffff;
}

.we-categories-section .we-filter-btn {
    background: transparent;
    border: 1px solid transparent;
    color: #364154;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    cursor: pointer;
}

.we-categories-section .we-filter-btn:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #111827;
}

.we-categories-section .we-filter-btn.active {
    background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
    border-color: #161c2d;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(22, 28, 45, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.we-categories-section .we-cat-chip {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #dbe2ea;
    box-shadow: 0 4px 14px -3px rgba(30, 41, 59, 0.05), inset 0 1px 1px #ffffff;
}

.we-categories-section .we-cat-chip:hover {
    border-color: #0066ff;
    box-shadow: 0 8px 20px -4px rgba(0, 102, 255, 0.12), inset 0 1px 1px #ffffff;
}

.we-categories-section .we-cat-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border: 1px solid #cbd5e1;
    color: #0066ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.we-categories-section .we-cat-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #2b354f;
    background: #f1f5f9;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.we-categories-section .we-cat-name {
    color: #111827;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
}

.we-categories-section .we-cat-summary {
    color: #4b5563;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
}

.we-categories-section .we-cat-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #364154;
    font-weight: 500;
    border-color: #e2e8f0 !important;
}

.we-categories-section .we-guide-heading {
    color: #111827;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
}

.we-categories-section .we-guide-sub {
    color: #4b5563;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
}

.we-categories-section .we-view-all-link {
    color: #0066ff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
}

.we-categories-section .we-view-all-link:hover {
    color: #0047b3;
    text-decoration: underline !important;
}

.we-categories-section .we-article-card {
    background: #ffffff;
    border: 1px solid #dbe2ea;
    box-shadow: 0 8px 24px -6px rgba(30, 41, 59, 0.07), inset 0 1px 1px #ffffff;
}

.we-categories-section .we-article-thumb-link {
    height: 180px;
    background-color: #cbd5e1;
    overflow: hidden;
}

.we-categories-section .we-article-img {
    height: 100%;
    object-fit: cover;
    display: block;
}

.we-categories-section .we-article-badge {
    background: rgba(17, 24, 39, 0.85);
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.we-categories-section .we-article-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
}

.we-categories-section .we-article-title a {
    color: #111827;
}

.we-categories-section .we-article-title a:hover {
    color: #0066ff;
}

.we-categories-section .we-article-desc {
    color: #4b5563;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.55;
}

.we-categories-section .we-card-action-btn {
    background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
    color: #ffffff;
    border: 1px solid #161c2d;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(22, 28, 45, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.we-categories-section .we-card-action-btn:hover {
    background: linear-gradient(180deg, #3a4768 0%, #20293f 100%);
    color: #ffffff;
}

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

    .we-categories-section .we-section-desc {
        font-size: 0.9375rem;
    }

    .we-categories-section .we-cat-name,
    .we-categories-section .we-article-title {
        font-size: 1rem;
        hyphens: auto;
    }

    .we-categories-section .we-guide-heading {
        font-size: 1.25rem;
    }

    .we-categories-section .we-filter-bar {
        flex-direction: column;
    }

    .we-categories-section .we-filter-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== recent_cases ===== */
.cases-grid-block {
    background-color: #f4f6fa;
    position: relative;
    overflow: hidden;
}

.cases-grid-block .cases-grid-badge {
    background: linear-gradient(135deg, #ffffff 0%, #e2eafd 100%);
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    box-shadow: 0 2px 6px -1px rgba(27, 38, 59, 0.06), inset 0 1px 0 #ffffff;
}

.cases-grid-block .cases-badge-text {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: #2b354f;
}

.cases-grid-block .cases-main-heading {
    color: #111827;
    font-size: 2.125rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cases-grid-block .cases-sub-heading {
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 680px;
}

.cases-grid-block .cases-filter-btn {
    background: linear-gradient(180deg, #ffffff 0%, #e8edf4 100%);
    color: #2b354f;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0.55rem 1.15rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(148, 163, 184, 0.15), inset 0 1px 0 #ffffff;
    cursor: pointer;
}

.cases-grid-block .cases-filter-btn:hover,
.cases-grid-block .cases-filter-btn.active {
    background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
    color: #ffffff;
    border-color: #161c2d;
    box-shadow: 0 4px 10px rgba(22, 28, 45, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cases-grid-block .case-metal-card {
    background: linear-gradient(135deg, #ffffff 0%, #edf2f7 50%, #f9fafb 100%);
    border: 1px solid #dbe2ea;
    border-radius: 16px;
    box-shadow: 0 8px 24px -6px rgba(30, 41, 59, 0.07), inset 0 1px 1px #ffffff;
    overflow: hidden;
}

.cases-grid-block .case-metal-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 12px 30px -8px rgba(30, 41, 59, 0.12), inset 0 1px 1px #ffffff;
}

.cases-grid-block .case-card-img-wrap {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
}

.cases-grid-block .case-thumbnail {
    height: 220px;
    object-fit: cover;
    display: block;
}

.cases-grid-block .case-type-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(22, 28, 45, 0.85);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    letter-spacing: 0.03em;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.cases-grid-block .case-domain-indicator {
    font-size: 0.8125rem;
    color: #5c6b84;
    font-weight: 500;
}

.cases-grid-block .case-rating-pill {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
}

.cases-grid-block .case-rating-pill.high-risk {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.cases-grid-block .case-rating-pill.medium-risk {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #dbeafe;
}

.cases-grid-block .case-rating-pill.warning-risk {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fef3c7;
}

.cases-grid-block .case-title {
    font-size: 1.35rem;
    line-height: 1.3;
    font-weight: 600;
}

.cases-grid-block .case-title-link {
    color: #111827;
    text-decoration: none;
}

.cases-grid-block .case-title-link:hover {
    color: #0066ff;
}

.cases-grid-block .case-excerpt {
    color: #4b5563;
    font-size: 0.925rem;
    line-height: 1.55;
}

.cases-grid-block .case-evidence-footer {
    border-color: #e2e8f0 !important;
}

.cases-grid-block .case-audit-label {
    font-size: 0.7rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cases-grid-block .case-audit-val {
    font-size: 0.8125rem;
    color: #2b354f;
}

.cases-grid-block .case-action-btn {
    background: linear-gradient(180deg, #3a4768 0%, #1c2438 100%);
    color: #ffffff;
    border: 1px solid #161c2d;
    border-radius: 8px;
    padding: 0.55rem 1.15rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(22, 28, 45, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cases-grid-block .case-action-btn:hover {
    color: #ffffff;
    background: linear-gradient(180deg, #1a75ff 0%, #0052cc 100%);
    border-color: #0047b3;
}

.cases-grid-block .cases-all-btn {
    background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
    color: #ffffff;
    border: 1px solid #161c2d;
    border-radius: 10px;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(22, 28, 45, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cases-grid-block .cases-all-btn:hover {
    color: #ffffff;
    background: linear-gradient(180deg, #1a75ff 0%, #0052cc 100%);
    border-color: #0047b3;
}

@media (max-width: 767.98px) {
    .cases-grid-block .cases-main-heading {
        font-size: 1.5rem;
        hyphens: auto;
    }

    .cases-grid-block .cases-sub-heading {
        font-size: 0.9rem;
    }

    .cases-grid-block .case-title {
        font-size: 1.15rem;
    }

    .cases-grid-block .case-thumbnail {
        height: 180px;
    }

    .cases-grid-block .case-evidence-footer {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.75rem;
    }

    .cases-grid-block .case-action-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== client_requirements ===== */
.client-req-block {
    background-color: #f4f6fa;
    color: #111827;
    position: relative;
}

.client-req-block__badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    color: #0066ff;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    letter-spacing: 0.02em;
}

.client-req-block__title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 2.125rem;
    font-weight: 700;
    line-height: 1.2;
    color: #161c2d;
    letter-spacing: -0.02em;
}

.client-req-block__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #4b5563;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.client-req-block__card {
    background: linear-gradient(135deg, #ffffff 0%, #edf2f7 50%, #f9fafb 100%);
    border: 1px solid #dbe2ea;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px -6px rgba(30, 41, 59, 0.07), inset 0 1px 1px #ffffff;
}

.client-req-block__icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066ff;
    font-size: 1.375rem;
    box-shadow: inset 0 1px 0 #ffffff;
}

.client-req-block__step-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: #5c6b84;
    background: #ffffff;
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.client-req-block__card-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    color: #161c2d;
    letter-spacing: -0.015em;
}

.client-req-block__card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #4b5563;
}

.client-req-block__list {
    list-style: none;
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

.client-req-block__list-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #364154;
}

.client-req-block__list-item i {
    color: #0066ff;
    font-size: 0.9375rem;
    flex-shrink: 0;
}

.client-req-block__action-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(235, 241, 248, 0.85) 100%);
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(27, 38, 59, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.client-req-block__action-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #161c2d;
    line-height: 1.3;
}

.client-req-block__action-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.5;
}

.client-req-block__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    white-space: nowrap;
}

.client-req-block__btn--primary {
    background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
    color: #ffffff;
    border: 1px solid #161c2d;
    box-shadow: 0 4px 12px rgba(22, 28, 45, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.client-req-block__btn--primary:hover {
    background: linear-gradient(180deg, #3a4768 0%, #2b354f 100%);
    color: #ffffff;
}

.client-req-block__btn--secondary {
    background: linear-gradient(180deg, #ffffff 0%, #e8edf4 100%);
    color: #161c2d;
    border: 1px solid #cbd5e1;
    box-shadow: 0 2px 6px rgba(148, 163, 184, 0.2), inset 0 1px 0 #ffffff;
}

.client-req-block__btn--secondary:hover {
    background: linear-gradient(180deg, #f8fafc 0%, #cbd5e1 100%);
    color: #161c2d;
}

@media (max-width: 767.98px) {
    .client-req-block__title {
        font-size: 1.5rem;
        hyphens: auto;
    }

    .client-req-block__card-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .client-req-block__action-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .client-req-block__btn {
        width: 100%;
    }
}

/* ===== client_logos ===== */
.client-logos-section {
    background-color: #f4f6fa;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.client-logos-section .client-logos-wrapper {
    position: relative;
    width: 100%;
}

.client-logos-section .client-logos-label {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #5c6b84;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.client-logos-section .client-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    min-height: 110px;
    padding: 1rem 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #edf2f7 50%, #f9fafb 100%);
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    box-shadow: 0 2px 6px -1px rgba(27, 38, 59, 0.06), inset 0 1px 0 #ffffff;
    filter: grayscale(100%);
    opacity: 0.78;
}

.client-logos-section .client-logo-icon {
    font-size: 1.625rem;
    color: #2b354f;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.client-logos-section .client-logo-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #161c2d;
    line-height: 1.25;
    margin-bottom: 0.2rem;
    hyphens: auto;
    word-break: break-word;
}

.client-logos-section .client-logo-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    color: #4b5563;
    line-height: 1.2;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .client-logos-section .client-logos-label {
        font-size: 0.75rem;
    }

    .client-logos-section .client-logo-card {
        min-height: 96px;
        padding: 0.75rem 0.5rem;
    }

    .client-logos-section .client-logo-icon {
        font-size: 1.375rem;
        margin-bottom: 0.35rem;
    }

    .client-logos-section .client-logo-title {
        font-size: 0.75rem;
    }

    .client-logos-section .client-logo-desc {
        font-size: 0.625rem;
    }
}

/* ===== numbers ===== */
.numbers-section {
    background-color: #f4f6fa;
    position: relative;
    overflow: hidden;
}

.numbers-section__badge {
    background: #e2eafd;
    border: 1px solid #cbd5e1;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
}

.numbers-section__badge-icon {
    color: #0066ff;
    font-size: 0.95rem;
}

.numbers-section__badge-text {
    color: #2b354f;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.numbers-section__title {
    color: #111827;
    font-family: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
    line-height: 1.2;
}

.numbers-section__subtitle {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.55;
}

.numbers-section__card {
    background: linear-gradient(135deg, #ffffff 0%, #edf2f7 50%, #f9fafb 100%);
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    box-shadow: 0 4px 20px 0 rgba(148, 163, 184, 0.25), inset 0 1px 0 #ffffff, inset 0 -1px 2px rgba(203, 213, 225, 0.5);
    transition: border-color 0.2s ease;
}

.numbers-section__card:hover {
    border-color: #0066ff;
}

.numbers-section__icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 100%);
    border: 1px solid #cbd5e1;
    box-shadow: inset 0 1px 0 #ffffff;
    color: #0066ff;
    font-size: 1.4rem;
}

.numbers-section__counter {
    font-family: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
    color: #161c2d;
}

.numbers-section__value {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.numbers-section__unit {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066ff;
    margin-left: 2px;
}

.numbers-section__metric-name {
    color: #111827;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
}

.numbers-section__metric-desc {
    color: #5c6b84;
    font-size: 0.875rem;
    line-height: 1.5;
}

.numbers-section__meta-tag {
    border-top: 1px solid #e2e8f0;
}

.numbers-section__tag-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #49587e;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.numbers-section__cta-panel {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(27, 38, 59, 0.05);
}

.numbers-section__cta-title {
    font-size: 0.95rem;
    color: #111827;
}

.numbers-section__cta-subtitle {
    font-size: 0.8125rem;
    color: #5c6b84;
}

.numbers-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.25rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.numbers-section__btn--primary {
    background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
    color: #ffffff;
    border: 1px solid #161c2d;
    box-shadow: 0 4px 12px rgba(22, 28, 45, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.numbers-section__btn--primary:hover {
    color: #ffffff;
    background: linear-gradient(180deg, #3a4768 0%, #20273a 100%);
}

.numbers-section__btn--secondary {
    background: linear-gradient(180deg, #ffffff 0%, #e8edf4 100%);
    color: #161c2d;
    border: 1px solid #cbd5e1;
    box-shadow: 0 2px 6px rgba(148, 163, 184, 0.2), inset 0 1px 0 #ffffff;
}

.numbers-section__btn--secondary:hover {
    color: #161c2d;
    background: linear-gradient(180deg, #f8fafc 0%, #dfe5ee 100%);
}

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

    .numbers-section__value {
        font-size: 1.85rem;
    }

    .numbers-section__metric-name {
        font-size: 1rem;
    }

    .numbers-section__btn {
        width: 100%;
    }
}

/* ===== after_start ===== */
.wb-onboarding-timeline {
    background: #f4f6fa;
    color: #111827;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif
}

.wb-onboarding-timeline .wb-badge {
    background: #e2eafd;
    border: 1px solid rgba(0, 102, 255, 0.25);
    color: #0052cc
}

.wb-onboarding-timeline .wb-lead-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4b5563
}

.wb-onboarding-timeline .wb-tab-pill-container {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    box-shadow: 0 2px 8px rgba(27, 38, 59, 0.06)
}

.wb-onboarding-timeline .wb-tab-btn {
    background: transparent;
    color: #4b5563;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.55rem 1.1rem
}

.wb-onboarding-timeline .wb-tab-btn.active,
.wb-onboarding-timeline .wb-tab-btn:hover {
    background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
    color: #ffffff;
    border-color: #161c2d;
    box-shadow: 0 4px 12px rgba(22, 28, 45, 0.2)
}

.wb-onboarding-timeline .wb-metal-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #edf2f7 100%);
    border: 1px solid #dbe2ea;
    box-shadow: 0 8px 24px -6px rgba(30, 41, 59, 0.07), inset 0 1px 1px #ffffff
}

.wb-onboarding-timeline .wb-phase-badge {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    color: #0052cc;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(0, 102, 255, 0.2)
}

.wb-onboarding-timeline .wb-date-tag {
    font-size: 0.8125rem;
    background: #ffffff;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0
}

.wb-onboarding-timeline .wb-card-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4b5563
}

.wb-onboarding-timeline .wb-checklist li {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #2b354f
}

.wb-onboarding-timeline .wb-card-footer {
    border-color: #e2e8f0 !important
}

.wb-onboarding-timeline .wb-cta-box {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    box-shadow: 0 4px 20px 0 rgba(148, 163, 184, 0.25), inset 0 1px 0 #ffffff
}

.wb-onboarding-timeline .wb-btn-primary {
    background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
    color: #ffffff;
    border: 1px solid #161c2d;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(22, 28, 45, 0.2)
}

.wb-onboarding-timeline .wb-btn-outline {
    background: linear-gradient(180deg, #ffffff 0%, #e8edf4 100%);
    color: #161c2d;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(148, 163, 184, 0.2)
}

@media(max-width:767.98px) {
    .wb-onboarding-timeline h2 {
        font-size: 16px !important;
        hyphens: auto
    }

    .wb-onboarding-timeline h3 {
        font-size: 14px !important;
        hyphens: auto
    }

    .wb-onboarding-timeline .wb-lead-text {
        font-size: 0.875rem
    }

    .wb-onboarding-timeline .wb-tab-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        width: 100%
    }
}

/* ===== footer ===== */
.web-evidence-footer {
    background: #f8fafc;
    border-top: 1px solid #cbd5e1;
    color: #111827;
    position: relative;
}

.web-evidence-footer .footer-top-accent {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #2b354f 0%, #0066ff 50%, #cbd5e1 100%);
}

.web-evidence-footer .footer-logo {
    max-width: 44px;
    height: auto;
    object-fit: contain;
}

.web-evidence-footer .footer-brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #161c2d;
    letter-spacing: -0.02em;
}

.web-evidence-footer .footer-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #4b5563;
}

.web-evidence-footer .evidence-formula-badge {
    background: linear-gradient(135deg, #ffffff 0%, #edf2f7 100%);
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    box-shadow: inset 0 1px 0 #ffffff;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2b354f;
}

.web-evidence-footer .footer-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #161c2d;
    letter-spacing: -0.01em;
}

.web-evidence-footer .footer-links li {
    margin-bottom: 0.5rem;
}

.web-evidence-footer .footer-link {
    font-size: 0.875rem;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.15s ease;
}

.web-evidence-footer .footer-link i {
    font-size: 0.7rem;
    color: #8998b3;
}

.web-evidence-footer .footer-link:hover {
    color: #0066ff;
}

.web-evidence-footer .footer-link:hover i {
    color: #0066ff;
}

.web-evidence-footer .contact-details-plate {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-left: 4px solid #0066ff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(27, 38, 59, 0.04);
}

.web-evidence-footer .contact-text,
.web-evidence-footer .contact-link {
    font-size: 0.875rem;
    color: #2b354f;
    text-decoration: none;
    word-break: break-word;
}

.web-evidence-footer .contact-link:hover {
    color: #0066ff;
    text-decoration: underline;
}

.web-evidence-footer .btn-wa-chat {
    background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
    color: #ffffff;
    border: 1px solid #161c2d;
    border-radius: 8px;
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(22, 28, 45, 0.15);
}

.web-evidence-footer .btn-wa-chat:hover {
    background: linear-gradient(180deg, #3a4768 0%, #2b354f 100%);
    color: #ffffff;
}

.web-evidence-footer .footer-divider {
    border-color: #cbd5e1;
    opacity: 0.6;
}

.web-evidence-footer .footer-copyright {
    font-size: 0.8125rem;
    color: #6b7280;
}

.web-evidence-footer .framework-pill {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #49587e;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    box-shadow: inset 0 1px 0 #ffffff;
}

@media (max-width: 767.98px) {
    .web-evidence-footer .footer-heading {
        font-size: 0.95rem;
    }

    .web-evidence-footer .footer-brand-name {
        font-size: 1.05rem;
    }

    .web-evidence-footer .evidence-formula-badge {
        width: 100%;
        justify-content: center;
    }
}

/* ===== PAGE: tools ===== */
.tools-directory-section {
  background-color: #f4f6fa;
  position: relative;
}

.tools-directory-section__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2b354f;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  box-shadow: 0 2px 6px -1px rgba(27, 38, 59, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.tools-directory-section__title {
  font-family: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
  color: #111827;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.tools-directory-section__subtitle {
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.tools-directory-section__filter-btn {
  background: linear-gradient(180deg, #ffffff 0%, #e8edf4 100%);
  color: #161c2d;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(148, 163, 184, 0.2), inset 0 1px 0 #ffffff;
  cursor: pointer;
}

.tools-directory-section__filter-btn:hover {
  background: #ffffff;
  border-color: #0066ff;
  color: #0066ff;
}

.tools-directory-section__filter-btn.active {
  background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
  color: #ffffff;
  border-color: #161c2d;
  box-shadow: 0 4px 12px rgba(22, 28, 45, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.tools-directory-section__card {
  background: linear-gradient(135deg, #ffffff 0%, #f3f6fa 100%);
  border: 1px solid #dbe2ea;
  border-radius: 16px;
  box-shadow: 0 8px 24px -6px rgba(30, 41, 59, 0.07), inset 0 1px 1px #ffffff;
  overflow: hidden;
}

.tools-directory-section__card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 14px 28px -6px rgba(30, 41, 59, 0.12), inset 0 1px 1px #ffffff;
}

.tools-directory-section__media-wrap {
  position: relative;
  width: 100%;
  height: 210px;
  background: #edf2f7;
  overflow: hidden;
}

.tools-directory-section__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.tools-directory-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tools-directory-section__tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.tools-directory-section__tag--primary {
  background: #2b354f;
  color: #ffffff;
}

.tools-directory-section__tag--accent {
  background: #0066ff;
  color: #ffffff;
}

.tools-directory-section__tag--highlight {
  background: #475569;
  color: #ffffff;
}

.tools-directory-section__code-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0066ff;
  background: #e2eafd;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.tools-directory-section__spec-badge {
  font-size: 0.75rem;
  color: #5c6b84;
  font-weight: 500;
}

.tools-directory-section__card-title {
  color: #111827;
  font-weight: 600;
  line-height: 1.3;
}

.tools-directory-section__title-link {
  color: #111827;
  text-decoration: none;
}

.tools-directory-section__title-link:hover {
  color: #0066ff;
}

.tools-directory-section__card-desc {
  font-size: 0.9375rem;
  line-height: 1.55;
}

.tools-directory-section__meta {
  border-color: #e2e8f0 !important;
}

.tools-directory-section__meta-item {
  font-size: 0.8125rem;
  color: #5c6b84;
  font-weight: 500;
}

.tools-directory-section__action-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0066ff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.tools-directory-section__action-link:hover {
  color: #0047b3;
  text-decoration: underline;
}

.tools-directory-section__workflow-panel {
  background: linear-gradient(135deg, #ffffff 0%, #edf2f7 50%, #f9fafb 100%);
  border: 1px solid #cbd5e1;
  border-left: 5px solid #0066ff;
  border-radius: 16px;
  box-shadow: 0 4px 20px 0 rgba(148, 163, 184, 0.25), inset 0 1px 0 #ffffff;
}

.tools-directory-section__btn-primary {
  background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
  color: #ffffff;
  border: 1px solid #161c2d;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(22, 28, 45, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  padding: 0.75rem 1.625rem;
  font-weight: 600;
  white-space: nowrap;
}

.tools-directory-section__btn-primary:hover {
  background: #161c2d;
  color: #ffffff;
}

@media (max-width: 767.98px) {
  .tools-directory-section__title {
    font-size: 1.5rem;
  }
  .tools-directory-section__card-title {
    font-size: 1.25rem;
  }
  .tools-directory-section__media-wrap {
    height: 180px;
  }
}

/* ===== PAGE: knowledge-base ===== */
.kb-section {
  background-color: #f4f6fa;
  min-height: 50vh;
}

.kb-section .kb-badge-specular {
  background: linear-gradient(135deg, #ffffff 0%, #e2eafd 100%);
  border: 1px solid #cbd5e1;
  box-shadow: inset 0 1px 1px #ffffff, 0 2px 6px rgba(27, 38, 59, 0.05);
}

.kb-section .kb-badge-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2b354f;
  letter-spacing: 0.02em;
}

.kb-section .kb-main-heading {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  letter-spacing: -0.02em;
}

.kb-section .kb-subtext {
  font-size: 1.05rem;
  max-width: 760px;
  line-height: 1.6;
  color: #4b5563;
}

.kb-section .kb-controls-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(235, 241, 248, 0.85) 100%);
  border: 1px solid #dbe2ea;
  box-shadow: 0 4px 16px -2px rgba(27, 38, 59, 0.05), inset 0 1px 1px #ffffff;
}

.kb-section .kb-search-box .kb-search-icon {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #5c6b84;
  font-size: 1rem;
  pointer-events: none;
}

.kb-section .kb-search-input {
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.6875rem 2.5rem 0.6875rem 2.6rem;
  color: #111827;
  font-size: 0.9375rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

.kb-section .kb-search-input:focus {
  border-color: #0066ff;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

.kb-section .kb-search-input::placeholder {
  color: #6b7280;
  opacity: 1;
}

.kb-section .kb-search-clear {
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #6b7280;
  padding: 0.4rem 0.6rem;
  position: absolute;
}

.kb-section .kb-filter-pill {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  color: #364154;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  box-shadow: 0 1px 3px rgba(27, 38, 59, 0.04);
}

.kb-section .kb-filter-pill:hover {
  background: #f1f5f9;
  color: #111827;
  border-color: #94a3b8;
}

.kb-section .kb-filter-pill.active {
  background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
  border-color: #161c2d;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(22, 28, 45, 0.25);
}

.kb-section .kb-card {
  background: linear-gradient(135deg, #ffffff 0%, #f3f6fa 100%);
  border: 1px solid #dbe2ea;
  box-shadow: 0 8px 24px -6px rgba(30, 41, 59, 0.07), inset 0 1px 1px #ffffff;
}

.kb-section .kb-card-image-wrap {
  height: 190px;
  background-color: #e2e8f0;
}

.kb-section .kb-card-image {
  height: 190px;
  object-fit: cover;
}

.kb-section .kb-card-pill {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(203, 213, 225, 0.9);
  color: #161c2d;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.kb-section .kb-card-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

.kb-section .kb-title-link {
  color: #111827;
  text-decoration: none;
}

.kb-section .kb-title-link:hover {
  color: #0066ff;
  text-decoration: underline;
}

.kb-section .kb-card-text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #4b5563;
}

.kb-section .kb-btn-primary {
  background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
  color: #ffffff;
  border: 1px solid #161c2d;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(22, 28, 45, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.kb-section .kb-btn-primary:hover {
  background: linear-gradient(180deg, #3a4768 0%, #20293d 100%);
  color: #ffffff;
}

.kb-section .kb-btn-secondary {
  background: linear-gradient(180deg, #ffffff 0%, #e8edf4 100%);
  color: #161c2d;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(148, 163, 184, 0.2), inset 0 1px 0 #ffffff;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.kb-section .kb-btn-secondary:hover {
  background: #f1f5f9;
  color: #111827;
}

.kb-section .kb-empty-state {
  background: #ffffff;
  border: 1px dashed #cbd5e1;
}

@media (max-width: 767.98px) {
  .kb-section .kb-main-heading {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .kb-section .kb-card-title {
    font-size: 0.875rem;
    hyphens: auto;
  }
  .kb-section .kb-subtext {
    font-size: 0.875rem;
  }
}

/* ===== PAGE: cases ===== */
.cases-archive-section {
  background-color: #f4f6fa;
  color: #111827;
  position: relative;
}

.cases-archive-section .cases-header-plate {
  background: linear-gradient(135deg, #ffffff 0%, #edf2f7 50%, #f9fafb 100%);
  border: 1px solid #cbd5e1;
  border-radius: 18px;
  padding: 2.25rem;
  box-shadow: 0 10px 25px -5px rgba(27, 38, 59, 0.08), inset 0 1px 1px #ffffff;
}

.cases-archive-section .cases-tag-badge {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  box-shadow: 0 2px 4px rgba(27, 38, 59, 0.04);
}

.cases-archive-section .cases-badge-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2b354f;
  letter-spacing: 0.02em;
}

.cases-archive-section .cases-main-heading {
  font-family: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: #161c2d;
  letter-spacing: -0.02em;
}

.cases-archive-section .cases-lead-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
}

.cases-archive-section .cases-stats-badge {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-left: 4px solid #0066ff;
  box-shadow: 0 4px 12px rgba(27, 38, 59, 0.05);
}

.cases-archive-section .cases-stats-icon {
  font-size: 1.75rem;
  color: #0066ff;
}

.cases-archive-section .cases-stats-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #161c2d;
  line-height: 1.2;
}

.cases-archive-section .cases-stats-lbl {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
}

.cases-archive-section .cases-filter-toolbar {
  background: #ffffff;
  border: 1px solid #dbe2ea;
  box-shadow: 0 4px 14px rgba(27, 38, 59, 0.04);
}

.cases-archive-section .cases-filter-btn {
  background: #f1f5f9;
  color: #364154;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.cases-archive-section .cases-filter-btn:hover {
  background: #e2e8f0;
  color: #161c2d;
}

.cases-archive-section .cases-filter-btn.active {
  background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
  color: #ffffff;
  border-color: #161c2d;
  box-shadow: 0 4px 10px rgba(22, 28, 45, 0.25);
}

.cases-archive-section .cases-search-box {
  width: 100%;
}

.cases-archive-section .cases-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  font-size: 0.95rem;
  pointer-events: none;
}

.cases-archive-section .cases-search-input {
  background-color: #f8fafc;
  color: #111827;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.55rem 1rem 0.55rem 2.5rem;
  font-size: 0.875rem;
}

.cases-archive-section .cases-search-input::placeholder {
  color: #6b7280;
  opacity: 1;
}

.cases-archive-section .cases-search-input:focus {
  background-color: #ffffff;
  color: #111827;
  border-color: #0066ff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

.cases-archive-section .cases-card {
  background: linear-gradient(135deg, #ffffff 0%, #f3f6fa 100%);
  border: 1px solid #dbe2ea;
  border-radius: 16px;
  box-shadow: 0 8px 24px -6px rgba(30, 41, 59, 0.07), inset 0 1px 1px #ffffff;
  overflow: hidden;
}

.cases-archive-section .cases-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 14px 30px -8px rgba(30, 41, 59, 0.12), inset 0 1px 1px #ffffff;
}

.cases-archive-section .cases-card-media {
  position: relative;
  height: 220px;
  background: #edf2f7;
  overflow: hidden;
}

.cases-archive-section .cases-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.cases-archive-section .cases-card-category-pill {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(22, 28, 45, 0.85);
  color: #ffffff;
  backdrop-filter: blur(4px);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cases-archive-section .cases-meta-index {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  background: #f1f5f9;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

.cases-archive-section .cases-meta-metric {
  font-size: 0.75rem;
  font-weight: 600;
  color: #364154;
}

.cases-archive-section .cases-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: #161c2d;
}

.cases-archive-section .cases-title-link {
  color: #161c2d;
  text-decoration: none;
}

.cases-archive-section .cases-title-link:hover {
  color: #0066ff;
}

.cases-archive-section .cases-card-summary {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #4b5563;
}

.cases-archive-section .cases-evidence-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: #364154;
}

.cases-archive-section .cases-read-btn {
  background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
  color: #ffffff;
  border: 1px solid #161c2d;
  border-radius: 8px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(22, 28, 45, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cases-archive-section .cases-read-btn:hover {
  background: #161c2d;
  color: #ffffff;
}

.cases-archive-section .cases-no-results {
  background: #ffffff;
  border: 1px dashed #cbd5e1;
}

.cases-archive-section .cases-no-results-icon {
  font-size: 2.5rem;
}

.cases-archive-section .cases-no-results-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #161c2d;
}

.cases-archive-section .cases-no-results-text {
  font-size: 0.9375rem;
  color: #6b7280;
}

.cases-archive-section .cases-reset-btn {
  background: linear-gradient(180deg, #ffffff 0%, #e8edf4 100%);
  color: #161c2d;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.cases-archive-section .cases-methodology-banner {
  background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 60%, #e2e8f0 100%);
  border: 1px solid #cbd5e1;
  box-shadow: 0 8px 24px -6px rgba(27, 38, 59, 0.08);
}

.cases-archive-section .cases-method-badge {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2b354f;
}

.cases-archive-section .cases-method-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #161c2d;
}

.cases-archive-section .cases-method-text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #4b5563;
}

.cases-archive-section .cases-cta-btn {
  background: linear-gradient(180deg, #1a75ff 0%, #0052cc 100%);
  color: #ffffff;
  border: 1px solid #0047b3;
  border-radius: 8px;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.cases-archive-section .cases-cta-btn:hover {
  background: #0052cc;
  color: #ffffff;
}

.cases-archive-section .cases-secondary-btn {
  background: linear-gradient(180deg, #ffffff 0%, #e8edf4 100%);
  color: #161c2d;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 2px 6px rgba(148, 163, 184, 0.2), inset 0 1px 0 #ffffff;
  white-space: nowrap;
}

.cases-archive-section .cases-secondary-btn:hover {
  background: #e2e8f0;
  color: #161c2d;
}

@media (max-width: 767.98px) {
  .cases-archive-section .cases-main-heading {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .cases-archive-section .cases-method-heading {
    font-size: 1rem;
    hyphens: auto;
  }
  .cases-archive-section .cases-card-title {
    font-size: 0.875rem;
    hyphens: auto;
  }
  .cases-archive-section .cases-card-media {
    height: 180px;
  }
  .cases-archive-section .cases-card-img {
    height: 180px;
  }
  .cases-archive-section .cases-header-plate {
    padding: 1.5rem 1.25rem;
  }
}

/* ===== PAGE: brand-support ===== */
.brand-review-section {
  background-color: #f4f6fa;
  color: #111827;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.brand-review-section .brand-review-card {
  background: linear-gradient(135deg, #ffffff 0%, #edf2f7 50%, #f9fafb 100%);
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(27, 38, 59, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}
.brand-review-section .brand-content-deck {
  background: #ffffff;
  border: 1px solid #dbe2ea;
  border-radius: 16px;
  box-shadow: 0 8px 24px -6px rgba(30, 41, 59, 0.07);
}
.brand-review-section .brand-sidebar-card {
  background: linear-gradient(135deg, #ffffff 0%, #f3f6fa 100%);
  border: 1px solid #dbe2ea;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(27, 38, 59, 0.05);
}
.brand-review-section .brand-badge {
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  color: #0066ff;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 102, 255, 0.2);
  display: inline-flex;
  align-items: center;
}
.brand-review-section .brand-timestamp {
  font-size: 0.8125rem;
  color: #6b7280;
}
.brand-review-section .brand-main-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: #161c2d;
}
.brand-review-section .brand-section-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  color: #161c2d;
}
.brand-review-section .brand-sub-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2b354f;
}
.brand-review-section .brand-lead-text {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #4b5563;
}
.brand-review-section .brand-body-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #364154;
}
.brand-review-section .brand-matrix-panel {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
}
.brand-review-section .brand-step-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}
.brand-review-section .brand-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: #0066ff;
  margin-bottom: 0.25rem;
}
.brand-review-section .brand-step-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #161c2d;
  margin-bottom: 0.25rem;
}
.brand-review-section .brand-step-desc {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #4b5563;
}
.brand-review-section .brand-interactive-card {
  background: #f8fafc;
  border: 1px solid #dbe2ea;
  border-radius: 12px;
}
.brand-review-section .brand-filter-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #364154;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  cursor: pointer;
}
.brand-review-section .brand-filter-btn.active {
  background: #2b354f;
  color: #ffffff;
  border-color: #161c2d;
}
.brand-review-section .brand-item-row {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #0066ff;
  border-radius: 10px;
}
.brand-review-section .brand-item-icon {
  font-size: 1.25rem;
  color: #0066ff;
  line-height: 1;
}
.brand-review-section .brand-item-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #161c2d;
}
.brand-review-section .brand-item-text {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #4b5563;
}
.brand-review-section .brand-meta-list span {
  font-size: 0.875rem;
}
.brand-review-section .brand-code-val {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  color: #161c2d;
  background: #edf2f7;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}
.brand-review-section .brand-check-text {
  font-size: 0.875rem;
  color: #364154;
  line-height: 1.4;
}
.brand-review-section .brand-btn-primary {
  background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
  color: #ffffff;
  border: 1px solid #161c2d;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(22, 28, 45, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  padding: 0.65rem 1.35rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-review-section .brand-btn-secondary {
  background: linear-gradient(180deg, #ffffff 0%, #e8edf4 100%);
  color: #161c2d;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(148, 163, 184, 0.2), inset 0 1px 0 #ffffff;
  padding: 0.65rem 1.35rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-review-section .brand-btn-accent {
  background: linear-gradient(180deg, #1a75ff 0%, #0052cc 100%);
  color: #ffffff;
  border: 1px solid #0047b3;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 102, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  padding: 0.65rem 1.35rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .brand-review-section .brand-main-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .brand-review-section .brand-section-title {
    font-size: 1rem;
  }
  .brand-review-section .brand-sub-title {
    font-size: 0.875rem;
  }
}

/* ===== PAGE: contact ===== */
.contact-evidence-section {
  background-color: #f4f6fa;
  color: #111827;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-evidence-section h1,
.contact-evidence-section h2,
.contact-evidence-section h3,
.contact-evidence-section h4 {
  font-family: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
  color: #111827;
}

.contact-evidence-section .contact-evidence-card {
  border: 1px solid #cbd5e1;
  box-shadow: 0 4px 16px -2px rgba(27, 38, 59, 0.06), inset 0 1px 0 #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #edf2f7 50%, #f9fafb 100%);
}

.contact-evidence-section .contact-protocol-plate,
.contact-evidence-section .contact-schedule-card {
  box-shadow: 0 8px 24px -6px rgba(30, 41, 59, 0.07), inset 0 1px 1px #ffffff;
}

.contact-evidence-section .contact-icon-wrapper {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #e2eafd 0%, #f0f4f9 100%);
  border: 1px solid #cbd5e1;
}

.contact-evidence-section .contact-action-btn {
  background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
  color: #ffffff;
  border: 1px solid #161c2d;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(22, 28, 45, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.contact-evidence-section .contact-action-btn:hover,
.contact-evidence-section .contact-action-btn:focus {
  background: linear-gradient(180deg, #3a4768 0%, #20273a 100%);
  color: #ffffff;
}

.contact-evidence-section .contact-whatsapp-btn {
  background: linear-gradient(180deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  border: 1px solid #075e54;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(18, 140, 126, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.contact-evidence-section .contact-whatsapp-btn:hover,
.contact-evidence-section .contact-whatsapp-btn:focus {
  background: linear-gradient(180deg, #2fe070 0%, #17a08f 100%);
  color: #ffffff;
}

@media (max-width: 767.98px) {
  .contact-evidence-section h1 {
    font-size: 1.5rem;
    hyphens: auto;
  }
  .contact-evidence-section h2 {
    font-size: 1.15rem;
    hyphens: auto;
  }
  .contact-evidence-section h3 {
    font-size: 1.05rem;
    hyphens: auto;
  }
  .contact-evidence-section h4 {
    font-size: 0.95rem;
    hyphens: auto;
  }
}

/* ===== PAGE: about ===== */
.about-project-section {
  background-color: #f4f6fa;
  color: #111827;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.about-project-section .about-badge {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 0.35rem 0.85rem;
  border-radius: 50rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2b354f;
  box-shadow: inset 0 1px 0 #ffffff, 0 2px 4px rgba(0,0,0,0.03);
}

.about-project-section .about-main-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #161c2d;
}

.about-project-section .about-lead-text {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #4b5563;
}

.about-project-section .about-spec-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  border-top: 1px solid #cbd5e1;
}

.about-project-section .about-spec-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0066ff;
  line-height: 1.2;
}

.about-project-section .about-spec-label {
  font-size: 0.8125rem;
  color: #6b7280;
  font-weight: 500;
}

.about-project-section .about-metal-card {
  background: linear-gradient(135deg, #ffffff 0%, #edf2f7 50%, #f9fafb 100%);
  border: 1px solid #dbe2ea;
  border-radius: 16px;
  box-shadow: 0 8px 24px -6px rgba(30, 41, 59, 0.07), inset 0 1px 1px #ffffff;
}

.about-project-section .about-formula-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #ffffff;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.about-project-section .step-indicator {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: #e2eafd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.about-project-section .step-title {
  font-size: 1rem;
  font-weight: 600;
  color: #161c2d;
}

.about-project-section .step-desc {
  font-size: 0.875rem;
  color: #5c6b84;
  line-height: 1.45;
}

.about-project-section .about-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #161c2d;
  line-height: 1.2;
}

.about-project-section .about-section-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 0;
}

.about-project-section .about-tab-btn {
  background: linear-gradient(180deg, #ffffff 0%, #e8edf4 100%);
  color: #161c2d;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  box-shadow: 0 2px 6px rgba(148, 163, 184, 0.2), inset 0 1px 0 #ffffff;
}

.about-project-section .about-tab-btn.active,
.about-project-section .about-tab-btn:hover {
  background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
  color: #ffffff;
  border-color: #161c2d;
}

.about-project-section .about-tab-panel {
  display: none;
}

.about-project-section .about-tab-panel.active {
  display: block;
}

.about-project-section .about-tab-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #161c2d;
}

.about-project-section .about-check-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.about-project-section .about-check-list li {
  font-size: 0.9375rem;
  color: #4b5563;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.about-project-section .progress-custom {
  height: 8px;
  background-color: #e2e8f0;
  border-radius: 4px;
}

.about-project-section .about-pillar-card {
  background: #ffffff;
  border: 1px solid #dbe2ea;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(30, 41, 59, 0.04);
}

.about-project-section .pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eef2ff;
  color: #0066ff;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-project-section .pillar-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #161c2d;
}

.about-project-section .pillar-text {
  font-size: 0.875rem;
  line-height: 1.5;
}

.about-project-section .custom-accordion .accordion-item {
  background: #ffffff;
  border-color: #dbe2ea !important;
}

.about-project-section .custom-accordion .accordion-button {
  background: #f8fafc;
  color: #161c2d;
  box-shadow: none;
}

.about-project-section .custom-accordion .accordion-button:not(.collapsed) {
  background: #eef2ff;
  color: #0066ff;
}

.about-project-section .about-hub-card {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(27, 38, 59, 0.08);
}

.about-project-section .hub-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #161c2d;
}

.about-project-section .hub-desc {
  font-size: 1rem;
  color: #5c6b84;
}

.about-project-section .about-btn-primary {
  background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
  color: #ffffff;
  border: 1px solid #161c2d;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(22, 28, 45, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

.about-project-section .about-btn-primary:hover {
  color: #ffffff;
  background: linear-gradient(180deg, #3a4768 0%, #1c2438 100%);
}

.about-project-section .about-btn-secondary {
  background: linear-gradient(180deg, #ffffff 0%, #e8edf4 100%);
  color: #161c2d;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(148, 163, 184, 0.2), inset 0 1px 0 #ffffff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

.about-project-section .about-btn-secondary:hover {
  color: #161c2d;
  background: linear-gradient(180deg, #f1f5f9 0%, #dbe2ea 100%);
}

@media (max-width: 767.98px) {
  .about-project-section .about-main-title {
    font-size: 1.75rem;
    hyphens: auto;
  }
  .about-project-section .about-section-title {
    font-size: 1.45rem;
    hyphens: auto;
  }
  .about-project-section .about-tab-btn {
    width: 100%;
  }
}

/* ===== PAGE: privacy ===== */
.privacy-content-section {
  background-color: #f4f6fa;
  min-height: 80vh;
}

.privacy-content-section .privacy-index-card {
  background: linear-gradient(135deg, #ffffff 0%, #edf2f7 50%, #f9fafb 100%);
  border: 1px solid #cbd5e1;
  box-shadow: 0 4px 20px 0 rgba(148, 163, 184, 0.25), inset 0 1px 0 #ffffff;
}

.privacy-content-section .privacy-sidebar {
  top: 6rem;
  z-index: 10;
}

.privacy-content-section .privacy-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  transition: none;
  text-decoration: none;
  border: 1px solid transparent;
}

.privacy-content-section .privacy-nav-link:hover,
.privacy-content-section .privacy-nav-link.active {
  background-color: #e2eafd;
  color: #0066ff !important;
  border-color: rgba(0, 102, 255, 0.25);
}

.privacy-content-section .policy-meta-box {
  background-color: #f0f4f9;
  border: 1px solid #e2e8f0;
}

.privacy-content-section .privacy-article {
  background: #ffffff;
  border: 1px solid #dbe2ea;
  box-shadow: 0 8px 24px -6px rgba(30, 41, 59, 0.07), inset 0 1px 1px #ffffff;
}

.privacy-content-section .data-tile {
  background-color: #f8fafc;
  border-color: #cbd5e1 !important;
}

.privacy-content-section .contact-plate {
  background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
  border-color: #cbd5e1 !important;
}

.privacy-content-section .table > :not(caption) > * > * {
  padding: 0.85rem 1rem;
  border-bottom-color: #e2e8f0;
}

.privacy-content-section .privacy-body p {
  line-height: 1.65;
  font-size: 0.9375rem;
}

.privacy-content-section h1, 
.privacy-content-section h2, 
.privacy-content-section h3 {
  color: #111827;
  letter-spacing: -0.02em;
}

@media (max-width: 991.98px) {
  .privacy-content-section .privacy-sidebar {
    position: static !important;
    margin-bottom: 1.5rem;
  }
}

/* ===== PAGE: terms ===== */
.terms-section {
  background-color: #f4f6fa;
  min-height: 80vh;
}

.terms-section .terms-badge {
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  border: 1px solid #cbd5e1;
}

.terms-section .terms-badge-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2b354f;
  letter-spacing: 0.02em;
}

.terms-section .terms-main-title {
  font-family: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
  color: #111827;
  letter-spacing: -0.025em;
}

.terms-section .terms-lead-text {
  max-width: 760px;
  font-size: 1.0625rem;
  line-height: 1.6;
}

.terms-section .terms-meta-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  box-shadow: 0 2px 6px -1px rgba(27, 38, 59, 0.06);
}

.terms-section .terms-sidebar {
  background: linear-gradient(135deg, #ffffff 0%, #edf2f7 50%, #f9fafb 100%);
  border: 1px solid #dbe2ea;
  box-shadow: 0 8px 24px -6px rgba(30, 41, 59, 0.07), inset 0 1px 1px #ffffff;
  top: 2rem;
}

.terms-section .terms-nav-heading {
  font-family: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
  letter-spacing: -0.015em;
}

.terms-section .terms-nav-link {
  padding: 0.6rem 0.85rem;
  color: #4b5563;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  border-left: 3px solid transparent;
  background: transparent;
}

.terms-section .terms-nav-link:hover {
  color: #111827;
  background-color: #f0f4f9;
}

.terms-section .terms-nav-link.active {
  color: #0066ff;
  background: #ffffff;
  border-left-color: #0066ff;
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.08);
  font-weight: 600;
}

.terms-section .terms-nav-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #8998b3;
  margin-right: 0.35rem;
}

.terms-section .terms-sidebar-notice {
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

.terms-section .terms-sidebar-btn {
  background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
  color: #ffffff;
  border: 1px solid #161c2d;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
}

.terms-section .terms-sidebar-btn:hover {
  color: #ffffff;
  background: #161c2d;
}

.terms-section .terms-card {
  background: #ffffff;
  border: 1px solid #dbe2ea;
  box-shadow: 0 8px 24px -6px rgba(30, 41, 59, 0.07), inset 0 1px 1px #ffffff;
  scroll-margin-top: 2rem;
}

.terms-section .terms-card-title {
  font-family: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
  line-height: 1.3;
}

.terms-section .terms-clause-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: #e2eafd;
  color: #0066ff;
  border: 1px solid rgba(0, 102, 255, 0.2);
}

.terms-section .terms-clause-tag-danger {
  background: #fee2e2;
  color: #dc2626;
  border-color: rgba(220, 38, 38, 0.2);
}

.terms-section .terms-card-text {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.terms-section .terms-subcard {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.terms-section .terms-code-sample {
  background: #edf2f7;
  border: 1px solid #cbd5e1;
  font-family: 'JetBrains Mono', monospace;
  word-break: break-all;
}

.terms-section .terms-inline-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.terms-section .terms-action-btn {
  background: linear-gradient(180deg, #1a75ff 0%, #0052cc 100%);
  color: #ffffff;
  border: 1px solid #0047b3;
  border-radius: 8px;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

.terms-section .terms-action-btn:hover {
  color: #ffffff;
  background: #0052cc;
}

.terms-section .terms-secondary-btn {
  background: linear-gradient(180deg, #ffffff 0%, #e8edf4 100%);
  color: #161c2d;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

.terms-section .terms-secondary-btn:hover {
  color: #161c2d;
  background: #e2e8f0;
}

@media (max-width: 767.98px) {
  .terms-section .terms-main-title {
    font-size: 1.125rem;
  }
  .terms-section .terms-card-title {
    font-size: 1rem;
  }
  .terms-section h3 {
    font-size: 0.875rem;
  }
  .terms-section {
    hyphens: auto;
  }
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-section { background-color: #f4f6fa; min-height: 60vh; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; } .disclaimer-section .disclaimer-card { background: linear-gradient(135deg, #ffffff 0%, #edf2f7 50%, #f9fafb 100%); border: 1px solid #dbe2ea; border-radius: 16px; box-shadow: 0 8px 24px -6px rgba(30, 41, 59, 0.07), inset 0 1px 1px #ffffff; } .disclaimer-section .disclaimer-badge { background: #e2eafd; border: 1px solid rgba(0, 102, 255, 0.25); color: #0066ff; } .disclaimer-section .disclaimer-title { font-family: 'Space Grotesk', 'Inter', sans-serif; font-weight: 700; color: #161c2d; letter-spacing: -0.02em; } .disclaimer-section h2 { font-family: 'Space Grotesk', 'Inter', sans-serif; font-weight: 600; color: #2b354f; font-size: 1.25rem; } .disclaimer-section .disclaimer-alert { background: #f0f4f9; border: 1px solid #cbd5e1; border-left: 4px solid #0066ff; color: #4b5563; } .disclaimer-section .disclaimer-list li { font-size: 0.9375rem; line-height: 1.55; } .disclaimer-section .disclaimer-footer-card { background: #ffffff; border: 1px solid #cbd5e1; box-shadow: inset 0 1px 0 #ffffff; } .disclaimer-section .disclaimer-icon-badge { width: 42px; height: 42px; background: #eef2ff; border: 1px solid rgba(0, 102, 255, 0.2); } .disclaimer-section .btn-primary { background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%); border-color: #161c2d; color: #ffffff; font-weight: 600; box-shadow: 0 4px 12px rgba(22, 28, 45, 0.2); } .disclaimer-section .btn-primary:hover { background: linear-gradient(180deg, #3a4768 0%, #1c2438 100%); color: #ffffff; } .disclaimer-section .btn-outline-dark { background: #ffffff; border-color: #cbd5e1; color: #161c2d; font-weight: 600; } .disclaimer-section .btn-outline-dark:hover { background: #e8edf4; color: #161c2d; border-color: #94a3b8; } @media (max-width: 767.98px) { .disclaimer-section .disclaimer-title { font-size: 1.35rem; } .disclaimer-section h2 { font-size: 1.1rem; } .disclaimer-section .disclaimer-card { padding: 1.25rem; } }

.liquid-comment-card.main-comment-item {
    background: linear-gradient(135deg, #ffffff 0%, #f4f7fb 100%);
    border: 1px solid #d0d9e5;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(27, 38, 59, 0.08), 0 8px 10px -6px rgba(27, 38, 59, 0.04), inset 0 1px 1px #ffffff;
    position: relative;
}

.avatar-initials-badge {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2b354f 0%, #161c2d 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(22, 28, 45, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.comment-author-name {
    font-family: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
    font-weight: 700;
    color: #111827;
    font-size: 1rem;
}

.badge-authority-pill {
    background: #eef4ff;
    border: 1px solid #c7d9fc;
    color: #0052cc;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
}

.comment-metadata {
    font-size: 0.8125rem;
    color: #5c6b84;
}

.comment-provenance-tag {
    font-weight: 500;
    color: #2b354f;
}

.metadata-bullet {
    color: #94a3b8;
}

.authority-score-dock {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0.35rem 0.65rem;
    box-shadow: inset 0 1px 0 #ffffff, 0 1px 3px rgba(0, 0, 0, 0.04);
}

.score-label {
    font-size: 0.75rem;
    color: #5c6b84;
    font-weight: 500;
}

.score-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0066ff;
}

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

.comment-evidence-snippet {
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    font-size: 0.8125rem;
}

.snippet-label {
    font-weight: 600;
    color: #4b5563;
}

.snippet-code {
    font-family: 'JetBrains Mono', monospace;
    color: #0052cc;
    background: #f0f4f9;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

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

.btn-comment-action {
    background: transparent;
    border: none;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #5c6b84;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.btn-comment-action:hover {
    background: #edf2f7;
    color: #111827;
}

.btn-comment-action.active-vote {
    background: #eef4ff;
    color: #0066ff;
    border: 1px solid #d4e2ff;
}

.action-counter {
    font-family: 'JetBrains Mono', monospace;
}

.text-muted-meta {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #5c6b84;
}

.reply-thread-wrapper {
    border-left: 2px solid #cbd5e1;
    padding-left: 1.25rem;
}

.liquid-comment-card.reply-comment-item {
    background: #ffffff;
    border: 1px solid #dbe2ea;
    border-left: 3px solid #0066ff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 15px -3px rgba(27, 38, 59, 0.05), inset 0 1px 0 #ffffff;
}

.avatar-initials-badge.avatar-reply {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #49587e 0%, #2b354f 100%);
    font-size: 0.85rem;
}

.badge-reply-pill {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #364154;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 14px;
}

.badge-audit-status {
    background: #e8f5e9;
    color: #1b5e20;
    border: 1px solid #c8e6c9;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
}

.source-badge-subtle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #5c6b84;
    background: #f4f6fa;
    border: 1px solid #e2e8f0;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}


/* ===== PAGE TEMPLATE: tools ===== */
.site-header-block {
    background-color: #f8fafc;
    border-bottom: 1px solid #cbd5e1;
    box-shadow: 0 4px 20px 0 rgba(148, 163, 184, 0.25), inset 0 1px 0 #ffffff, inset 0 -1px 2px rgba(203, 213, 225, 0.5);
    z-index: 1030;
}

.site-header-block .site-navbar {
    padding: 0.875rem 0;
    background-color: #f8fafc;
}

.site-header-block .navbar-brand {
    text-decoration: none;
    padding: 0;
    margin-right: 1.5rem;
}

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

.site-header-block .brand-title-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.site-header-block .brand-name {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #161c2d;
    letter-spacing: -0.02em;
}

.site-header-block .brand-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #0066ff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-header-block .nav-link-list {
    display: flex;
    gap: 0.5rem;
}

.site-header-block .nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #2b354f;
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    border: 1px solid transparent;
}

.site-header-block .nav-link:hover,
.site-header-block .nav-link:focus {
    color: #0066ff;
    background-color: #e2eafd;
    border-color: #cbd5e1;
}

.site-header-block .custom-toggler {
    padding: 0.35rem 0.65rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(148, 163, 184, 0.15);
}

.site-header-block .custom-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 255, 0.25);
    outline: none;
}

.site-header-block .custom-toggler .navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 1.25em 1.25em;
}

.site-header-block .header-cta-btn {
    background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border: 1px solid #161c2d;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(22, 28, 45, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    text-decoration: none;
}

.site-header-block .header-cta-btn:hover,
.site-header-block .header-cta-btn:focus {
    background: linear-gradient(180deg, #3a4768 0%, #20273d 100%);
    color: #ffffff;
}

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

    .site-header-block .nav-link-list {
        flex-direction: column;
        gap: 0.25rem;
        margin-bottom: 1rem;
    }

    .site-header-block .nav-link {
        font-size: 0.8125rem;
        padding: 0.625rem 0.875rem;
    }

    .site-header-block .header-action-wrap {
        padding-top: 0.5rem;
        border-top: 1px solid #e2e8f0;
    }

    .site-header-block .header-cta-btn {
        width: 100%;
    }
}


.tool-detail-main-wrapper {
    background-color: #f4f6fa;
    min-height: calc(100vh - 400px);
}


.tool-breadcrumb-bar {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.tool-breadcrumb-bar .breadcrumb-item {
    font-size: 0.8125rem;
    font-weight: 500;
}

.tool-breadcrumb-bar .tool-breadcrumb-link {
    color: #5c6b84;
    text-decoration: none;
}

.tool-breadcrumb-bar .tool-breadcrumb-link:hover {
    color: #0066ff;
    text-decoration: underline;
}

.tool-breadcrumb-bar .breadcrumb-item.active {
    color: #111827;
    font-weight: 600;
}


.tool-hero-block {
    background: linear-gradient(180deg, #ffffff 0%, #eef3f8 100%);
    border-bottom: 1px solid #cbd5e1;
    padding: 3rem 0;
}

.tool-hero-block .tool-pill-badge {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 50px;
    padding: 0.35rem 0.85rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2b354f;
    box-shadow: 0 2px 6px rgba(148, 163, 184, 0.15);
}

.tool-hero-block .badge-chrome-tag {
    background: #e2eafd;
    color: #0052cc;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tool-hero-block .tool-detail-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.tool-hero-block .tool-detail-lead {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    color: #4b5563;
    line-height: 1.6;
    font-weight: 400;
}

.tool-action-btn-primary {
    background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
    color: #ffffff;
    border: 1px solid #161c2d;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(22, 28, 45, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    text-decoration: none;
}

.tool-action-btn-primary:hover {
    background: linear-gradient(180deg, #3a4768 0%, #20273d 100%);
    color: #ffffff;
}

.tool-action-btn-secondary {
    background: linear-gradient(180deg, #ffffff 0%, #e8edf4 100%);
    color: #161c2d;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(148, 163, 184, 0.2), inset 0 1px 0 #ffffff;
    text-decoration: none;
}

.tool-action-btn-secondary:hover {
    background: linear-gradient(180deg, #f8fafc 0%, #dbe3ed 100%);
    color: #161c2d;
}

.tool-metric-plate {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    box-shadow: 0 8px 24px -6px rgba(30, 41, 59, 0.08), inset 0 1px 1px #ffffff;
}

.tool-metric-plate .spec-label {
    font-size: 0.8125rem;
    color: #4b5563;
    font-weight: 500;
}

.tool-metric-plate .spec-val {
    font-size: 0.875rem;
    color: #111827;
    font-weight: 600;
}


.tool-content-card {
    background: #ffffff;
    border: 1px solid #dbe2ea;
    border-radius: 16px;
    box-shadow: 0 8px 24px -6px rgba(30, 41, 59, 0.06), inset 0 1px 1px #ffffff;
}

.tool-image-frame {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
}

.tool-detail-image {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.tool-image-caption {
    background: #edf2f7;
    border-top: 1px solid #e2e8f0;
    font-size: 0.75rem;
}

.tool-image-caption .caption-text {
    font-weight: 600;
    color: #2b354f;
}

.tool-image-caption .caption-meta {
    font-family: 'JetBrains Mono', monospace;
    color: #6b7280;
}


.tool-article-content .section-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

.tool-article-content .section-subheading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #161c2d;
    line-height: 1.35;
}

.tool-article-content .content-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #4b5563;
}


.tool-tabs-container {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
}

.tool-tab-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #2b354f;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(148, 163, 184, 0.1);
}

.tool-tab-btn:hover {
    background: #eef2ff;
    color: #0066ff;
}

.tool-tab-btn.active {
    background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
    color: #ffffff;
    border-color: #161c2d;
    box-shadow: 0 3px 8px rgba(22, 28, 45, 0.25);
}

.tab-inner-plate {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-left: 4px solid #0066ff;
    border-radius: 8px;
}

.tab-pane-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
}

.tab-pane-desc {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.55;
}

.tool-spec-list {
    list-style: none;
    padding-left: 0;
}

.tool-spec-list li {
    font-size: 0.8125rem;
    color: #2b354f;
    margin-bottom: 0.35rem;
}


.metric-box-sub {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    height: 100%;
}

.metric-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
}

.metric-text {
    font-size: 0.8125rem;
    color: #4b5563;
    line-height: 1.45;
}


.tool-accordion-item {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 10px !important;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.tool-acc-btn {
    background: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
    padding: 0.85rem 1.15rem;
}

.tool-acc-btn:focus {
    box-shadow: none;
    border-color: #cbd5e1;
}

.tool-acc-btn:not(.collapsed) {
    background: #eef3fa;
    color: #0052cc;
}

.tool-acc-body {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 1rem 1.15rem;
}


.tool-share-panel .share-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #111827;
}

.btn-share-chip {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #2b354f;
    padding: 0.4rem 0.75rem;
    text-decoration: none;
}

.btn-share-chip:hover {
    background: #e2eafd;
    color: #0052cc;
    border-color: #0066ff;
}


.tool-sidebar-card {
    background: #ffffff;
    border: 1px solid #dbe2ea;
    border-radius: 14px;
    box-shadow: 0 6px 18px -4px rgba(30, 41, 59, 0.05), inset 0 1px 1px #ffffff;
}

.sidebar-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
}

.sidebar-meta-list .meta-k {
    font-size: 0.8125rem;
    color: #6b7280;
}

.sidebar-meta-list .meta-v {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #111827;
}

.btn-sidebar-action {
    background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
    color: #ffffff;
    border: 1px solid #161c2d;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.65rem 1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(22, 28, 45, 0.15);
}

.btn-sidebar-action:hover {
    background: linear-gradient(180deg, #3a4768 0%, #20273d 100%);
    color: #ffffff;
}

.tool-sidebar-card.contact-plate {
    border-left: 4px solid #0066ff;
}

.sidebar-subtext {
    font-size: 0.8125rem;
    color: #4b5563;
    line-height: 1.5;
}

.contact-pill-item .contact-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2b354f;
    text-decoration: none;
}

.contact-pill-item .contact-link:hover {
    color: #0066ff;
    text-decoration: underline;
}

.btn-sidebar-wa {
    background: linear-gradient(180deg, #ffffff 0%, #e8edf4 100%);
    color: #161c2d;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.65rem 1rem;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(148, 163, 184, 0.15);
}

.btn-sidebar-wa:hover {
    background: linear-gradient(180deg, #f8fafc 0%, #dbe3ed 100%);
    color: #161c2d;
}

.tool-quick-nav-list .tool-nav-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: #2b354f;
    transition: none;
}

.tool-quick-nav-list .tool-nav-item:hover {
    background: #e2eafd;
    border-color: #cbd5e1;
    color: #0066ff;
}

.tool-nav-name {
    font-size: 0.8125rem;
    font-weight: 600;
}


.web-evidence-footer {
    background: #f8fafc;
    border-top: 1px solid #cbd5e1;
    color: #111827;
    position: relative;
}

.web-evidence-footer .footer-top-accent {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #2b354f 0%, #0066ff 50%, #cbd5e1 100%);
}

.web-evidence-footer .footer-logo {
    max-width: 44px;
    height: auto;
    object-fit: contain;
}

.web-evidence-footer .footer-brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #161c2d;
    letter-spacing: -0.02em;
}

.web-evidence-footer .footer-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #4b5563;
}

.web-evidence-footer .evidence-formula-badge {
    background: linear-gradient(135deg, #ffffff 0%, #edf2f7 100%);
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    box-shadow: inset 0 1px 0 #ffffff;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2b354f;
}

.web-evidence-footer .footer-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #161c2d;
    letter-spacing: -0.01em;
}

.web-evidence-footer .footer-links li {
    margin-bottom: 0.5rem;
}

.web-evidence-footer .footer-link {
    font-size: 0.875rem;
    color: #4b5563;
    text-decoration: none;
}

.web-evidence-footer .footer-link i {
    font-size: 0.7rem;
    color: #8998b3;
}

.web-evidence-footer .footer-link:hover {
    color: #0066ff;
}

.web-evidence-footer .contact-details-plate {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-left: 4px solid #0066ff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(27, 38, 59, 0.04);
}

.web-evidence-footer .contact-text,
.web-evidence-footer .contact-link {
    font-size: 0.875rem;
    color: #2b354f;
    text-decoration: none;
    word-break: break-word;
}

.web-evidence-footer .contact-link:hover {
    color: #0066ff;
    text-decoration: underline;
}

.web-evidence-footer .btn-wa-chat {
    background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
    color: #ffffff;
    border: 1px solid #161c2d;
    border-radius: 8px;
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(22, 28, 45, 0.15);
}

.web-evidence-footer .btn-wa-chat:hover {
    background: linear-gradient(180deg, #3a4768 0%, #2b354f 100%);
    color: #ffffff;
}

.web-evidence-footer .footer-divider {
    border-color: #cbd5e1;
    opacity: 0.6;
}

.web-evidence-footer .footer-copyright {
    font-size: 0.8125rem;
    color: #6b7280;
}

.web-evidence-footer .framework-pill {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #49587e;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    box-shadow: inset 0 1px 0 #ffffff;
}


@media (max-width: 767.98px) {
    .tool-hero-block {
        padding: 2rem 0;
    }

    .tool-hero-block .tool-detail-heading {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .tool-article-content .section-subtitle {
        font-size: 1rem;
        hyphens: auto;
    }

    .tool-article-content .section-subheading {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .tool-hero-block .tool-detail-lead {
        font-size: 0.875rem;
        line-height: 1.45;
    }

    .web-evidence-footer .footer-heading {
        font-size: 0.95rem;
    }

    .web-evidence-footer .footer-brand-name {
        font-size: 1.05rem;
    }

    .web-evidence-footer .evidence-formula-badge {
        width: 100%;
        justify-content: center;
    }
}

/* ===== PAGE TEMPLATE: knowledge-base ===== */
.kb-detail-hero {
    background: linear-gradient(180deg, #2b354f 0%, #1e2638 100%);
    color: #ffffff;
    padding: 3.5rem 0 3rem 0;
    border-bottom: 1px solid #cbd5e1;
}

.kb-detail-hero .kb-breadcrumb {
    background: transparent;
    padding: 0;
    font-size: 0.8125rem;
}

.kb-detail-hero .kb-breadcrumb a {
    color: #cbd5e1;
    text-decoration: none;
}

.kb-detail-hero .kb-breadcrumb a:hover {
    color: #ffffff;
}

.kb-detail-hero .kb-breadcrumb .active {
    color: #94a3b8;
}

.kb-detail-hero .kb-category-pill {
    background: #0066ff;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
}

.kb-detail-hero .kb-status-pill {
    background: #e2eafd;
    color: #0052cc;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
}

.kb-detail-hero .kb-article-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.025em;
}

.kb-detail-hero .kb-article-lead {
    font-size: 1.0625rem;
    color: #e2eafd;
    line-height: 1.6;
}

.kb-detail-hero .kb-author-plate {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
}

.kb-detail-hero .kb-meta-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #cbd5e1;
}

.kb-detail-hero .kb-meta-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
}

.kb-detail-hero .kb-quick-action-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.3);
    color: #111827;
}

.kb-detail-hero .kb-action-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #161c2d;
}

.kb-detail-hero .kb-action-text {
    font-size: 0.8125rem;
    color: #4b5563;
    line-height: 1.5;
}

.kb-btn-primary {
    background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.65rem 1.25rem;
    border: 1px solid #161c2d;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(22, 28, 45, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.kb-btn-primary:hover {
    background: linear-gradient(180deg, #3a4768 0%, #20273d 100%);
    color: #ffffff;
}

.kb-btn-secondary {
    background: linear-gradient(180deg, #ffffff 0%, #e8edf4 100%);
    color: #161c2d;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.65rem 1.25rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(148, 163, 184, 0.2), inset 0 1px 0 #ffffff;
}

.kb-btn-secondary:hover {
    background: linear-gradient(180deg, #f8fafc 0%, #dbe3ed 100%);
    color: #161c2d;
}

.kb-detail-body {
    background-color: #f4f6fa;
}

.kb-content-container {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 1px solid #dbe2ea;
    border-radius: 16px;
    box-shadow: 0 8px 24px -6px rgba(30, 41, 59, 0.05), inset 0 1px 1px #ffffff;
}

.kb-main-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border: 1px solid #cbd5e1;
}

.kb-rich-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #161c2d;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.kb-rich-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #161c2d;
}

.kb-rich-text p {
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.kb-highlight-callout {
    background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 100%);
    border: 1px solid #cbd5e1;
    border-left: 4px solid #0066ff;
    border-radius: 12px;
    box-shadow: inset 0 1px 0 #ffffff;
}

.kb-steps-list {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.65;
}

.kb-steps-list li {
    margin-bottom: 0.5rem;
}

.kb-interactive-tabs-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(30, 41, 59, 0.04);
}

.kb-interactive-tabs-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #161c2d;
}

.kb-interactive-pill {
    background: #e2eafd;
    color: #0052cc;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
}

.kb-tab-btn {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #4b5563;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
}

.kb-tab-btn.active {
    background: #2b354f;
    color: #ffffff;
    border-color: #161c2d;
    box-shadow: 0 2px 6px rgba(22, 28, 45, 0.2);
}

.kb-tab-panel {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.kb-accordion-item {
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
}

.kb-accordion-btn {
    background: #ffffff;
    border: none;
    text-align: left;
    font-size: 0.9375rem;
}

.kb-accordion-btn:hover {
    background: #f8fafc;
}

.kb-accordion-content {
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 0.875rem;
    line-height: 1.6;
}

.kb-acc-icon {
    transition: transform 0.2s ease;
}

.kb-acc-icon.rotate-180 {
    transform: rotate(180deg);
}

.kb-share-bar {
    background: #f1f5f9;
    border: 1px solid #dbe2ea;
}

.kb-share-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #2b354f;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    text-decoration: none;
}

.kb-share-btn:hover {
    background: #0066ff;
    color: #ffffff;
    border-color: #0047b3;
}

.kb-sidebar-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #dbe2ea;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(27, 38, 59, 0.04);
}

.kb-sidebar-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #161c2d;
}

.kb-sidebar-link {
    font-size: 0.875rem;
    color: #2b354f;
    font-weight: 500;
    text-decoration: none;
    padding: 0.35rem 0.5rem;
    border-radius: 6px;
    border: 1px solid transparent;
}

.kb-sidebar-link:hover {
    background-color: #e2eafd;
    color: #0066ff;
    border-color: #cbd5e1;
}

.kb-sidebar-support-plate {
    border-left: 4px solid #0066ff;
}

@media (max-width: 767.98px) {
    .kb-detail-hero {
        padding: 2.5rem 0 2rem 0;
    }

    .kb-detail-hero .kb-article-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .kb-detail-hero .kb-article-lead {
        font-size: 0.875rem;
        line-height: 1.45;
    }

    .kb-rich-text h2 {
        font-size: 1rem;
        hyphens: auto;
    }

    .kb-rich-text h3 {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .kb-rich-text p {
        font-size: 0.875rem;
    }
}

/* ===== PAGE TEMPLATE: cases ===== */
.site-header-block {
    background-color: #f8fafc;
    border-bottom: 1px solid #cbd5e1;
    box-shadow: 0 4px 20px 0 rgba(148, 163, 184, 0.25), inset 0 1px 0 #ffffff, inset 0 -1px 2px rgba(203, 213, 225, 0.5);
    z-index: 1030;
}

.site-header-block .site-navbar {
    padding: 0.875rem 0;
    background-color: #f8fafc;
}

.site-header-block .navbar-brand {
    text-decoration: none;
    padding: 0;
    margin-right: 1.5rem;
}

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

.site-header-block .brand-title-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.site-header-block .brand-name {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #161c2d;
    letter-spacing: -0.02em;
}

.site-header-block .brand-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #0066ff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-header-block .nav-link-list {
    display: flex;
    gap: 0.5rem;
}

.site-header-block .nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #2b354f;
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    border: 1px solid transparent;
}

.site-header-block .nav-link:hover,
.site-header-block .nav-link:focus {
    color: #0066ff;
    background-color: #e2eafd;
    border-color: #cbd5e1;
}

.site-header-block .custom-toggler {
    padding: 0.35rem 0.65rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(148, 163, 184, 0.15);
}

.site-header-block .custom-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 255, 0.25);
    outline: none;
}

.site-header-block .custom-toggler .navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 1.25em 1.25em;
}

.site-header-block .header-cta-btn {
    background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border: 1px solid #161c2d;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(22, 28, 45, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    text-decoration: none;
}

.site-header-block .header-cta-btn:hover,
.site-header-block .header-cta-btn:focus {
    background: linear-gradient(180deg, #3a4768 0%, #20273d 100%);
    color: #ffffff;
}

.case-detail-block {
    background-color: #f4f6fa;
    min-height: 80vh;
}

.case-detail-block .case-detail-breadcrumbs-section {
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.case-detail-block .case-breadcrumb-link {
    color: #4b5563;
    text-decoration: none;
    font-size: 0.875rem;
}

.case-detail-block .case-breadcrumb-link:hover {
    color: #0066ff;
    text-decoration: underline;
}

.case-detail-block .breadcrumb-item.active {
    color: #161c2d;
    font-weight: 600;
    font-size: 0.875rem;
}

.case-detail-block .case-detail-hero-section {
    background: linear-gradient(180deg, #ffffff 0%, #eef3f8 100%);
    border-bottom: 1px solid #cbd5e1;
}

.case-detail-block .case-hero-badge {
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
}

.case-detail-block .case-hero-badge-primary {
    background: #dcfce7;
    color: #166534;
    border-color: #bbf7d0;
}

.case-detail-block .case-hero-badge-neutral {
    background: #ffffff;
    color: #2b354f;
}

.case-detail-block .case-hero-badge-accent {
    background: #e2eafd;
    color: #0052cc;
    border-color: #cbd5e1;
}

.case-detail-block .case-detail-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #161c2d;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.case-detail-block .case-detail-lead {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #4b5563;
}

.case-detail-block .case-meta-author-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(27, 38, 59, 0.04);
}

.case-detail-block .case-author-icon-box {
    width: 44px;
    height: 44px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-detail-block .case-author-title {
    font-weight: 600;
    color: #161c2d;
    font-size: 0.9375rem;
}

.case-detail-block .case-author-sub {
    font-size: 0.8125rem;
    color: #6b7280;
}

.case-detail-block .share-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #4b5563;
}

.case-detail-block .case-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    color: #2b354f;
    text-decoration: none;
    font-size: 0.9375rem;
}

.case-detail-block .case-share-btn:hover {
    background: #0066ff;
    color: #ffffff;
    border-color: #0066ff;
}

.case-detail-block .case-summary-specular-plate {
    background: linear-gradient(135deg, #ffffff 0%, #edf2f7 100%);
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(27, 38, 59, 0.08), inset 0 1px 1px #ffffff;
}

.case-detail-block .matrix-title-label {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #161c2d;
}

.case-detail-block .case-status-indicator {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    background: #dcfce7;
    color: #15803d;
    border-radius: 6px;
}

.case-detail-block .case-spec-row {
    font-size: 0.875rem;
    padding: 0.35rem 0;
}

.case-detail-block .spec-label {
    color: #4b5563;
    font-weight: 500;
}

.case-detail-block .spec-value {
    color: #161c2d;
    font-weight: 600;
}

.case-detail-block .case-btn-spec-inquiry {
    background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.65rem 1rem;
    border: 1px solid #161c2d;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(22, 28, 45, 0.15);
}

.case-detail-block .case-btn-spec-inquiry:hover {
    background: linear-gradient(180deg, #3a4768 0%, #2b354f 100%);
    color: #ffffff;
}

.case-detail-block .case-feature-image-wrapper {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(27, 38, 59, 0.06);
}

.case-detail-block .case-main-featured-image {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    display: block;
}

.case-detail-block .case-image-caption {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    font-size: 0.8125rem;
}

.case-detail-block .caption-text {
    color: #4b5563;
    font-weight: 500;
}

.case-detail-block .badge-provenance {
    font-size: 0.75rem;
    font-weight: 600;
    color: #0052cc;
    background: #e2eafd;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.case-detail-block .case-dissection-interactive-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    box-shadow: 0 8px 24px -6px rgba(30, 41, 59, 0.07);
    overflow: hidden;
}

.case-detail-block .case-tab-trigger {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #2b354f;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.55rem 1rem;
    border-radius: 8px;
    cursor: pointer;
}

.case-detail-block .case-tab-trigger.active {
    background: #0066ff;
    color: #ffffff;
    border-color: #0052cc;
}

.case-detail-block .case-content-subheading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #161c2d;
}

.case-detail-block .case-content-subheading-h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #161c2d;
}

.case-detail-block .case-rich-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #374151;
}

.case-detail-block .case-rich-text p {
    margin-bottom: 1rem;
    color: #374151;
}

.case-detail-block .case-quote-box {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-left: 4px solid #0066ff;
    border-radius: 8px;
}

.case-detail-block .quote-statement {
    font-style: italic;
    font-weight: 600;
    color: #161c2d;
    font-size: 1rem;
}

.case-detail-block .quote-source {
    font-size: 0.8125rem;
    color: #6b7280;
}

.case-detail-block .case-source-compare-card {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
}

.case-detail-block .source-compare-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.case-detail-block .badge-primary {
    background: #dcfce7;
    color: #15803d;
}

.case-detail-block .badge-derivative {
    background: #fee2e2;
    color: #b91c1c;
}

.case-detail-block .source-score-pill {
    font-size: 0.75rem;
    font-weight: 600;
    color: #4b5563;
}

.case-detail-block .compare-source-title {
    font-size: 1rem;
    font-weight: 600;
    color: #161c2d;
    margin-bottom: 0.5rem;
}

.case-detail-block .compare-source-text {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.5;
}

.case-detail-block .timeline-step-badge {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: #2b354f;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.875rem;
}

.case-detail-block .timeline-step-content {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
}

.case-detail-block .timeline-step-heading {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #161c2d;
}

.case-detail-block .timeline-time-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #0066ff;
}

.case-detail-block .timeline-step-desc {
    font-size: 0.875rem;
    color: #4b5563;
}

.case-detail-block .case-checklist-row {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-size: 0.875rem;
    color: #2b354f;
}

.case-detail-block .case-editorial-block {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(27, 38, 59, 0.04);
}

.case-detail-block .case-method-list {
    color: #374151;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.case-detail-block .case-method-list li {
    margin-bottom: 0.4rem;
}

.case-detail-block .case-action-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2eafd 100%);
    border: 1px solid #cbd5e1;
    border-radius: 16px;
}

.case-detail-block .case-action-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #161c2d;
}

.case-detail-block .case-action-desc {
    font-size: 0.875rem;
    color: #4b5563;
}

.case-detail-block .case-btn-contact {
    background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    border: 1px solid #161c2d;
    text-decoration: none;
}

.case-detail-block .case-btn-contact:hover {
    background: linear-gradient(180deg, #3a4768 0%, #20273d 100%);
    color: #ffffff;
}

.case-detail-block .case-btn-mail {
    background: #ffffff;
    color: #161c2d;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    text-decoration: none;
}

.case-detail-block .case-btn-mail:hover {
    background: #f1f5f9;
    color: #0066ff;
}

.case-detail-block .case-sidebar-widget {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(27, 38, 59, 0.05);
}

.case-detail-block .sidebar-widget-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #161c2d;
}

.case-detail-block .case-metric-box {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    border: 1px solid #cbd5e1;
    border-radius: 12px;
}

.case-detail-block .metric-score-display {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #0066ff;
    line-height: 1.1;
}

.case-detail-block .metric-score-label {
    font-size: 0.8125rem;
    color: #4b5563;
    font-weight: 500;
}

.case-detail-block .kpi-row {
    font-size: 0.875rem;
    padding: 0.25rem 0;
}

.case-detail-block .kpi-label {
    color: #6b7280;
}

.case-detail-block .related-item-title {
    font-weight: 600;
    color: #161c2d;
    font-size: 0.9375rem;
    line-height: 1.35;
}

.case-detail-block .case-related-link:hover .related-item-title {
    color: #0066ff;
}

.case-detail-block .case-btn-sidebar-nav {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #2b354f;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    text-decoration: none;
}

.case-detail-block .case-btn-sidebar-nav:hover {
    background: #0066ff;
    color: #ffffff;
    border-color: #0066ff;
}

.web-evidence-footer {
    background: #f8fafc;
    border-top: 1px solid #cbd5e1;
    color: #111827;
    position: relative;
}

.web-evidence-footer .footer-top-accent {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #2b354f 0%, #0066ff 50%, #cbd5e1 100%);
}

.web-evidence-footer .footer-logo {
    max-width: 44px;
    height: auto;
    object-fit: contain;
}

.web-evidence-footer .footer-brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #161c2d;
    letter-spacing: -0.02em;
}

.web-evidence-footer .footer-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #4b5563;
}

.web-evidence-footer .evidence-formula-badge {
    background: linear-gradient(135deg, #ffffff 0%, #edf2f7 100%);
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    box-shadow: inset 0 1px 0 #ffffff;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2b354f;
}

.web-evidence-footer .footer-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #161c2d;
    letter-spacing: -0.01em;
}

.web-evidence-footer .footer-links li {
    margin-bottom: 0.5rem;
}

.web-evidence-footer .footer-link {
    font-size: 0.875rem;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.15s ease;
}

.web-evidence-footer .footer-link i {
    font-size: 0.7rem;
    color: #8998b3;
}

.web-evidence-footer .footer-link:hover {
    color: #0066ff;
}

.web-evidence-footer .footer-link:hover i {
    color: #0066ff;
}

.web-evidence-footer .contact-details-plate {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-left: 4px solid #0066ff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(27, 38, 59, 0.04);
}

.web-evidence-footer .contact-text,
.web-evidence-footer .contact-link {
    font-size: 0.875rem;
    color: #2b354f;
    text-decoration: none;
    word-break: break-word;
}

.web-evidence-footer .contact-link:hover {
    color: #0066ff;
    text-decoration: underline;
}

.web-evidence-footer .btn-wa-chat {
    background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
    color: #ffffff;
    border: 1px solid #161c2d;
    border-radius: 8px;
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(22, 28, 45, 0.15);
}

.web-evidence-footer .btn-wa-chat:hover {
    background: linear-gradient(180deg, #3a4768 0%, #2b354f 100%);
    color: #ffffff;
}

.web-evidence-footer .footer-divider {
    border-color: #cbd5e1;
    opacity: 0.6;
}

.web-evidence-footer .footer-copyright {
    font-size: 0.8125rem;
    color: #6b7280;
}

.web-evidence-footer .framework-pill {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #49587e;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    box-shadow: inset 0 1px 0 #ffffff;
}

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

    .site-header-block .nav-link-list {
        flex-direction: column;
        gap: 0.25rem;
        margin-bottom: 1rem;
    }

    .site-header-block .nav-link {
        font-size: 0.8125rem;
        padding: 0.625rem 0.875rem;
    }

    .site-header-block .header-action-wrap {
        padding-top: 0.5rem;
        border-top: 1px solid #e2e8f0;
    }

    .site-header-block .header-cta-btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .case-detail-block .case-detail-heading {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .case-detail-block .case-content-subheading {
        font-size: 1rem;
        hyphens: auto;
    }

    .case-detail-block .case-content-subheading-h3 {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .case-detail-block .case-detail-lead {
        font-size: 0.875rem;
        line-height: 1.45;
    }

    .web-evidence-footer .footer-heading {
        font-size: 0.95rem;
    }

    .web-evidence-footer .footer-brand-name {
        font-size: 1.05rem;
    }

    .web-evidence-footer .evidence-formula-badge {
        width: 100%;
        justify-content: center;
    }
}
/* ===== Contact Feedback Form ===== */
.contact-feedback-form .form-control,
.contact-feedback-form .form-select {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0.625rem 0.875rem;
    font-size: 0.9375rem;
    background-color: #f8fafc;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.contact-feedback-form .form-control:focus,
.contact-feedback-form .form-select:focus {
    border-color: #0066ff;
    background-color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 255, 0.15);
    outline: none;
}

.contact-feedback-form .form-control.is-invalid,
.contact-feedback-form .form-select.is-invalid {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.contact-feedback-form .form-label {
    margin-bottom: 0.35rem;
}

.contact-feedback-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 18px -4px rgba(15, 23, 42, 0.4);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-submit-btn:hover,
.contact-submit-btn:focus {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px -6px rgba(15, 23, 42, 0.5);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

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

/* ===== Thank You Page ===== */
.thankyou-hero-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e2eafd 0%, #c7d2fe 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 12px 30px -8px rgba(0, 102, 255, 0.35);
}

.thankyou-hero-icon i {
    font-size: 2.5rem;
    color: #0052cc;
}

.thankyou-card {
    background: #ffffff;
    border: 1px solid #dbe2ea;
    border-radius: 16px;
    box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.12);
    padding: 3rem 2rem;
    text-align: center;
}

.thankyou-card .thankyou-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #161c2d;
    margin-bottom: 1rem;
}

.thankyou-card .thankyou-lead {
    color: #4b5563;
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto 2rem;
}

.thankyou-next-steps {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    margin-bottom: 2rem;
}

.thankyou-next-steps h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: #161c2d;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.thankyou-btn-primary {
    background: linear-gradient(180deg, #2b354f 0%, #161c2d 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 0.7rem 1.6rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.thankyou-btn-primary:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px -6px rgba(15, 23, 42, 0.4);
}

.thankyou-btn-secondary {
    background: #ffffff;
    color: #0052cc;
    border: 1px solid #0052cc;
    border-radius: 10px;
    padding: 0.7rem 1.6rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.15s ease;
}

.thankyou-btn-secondary:hover {
    background: #eef3fa;
    color: #0052cc;
}