:root {
    --bg-primary: #FEFCE8;
    --bg-secondary: #FFFBEB;
    --accent-surface: #FEF9C3;
    --text-primary: #1C1917;
    --text-secondary: #44403C;
    --text-muted: #78716C;
    --brand-primary: #CA8A04;
    --brand-hover: #A16207;
    --border-color: #E7E5E4;
    --divider-color: #F5F5F4;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.btn-primary {
    background-color: var(--text-primary);
    border-color: var(--text-primary);
    color: #FFFFFF;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: #000000;
    border-color: #000000;
    color: #FFFFFF;
}

.btn-outline-primary {
    border: 2px solid var(--text-primary);
    color: var(--text-primary);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
}

.btn-outline-primary:hover {
    background-color: var(--text-primary);
    color: #FFFFFF;
}

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

/* ===== header ===== */
.header-section {
    background-color: #FFFFFF !important;
    z-index: 1050;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.header-section .navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.header-section .header-logo {
    max-width: 36px;
    height: auto;
    object-fit: contain;
}

.header-section .navbar-brand {
    flex-shrink: 0;
}

.header-section .nav-brand-text {
    letter-spacing: -0.5px;
    color: #1C1917 !important;
    font-size: 0.95rem;
    line-height: 1.1;
    white-space: nowrap;
}

.header-section .nav-link {
    color: #44403C !important;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.5rem 0.7rem !important;
    white-space: nowrap;
    transition: color 0.15s ease-in-out;
}

.header-section .nav-link:hover,
.header-section .nav-link.active {
    color: #CA8A04 !important;
}

.header-section .navbar-nav {
    gap: 0.1rem;
}

.header-section .nav-cta-wrap {
    flex-shrink: 0;
}

.header-section .nav-cta-btn {
    font-size: 0.85rem;
    white-space: nowrap;
}

.header-section .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.header-section .dropdown-menu {
    border-radius: 12px;
    border: 1px solid #F5F5F4;
    padding: 0.75rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header-section .nav-item.dropdown .dropdown-toggle::after {
    border: none;
    content: '\f1c0';
    font-family: 'boxicons';
    font-size: 0.7rem;
    margin-left: 0.3rem;
    vertical-align: 0;
}

.header-section .nav-item.dropdown .dropdown-item {
    font-size: 0.88rem;
    white-space: nowrap;
}

.header-section .dropdown-item {
    font-weight: 500;
    color: #44403C;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.header-section .dropdown-item:hover {
    background-color: #FEF9C3;
    color: #CA8A04;
}

.header-section .btn-dark {
    background-color: #1C1917;
    border: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background-color 0.2s ease;
}

.header-section .btn-dark:hover {
    background-color: #44403C;
}

/* Compact nav for medium screens: reduce link padding */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .header-section .nav-link {
        font-size: 0.82rem;
        padding: 0.5rem 0.55rem !important;
    }
    .header-section .nav-brand-text {
        font-size: 0.85rem;
    }
    .header-section .header-logo {
        max-width: 32px;
    }
}

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

    .header-section .nav-link {
        padding: 0.7rem 0 !important;
        font-size: 0.95rem;
    }

    .header-section .dropdown-menu {
        border: none;
        box-shadow: none !important;
        padding-left: 1rem;
    }

    /* Align all navigation items to the left edge in burger menu */
    .header-section .navbar-nav {
        justify-content: flex-start !important;
        align-items: flex-start !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .header-section .navbar-nav .nav-item {
        width: 100%;
        text-align: left;
    }

    .header-section .nav-cta-wrap {
        width: 100%;
        justify-content: flex-start !important;
        margin-top: 0.75rem;
    }

    .header-section .nav-cta-btn {
        justify-content: flex-start !important;
    }
}

/* ===== hero ===== */
.metric-hero {
    background-color: #1C1917;
    min-height: 100vh;
    color: #FAFAF9;
}

.metric-hero .metric-hero-background {
    background-image: url('../static/graphics/media/metric-narrative-hero-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}

.metric-hero .metric-hero-overlay {
    background: linear-gradient(135deg, rgba(28, 25, 23, 0.9) 0%, rgba(28, 25, 23, 0.4) 100%);
}

.metric-hero .metric-hero-diagonal-shape {
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    background: rgba(202, 138, 4, 0.05);
    transform: skewX(-15deg);
    z-index: 0;
}

.metric-hero .metric-hero-content-box {
    transform: skewY(-1deg);
    padding: 2rem 0;
}

.metric-hero .metric-hero-accent-line {
    width: 80px;
    height: 4px;
    background-color: #CA8A04;
    box-shadow: 0 0 15px rgba(202, 138, 4, 0.5);
}

.metric-hero .metric-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #FAFAF9;
}

.metric-hero .metric-hero-text {
    font-size: 1.25rem;
    max-width: 650px;
    line-height: 1.6;
    color: #E7E5E4;
}

.metric-hero .metric-hero-btn-primary {
    background-color: #CA8A04;
    color: #FFFFFF;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: background-color 0.2s ease;
}

.metric-hero .metric-hero-btn-primary:hover {
    background-color: #A16207;
}

.metric-hero .metric-hero-btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.metric-hero .metric-hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.metric-hero .metric-hero-side-panel {
    top: 20%;
    right: 5%;
    width: 300px;
    height: 400px;
    z-index: 0;
}

.metric-hero .metric-hero-panel-outline {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: skewX(-5deg);
}

.metric-hero .metric-hero-panel-fragment {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-left: 2px solid #CA8A04;
    border-bottom: 2px solid #CA8A04;
    opacity: 0.4;
}

.metric-hero .metric-hero-decoration-fragment {
    bottom: 10%;
    left: 2%;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, #CA8A04, transparent);
    opacity: 0.5;
}

@media (max-width: 767px) {
    .metric-hero .metric-hero-title {
        font-size: 1.75rem;
    }

    .metric-hero .metric-hero-text {
        font-size: 1rem;
    }

    .metric-hero .metric-hero-content-box {
        transform: none;
    }
}

/* ===== key-benefits ===== */
.metric-benefits-section {
    background-color: #FEFCE8;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.metric-benefits-section .text-dark {
    color: #1C1917 !important;
}

.metric-benefits-section .text-secondary {
    color: #44403C !important;
    line-height: 1.6;
}

.metric-benefits-section .benefit-card {
    background: #FFFFFF;
    border: 1px solid #E7E5E4;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

.metric-benefits-section .benefit-card:hover {
    border-color: #CA8A04;
}

.metric-benefits-section .icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #FEF9C3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-benefits-section .icon-wrapper i {
    font-size: 2rem;
    color: #CA8A04;
}

.metric-benefits-section .btn-dark {
    background-color: #1C1917;
    border-color: #1C1917;
    color: #FFFFFF;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.metric-benefits-section .btn-dark:hover {
    background-color: #44403C;
    border-color: #44403C;
}

.metric-benefits-section .btn-outline-dark {
    background-color: transparent;
    border: 2px solid #1C1917;
    color: #1C1917;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.metric-benefits-section .btn-outline-dark:hover {
    background-color: #1C1917;
    color: #FFFFFF;
}

.metric-benefits-section .image-container {
    position: relative;
    border: 1px solid #E7E5E4;
}

@media (max-width: 767.98px) {
    .metric-benefits-section h2 {
        font-size: 1.5rem;
    }

    .metric-benefits-section .benefit-card {
        padding: 1.5rem;
    }
}

/* ===== featured-case ===== */
.featured-case-block {
    background-color: #FEFCE8;
    overflow: hidden;
}

.featured-case-block .featured-case-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #1C1917;
    line-height: 1.2;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.featured-case-block .featured-case-narrative {
    color: #44403C;
    font-size: 1.125rem;
    line-height: 1.6;
}

.featured-case-block .featured-case-questions {
    background-color: #FFFFFF;
    border: 1px solid #E7E5E4;
    border-radius: 12px;
}

.featured-case-block .featured-case-questions h3 {
    color: #1C1917;
    font-weight: 600;
}

.featured-case-block .featured-case-questions span {
    color: #44403C;
    font-size: 1rem;
}

.featured-case-block .text-accent {
    color: #CA8A04;
}

.featured-case-block .featured-case-btn {
    background-color: #1C1917;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.featured-case-block .featured-case-btn:hover {
    background-color: #44403C;
    color: #FFFFFF;
}

.featured-case-block .featured-case-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.featured-case-block .featured-case-visual a:hover img {
    opacity: 0.9;
}

@media (max-width: 767.98px) {
    .featured-case-block .featured-case-title {
        font-size: 18px;
    }

    .featured-case-block .featured-case-questions h3 {
        font-size: 14px;
    }

    .featured-case-block .featured-case-narrative {
        font-size: 1rem;
    }

    .featured-case-block .featured-case-visual img {
        height: 250px;
    }
}

/* ===== who-it-is-for ===== */
.who-it-is-for-section {
    background-color: #FEFCE8;
    color: #1C1917;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.who-it-is-for-section .section-title {
    color: #1C1917;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
}

.who-it-is-for-section .section-subtitle {
    color: #44403C;
    font-size: 1.125rem;
    line-height: 1.6;
}

.who-it-is-for-section .qualification-card {
    background: #FFFFFF;
    border: 1px solid #E7E5E4;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    transition: border-color 0.2s ease;
}

.who-it-is-for-section .fits-card {
    border-top: 4px solid #CA8A04;
}

.who-it-is-for-section .not-fits-card {
    border-top: 4px solid #78716C;
}

.who-it-is-for-section .card-header-icon {
    font-size: 2.5rem;
}

.who-it-is-for-section .fits-card .card-header-icon {
    color: #CA8A04;
}

.who-it-is-for-section .not-fits-card .card-header-icon {
    color: #78716C;
}

.who-it-is-for-section .list-title {
    color: #1C1917;
    font-size: 1.75rem;
    font-weight: 700;
}

.who-it-is-for-section .qualification-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.who-it-is-for-section .qualification-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    color: #44403C;
    line-height: 1.6;
}

.who-it-is-for-section .qualification-list li i {
    margin-top: 0.25rem;
    margin-right: 0.75rem;
    color: #CA8A04;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.who-it-is-for-section .not-fits-card .qualification-list li i {
    color: #78716C;
}

.who-it-is-for-section .btn-cta-primary {
    display: inline-block;
    background-color: #1C1917;
    color: #FFFFFF;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border: none;
}

.who-it-is-for-section .btn-cta-primary:hover {
    background-color: #44403C;
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .who-it-is-for-section .section-title {
        font-size: 1.5rem;
    }

    .who-it-is-for-section .qualification-card {
        padding: 1.5rem;
    }

    .who-it-is-for-section .list-title {
        font-size: 1.25rem;
    }
}

/* ===== founder-note ===== */
.founder-note-section {
    background-color: #FEFCE8;
    overflow: hidden;
}

.founder-note-section .founder-image-wrapper {
    position: relative;
    z-index: 1;
}

.founder-note-section .founder-image {
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    transition: filter 0.3s ease;
}

.founder-note-section .founder-image-wrapper:hover .founder-image {
    filter: grayscale(20%);
}

.founder-note-section .founder-quote-decoration {
    bottom: -20px;
    right: -20px;
    background-color: #CA8A04;
    color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 2;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.founder-note-section .founder-heading {
    color: #1C1917;
    font-weight: 700;
    line-height: 1.2;
    font-size: clamp(2rem, 4vw, 3rem);
}

.founder-note-section .founder-text {
    color: #44403C;
    font-size: 1.125rem;
    line-height: 1.6;
}

.founder-note-section .founder-name {
    color: #1C1917;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 2px;
}

.founder-note-section .founder-title {
    color: #78716C;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.founder-note-section .founder-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1C1917;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 0;
    border-bottom: 2px solid #CA8A04;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.founder-note-section .founder-btn-link:hover {
    color: #CA8A04;
    border-color: #1C1917;
}

@media (max-width: 991.98px) {
    .founder-note-section .founder-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .founder-note-section .founder-content-wrapper {
        text-align: center;
        padding-top: 2rem;
    }

    .founder-note-section .founder-footer {
        align-items: center;
        text-align: center;
    }
}

/* ===== press-mentions ===== */
.press-mentions {
    position: relative;
    overflow: hidden;
    background-color: #FEFCE8;
    padding: clamp(4rem, 10vh, 8rem) 0;
}

.press-mentions .press-mentions__title {
    color: #1C1917;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: none;
}

.press-mentions .press-mentions__divider {
    width: 60px;
    height: 4px;
    background-color: #CA8A04;
    margin: 0 auto;
}

.press-mentions .press-mentions__card {
    background: #FFFFFF;
    border: 1px solid #E7E5E4;
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.press-mentions .press-mentions__card:hover {
    background-color: #FEF9C3;
    border-color: #CA8A04;
}

.press-mentions .press-mentions__icon {
    color: #CA8A04;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.press-mentions .press-mentions__quote {
    color: #44403C;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-style: normal;
}

.press-mentions .press-mentions__source {
    color: #1C1917;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.press-mentions .press-mentions__btn {
    background-color: #1C1917;
    color: #FFFFFF;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: none;
}

.press-mentions .press-mentions__btn:hover {
    background-color: #44403C;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .press-mentions .press-mentions__title {
        font-size: 16px !important;
    }

    .press-mentions .press-mentions__quote {
        font-size: 14px !important;
    }

    .press-mentions .press-mentions__source {
        font-size: 14px !important;
    }

    .press-mentions .press-mentions__card {
        padding: 1.5rem;
    }
}

/* ===== industry-solutions-grid ===== */
.industry-solutions-grid {
    padding: clamp(4rem, 10vh, 8rem) 0;
    background-color: #FEFCE8;
    color: #1C1917;
    font-family: 'Inter', sans-serif;
}

.industry-solutions-grid .grid-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: #1C1917;
    margin-bottom: 1.5rem;
}

.industry-solutions-grid .grid-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #44403C;
    max-width: 600px;
}

