:root {
    --background-primary: #FFFFFF;
    --background-secondary: #F9F9F9;
    --text-primary: #000000;
    --text-secondary: #4D4D4D;
    --text-muted: #808080;
    --accent: #1A1A1A;
    --border-color: #E5E5E5;
    --card-bg: #FFFFFF;
}

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

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

.section-spacing {
    padding: clamp(120px, 10vh, 180px) 0;
}

.h1-premium {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.h2-premium {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.body-premium {
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 400;
}

.btn-luxury-primary {
    background-color: var(--accent);
    color: #FFFFFF;
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 700;
    transition: transform 0.2s ease;
    border-radius: 0;
}

.btn-luxury-primary:hover {
    transform: scale(1.02);
    color: #FFFFFF;
}

.btn-luxury-secondary {
    background-color: #FFFFFF;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 1rem 2.5rem;
    font-weight: 700;
    transition: all 0.2s ease;
    border-radius: 0;
}

.btn-luxury-secondary:hover {
    background-color: rgba(0, 0, 0, 0.02);
    transform: scale(1.02);
}

.card-premium {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: border-color 0.3s ease;
}

.card-premium:hover {
    border-color: var(--text-primary);
}

/* ===== header ===== */
.acceptline-header {
    z-index: 1050;
    background-color: #FFFFFF !important;
}

.acceptline-header .navbar {
    min-height: 80px;
}

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

.acceptline-header .nav-link {
    letter-spacing: 0.05em;
    transition: color 0.2s ease-in-out;
    position: relative;
}

.acceptline-header .nav-link:hover,
.acceptline-header .nav-link:focus {
    color: #4D4D4D !important;
}

.acceptline-header .dropdown-menu {
    background-color: #FFFFFF;
    padding: 1rem 0;
    min-width: 240px;
}

.acceptline-header .dropdown-item {
    color: #000000;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
}

.acceptline-header .dropdown-item:hover {
    background-color: #F9F9F9;
    color: #000000;
    padding-left: 1.75rem;
}

.acceptline-header .navbar-toggler {
    padding: 0.5rem;
}

.acceptline-header .btn-dark {
    background-color: #000000;
    border: none;
    color: #FFFFFF;
    transition: opacity 0.2s ease;
}

.acceptline-header .btn-dark:hover {
    opacity: 0.85;
    color: #FFFFFF;
}

@media (max-width: 991.98px) {
    .acceptline-header .navbar-collapse {
        background-color: #FFFFFF;
        border-top: 1px solid #E5E5E5;
        padding: 1rem;
        max-height: 80vh;
        overflow-y: auto;
    }

    .acceptline-header .nav-link {
        padding: 0.75rem 0 !important;
        font-size: 1rem;
    }
}

/* ===== definetheacceptancelinebeforereviewingthepart ===== */
.hero-section-acceptance {
    position: relative;
    min-height: 100vh;
    padding: 120px 0;
    background-image: url('../assets/pictures/uploads/acceptance-line-hero-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    display: flex;
}

.hero-section-acceptance .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-section-acceptance .container {
    position: relative;
    z-index: 2;
}

.hero-section-acceptance .hero-content-box {
    color: #FFFFFF;
}

.hero-section-acceptance .hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.hero-section-acceptance .hero-title-accent {
    color: #E5E5E5;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
}

.hero-section-acceptance .hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 600px;
    font-weight: 300;
    opacity: 0.9;
}

.hero-section-acceptance .btn-primary-monolith {
    background-color: #FFFFFF;
    color: #000000;
    border: none;
    padding: 18px 40px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-radius: 0;
}

.hero-section-acceptance .btn-primary-monolith:hover {
    background-color: #F0F0F0;
    transform: translateY(-2px);
    color: #000000;
}

.hero-section-acceptance .btn-secondary-monolith {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    padding: 18px 40px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-radius: 0;
}

.hero-section-acceptance .btn-secondary-monolith:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .hero-section-acceptance {
        padding: 80px 0;
        min-height: auto;
    }

    .hero-section-acceptance .hero-title {
        font-size: 2.25rem;
        line-height: 1.1;
    }

    .hero-section-acceptance .hero-subtitle {
        font-size: 1rem;
    }

    .hero-section-acceptance .btn-primary-monolith,
    .hero-section-acceptance .btn-secondary-monolith {
        padding: 15px 30px;
        width: 100%;
        text-align: center;
    }
}

/* ===== problemandsolution ===== */
.problem-solution-section {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

.problem-solution-section__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #000000;
}

.problem-solution-section__lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4D4D4D;
    max-width: 800px;
}