.industry-solutions-grid .sol-card {
    background-color: #FFFFFF;
    border: 1px solid #E7E5E4;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.industry-solutions-grid .sol-card:hover {
    background-color: #FEF9C3;
}

.industry-solutions-grid .sol-card-img-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.industry-solutions-grid .sol-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-solutions-grid .sol-card-body {
    padding: 2rem;
    flex-grow: 1;
}

.industry-solutions-grid .sol-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.industry-solutions-grid .sol-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1C1917;
    margin-bottom: 1rem;
}

.industry-solutions-grid .sol-card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #44403C;
    margin-bottom: 1.5rem;
}

.industry-solutions-grid .sol-btn-primary {
    display: inline-block;
    background-color: #1C1917;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    width: 100%;
}

.industry-solutions-grid .sol-btn-primary:hover {
    background-color: #44403C;
}

.industry-solutions-grid .sol-btn-primary:focus {
    outline: 2px solid #CA8A04;
    outline-offset: 4px;
}

.industry-solutions-grid .sol-btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1C1917;
    padding: 0.75rem 2rem;
    border: 2px solid #1C1917;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
}

.industry-solutions-grid .sol-btn-secondary:hover {
    background-color: #1C1917;
    color: #FFFFFF;
}

.industry-solutions-grid .sol-btn-secondary:focus {
    outline: 2px solid #CA8A04;
    outline-offset: 4px;
}

@media (max-width: 767px) {
    .industry-solutions-grid {
        padding: 4rem 0;
    }

    .industry-solutions-grid .grid-title {
        font-size: 1.5rem;
    }

    .industry-solutions-grid .sol-card-body {
        padding: 1.5rem;
    }
}

/* ===== interpretation-cases-grid ===== */
.interpretation-cases-grid {
    background-color: #FEFCE8;
    padding: 80px 0;
}

.interpretation-cases-grid h2 {
    color: #1C1917;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.interpretation-cases-grid h3 {
    color: #1C1917;
    font-size: 1.5rem;
    line-height: 1.2;
}

.interpretation-cases-grid p {
    color: #44403C;
    line-height: 1.6;
}

.interpretation-cases-grid .card {
    background-color: #FFFFFF;
    border: 1px solid #E7E5E4;
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.interpretation-cases-grid .card:hover {
    border-color: #CA8A04;
}

.interpretation-cases-grid .btn-dark {
    background-color: #1C1917;
    border-color: #1C1917;
    color: #FFFFFF;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.interpretation-cases-grid .btn-dark:hover {
    background-color: #A16207;
    border-color: #A16207;
}

.interpretation-cases-grid .btn-outline-dark {
    background-color: transparent;
    border: 2px solid #1C1917;
    color: #1C1917;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.interpretation-cases-grid .btn-outline-dark:hover,
.interpretation-cases-grid .btn-outline-dark.active {
    background-color: #1C1917;
    color: #FFFFFF;
}

@media (max-width:767px) {
    .interpretation-cases-grid h2 {
        font-size: 18px
    }

    .interpretation-cases-grid h3 {
        font-size: 16px
    }

    .interpretation-cases-grid {
        padding: 40px 0
    }
}

/* ===== consultation-booking ===== */
.booking-section {
    background-color: #FEFCE8;
    color: #1C1917;
}

.booking-section .booking-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #1C1917;
    line-height: 1.2;
}

.booking-section .booking-description {
    color: #44403C;
    font-size: 1.125rem;
    line-height: 1.6;
}

.booking-section .booking-image-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 1px solid #E7E5E4;
}

.booking-section .text-accent {
    color: #CA8A04;
}

.booking-section .booking-form-wrapper {
    background-color: #FFFFFF;
    border: 1px solid #E7E5E4;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.booking-section .form-control,
.booking-section .form-select {
    background-color: #FAFAF9;
    border: 1px solid #E7E5E4;
    padding: 0.75rem 1rem;
    color: #1C1917;
    border-radius: 8px;
}

.booking-section .form-control:focus,
.booking-section .form-select:focus {
    border-color: #CA8A04;
    box-shadow: 0 0 0 2px rgba(202, 138, 4, 0.1);
    background-color: #FFFFFF;
}

.booking-section .btn-outline-dark {
    border-color: #1C1917;
    color: #1C1917;
    background: transparent;
    transition: all 0.2s ease;
}

.booking-section .btn-check:checked+.btn-outline-dark {
    background-color: #1C1917 !important;
    color: #FFFFFF !important;
}

.booking-section .btn-slot {
    background-color: #F5F5F4;
    border: 1px solid #E7E5E4;
    color: #44403C;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.booking-section .btn-slot:hover {
    background-color: #E7E5E4;
}

.booking-section .btn-slot.active {
    background-color: #CA8A04;
    border-color: #CA8A04;
    color: #FFFFFF;
}

.booking-section .btn-dark {
    background-color: #1C1917;
    border: none;
    color: #FFFFFF;
    transition: background-color 0.2s ease;
}

.booking-section .btn-dark:hover {
    background-color: #44403C;
}

@media (max-width: 768px) {
    .booking-section .booking-title {
        font-size: 1.5rem;
    }

    .booking-section .booking-description {
        font-size: 1rem;
    }
}

/* ===== footer ===== */
.mn-footer {
    background-color: #FFFBEB;
    color: #44403C;
    font-family: 'Inter', sans-serif;
}

.mn-footer .mn-footer-disclaimer {
    background-color: #FEF9C3;
    border: 1px solid #E7E5E4;
}

.mn-footer .mn-footer-disclaimer-title {
    color: #1C1917;
    letter-spacing: 0.05em;
}

.mn-footer .mn-footer-disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #44403C;
    hyphens: auto;
}