.problem-solution-section__card {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-solution-section__card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.problem-solution-section__card--solution {
    background-color: #F9F9F9;
}

.problem-solution-section__image-wrapper {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.problem-solution-section__image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.problem-solution-section__card:hover .problem-solution-section__image-wrapper img {
    transform: scale(1.05);
}

.problem-solution-section__subtitle {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #000000;
}

.problem-solution-section__list li {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #4D4D4D;
}

.problem-solution-section__list .bi-x-circle {
    color: #dc3545;
    flex-shrink: 0;
    margin-top: 4px;
}

.problem-solution-section__list .bi-check2-all {
    color: #1A1A1A;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 4px;
}

.problem-solution-section .btn-dark {
    background-color: #1A1A1A;
    border: none;
    letter-spacing: 0.1em;
    transition: background-color 0.3s ease;
}

.problem-solution-section .btn-dark:hover {
    background-color: #333333;
}

@media (max-width: 768px) {
    .problem-solution-section__title {
        font-size: 1.8rem;
    }

    .problem-solution-section__image-wrapper {
        height: 200px;
    }
}

/* ===== acceptancecriteriastandards ===== */
.grid-acceptance-criteria {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

.grid-acceptance-criteria__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #000000;
}

.grid-acceptance-criteria__subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #4D4D4D;
    max-width: 800px;
}

.grid-acceptance-criteria__card {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
}

.grid-acceptance-criteria__card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.grid-acceptance-criteria__img-link {
    display: block;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.grid-acceptance-criteria__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-acceptance-criteria__card:hover .grid-acceptance-criteria__img {
    transform: scale(1.05);
}

.grid-acceptance-criteria__meta {
    font-size: 0.875rem;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.grid-acceptance-criteria__divider {
    margin: 0 8px;
    color: #E5E5E5;
}

.grid-acceptance-criteria__title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.grid-acceptance-criteria__title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.grid-acceptance-criteria__title a:hover {
    color: #4D4D4D;
}

.grid-acceptance-criteria__btn {
    display: inline-block;
    background-color: #1A1A1A;
    color: #FFFFFF !important;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.2s ease;
    border: none;
}

.grid-acceptance-criteria__btn:hover {
    background-color: #333333;
}

@media (max-width: 767px) {
    .grid-acceptance-criteria__main-title {
        font-size: 1.75rem;
    }

    .grid-acceptance-criteria__title {
        font-size: 1.125rem;
    }
}

/* ===== featuredcasefunctionpassedappearancedidnot ===== */
.featured-case-section {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    color: #000000;
}

.featured-case-section .case-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #000000;
}

.featured-case-section .case-specifications h3 {
    color: #000000;
    letter-spacing: 0.05em;
}

.featured-case-section .case-specifications p {
    color: #4D4D4D;
}

.featured-case-section .js-perspective-btn {
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 0;
    font-weight: 700;
    transition: all 0.3s ease;
}

.featured-case-section .js-perspective-btn.active,
.featured-case-section .js-perspective-btn:hover {
    background-color: #1A1A1A;
    color: #FFFFFF;
}

.featured-case-section .perspective-content-area {
    border-radius: 0;
    min-height: 250px;
}

.featured-case-section .final-decision-box {
    border-radius: 0;
}

.featured-case-section .final-decision-box h3 {
    letter-spacing: 0.02em;
}

.featured-case-section .btn-outline-light:hover {
    background-color: #FFFFFF;
    color: #000000 !important;
}

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

    .featured-case-section h3.h4 {
        font-size: 16px;
    }

    .featured-case-section .perspective-content-area {
        padding: 1.5rem !important;
    }
}

/* ===== interactivetour ===== */
.interactive-tour-section {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.interactive-tour-section .tour-interface {
    min-height: 500px;
    position: relative;
}

.interactive-tour-section .tour-sidebar {
    height: 100%;
    background-color: #F9F9F9;
}

.interactive-tour-section .btn-dark {
    background-color: #1A1A1A !important;
    border-color: #1A1A1A !important;
    color: #FFFFFF !important;
    border-radius: 0;
    transition: all 0.3s ease;
}

.interactive-tour-section .btn-outline-dark {
    border-color: #1A1A1A !important;
    color: #1A1A1A !important;
    border-radius: 0;
    transition: all 0.3s ease;
}

.interactive-tour-section .btn-outline-dark:hover {
    background-color: #1A1A1A !important;
    color: #FFFFFF !important;
}

.interactive-tour-section .js-tour-step-btn.active {
    background-color: #1A1A1A !important;
    color: #FFFFFF !important;
}

.interactive-tour-section .tour-main-area {
    background-color: #FFFFFF;
    transition: opacity 0.3s ease;
}

.interactive-tour-section .max-w-700 {
    max-width: 700px;
}

.interactive-tour-section .min-vh-50 {
    min-height: 50vh;
}

@media (max-width: 768px) {
    .interactive-tour-section .tour-sidebar {
        border-bottom: 1px solid #000000;
        border-right: none !important;
    }

    .interactive-tour-section .display-2 {
        font-size: 2.5rem;
    }
}

/* ===== toolsandplatforms ===== */
.tools-platforms-section {
    padding: 120px 0;
    background-color: #FFFFFF;
    color: #000000;
    font-family: 'Inter', sans-serif;
}

.tools-platforms-section .section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 1.5rem;
    text-transform: none;
}

.tools-platforms-section .section-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4D4D4D;
    max-width: 800px;
}

.tools-platforms-section .tool-card {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.tools-platforms-section .tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border-color: #000000;
}

.tools-platforms-section .tool-image-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.tools-platforms-section .tool-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tools-platforms-section .tool-card:hover .tool-image {
    transform: scale(1.05);
}

.tools-platforms-section .tool-content {
    padding: 1.5rem;
}

.tools-platforms-section .tool-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tools-platforms-section .tool-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tools-platforms-section .tool-title a:hover {
    color: #4D4D4D;
}

.tools-platforms-section .tool-description {
    font-size: 1rem;
    color: #4D4D4D;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.tools-platforms-section .tool-btn {
    background-color: #1A1A1A;
    color: #FFFFFF;
    border: none;
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.tools-platforms-section .tool-btn:hover {
    background-color: #000000;
    color: #FFFFFF;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .tools-platforms-section {
        padding: 60px 0;
    }

    .tools-platforms-section .section-title {
        font-size: 1.75rem;
    }

    .tools-platforms-section .section-subtitle {
        font-size: 1.125rem;
    }
}

/* ===== whowillwork ===== */
.who-will-work-section {
    padding: 120px 0;
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.who-will-work-section .section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1A1A1A;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.who-will-work-section .section-divider {
    width: 80px;
    height: 4px;
    background-color: #1A1A1A;
    margin-bottom: 48px;
}

.who-will-work-section .specialist-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E5E5;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.who-will-work-section .specialist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.who-will-work-section .image-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background-color: #F9F9F9;
}

.who-will-work-section .specialist-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.who-will-work-section .specialist-card:hover .specialist-image {
    filter: grayscale(0%);
}

.who-will-work-section .specialist-info {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.who-will-work-section .specialist-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.who-will-work-section .specialist-role {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #4D4D4D;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.who-will-work-section .specialist-experience {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #808080;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .who-will-work-section {
        padding: 60px 0;
    }

    .who-will-work-section .section-title {
        font-size: 1.75rem;
    }

    .who-will-work-section .specialist-info {
        padding: 24px;
    }
}

/* ===== objectionhandling ===== */
.objection-handling-block {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.objection-handling-block .objection-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #000000;
}

.objection-handling-block .objection-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #4D4D4D;
    max-width: 500px;
}

.objection-handling-block .objection-hero-wrapper {
    position: relative;
    border: 1px solid #E5E5E5;
    padding: 10px;
}

.objection-handling-block .objection-hero-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.objection-handling-block .objection-card {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.objection-handling-block .objection-card:hover {
    border-color: #000000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transform: translateY(-5px);
}

.objection-handling-block .objection-card-content {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.objection-handling-block .objection-icon-box {
    font-size: 2rem;
    color: #000000;
}

.objection-handling-block .objection-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
}

.objection-handling-block .objection-card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4D4D4D;
    flex-grow: 1;
}