.mn-footer .mn-footer-logo {
    max-width: 50px;
    height: auto;
    object-fit: contain;
}

.mn-footer .mn-footer-about {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #78716C;
}

.mn-footer .mn-footer-link {
    text-decoration: none;
    color: #44403C;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.mn-footer .mn-footer-link:hover {
    color: #CA8A04;
}

.mn-footer .mn-footer-link-small {
    text-decoration: none;
    color: #78716C;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.mn-footer .mn-footer-link-small:hover {
    color: #CA8A04;
}

.mn-footer .mn-footer-contacts a {
    text-decoration: none;
}

.mn-footer .mn-footer-copy {
    font-size: 0.875rem;
    color: #78716C;
}

.mn-footer .border-top {
    border-color: #E7E5E4 !important;
}

@media (max-width: 767.98px) {
    .mn-footer .mn-footer-disclaimer-title {
        font-size: 0.875rem;
    }

    .mn-footer .mn-footer-disclaimer-text {
        font-size: 0.8rem;
    }

    .mn-footer .mn-footer-link-small {
        font-size: 0.8rem;
    }
}

.metric-hero {
    background-color: #1C1917;
    min-height: 40vh;
    color: #FAFAF9;
    position: relative;
}

.metric-hero .metric-hero-background {
    background-image: url('../static/graphics/media/metric-narrative-hero-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.metric-hero .metric-hero-overlay {
    background: linear-gradient(135deg, rgba(28, 25, 23, 0.95) 0%, rgba(28, 25, 23, 0.7) 100%);
}

.metric-hero .metric-hero-diagonal-shape {
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    background: rgba(202, 138, 4, 0.05);
    transform: skewX(-15deg);
    z-index: 0;
}

.metric-hero .metric-hero-accent-line {
    width: 80px;
    height: 4px;
    background-color: #CA8A04;
}

.metric-hero .metric-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: #FAFAF9;
}

.metric-hero .metric-hero-text {
    font-size: 1.125rem;
    color: #E7E5E4;
    max-width: 800px;
}

.list-block-section {
    background-color: #FEFCE8;
    min-height: 60vh;
}

.list-block-section .search-container input {
    border: 1px solid #E7E5E4;
    border-radius: 12px;
    box-shadow: none;
}

.list-block-section .search-container input:focus {
    border-color: #CA8A04;
    box-shadow: 0 0 0 4px rgba(202, 138, 4, 0.1);
}

.list-block-section .card {
    border-radius: 12px;
    transition: transform 0.2s ease;
    overflow: hidden;
}

.list-block-section .card-img-container {
    height: 220px;
    overflow: hidden;
}

.list-block-section .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.list-block-section .card-overlay {
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.list-block-section .card:hover .card-overlay {
    opacity: 1;
}

.list-block-section .card:hover .card-img-top {
    transform: scale(1.05);
}

.list-block-section .card-title {
    color: #1C1917;
}

.list-block-section .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #44403C !important;
}

.mn-footer {
    background-color: #FFFBEB;
    color: #44403C;
}

.mn-footer .mn-footer-disclaimer {
    background-color: #FEF9C3;
    border: 1px solid #E7E5E4;
}

.mn-footer .mn-footer-link {
    text-decoration: none;
    color: #44403C;
    transition: color 0.2s ease;
}

.mn-footer .mn-footer-link:hover {
    color: #CA8A04;
}

.mn-footer .border-top {
    border-color: #E7E5E4 !important;
}

@media (max-width: 767.98px) {
    .metric-hero .metric-hero-title {
        font-size: 1.5rem;
    }

    .metric-hero .metric-hero-text {
        font-size: 1rem;
    }

    .list-block-section {
        padding-top: 2rem !important;
    }
}