.objection-handling-block .objection-link {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.objection-handling-block .objection-link:hover {
    color: #808080;
}

@media (max-width: 768px) {
    .objection-handling-block .objection-title {
        font-size: 1.75rem;
    }

    .objection-handling-block .objection-hero-img {
        height: 250px;
    }

    .objection-handling-block .objection-card-content {
        padding: 1.5rem;
    }
}

/* ===== footer ===== */
.acceptance-footer {
    background-color: #FFFFFF;
    padding-top: 120px;
    border-top: 1px solid #E5E5E5;
    font-family: 'Inter', sans-serif;
}

.acceptance-footer .footer-title {
    color: #1A1A1A !important;
    letter-spacing: 0.05em;
}

.acceptance-footer .footer-link {
    color: #4D4D4D;
    text-decoration: none;
    transition: color 0.3s ease;
}

.acceptance-footer .footer-link:hover {
    color: #1A1A1A;
}

.acceptance-footer .footer-secondary-text {
    color: #4D4D4D;
    line-height: 1.6;
}

.acceptance-footer .footer-muted-text {
    color: #808080;
}

.acceptance-footer .disclaimer-box {
    background-color: #F9F9F9;
    border: 1px solid #1A1A1A !important;
}

.acceptance-footer .footer-logo {
    display: block;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.acceptance-footer .footer-logo:hover {
    filter: grayscale(0);
}

/* ===== PAGE: bambu-studio ===== */
.bambu-manual-content {
  font-family: 'Inter', sans-serif;
  background-color: #FFFFFF;
  color: #000000;
}
.bambu-manual-content .section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.bambu-manual-content .btn-black {
  background-color: #000000;
  color: #FFFFFF;
  border: none;
  transition: opacity 0.2s ease;
}
.bambu-manual-content .btn-black:hover {
  background-color: #333333;
  color: #FFFFFF;
}
.bambu-manual-content .btn-outline-black {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  transition: all 0.2s ease;
}
.bambu-manual-content .btn-outline-black:hover {
  background-color: #000000;
  color: #FFFFFF;
}
.bambu-manual-content .card {
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5 !important;
  border-radius: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bambu-manual-content .card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.04) !important;
  transform: translateY(-2px);
}
.bambu-manual-content .badge {
  font-weight: 400;
  letter-spacing: 0.05em;
  border-radius: 2px;
}
.bambu-manual-content .input-group-text {
  border-color: #E5E5E5;
}
.bambu-manual-content .form-control {
  border-color: #E5E5E5;
  font-size: 0.95rem;
  padding: 0.75rem;
}
.bambu-manual-content .form-control:focus {
  box-shadow: none;
  border-color: #000000;
}

/* ===== PAGE: acceptance-criteria ===== */
.spec-grid-section {
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.spec-grid-section .search-container .input-group-text {
  border-radius: 0;
  padding-left: 1rem;
  padding-right: 0.5rem;
  font-size: 1.25rem;
}

.spec-grid-section .search-container .form-control {
  border-radius: 0;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  box-shadow: none;
}

.spec-grid-section .search-container .form-control:focus {
  border-color: #000000;
}

.spec-grid-section .spec-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-color: #e5e5e5 !important;
}

.spec-grid-section .spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.04) !important;
  border-color: #000000 !important;
}

.spec-grid-section .card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.spec-grid-section .card-title {
  line-height: 1.3;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.spec-grid-section .badge {
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-grid-section .btn-outline-dark {
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.spec-grid-section .btn-outline-dark:hover {
  background-color: #000000;
  color: #ffffff;
}

@media (max-width: 768px) {
  .spec-grid-section .display-4 {
    font-size: 2.5rem;
  }
  .spec-grid-section .card-img-top {
    height: 180px;
  }
}

/* ===== PAGE: functional-thresholds ===== */
.ft-grid-section {
  background-color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  color: #000000;
}

.ft-grid-section .ft-grid-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.ft-grid-section .ft-grid-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.ft-grid-section .ft-grid-lead {
  font-size: 1.25rem;
  color: #4D4D4D;
  font-weight: 300;
}

.ft-grid-section .ft-card {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.ft-grid-section .ft-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  border-color: #000000;
}

.ft-grid-section .ft-card-img-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.ft-grid-section .ft-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.ft-grid-section .ft-card-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.ft-grid-section .ft-card-meta {
  font-size: 0.875rem;
  color: #808080;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.ft-grid-section .ft-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.ft-grid-section .ft-card-title a {
  color: #000000 !important;
  text-decoration: none;
}

.ft-grid-section .ft-card-text {
  font-size: 1rem;
  color: #4D4D4D;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.ft-grid-section .ft-card-btn {
  display: inline-block;
  background: #000000;
  color: #FFFFFF !important;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
  transition: background 0.3s ease;
}

.ft-grid-section .ft-card-btn:hover {
  background: #333333;
}

@media (max-width: 767px) {
  .ft-grid-section .ft-grid-title {
    font-size: 1.75rem;
    hyphens: auto;
  }
  .ft-grid-section .ft-card-body {
    padding: 1.5rem;
  }
}

/* ===== PAGE: visual-criteria ===== */
.visual-criteria-guide {
  background-color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  color: #000000;
  overflow: hidden;
}

.visual-criteria-guide .vc-display-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #000000;
}

.visual-criteria-guide .vc-lead-text {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
}

.visual-criteria-guide .vc-main-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid #E5E5E5;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.visual-criteria-guide .vc-main-image:hover {
  filter: grayscale(0%);
}

.visual-criteria-guide .vc-section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #000000;
  border-left: 8px solid #000000;
  padding-left: 20px;
}

.visual-criteria-guide .vc-card {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  padding: 2.5rem 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.visual-criteria-guide .vc-card:hover {
  background: #F9F9F9;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.visual-criteria-guide .vc-card-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #000000;
}

.visual-criteria-guide .vc-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.visual-criteria-guide .vc-card-body {
  font-size: 0.95rem;
  color: #4D4D4D;
  line-height: 1.6;
}

.visual-criteria-guide .vc-tab-btn {
  background: #FFFFFF;
  border: 1px solid #000000;
  color: #000000;
  padding: 0.75rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.visual-criteria-guide .vc-tab-btn.active {
  background: #000000;
  color: #FFFFFF;
}

.visual-criteria-guide .vc-tab-pane {
  padding: 4rem;
  background: #F9F9F9;
  border: 1px solid #E5E5E5;
}

.visual-criteria-guide .vc-btn-primary {
  background: #FFFFFF;
  color: #000000;
  padding: 1rem 2.5rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
}

.visual-criteria-guide .vc-btn-primary:hover {
  background: #E5E5E5;
  color: #000000;
}

.visual-criteria-guide .vc-btn-secondary {
  background: transparent;
  color: #FFFFFF;
  padding: 1rem 2.5rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  border: 1px solid #FFFFFF;
  transition: all 0.3s ease;
}

.visual-criteria-guide .vc-btn-secondary:hover {
  background: #FFFFFF;
  color: #000000;
}

.visual-criteria-guide .opacity-10 {
  opacity: 0.1;
}

@media (max-width: 768px) {
  .visual-criteria-guide .vc-display-title {
    font-size: 2.5rem;
  }
  .visual-criteria-guide .vc-section-heading {
    font-size: 1.75rem;
  }
  .visual-criteria-guide .vc-tab-pane {
    padding: 2rem;
  }
}

/* ===== PAGE: variation ===== */
.variation-content {
  background-color: #FFFFFF;
  color: #000000;
  font-family: 'Inter', sans-serif;
}
.variation-content__h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #000000;
}
.variation-content__h3 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #000000;
}
.variation-content__h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.variation-content__body {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4D4D4D;
}
.variation-content__body-sm {
  font-size: 1rem;
  line-height: 1.5;
  color: #808080;
}
.variation-content__image-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid #E5E5E5;
}
.variation-content__image-wrapper img {
  object-fit: cover;
  transition: transform 0.4s ease;
}
.variation-content__image-wrapper:hover img {
  transform: scale(1.02);
}
.variation-content__text-box {
  border-left: 4px solid #1A1A1A;
}
.variation-content__search-container {
  min-width: 280px;
}
.variation-content__search-container .form-control {
  border-radius: 0;
  border: 2px solid #E5E5E5;
  padding: 0.75rem 1rem;
  font-weight: 400;
}
.variation-content__search-container .form-control:focus {
  border-color: #000000;
  box-shadow: none;
}
.variation-content__card {
  background: #FFFFFF;
  border-color: #E5E5E5 !important;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.variation-content__card:hover {
  border-color: #000000 !important;
  background-color: rgba(0,0,0,0.01);
}
@media (max-width: 767px) {
  .variation-content__h2 {
    font-size: 1.75rem;
  }
  .variation-content__search-container {
    width: 100%;
  }
}