/* ===== PAGE: metric-handbook ===== */
.metric-handbook-page { background-color: #FEFCE8; color: #1C1917; font-family: 'Inter', sans-serif; }
.metric-handbook-page .card { transition: border-color 0.2s ease; background: #FFFFFF; border: 1px solid #E7E5E4 ! from global design system; }
.metric-handbook-page .card:hover { border-color: #CA8A04; }
.metric-handbook-page .btn-primary { background-color: #1C1917; border: none; color: #FFFFFF; font-weight: 600; border-radius: 8px; }
.metric-handbook-page .btn-primary:hover { background-color: #44403C; }
.metric-handbook-page .btn-secondary { background-color: transparent; border: 2px solid #1C1917; color: #1C1917; font-weight: 600; border-radius: 8px; }
.metric-handbook-page .btn-secondary:hover { background-color: #1C1917; color: #FFFFFF; }
.metric-handbook-page .js-check-item.active { background-color: #FEF9C3; border-color: #CA8A04 !important; }
.metric-handbook-page .js-check-item.active .js-check-icon { color: #CA8A04 !important; }

/* ===== PAGE: kpi-meaning ===== */
.kpi-meaning-content {
  background-color: #FEFCE8;
  padding: clamp(4rem, 10vh, 8rem) 0;
  color: #1C1917;
  font-family: 'Inter', sans-serif;
}
.kpi-meaning-section-title {
  color: #1C1917;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
}
.kpi-meaning-lead-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #44403C;
}
.kpi-meaning-card {
  background: #FFFFFF;
  border: 1px solid #E7E5E4;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease;
}
.kpi-meaning-icon {
  font-size: 2.5rem;
  color: #CA8A04;
  margin-bottom: 1rem;
}
.kpi-meaning-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1C1917;
  margin-bottom: 0.75rem;
}
.kpi-meaning-card-text {
  font-size: 1rem;
  color: #44403C;
  line-height: 1.5;
  margin-bottom: 0;
}
.kpi-meaning-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.kpi-meaning-section-heading {
  color: #1C1917;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.text-accent {
  color: #CA8A04;
}
.kpi-meaning-tab-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: 2px solid #1C1917;
  background: transparent;
  color: #1C1917;
  font-weight: 600;
  cursor: pointer;
}
.kpi-meaning-tab-btn.active {
  background: #1C1917;
  color: #FFFFFF;
}
.kpi-meaning-tab-btn:hover {
  background: #f3f3f3;
}
.kpi-meaning-tab-btn.active:hover {
  background: #2d2a27;
}
.kpi-meaning-cta-box {
  background: #FEF9C3;
  border: 1px solid #E7E5E4;
}
.kpi-meaning-primary-btn {
  display: inline-block;
  background: #1C1917;
  color: #FFFFFF !important;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.kpi-meaning-primary-btn:hover {
  background: #A16207;
}
@media (max-width: 768px) {
  .kpi-meaning-section-title {
    font-size: 1.5rem;
  }
  .kpi-meaning-image-wrapper img {
    height: 250px;
  }
  .kpi-meaning-section-heading {
    font-size: 1.5rem;
  }
}

/* ===== PAGE: baselines ===== */
.baselines-section { background-color: #FEFCE8; color: #1C1917; font-family: 'Inter', sans-serif; }
.baselines-section h1, .baselines-section h2, .baselines-section h3, .baselines-section h4 { font-weight: 700; color: #1C1917; line-height: 1.2; }
.baselines-section .text-secondary { color: #44403C !important; }
.baselines-section .bg-accent { background-color: #FEF9C3; }
.baselines-section .btn-primary { background-color: #1C1917; border-color: #1C1917; color: #FFFFFF; font-weight: 600; transition: background-color 0.2s; }
.baselines-section .btn-primary:hover { background-color: #44403C; border-color: #44403C; }
.baselines-section .btn-outline-dark { color: #1C1917; border: 2px solid #1C1917; font-weight: 600; }
.baselines-section .btn-outline-dark:hover { background-color: #1C1917; color: #FFFFFF; }
.baselines-section .btn-outline-dark.active { background-color: #1C1917; color: #FFFFFF; }
.baselines-section__image-container { min-height: 350px; border: 1px solid #E7E5E4; }
.baselines-section__card { transition: border-color 0.2s; border: 1px solid #E7E5E4 !important; }
.baselines-section__card:hover { border-color: #CA8A04 !important; }
.baselines-section__validator-tool { border: 1px solid #E7E5E4; }
.baselines-section__result-card { min-height: 200px; display: flex; flex-direction: column; justify-content: center; align-items: center; border: 1px solid #E7E5E4; }
.baselines-section .bx-check-circle { color: #CA8A04 !important; }

/* ===== PAGE: trend-context ===== */
.trend-context-block { font-family: 'Inter', sans-serif; background-color: #FEFCE8; }.trend-context-block h2,.trend-context-block h3 { font-weight: 700; line-height: 1.2; }.trend-context-block .card { transition: transform 0.2s ease-in-out; border: 1px solid #E7E5E4 !important; }.trend-context-block .js-trend-card:hover { border-color: #CA8A04 !important; }.trend-context-block .form-control:focus { border-color: #CA8A04; box-shadow: 0 0 0 0.25rem rgba(202, 138, 4, 0.1); }.trend-context-block .btn-dark { background-color: #1C1917; border: none; font-weight: 600; }.trend-context-block .btn-dark:hover { background-color: #44403C; }.trend-context-block .rounded-4 { border-radius: 1.5rem; }.trend-context-block .rounded-3 { border-radius: 1rem; }@media (max-width: 768px) { .trend-context-block .display-5 { font-size: 1.75rem; } .trend-context-block .h2 { font-size: 1.5rem; } }

/* ===== PAGE: segment-reviews ===== */
.segment-content-block {
  background-color: #FEFCE8;
  padding: clamp(4rem, 10vh, 8rem) 0;
  color: #1C1917;
}

.segment-content-block .bg-accent-surface {
  background-color: #FEF9C3;
}

.segment-content-block .card {
  background: #FFFFFF;
  border: 1px solid #E7E5E4;
  border_radius: 12px;
  transition: border-color 0.2s ease;
  cursor: pointer;
}

.segment-content-block .card:hover {
  border-color: #CA8A04;
}

.segment-content-block .btn-primary {
  background-color: #1C1917;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: #FFFFFF;
}

.segment-content-block .btn-primary:hover {
  background-color: #44403C;
}

.segment-content-block .btn-secondary {
  background-color: transparent;
  color: #1C1917;
  border: 2px solid #1C1917;
  font-weight: 600;
}

.segment-content-block .btn-secondary:hover {
  background-color: #1C1917;
  color: #FFFFFF;
}

.segment-content-block .btn-outline-dark {
  border-color: #1C1917;
  color: #1C1917;
}

.segment-content-block .btn-outline-dark.active {
  background-color: #1C1917;
  color: #FFFFFF;
}

.segment-content-block .list-unstyled i {
  font-size: 1.25rem;
  vertical-align: middle;
}

.segment-content-block .tab-content-area {
  min-height: 150px;
}

.segment-content-block .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 300px;
}

@media (max-width: 768px) {
  .segment-content-block .image-wrapper img {
    height: 200px;
    margin-top: 1.5rem;
  }
}

/* ===== PAGE: decision-handoffs ===== */
.decision-handoffs {
  background-color: #FEFCE8;
  color: #1C1917;
  font-family: 'Inter', sans-serif;
}

.decision-handoffs .handoffs-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1C1917;
  line-height: 1.1;
}

.decision-handoffs .handoffs-lead {
  font-size: 1.25rem;
  color: #44403C;
  line-height: 1.6;
}

.decision-handoffs .handoffs-subheading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1C1917;
}

.decision-handoffs .handoffs-checklist-container {
  background-color: #FFFFFF;
  border: 1px solid #E7E5E4;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.decision-handoffs .handoffs-card {
  background-color: #FFFBEB;
  border: 1px solid #E7E5E4;
  border-radius: 12px;
  transition: border-color 0.2s ease;
}

.decision-handoffs .handoffs-card:hover {
  border-color: #CA8A04;
}

.decision-handoffs .form-check-input:checked {
  background-color: #CA8A04;
  border-color: #CA8A04;
}

.decision-handoffs .handoffs-btn-matrix {
  background-color: #FFFFFF;
  border: 1px solid #E7E5E4;
  color: #1C1917;
  padding: 1rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.decision-handoffs .handoffs-btn-matrix:hover {
  background-color: #FEF9C3;
  border-color: #CA8A04;
}

.decision-handoffs .handoffs-btn-matrix.active {
  background-color: #1C1917;
  color: #FFFFFF;
  border-color: #1C1917;
}

.decision-handoffs .handoffs-matrix-content {
  background-color: #FFFFFF;
  border: 1px solid #E7E5E4;
  border-radius: 12px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.decision-handoffs .handoffs-conclusion-zone {
  background-color: #FEF9C3;
  border-radius: 12px;
  border: 1px solid #E7E5E4;
}

.decision-handoffs .text-warning {
  color: #CA8A04 !important;
}

@media (max-width: 767px) {
  .decision-handoffs .handoffs-heading {
    font-size: 1.75rem;
  }
  .decision-handoffs .handoffs-subheading {
    font-size: 1.5rem;
  }
  .decision-handoffs .handoffs-lead {
    font-size: 1.1rem;
  }
}

/* ===== PAGE: about ===== */
.about-section {
  background-color: #FEFCE8;
  color: #1C1917;
  font-family: 'Inter', sans-serif;
}
.about-section .bg-brand-light {
  background-color: #FEF9C3;
}
.about-section .text-brand {
  color: #CA8A04;
}
.about-section .text-primary-dark {
  color: #1C1917;
}
.about-section .text-secondary-dark {
  color: #44403C;
}
.about-section .about-card {
  background-color: #FFFFFF;
  border: 1px solid #E7E5E4;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: none;
}
.about-section .icon-box {
  width: 60px;
  height: 60px;
  background-color: #FEFCE8;
  color: #CA8A04;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.about-section .methodology-tabs-container {
  background-color: #FFFFFF;
  border: 1px solid #E7E5E4;
}
.about-section .nav-pills .nav-link {
  color: #44403C;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 1rem;
  font-weight: 600;
}
.about-section .nav-pills .nav-link.active {
  background-color: #1C1917;
  color: #FFFFFF;
}
.about-section .nav-pills .nav-link:hover:not(.active) {
  background-color: #F5F5F4;
  color: #1C1917;
}
.about-section .bg-accent-surface {
  background-color: #FEF9C3;
}
.about-section .btn-primary-custom {
  background-color: #1C1917;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
.about-section .btn-primary-custom:hover {
  background-color: #44403C;
  color: #FFFFFF;
}
.about-section .tab-pane h3 {
  color: #1C1917;
  font-weight: 700;
  margin-bottom: 1rem;
}
.about-section .tab-pane p {
  color: #44403C;
  line-height: 1.6;
}

/* ===== PAGE: power-bi ===== */
.pb-guide-container { background-color: #FEFCE8; color: #1C1917; font-family: 'Inter', sans-serif; }
.pb-guide-container .pb-guide-title { font-weight: 700; color: #1C1917; line-height: 1.2; font-size: clamp(2rem, 4vw, 3rem); }
.pb-guide-container .pb-guide-lead { font-size: 1.125rem; line-height: 1.6; max-width: 800px; margin: 0 auto; color: #44403C; }
.pb-guide-container .pb-guide-search-wrapper { position: relative; margin-bottom: 2rem; }
.pb-guide-container .pb-guide-search-icon { position: absolute; left: 1.25rem; top: 50%; transform: translateY(-50%); color: #78716C; font-size: 1.25rem; }
.pb-guide-container .pb-guide-search-input { padding: 0.75rem 1rem 0.75rem 3rem; border: 1px solid #E7E5E4; border-radius: 8px; background: #FFFFFF; color: #1C1917; font-size: 1rem; box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
.pb-guide-container .pb-guide-search-input:focus { border-color: #CA8A04; box-shadow: 0 0 0 4px rgba(202, 138, 4, 0.1); outline: none; }
.pb-guide-container .pb-guide-card { background: #FFFFFF; border: 1px solid #E7E5E4; border-radius: 12px; padding: 2rem; transition: background-color 0.2s ease, border-color 0.2s ease; display: flex; flex-direction: column; }
.pb-guide-container .pb-guide-card-icon { font-size: 2rem; color: #CA8A04; margin-bottom: 1.25rem; }
.pb-guide-container .pb-guide-card-title { font-size: 1.25rem; font-weight: 700; color: #1C1917; margin-bottom: 1rem; line-height: 1.3; }
.pb-guide-container .pb-guide-card-text { font-size: 1rem; color: #44403C; line-height: 1.5; margin-bottom: 0; }
.pb-guide-container .pb-guide-cta-box { background-color: #FEF9C3; border-radius: 16px; border: 1px solid #E7E5E4; }
.pb-guide-container .pb-guide-cta-box h2 { font-weight: 700; color: #1C1917; }
.pb-guide-container .pb-guide-btn-primary { background-color: #1C1917; color: #FFFFFF; font-weight: 600; border-radius: 8px; border: none; transition: background-color 0.2s; }
.pb-guide-container .pb-guide-btn-primary:hover { background-color: #44403C; color: #FFFFFF; }
.pb-guide-container .pb-guide-btn-secondary { background-color: transparent; color: #1C1917; font-weight: 600; border: 2px solid #1C1917; border-radius: 8px; transition: background-color 0.2s; }
.pb-guide-container .pb-guide-btn-secondary:hover { background-color: #1C1917; color: #FFFFFF; }
@media (max-width: 767px) {
  .pb-guide-container .pb-guide-title { font-size: 1.5rem; }
  .pb-guide-container .pb-guide-card { padding: 1.5rem; }
}

/* ===== PAGE: how-it-works ===== */
.how-it-works-content {
  background-color: #FEFCE8;
  font-family: 'Inter', sans-serif;
}
.how-it-works-content .text-muted {
  color: #78716C !important;
}
.how-it-works-content .text-secondary {
  color: #44403C !important;
}
.how-it-works-content .step-number {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #CA8A04;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 2px solid #CA8A04;
  padding-bottom: 4px;
}
.how-it-works-content .step-image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: 1px solid #E7E5E4;
}
.how-it-works-content .bg-light-yellow {
  background-color: #FFFBEB;
}
.how-it-works-content .btn-dark {
  background-color: #1C1917;
  border: none;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
.how-it-works-content .btn-dark:hover {
  background-color: #44403C;
}
.how-it-works-content .btn-outline-dark {
  border: 2px solid #1C1917;
  color: #1C1917;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.how-it-works-content .btn-outline-dark:hover {
  background-color: #1C1917;
  color: #FFFFFF;
}
.how-it-works-content .process-step {
  padding: 2rem 0;
}
@media (max-width: 767.98px) {
  .how-it-works-content .step-image-container img {
    height: 250px;
  }
  .how-it-works-content .display-4 {
    font-size: 1.75rem;
  }
  .how-it-works-content h2.h3 {
    font-size: 1.25rem;
  }
}

/* ===== PAGE: privacy ===== */
.privacy-section { background-color: #FEFCE8; padding: clamp(4rem, 10vh, 8rem) 0; font-family: 'Inter', sans-serif; } .privacy-section .privacy-body { color: #1C1917; line-height: 1.6; } .privacy-section .privacy-card { background: #FFFFFF; border: 1px solid #E7E5E4; border-radius: 12px; padding: 3rem; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05); } .privacy-section .privacy-intro { color: #78716C; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2rem; border-bottom: 1px solid #F5F5F4; padding-bottom: 1rem; } .privacy-section h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: #1C1917; margin-top: 2.5rem; margin-bottom: 1.25rem; line-height: 1.2; } .privacy-section p { font-size: 1.125rem; color: #44403C; margin-bottom: 1.5rem; } .privacy-section ul { margin-bottom: 2rem; padding-left: 1.5rem; list-style: none; } .privacy-section ul li { position: relative; font-size: 1.125rem; color: #44403C; margin-bottom: 0.75rem; padding-left: 1.5rem; } .privacy-section ul li::before { content: ''; position: absolute; left: 0; top: 0.6rem; width: 8px; height: 8px; background-color: #CA8A04; border-radius: 50%; } .privacy-section strong { color: #1C1917; font-weight: 600; } .privacy-section .btn-primary-custom { background-color: #1C1917; color: #FFFFFF; padding: 0.75rem 1.5rem; border-radius: 8px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; border: none; transition: background-color 0.2s ease; } .privacy-section .btn-primary-custom:hover { background-color: #44403C; color: #FFFFFF; } @media (max-width: 767px) { .privacy-section .privacy-card { padding: 1.5rem; } .privacy-section h2 { font-size: 1.25rem; } .privacy-section p, .privacy-section ul li { font-size: 1rem; } }

/* ===== PAGE: terms ===== */
.terms-narrative { background-color: #FEFCE8; min-height: 80vh; }
.terms-narrative .terms-sidebar { top: 2rem; background: #FFFFFF; border: 1px solid #E7E5E4; border-radius: 12px; padding: 2rem; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); }
.terms-narrative .terms-nav-links a { color: #44403C; font-weight: 600; transition: color 0.2s ease; display: block; padding: 0.25rem 0; }
.terms-narrative .terms-nav-links a:hover { color: #CA8A04; }
.terms-narrative .terms-search-wrapper .input-group-text { border-color: #E7E5E4; color: #78716C; }
.terms-narrative .terms-search-wrapper .form-control { border-color: #E7E5E4; color: #1C1917; }
.terms-narrative .terms-search-wrapper .form-control:focus { box-shadow: 0 0 0 2px rgba(202, 138, 4, 0.2); border-color: #CA8A04; }
.terms-narrative .terms-body { background: #FFFFFF; border: 1px solid #E7E5E4; border-radius: 12px; padding: 3rem; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); }
.terms-narrative .terms-block h2 { color: #1C1917; font-weight: 700; font-size: 1.75rem; border-bottom: 2px solid #FEF9C3; padding-bottom: 0.75rem; }
.terms-narrative .terms-block p, .terms-narrative .terms-block li { color: #44403C; line-height: 1.7; font-size: 1.125rem; }
.terms-narrative .terms-block ul { padding-left: 1.25rem; }
.terms-narrative .terms-block ul li { margin-bottom: 0.75rem; }
@media (max-width: 991.98px) {
  .terms-narrative .terms-sidebar { position: relative; top: 0; margin-bottom: 2rem; }
  .terms-narrative .terms-body { padding: 1.5rem; }
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-content {
  background-color: #FEFCE8;
  font-family: 'Inter', sans-serif;
  min-height: 60vh;
}

.disclaimer-content .disclaimer-card {
  background-color: #FFFFFF;
  border: 1px solid #E7E5E4;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

.disclaimer-content .text-primary-on-light {
  color: #1C1917;
}

.disclaimer-content .text-secondary-on-light {
  color: #44403C;
  line-height: 1.6;
}

.disclaimer-content .text-muted-on-light {
  color: #78716C;
}

.disclaimer-content .text-brand-primary {
  color: #CA8A04;
}

.disclaimer-content .disclaimer-section h3 {
  font-weight: 700;
}

.disclaimer-content .border-top {
  border-top-color: #F5F5F4 !important;
}

.disclaimer-content .btn-secondary-custom {
  background-color: transparent;
  color: #1C1917;
  border: 2px solid #1C1917;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.disclaimer-content .btn-secondary-custom:hover {
  background-color: #1C1917;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .disclaimer-content .disclaimer-card {
    padding: 1.5rem !important;
  }
  .disclaimer-content h2 {
    font-size: 1.5rem;
  }
  .disclaimer-content h3 {
    font-size: 1.15rem;
  }
  .disclaimer-content .lead {
    font-size: 1rem;
  }
}

.mn-comment-card {
    background-color: #FFFFFF;
    border: 1px solid #E7E5E4;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    position: relative;
}

.mn-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FEF9C3;
}

.mn-avatar-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #CA8A04, #EAB308);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    flex-shrink: 0;
    border: 2px solid #FEF9C3;
}

.mn-user-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1C1917;
    line-height: 1.2;
}

.mn-timestamp {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #78716C;
    font-weight: 400;
}

.mn-comment-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #44403C;
    margin-bottom: 1.5rem;
}

.mn-actions-bar {
    display: flex;
    gap: 1.5rem;
    border-top: 1px solid #F5F5F4;
    pt-3;
    padding-top: 1.25rem;
}

.mn-action-link {
    background: none;
    border: none;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #CA8A04;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: none;
}

.mn-action-link:hover {
    color: #A16207;
}

.mn-action-link i {
    font-size: 1.1rem;
}

.mn-reply-thread {
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    border-left: 2px solid #E7E5E4;
    position: relative;
    margin-top: -1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .mn-reply-thread {
        margin-left: 4rem;
        padding-left: 2rem;
    }
}

.mn-reply-card {
    background-color: #FFFBEB;
    border: 1px solid #E7E5E4;
    border-radius: 12px;
    padding: 1.5rem;
}

.mn-avatar-reply {
    width: 48px;
    height: 48px;
}

.mn-user-name-reply {
    font-size: 1.125rem;
}

.mn-comment-text-reply {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #44403C;
}


/* ===== PAGE TEMPLATE: industry-solutions ===== */
.mn-detail-hero {
    background-color: #1C1917;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.mn-detail-hero .mn-hero-bg {
    background-image: url('{{page-hero-img}}');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.mn-detail-hero .mn-hero-overlay {
    background: linear-gradient(135deg, rgba(28, 25, 23, 0.9) 0%, rgba(28, 25, 23, 0.6) 100%);
}

.mn-detail-hero .breadcrumb-item a {
    color: #CA8A04;
    font-weight: 600;
}

.mn-detail-hero .breadcrumb-item+.breadcrumb-item::before {
    color: #E7E5E4;
}

.mn-main-content {
    background-color: #FEFCE8;
}

.mn-article-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #E7E5E4;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.mn-main-image {
    height: 450px;
    object-fit: cover;
}

.mn-editorial-body p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #44403C;
}

.mn-editorial-body h2 {
    font-weight: 700;
    margin-top: 2rem;
    color: #1C1917;
}

.mn-highlight-box {
    background-color: #FEF9C3;
    border-left: 4px solid #CA8A04;
}

.mn-accordion .accordion-button {
    background-color: #FFFBEB;
    color: #1C1917;
    font-weight: 600;
    padding: 1.25rem;
    box-shadow: none !important;
}

.mn-accordion .accordion-button:not(.collapsed) {
    background-color: #CA8A04;
    color: #FFFFFF;
}

.mn-accordion .accordion-body {
    background-color: #FFFFFF;
    font-size: 1rem;
    line-height: 1.6;
    color: #44403C;
}

.mn-sidebar-card {
    background: #FFFFFF;
    border: 1px solid #E7E5E4;
}

.mn-sidebar-card .form-control,
.mn-sidebar-card .form-select {
    background-color: #F9FAFB;
    border: 1px solid #E7E5E4;
    padding: 0.75rem;
}

.mn-sidebar-sticky {
    position: sticky;
    top: 100px;
}

.mn-related-item-link {
    display: block;
    padding: 0.75rem 0;
    color: #44403C;
    text-decoration: none;
    border-bottom: 1px solid #F5F5F4;
    transition: color 0.2s ease;
}

.mn-related-item-link:hover {
    color: #CA8A04;
}

.mn-related-item-link:last-child {
    border-bottom: none;
}

.mn-comment-container {
    margin-bottom: 2rem;
}

.mn-comment-card {
    background: #FFFFFF;
    border: 1px solid #E7E5E4;
    border-radius: 12px;
    padding: 1.5rem;
}

.mn-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.mn-avatar-reply {
    width: 45px;
    height: 45px;
}

.mn-user-name {
    font-weight: 700;
    color: #1C1917;
    font-size: 1.1rem;
}

.mn-timestamp {
    font-size: 0.875rem;
    color: #78716C;
}

.mn-comment-text {
    color: #44403C;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.mn-actions-bar {
    display: flex;
    gap: 1.5rem;
}

.mn-action-link {
    background: none;
    border: none;
    color: #CA8A04;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.mn-reply-thread {
    margin-left: 3rem;
    margin-top: 1.5rem;
    border-left: 2px solid #FEF9C3;
    padding-left: 1.5rem;
}

.mn-comment-form-box {
    background-color: #FFFBEB;
    border: 1px solid #E7E5E4;
}

@media (max-width: 991.98px) {
    .mn-main-image {
        height: 300px;
    }

    .mn-article-card {
        padding: 1.5rem;
    }

    .mn-hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .mn-reply-thread {
        margin-left: 1rem;
        padding-left: 0.75rem;
    }

    .mn-actions-bar {
        gap: 0.75rem;
    }
}

/* ===== PAGE TEMPLATE: interpretation-cases ===== */
.mn-detail-hero {
    background-color: #1C1917;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.mn-detail-hero .mn-hero-bg {
    background-image: url('{{page-hero-img}}');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.mn-detail-hero .mn-hero-overlay {
    background: linear-gradient(135deg, rgba(28, 25, 23, 0.9) 0%, rgba(28, 25, 23, 0.6) 100%);
}

.mn-detail-hero .breadcrumb-item a {
    color: #CA8A04;
    font-weight: 600;
}

.mn-detail-hero .breadcrumb-item+.breadcrumb-item::before {
    color: #E7E5E4;
}

.mn-main-content {
    background-color: #FEFCE8;
}

.mn-article-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #E7E5E4;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.mn-main-image {
    height: 450px;
    object-fit: cover;
}

.mn-editorial-body p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #44403C;
}

.mn-editorial-body h2 {
    font-weight: 700;
    margin-top: 2rem;
    color: #1C1917;
}

.mn-highlight-box {
    background-color: #FEF9C3;
    border-left: 4px solid #CA8A04;
}

.mn-accordion .accordion-button {
    background-color: #FFFBEB;
    color: #1C1917;
    font-weight: 600;
    padding: 1.25rem;
    box-shadow: none !important;
}

.mn-accordion .accordion-button:not(.collapsed) {
    background-color: #CA8A04;
    color: #FFFFFF;
}

.mn-accordion .accordion-body {
    background-color: #FFFFFF;
    font-size: 1rem;
    line-height: 1.6;
    color: #44403C;
}

.mn-sidebar-card {
    background: #FFFFFF;
    border: 1px solid #E7E5E4;
}

.mn-sidebar-card .form-control,
.mn-sidebar-card .form-select {
    background-color: #F9FAFB;
    border: 1px solid #E7E5E4;
    padding: 0.75rem;
}

.mn-sidebar-sticky {
    position: sticky;
    top: 100px;
}

.mn-related-item-link {
    display: block;
    padding: 0.75rem 0;
    color: #44403C;
    text-decoration: none;
    border-bottom: 1px solid #F5F5F4;
    transition: color 0.2s ease;
}

.mn-related-item-link:hover {
    color: #CA8A04;
}

.mn-related-item-link:last-child {
    border-bottom: none;
}

.mn-comment-container {
    margin-bottom: 2rem;
}

.mn-comment-card {
    background: #FFFFFF;
    border: 1px solid #E7E5E4;
    border-radius: 12px;
    padding: 1.5rem;
}

.mn-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.mn-avatar-reply {
    width: 45px;
    height: 45px;
}

.mn-user-name {
    font-weight: 700;
    color: #1C1917;
    font-size: 1.1rem;
}

.mn-timestamp {
    font-size: 0.875rem;
    color: #78716C;
}

.mn-comment-text {
    color: #44403C;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.mn-actions-bar {
    display: flex;
    gap: 1.5rem;
}

.mn-action-link {
    background: none;
    border: none;
    color: #CA8A04;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.mn-reply-thread {
    margin-left: 3rem;
    margin-top: 1.5rem;
    border-left: 2px solid #FEF9C3;
    padding-left: 1.5rem;
}

.mn-comment-form-box {
    background-color: #FFFBEB;
    border: 1px solid #E7E5E4;
}

@media (max-width: 991.98px) {
    .mn-main-image {
        height: 300px;
    }

    .mn-article-card {
        padding: 1.5rem;
    }

    .mn-hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .mn-reply-thread {
        margin-left: 1rem;
        padding-left: 0.75rem;
    }

    .mn-actions-bar {
        gap: 0.75rem;
    }
}