/* ===== PAGE: repeatability ===== */
.repeatability-content {
  font-family: 'Inter', sans-serif;
  background-color: #FFFFFF;
  color: #000000;
}
.repeatability-content .display-1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.repeatability-content .content-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4D4D4D;
}
.repeatability-content .tracking-wider {
  letter-spacing: 0.1em;
}
.repeatability-content .btn {
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.repeatability-content .btn-dark:hover {
  background-color: #333;
  transform: translateY(-2px);
}
.repeatability-content .form-check-input:checked {
  background-color: #000;
  border-color: #000;
}
.repeatability-content .progress-bar {
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.repeatability-content .badge {
  font-size: 0.75rem;
  padding: 0.5em 1em;
  border-radius: 2px;
}
.repeatability-content img {
  transition: transform 0.8s ease;
}
.repeatability-content img:hover {
  transform: scale(1.02);
}
.repeatability-content .editorial-section h4 {
  letter-spacing: -0.01em;
}

/* ===== PAGE: threshold-cases ===== */
.tc-analysis .tc-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
  color: #1A1A1A;
}

.tc-analysis .tc-description {
  line-height: 1.8;
  border-left: 2px solid #E5E5E5;
  padding-left: 2rem;
}

.tc-analysis .tc-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.tc-analysis .tc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.tc-analysis .card-img-top {
  height: 240px;
  object-fit: cover;
}

.tc-analysis .ls-1 {
  letter-spacing: 0.1em;
}

.tc-analysis .tc-decision-tool .form-check-input:checked {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
}

.tc-analysis .tc-decision-tool .form-check-input {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}

.tc-analysis .tc-decision-tool .form-check-label {
  cursor: pointer;
}

@media (max-width: 768px) {
  .tc-analysis .tc-description {
    padding-left: 1rem;
    font-size: 1rem;
  }
  
  .tc-analysis .card-img-top {
    height: 200px;
  }
}

/* ===== PAGE: decision-language ===== */
.decision-language-section {
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  color: #000000;
}
.decision-language-section .display-3 {
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.decision-language-section .decision-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: 1px solid #e5e5e5;
}
.decision-language-section .decision-card {
  border: 1px solid #e5e5e5;
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.decision-language-section .decision-card:hover {
  border-color: #000000;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}
.decision-language-section .decision-card.is-active {
  border-color: #000000;
  background-color: #f9f9f9;
  border-width: 2px;
}
.decision-language-section .decision-icon-box i {
  font-size: 2.5rem;
}
.decision-language-section .details-panel {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.decision-language-section .fw-extrabold {
  font-weight: 800;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .decision-language-section h1 {
    font-size: 2.5rem;
  }
  .decision-language-section .decision-image-wrapper img {
    height: 250px;
  }
}

/* ===== PAGE: competence-center ===== */
.competence-center-section {
  background-color: #FFFFFF;
  font-family: 'Inter', sans-serif;
}

.competence-center-section__heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1A1A1A;
  position: relative;
  padding-bottom: 20px;
}

.competence-center-section__card {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0;
}

.competence-center-section__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.competence-center-section__card-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.competence-center-section__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.competence-center-section__card:hover .competence-center-section__card-img {
  transform: scale(1.05);
}

.competence-center-section__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.competence-center-section__card-title a {
  color: #1A1A1A;
  transition: color 0.3s ease;
}

.competence-center-section__card-title a:hover {
  color: #4D4D4D;
}

.competence-center-section__meta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.competence-center-section__form-heading {
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #000000;
}

.competence-center-section__form .form-control {
  border-radius: 0;
  background-color: #F9F9F9;
  border: 1px solid #E5E5E5 !important;
  padding: 1rem;
}

.competence-center-section__form .form-control:focus {
  background-color: #FFFFFF;
  border-color: #000000 !important;
  box-shadow: none;
}

.competence-center-section__btn-submit {
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  background-color: #1A1A1A;
  border: none;
  transition: background-color 0.3s ease;
}

.competence-center-section__btn-submit:hover {
  background-color: #333333;
}

@media (max-width: 768px) {
  .competence-center-section__heading {
    font-size: 1.75rem;
  }
  .competence-center-section__form-heading {
    font-size: 1.5rem;
  }
}

/* ===== PAGE: about ===== */
.about-section {
  background-color: #FFFFFF;
  color: #000000;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

.about-section .about-main-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #1A1A1A;
}

.about-section .about-sub-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000;
}

.about-section .about-lead-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #4D4D4D;
  font-weight: 400;
}

.about-section .about-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4D4D4D;
}

.about-section .about-image-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid #E5E5E5;
}

.about-section .about-primary-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-section .about-card {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  transition: all 0.3s ease;
}

.about-section .about-card:hover {
  border-color: #000000;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.about-section .about-card-icon {
  font-size: 2rem;
  color: #1A1A1A;
}

.about-section .about-btn-primary {
  background-color: #1A1A1A;
  color: #FFFFFF;
  padding: 12px 32px;
  font-weight: 700;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background-color 0.3s ease;
}

.about-section .about-btn-primary:hover {
  background-color: #333333;
  color: #FFFFFF;
}

.about-section .about-btn-outline {
  background-color: transparent;
  border: 1px solid #1A1A1A;
  color: #1A1A1A;
  padding: 12px 32px;
  font-weight: 700;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.about-section .about-btn-outline:hover {
  background-color: #1A1A1A;
  color: #FFFFFF;
}

.about-section .about-cta-box {
  border: 1px solid #E5E5E5;
}

@media (max-width: 768px) {
  .about-section .about-main-title { font-size: 2.5rem; }
  .about-section .about-sub-title { font-size: 1.75rem; }
  .about-section .about-primary-img { height: 300px; }
}

/* ===== PAGE: contacts ===== */
.contact-section { background-color: #FFFFFF; font-family: 'Inter', sans-serif; }
.contact-section .contact-section__info-card { background-color: #F9F9F9; border: 1px solid #E5E5E5; border-radius: 4px; }
.contact-section .contact-section__form-wrapper { background-color: #FFFFFF; border: 1px solid #E5E5E5; border-radius: 4px; }
.contact-section .contact-section__heading { color: #000000; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }
.contact-section .contact-section__subheading { color: #000000; font-weight: 700; font-size: 1.1rem; }
.contact-section .contact-section__icon-box { color: #1A1A1A; font-size: 1.5rem; width: 40px; text-align: center; }
.contact-section .contact-section__link { text-decoration: none; transition: color 0.3s ease; display: block; }
.contact-section .contact-section__link:hover { color: #000000 !important; }
.contact-section .form-control { border: none; border-bottom: 1px solid #E5E5E5; border-radius: 0; padding-left: 0; padding-right: 0; background-color: transparent !important; }
.contact-section .form-control:focus { box-shadow: none; border-bottom-color: #000000; }
.contact-section .form-control::placeholder { color: #808080 !important; opacity: 1; font-size: 0.9rem; }
.contact-section .contact-section__field-label { display: block; color: #000000; font-weight: 600; font-size: 0.85rem; margin-bottom: 0.35rem; }
.contact-section .form-outline .form-label { display: none !important; }
.contact-section .btn-dark { background-color: #1A1A1A; border: none; color: #FFFFFF; transition: transform 0.2s ease, background-color 0.2s ease; }
.contact-section .btn-dark:hover { background-color: #000000; transform: translateY(-2px); }
.contact-section .btn-outline-dark { border: 2px solid #1A1A1A; color: #1A1A1A; font-weight: 700; }
.contact-section .btn-outline-dark:hover { background-color: #1A1A1A; color: #FFFFFF; }
@media (max-width: 767.98px) {
  .contact-section h1 { font-size: 18px !important; }
  .contact-section h2 { font-size: 16px !important; }
  .contact-section h3 { font-size: 14px !important; }
  .contact-section .contact-section__text, .contact-section p { font-size: 0.95rem; }
}

/* ===== SHARED: Policy pages (privacy, terms, disclaimer) ===== */
.policy-content {
  background-color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  color: #000000;
  padding-top: 120px;
  padding-bottom: 120px;
}
.policy-content .policy-main-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #000000;
  text-transform: uppercase;
  border-bottom: 2px solid #000000;
  padding-bottom: 2rem;
}
.policy-content .policy-item {
  margin-bottom: 2.5rem;
}
.policy-content .policy-heading {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.policy-content .policy-paragraph {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4D4D4D;
  margin-bottom: 0;
  text-align: justify;
  hyphens: auto;
}
.policy-content .policy-paragraph + .policy-paragraph {
  margin-top: 1.5rem;
}
.policy-content .policy-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}
.policy-content .policy-list li {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4D4D4D;
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.75rem;
}
.policy-content .policy-list li:last-child {
  margin-bottom: 0;
}
.policy-content .policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  background-color: #000000;
}
@media (max-width: 768px) {
  .policy-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .policy-content .policy-main-title {
    font-size: 2rem;
    padding-bottom: 1.5rem;
  }
  .policy-content .policy-heading {
    font-size: 1.25rem;
  }
  .policy-content .policy-paragraph,
  .policy-content .policy-list li {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.main-comment-wrapper {
    padding: 2rem;
    background-color: #FFFFFF;
    border: 1px solid #E5E5E5;
    transition: border-color 0.3s ease;
}

.main-comment-wrapper:hover {
    border-color: #1A1A1A;
}

.avatar-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    background-color: #1A1A1A;
}

.comment-author {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.comment-date {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.comment-content p {
    font-size: 1.125rem;
    line-height: 1.6;
}

.text-accent {
    color: #1A1A1A !important;
}

.text-primary-on-light {
    color: #000000 !important;
}

.text-secondary-on-light {
    color: #4D4D4D !important;
}

.text-muted-on-light {
    color: #808080 !important;
}

.reply-comment-wrapper {
    border-left: 1px solid #E5E5E5 !important;
    position: relative;
}

.avatar-circle-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 0.9rem;
    background-color: #F9F9F9;
    border: 1px solid #E5E5E5;
}

.reply-comment-wrapper .comment-content p {
    font-size: 1rem;
    line-height: 1.5;
}

.bg-light-gray {
    background-color: #F9F9F9;
}

.reply-comment-wrapper .comment-author {
    font-size: 0.85rem;
}


/* ===== PAGE TEMPLATE: acceptance-criteria ===== */
.acceptance-detail-page {
    background-color: #FFFFFF;
}

.acceptance-detail-page .detail-hero {
    padding-top: 80px;
    padding-bottom: 40px;
    background-color: #F9F9F9;
}

.acceptance-detail-page .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: #808080;
}

.acceptance-detail-page .rich-text-content {
    font-family: 'Inter', sans-serif;
    color: #4D4D4D;
    line-height: 1.8;
}

.acceptance-detail-page .rich-text-content h2,
.acceptance-detail-page .rich-text-content h3 {
    color: #000000;
    letter-spacing: -0.02em;
}

.acceptance-detail-page .sidebar-card {
    border-radius: 0;
    background-color: #FFFFFF;
}

.acceptance-detail-page .hover-link:hover {
    color: #1A1A1A !important;
    text-decoration: underline !important;
}

.acceptance-detail-page .interactive-accordion .accordion-item {
    border-color: #E5E5E5 !important;
}

.acceptance-detail-page .interactive-accordion .js-accordion-trigger {
    transition: color 0.2s ease;
}

.acceptance-detail-page .interactive-accordion .js-accordion-trigger:hover {
    color: #808080;
}

.acceptance-detail-page .acceptance-metrics-box {
    background-color: #F9F9F9;
}

.acceptline-header {
    z-index: 1050;
    background-color: #FFFFFF !important;
}

.acceptline-header .navbar {
    min-height: 80px;
}

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

.acceptline-header .nav-link {
    letter-spacing: 0.05em;
    transition: color 0.2s ease-in-out;
    position: relative;
}

.acceptline-header .nav-link:hover,
.acceptline-header .nav-link:focus {
    color: #4D4D4D !important;
}

.acceptline-header .dropdown-menu {
    background-color: #FFFFFF;
    padding: 1rem 0;
    min-width: 240px;
}

.acceptline-header .dropdown-item {
    color: #000000;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
}

.acceptline-header .dropdown-item:hover {
    background-color: #F9F9F9;
    color: #000000;
    padding-left: 1.75rem;
}

.acceptline-header .btn-dark {
    background-color: #000000;
    border: none;
    color: #FFFFFF;
    transition: opacity 0.2s ease;
}

.acceptline-header .btn-dark:hover {
    opacity: 0.85;
    color: #FFFFFF;
}

.acceptance-footer {
    background-color: #FFFFFF;
    padding-top: 80px;
    border-top: 1px solid #E5E5E5;
}

.acceptance-footer .footer-title {
    color: #1A1A1A !important;
    letter-spacing: 0.05em;
}

.acceptance-footer .footer-link {
    color: #4D4D4D;
    text-decoration: none;
    transition: color 0.3s ease;
}

.acceptance-footer .footer-link:hover {
    color: #1A1A1A;
}

.acceptance-footer .footer-secondary-text {
    color: #4D4D4D;
    line-height: 1.6;
}

.acceptance-footer .footer-muted-text {
    color: #808080;
}

.acceptance-footer .disclaimer-box {
    background-color: #F9F9F9;
    border: 1px solid #1A1A1A !important;
}

@media (max-width: 991.98px) {
    .acceptline-header .navbar-collapse {
        background-color: #FFFFFF;
        border-top: 1px solid #E5E5E5;
        padding: 1rem;
        max-height: 80vh;
        overflow-y: auto;
    }

    .acceptance-detail-page .detail-hero {
        padding-top: 40px;
    }

    .acceptance-detail-page .display-1 {
        font-size: 2.5rem;
    }
}

/* ===== PAGE TEMPLATE: functional-thresholds ===== */
.detail-page-wrapper .hero-section-acceptance {
    position: relative;
    min-height: 50vh;
    background-image: url('../assets/pictures/uploads/acceptance-line-hero-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.detail-page-wrapper .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.detail-page-wrapper .hero-content-box {
    color: #FFFFFF;
    z-index: 2;
    position: relative;
}

.detail-page-wrapper .hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.detail-page-wrapper .hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.detail-page-wrapper .article-body {
    font-size: 1.125rem;
    line-height: 1.8;
}

.detail-page-wrapper .article-body h2 {
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: #000000;
    letter-spacing: -0.02em;
}

.detail-page-wrapper .article-body p {
    margin-bottom: 1.5rem;
    color: #333333;
}

.detail-page-wrapper .sidebar-card {
    transition: transform 0.3s ease;
}

.detail-page-wrapper .x-small {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .detail-page-wrapper .hero-section-acceptance {
        min-height: 300px;
    }

    .detail-page-wrapper .hero-title {
        font-size: 1.75rem;
    }

    .detail-page-wrapper .hero-subtitle {
        font-size: 1rem;
    }

    .detail-page-wrapper .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ===== PAGE TEMPLATE: competence-center ===== */
.article-detail-hero {
    position: relative;
    min-height: 60vh;
    padding: 100px 0;
    background-color: #1A1A1A;
    background-image: url('../assets/pictures/uploads/acceptance-line-hero-background.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.article-detail-hero .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.article-detail-hero .hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #FFFFFF !important;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.article-detail-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    font-weight: 300;
}

.article-content-section .article-main-image {
    height: 500px;
    object-fit: cover;
    border: 1px solid #E5E5E5;
}

.article-body-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333333;
}

.article-body-content h2,
.article-body-content h3 {
    color: #000000 !important;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-body-content p {
    margin-bottom: 1.5rem;
}

.article-body-content ul {
    margin-bottom: 2rem;
    padding-left: 1.25rem;
}

.article-body-content li {
    margin-bottom: 0.75rem;
    position: relative;
}

.sidebar-card {
    background-color: #FFFFFF;
}

.hover-link:hover {
    text-decoration: underline !important;
}

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

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

.acceptance-footer .footer-logo {
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.acceptance-footer .footer-logo:hover {
    filter: grayscale(0);
}

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

    .article-detail-hero {
        min-height: auto;
        padding: 60px 0;
    }
}

.form-control::placeholder {
    color: #808080 !important;
    opacity: 1;
}

.form-control:focus {
    border-color: #000 !important;
    box-shadow: none !important;
}