/* ==================================================================
   YARDEX — UNIFIED STYLESHEET
   ==================================================================
   Combined desktop + mobile, organized section-by-section.
   Each section contains its base (desktop) styles followed
   immediately by its responsive overrides.

   Breakpoints used:
     ≤ 991px  — Tablet + Phone
     ≤ 575px  — Small Phones
     ≤ 420px  — Extra-Small Phones
     ≥ 992px  — Desktop-only enhancements
     ≥ 1200px — Large desktop tweaks

   !important is used in mobile overrides because the Amava
   template and Bootstrap utilities use high-specificity selectors
   and inline helpers (e.g. sm-position-relative) that would
   otherwise override these rules.
   ================================================================== */


/*body::after {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: red;
    color: white;
    padding: 6px 10px;
    font-size: 12px;
    z-index: 99999;
    border-radius: 6px;
}*/

/* Desktop */
/*body::after {
    content: "DESKTOP";
}*/

/* ≤ 991px */
/*@media (max-width: 991px) {
    body::after {
        content: "≤991px";
    }
}*/

/* ≤ 768px */
/*@media (max-width: 768px) {
    body::after {
        content: "≤768px";
    }
}*/

/* ≤ 575px */
/*@media (max-width: 575px) {
    body::after {
        content: "≤575px";
    }
}*/

/* ≤ 480px */
/*@media (max-width: 480px) {
    body::after {
        content: "≤480px";
    }
}*/

/* ≤ 420px */
/*@media (max-width: 420px) {
    body::after {
        content: "≤420px";
    }
}*/


/* ==================================================================
   1. GLOBAL LAYOUT — Sticky Footer
   ================================================================== */

html, body {
    height: 100%;
    margin: 0;
}

.yardex-page-content {
    min-height: calc(100vh - auto);
    flex: 1;
}

body, #app, .page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-wrapper {
    flex: 1 0 auto;
}


/* ==================================================================
   2. PRELOADER
   ================================================================== */

#preloader {
    position: fixed;
    inset: 0;
    background: #1f2933;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

body.show-preloader #preloader {
    opacity: 1;
    pointer-events: auto;
}


/* ==================================================================
   3. HEADER / NAVBAR
   ================================================================== */

/* --- Base / Desktop --- */

.yardex-header {
    z-index: 1000;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

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

/* Transparent state (default, overlays hero) */
.transparent-header {
    background-color: transparent;
}

    /* Scrolled / sticky state */
    .transparent-header.scrollHeader {
        background-color: #ffffff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

/* Nav links */
.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.transparent-header.scrollHeader .nav-link {
    color: #1f2933;
}

/* Logo swap */
.yardex-header .logo-light {
    display: inline-block;
    height: 34px;
}

.yardex-header .logo-dark {
    display: none;
}

.yardex-header.transparent-header.scrollHeader .logo-light {
    display: none;
}

.yardex-header.transparent-header.scrollHeader .logo-dark {
    display: inline-block;
    height: 34px;
}

/* Burger toggler */
.navbar-toggler {
    border: none;
    padding: 6px 8px;
}

    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.transparent-header.scrollHeader .navbar-toggler-icon {
    filter: none;
}

/* --- Header: Tablet + Phone (≤ 991px) --- */

@media (max-width: 991px) {

    .yardex-header {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

        .yardex-header .navbar {
            padding: 10px 0 !important;
            min-height: 80px !important;
        }

            /* Logo + burger: single row, vertically centered */
            .yardex-header .navbar > .container,
            .yardex-header .navbar > .container-fluid,
            .yardex-header .navbar > .lg-container {
                display: flex !important;
                align-items: center !important;
                justify-content: space-between !important;
                flex-wrap: wrap !important;
            }

        /* Logo */
        .yardex-header .navbar-brand {
            flex: 0 0 auto !important;
            padding: 0 !important;
            margin: 0 !important;
            line-height: 1 !important;
        }

        .yardex-header .logo-light,
        .yardex-header .logo-dark {
            height: 30px !important;
        }

        /* Burger */
        .yardex-header .navbar-toggler {
            flex: 0 0 auto !important;
            padding: 6px 4px !important;
            margin: 0 !important;
            color: #ffffff !important;
            border: none !important;
            order: 2;
        }

            .yardex-header .navbar-toggler:focus {
                box-shadow: none !important;
                outline: none !important;
            }

        .yardex-header .navbar-toggler-icon {
            width: 24px !important;
            height: 24px !important;
        }

        /* Mobile nav collapse */
        .yardex-header .navbar-collapse {
            order: 3;
            flex-basis: 100% !important;
            width: 100% !important;
            margin-top: 8px !important;
            background-color: rgba(31, 41, 51, 0.96) !important;
            border-radius: 8px !important;
            padding: 14px 18px !important;
            z-index: 1001;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        /* Scrolled (white) header variant */
        .yardex-header.scrollHeader .navbar-collapse,
        .yardex-header.transparent-header.scrollHeader .navbar-collapse {
            background-color: #ffffff !important;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1) !important;
        }

        /* Nav links inside collapse */
        .yardex-header .navbar-collapse .navbar-nav .nav-link,
        .yardex-header .navbar-collapse .navbar-nav > li > a {
            color: rgba(255, 255, 255, 0.9) !important;
            padding: 10px 0 !important;
            font-size: 15px !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
            display: block !important;
        }

        .yardex-header .navbar-collapse .navbar-nav .nav-item:last-child .nav-link,
        .yardex-header .navbar-collapse .navbar-nav > li:last-child > a {
            border-bottom: none !important;
        }

        /* Scrolled-header link colors */
        .yardex-header.scrollHeader .navbar-collapse .navbar-nav .nav-link,
        .yardex-header.scrollHeader .navbar-collapse .navbar-nav > li > a,
        .yardex-header.transparent-header.scrollHeader .navbar-collapse .navbar-nav .nav-link,
        .yardex-header.transparent-header.scrollHeader .navbar-collapse .navbar-nav > li > a {
            color: #1f2933 !important;
            border-bottom-color: rgba(0, 0, 0, 0.06) !important;
        }

        /* Mobile CTA inside collapse */
        .yardex-header .navbar-collapse .butn.primary {
            margin-top: 10px !important;
        }
}


/* ==================================================================
   4. NAVBAR CTA BUTTONS
   ================================================================== */

/* Compact CTA */
.yardex-nav-cta {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    line-height: 1;
}

    .yardex-nav-cta:hover,
    .yardex-nav-cta:focus {
        transform: none;
    }

    .yardex-nav-cta span {
        letter-spacing: 0.02em;
    }

/* Button group */
.yardex-nav-cta-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Base nav button */
.yardex-nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.15s ease, color 0.15s ease;
}

/* Primary (Book a Walkthrough) */
.yardex-nav-button-primary {
    background-color: #0d6efd;
    color: #ffffff;
}

    .yardex-nav-button-primary:hover,
    .yardex-nav-button-primary:focus {
        background-color: #0b5ed7;
        color: #ffffff;
    }

/* Sign In (Amber) */
.yardex-nav-button-signin {
    background-color: #F5A623;
    color: #ffffff;
}

    .yardex-nav-button-signin:hover,
    .yardex-nav-button-signin:focus {
        background-color: #e39a1f;
        color: #ffffff;
    }

/* Accessibility */
.yardex-nav-button:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}


/* ==================================================================
   5. PRIMARY CTA (Brand Amber)
   ================================================================== */

.yardex-cta,
.butn.primary {
    background-color: #F5A623 !important;
    border: none;
    font-weight: 600;
    transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    color: #ffffff !important;
}

    .yardex-cta:hover,
    .butn.primary:hover {
        background-color: #e4961f !important;
        color: #ffffff !important;
    }

    .yardex-cta:focus,
    .butn.primary:focus,
    .yardex-cta:active,
    .butn.primary:active {
        background-color: #d88c1c !important;
        color: #ffffff !important;
        box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.35);
    }


/* ==================================================================
   6. YELLOW CTA BUTTON (Reusable)
   ================================================================== */

.yardex-cta-yellow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 28px;
    background-color: #F5A623;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.15s ease, color 0.15s ease;
}

    .yardex-cta-yellow:hover,
    .yardex-cta-yellow:focus {
        background-color: #e39a1f;
        color: #ffffff;
        text-decoration: none;
    }

    .yardex-cta-yellow:focus-visible {
        outline: 2px solid rgba(255, 255, 255, 0.6);
        outline-offset: 2px;
    }


/* ==================================================================
   7. HERO (Home Page — Left Aligned)
   ================================================================== */

/* --- Base / Desktop --- */
.yardex-hero-section {
    position: relative;
}

.yardex-hero {
    margin-top: 90px;
}


/* Headline */
.yardex-hero-title {
    line-height: 1.05;
    margin-bottom: 22px;
}

.hero-line-primary {
    display: block;
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-line-secondary {
    display: block;
    font-size: 44px;
    font-weight: 600;
    color: #ffffff;
}

/* Subtitle */
.yardex-hero-subtitle {
    max-width: 620px;
    margin-bottom: 34px;
}

.hero-sub-primary {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
}

.hero-sub-secondary {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
}

/* Support line (Product hero) */
.yardex-hero-support {
    font-size: 15px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
}

/* CTA */
.yardex-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

    .yardex-hero-actions .butn {
        padding: 12px 26px;
        font-weight: 600;
    }

/* Hero CTA sizing */
.yardex-hero-cta {
    min-width: 220px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    line-height: 1;
    box-sizing: border-box;
}

/* --- Hero: Mobile Stack (≤ 575px) --- */

@media (max-width: 575px) {
    .yardex-hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .yardex-hero-cta {
        width: 100%;
        min-width: unset;
    }
}

/* --- Hero: Tablet + Phone (≤ 991px) --- */

@media (max-width: 991px) {

    .yardex-hero-section.full-screen,
    .yardex-hero-section .h-100vh {
        height: auto !important;
        min-height: auto !important;
        padding-top: 28px !important;
        padding-bottom: 28px !important;
    }

    .yardex-hero {
        margin-top: 72px !important;
    }

    .hero-line-primary {
        font-size: 42px !important;
        line-height: 1.1 !important;
        white-space: normal !important;
        margin-bottom: 6px !important;
        margin-top: 150px !important;
    }

    .hero-line-secondary {
        font-size: 26px !important;
        line-height: 1.15 !important;
        margin-bottom: 6px !important;
    }

    .yardex-hero-title {
        margin-bottom: 16px !important;
    }

    .hero-sub-primary {
        font-size: 15px !important;
        line-height: 1.45 !important;
        margin-bottom: 6px !important;
    }

    .hero-sub-secondary {
        font-size: 13px !important;
        line-height: 1.45 !important;
    }

    .yardex-hero-subtitle {
        margin-bottom: 20px !important;
    }

    .yardex-hero-support {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 22px !important;
    }

    .yardex-hero-actions {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 12px !important;
        margin-bottom: 28px !important;
    }

        .yardex-hero-actions .butn {
            padding: 11px 22px !important;
            font-size: 14px !important;
        }
}

/* --- Hero: Small Phones (≤ 575px) --- */

@media (max-width: 575px) {

    .yardex-hero-section {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .yardex-hero {
        margin-top: 62px !important;
    }

    .hero-line-primary {
        font-size: 26px !important;
        line-height: 1.15 !important;
        margin-bottom: 4px !important;
        margin-top: 100px !important;
    }

    .hero-line-secondary {
        font-size: 21px !important;
        line-height: 1.15 !important;
        margin-bottom: 4px !important;
    }

    .yardex-hero-title {
        margin-bottom: 14px !important;
    }

    .hero-sub-primary {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 4px !important;
    }

    .hero-sub-secondary {
        font-size: 12.5px !important;
        line-height: 1.5 !important;
    }

    .yardex-hero-subtitle {
        margin-bottom: 18px !important;
    }

    .yardex-hero-support {
        font-size: 13px !important;
        line-height: 1.6 !important;
        margin-bottom: 22px !important;
    }

    .yardex-hero-actions {
        gap: 10px !important;
        margin-bottom: 30px !important;
    }

        .yardex-hero-actions .butn {
            padding: 10px 20px !important;
            font-size: 13px !important;
        }
}

/* --- Hero: Extra-Small Phones (≤ 420px) --- */

@media (max-width: 420px) {

    .hero-line-primary {
        font-size: 22px !important;
        line-height: 1.2 !important;
        margin-top: 100px !important;
    }

    .hero-line-secondary {
        font-size: 18px !important;
        line-height: 1.2 !important;
    }

    .yardex-hero-title {
        margin-bottom: 12px !important;
    }

    .hero-sub-primary {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }

    .hero-sub-secondary {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    .yardex-hero-subtitle {
        margin-bottom: 16px !important;
    }

    .yardex-hero-support {
        font-size: 12px !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }

    .yardex-hero-actions .butn {
        font-size: 12.5px !important;
        padding: 10px 18px !important;
    }
}


/* ==================================================================
   8. HERO FOOTER / SECTION BRIDGE
   ================================================================== */

/* --- Base / Desktop --- */

/* HERO FULL HEIGHT + POSITIONING CONTEXT */
.yardex-hero-section.full-screen {
    position: relative;
    min-height: 100vh;
}

.yardex-hero-section .bg-img.cover-background {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Remove legacy table layout */
.main-banner-style16 .container.h-100vh.d-table {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.main-banner-style16 .d-table-cell.align-middle {
    display: flex !important;
    flex-direction: column !important;
    flex: 1;
    justify-content: center;
}

/* Kill Amava table layout for hero only */
.yardex-hero-section .container.h-100vh.d-table {
    display: flex !important;
    flex-direction: column !important;
    height: 100vh !important;
}

.yardex-hero-section .d-table-cell.align-middle {
    display: flex !important;
    flex-direction: column !important;
    flex: 1;
    justify-content: center;
    position: relative;
}

.yardex-hero-section {
    position: relative;
    min-height: 100vh;
}



.yardex-hero-footer-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 30px; /* breathing room from edge — set to 0 for flush */
    z-index: 2;
}

.yardex-hero-footer {
    max-width: 820px;
    padding: 0 20px;
    text-align: center;
}

.yardex-hero-footer-title {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 10px;
}

    .yardex-hero-footer-title span {
        display: block;
        font-size: 22px;
        font-weight: 600;
        opacity: 0.85;
    }

.yardex-hero-footer-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
}

.yardex-hero-footer.wow {
    animation-duration: 0.9s;
}

/* --- Hero Footer: Tablet + Phone (≤ 991px) --- */

/*@media (min-width: 992px) {

    .yardex-hero-footer-wrapper {
        position: absolute;
        bottom: 20px;*/ /* adjust visually */
/*left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        z-index: 5;
    }
}*/

@media (max-width: 991px) {

    .yardex-hero-footer-wrapper {
        position: relative !important;
        bottom: auto !important;
        margin-bottom: 26px !important;
    }

    .yardex-hero-footer-title {
        font-size: 20px !important;
        margin-bottom: 8px !important;
    }

        .yardex-hero-footer-title span {
            font-size: 18px !important;
        }

    .yardex-hero-footer-text {
        white-space: normal !important;
        font-size: 13px !important;
        line-height: 1.5 !important;
        text-align: center !important;
    }
}

/* --- Hero Footer: Small Phones (≤ 575px) --- */

@media (max-width: 575px) {



    .yardex-hero-footer-title {
        font-size: 18px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }

        .yardex-hero-footer-title span {
            font-size: 16px !important;
        }

    .yardex-hero-footer-text {
        font-size: 12.5px !important;
        line-height: 1.55 !important;
    }
}

/* --- Hero Footer: Extra-Small Phones (≤ 420px) --- */

@media (max-width: 420px) {


    .yardex-hero-footer-title {
        font-size: 17px !important;
    }

        .yardex-hero-footer-title span {
            font-size: 15px !important;
        }

    .yardex-hero-footer-text {
        font-size: 12px !important;
        line-height: 1.55 !important;
    }
}



/* ==================================================================
   9. CAROUSEL SECTION
   ================================================================== */

/* --- Base / Desktop --- */

.yardex-carousel-section {
    position: relative;
    z-index: 10;
}

.yardex-carousel-container {
    position: relative;
    z-index: 11;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    background-color: #F9F9F9;
}

/* Equal height cards */
.service-carousel01 .owl-stage {
    display: flex;
}

.service-carousel01 .owl-item {
    display: flex;
    height: auto;
}

.service-carousel01 .card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-carousel01 .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Card icons */
.yardex-card-icon {
    font-size: 42px;
    color: #3E5376;
    opacity: 0.9;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.service-carousel01 .card:hover .yardex-card-icon {
    color: #ffffff;
    opacity: 1;
}

/* --- Carousel: Tablet + Phone (≤ 991px) --- */

@media (max-width: 991px) {
    .yardex-carousel-section {
        margin-top: -50px !important;
    }
}


/* ==================================================================
   10. DARK NARRATIVE SECTION
   ================================================================== */

/* --- Base / Desktop --- */

.yardex-dark-section {
    background-color: #3F5375;
    padding: 40px 0;
    margin-top: -40px;
}

.yardex-dark-content {
    max-width: 900px;
    margin: 0 auto;
}

.yardex-dark-title {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 30px;
    color: #ffffff;
    margin-bottom: 10px;
}

    .yardex-dark-title span {
        display: block;
        font-size: 22px;
        font-weight: 600;
        opacity: 0.85;
    }

.yardex-dark-intro {
    max-width: 720px;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
}

.yardex-dark-content.wow {
    animation-duration: 0.85s;
}

/* --- Dark Narrative: Tablet + Phone (≤ 991px) --- */

@media (max-width: 991px) {
    .yardex-dark-section {
        padding: 70px 0 !important;
        margin-top: 0 !important;
    }

    .yardex-dark-intro {
        font-size: 16px !important;
        line-height: 1.55 !important;
    }
}

/* --- Dark Narrative: Small Phones (≤ 575px) --- */

@media (max-width: 575px) {
    .yardex-dark-section {
        padding: 64px 0 !important;
    }
}


/* ==================================================================
   11. HOME — CONTROL PILLARS
   ================================================================== */

/* --- Base / Desktop --- */

.yardex-control-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.yardex-control-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    color: #1f2933;
    margin-bottom: 12px;
}

    .yardex-control-title span {
        display: block;
        font-weight: 600;
    }

.yardex-control-intro {
    max-width: 720px;
    font-size: 16px;
    color: #4b5563;
}

.yardex-control-card {
    height: 100%;
    padding: 36px 28px;
    background-color: #f9fafb;
    border-radius: 6px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .yardex-control-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    }

.yardex-control-icon {
    font-size: 38px;
    color: #3E5376;
    margin-bottom: 18px;
    display: inline-block;
}

.yardex-control-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1f2933;
}

.yardex-control-card-text {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 0;
}

.yardex-control-section .wow {
    animation-duration: 0.8s;
}

/* --- Control Pillars: Tablet + Phone (≤ 991px) --- */

@media (max-width: 991px) {
    .yardex-control-section {
        padding: 80px 0 !important;
    }

    .yardex-control-title {
        font-size: 24px !important;
        margin-bottom: 12px !important;
    }
}

/* --- Control Pillars: Small Phones (≤ 575px) --- */

@media (max-width: 575px) {
    .yardex-control-section {
        padding: 72px 0 !important;
    }
}


/* ==================================================================
   12. HOME — OUTCOMES
   ================================================================== */

/* --- Base / Desktop --- */

.yardex-outcomes-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.yardex-outcomes-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    color: #1f2933;
    margin-bottom: 12px;
}

    .yardex-outcomes-title span {
        display: block;
        font-weight: 600;
    }

.yardex-outcomes-intro {
    max-width: 720px;
    font-size: 16px;
    color: #4b5563;
}

.yardex-outcome-card {
    height: 100%;
    padding: 32px 26px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.yardex-outcome-icon {
    font-size: 28px;
    color: #3E5376;
    margin-bottom: 14px;
}

.yardex-outcome-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1f2933;
}

.yardex-outcome-title-light {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #ffffff;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

    .yardex-outcome-title-light::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 36px;
        height: 2px;
        background-color: #F5A623;
        border-radius: 2px;
    }

.yardex-outcome-text {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 0;
}

.yardex-outcome-text-light {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 0;
}

.yardex-outcomes-bridge {
    max-width: 820px;
    font-size: 16px;
    color: #374151;
}

/* --- Outcomes: Tablet + Phone (≤ 991px) --- */

@media (max-width: 991px) {
    .yardex-outcomes-section {
        padding: 80px 0 !important;
    }

    .yardex-outcomes-title {
        font-size: 24px !important;
        margin-bottom: 12px !important;
    }
}

/* --- Outcomes: Small Phones (≤ 575px) --- */

@media (max-width: 575px) {
    .yardex-outcomes-section {
        padding: 72px 0 !important;
    }
}


/* ==================================================================
   13. HOME — FINAL CTA (Dark)
   ================================================================== */

/* --- Base / Desktop --- */

.yardex-final-cta-section {
    background-color: #425477;
    padding: 80px 0;
}

.yardex-final-cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.yardex-final-cta-title {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 16px;
}

    .yardex-final-cta-title span {
        display: block;
        font-weight: 600;
        opacity: 0.9;
    }

.yardex-final-cta-support {
    max-width: 720px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
}

.yardex-final-cta-subline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.yardex-final-cta-section .wow {
    animation-duration: 0.85s;
}

/* --- Final CTA: Tablet + Phone (≤ 991px) --- */

@media (max-width: 991px) {
    .yardex-final-cta-title {
        font-size: 24px !important;
        margin-bottom: 14px !important;
    }

    .yardex-final-cta-support {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }
}


/* ==================================================================
   14. PRODUCTS PAGE — HERO VARIANT (Centered)
   ================================================================== */

.yardex-hero-centered {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

    .yardex-hero-centered .yardex-hero-actions {
        justify-content: center;
    }

    .yardex-hero-centered .yardex-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .yardex-hero-centered .hero-line-primary {
        font-size: 56px;
        font-weight: 600;
    }

    .yardex-hero-centered .hero-line-secondary {
        font-size: 42px;
        font-weight: 500;
        opacity: 0.95;
    }

.no-wrap {
    white-space: nowrap;
}


/* ==================================================================
   15. PRODUCT — WHAT YARDEX IS (Positioning)
   ================================================================== */

/* --- Base / Desktop --- */

.yardex-positioning-section {
    padding: 110px 0;
    background-color: #f7f9fc;
}

.yardex-positioning-title {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
    color: #1f2933;
    margin-bottom: 64px;
}

    .yardex-positioning-title span {
        display: block;
        font-weight: 600;
        color: #3f5375;
        margin-top: 6px;
    }

.yardex-positioning-grid {
    row-gap: 36px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1200px) {
    .yardex-positioning-grid {
        max-width: 1040px;
    }
}

.yardex-positioning-card {
    height: 100%;
    padding: 40px 34px;
    background-color: #ffffff;
    border: 1px solid rgba(31, 41, 51, 0.08);
    border-radius: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .yardex-positioning-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    }

.yardex-positioning-card-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #3e5376;
    margin-bottom: 14px;
}

.yardex-positioning-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}

    .yardex-positioning-card-text strong {
        font-weight: 600;
        color: #1f2933;
    }

.yardex-positioning-definition {
    margin-top: 72px;
    font-size: 18px;
    line-height: 1.75;
    color: #2f3b4a;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

    .yardex-positioning-definition strong {
        font-weight: 700;
        color: #1f2933;
    }

    .yardex-positioning-definition em {
        font-style: normal;
        font-weight: 600;
        color: #0056d2;
    }

/* --- Positioning: Tablet + Phone (≤ 991px) --- */

@media (max-width: 991px) {

    .yardex-positioning-section {
        padding: 80px 0 !important;
    }

    .yardex-positioning-title {
        font-size: 24px !important;
        margin-bottom: 42px !important;
        line-height: 1.25 !important;
    }

        .yardex-positioning-title span {
            font-size: 22px !important;
            margin-top: 4px !important;
        }

    .yardex-positioning-card {
        padding: 32px 26px !important;
    }

    .yardex-positioning-card-title {
        font-size: 12px !important;
        margin-bottom: 10px !important;
    }

    .yardex-positioning-card-text {
        font-size: 15px !important;
        line-height: 1.55 !important;
    }

    .yardex-positioning-definition {
        margin-top: 48px !important;
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
}

/* --- Positioning: Small Phones (≤ 575px) --- */

@media (max-width: 575px) {

    .yardex-positioning-section {
        padding: 72px 0 !important;
    }

    .yardex-positioning-title {
        font-size: 22px !important;
        margin-bottom: 36px !important;
    }

        .yardex-positioning-title span {
            font-size: 20px !important;
        }

    .yardex-positioning-card {
        padding: 28px 22px !important;
    }

    .yardex-positioning-card-text {
        font-size: 14.5px !important;
    }

    .yardex-positioning-definition {
        font-size: 15px !important;
    }
}

/* --- Positioning: Extra-Small Phones (≤ 420px) --- */

@media (max-width: 420px) {

    .yardex-positioning-title {
        font-size: 20px !important;
    }

        .yardex-positioning-title span {
            font-size: 18px !important;
        }

    .yardex-positioning-definition {
        font-size: 14.5px !important;
        line-height: 1.55 !important;
    }
}


/* ==================================================================
   16. PRODUCT — CONTROL SURFACES (Dark)
   ================================================================== */

/* --- Base / Desktop --- */

.yardex-control-surfaces-section {
    padding: 120px 0;
    background-color: #3F5375;
    position: relative;
}

.yardex-control-surfaces-title {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 14px;
}

.yardex-control-surfaces-intro {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 760px;
    margin: 0 auto 70px;
}

    .yardex-control-surfaces-intro strong {
        font-weight: 600;
        color: #ffffff;
    }

.yardex-control-surfaces-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    row-gap: 36px;
}

.yardex-control-surface-card {
    height: 100%;
    padding: 36px 30px;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

    .yardex-control-surface-card:hover {
        transform: translateY(-4px);
        background-color: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
    }

.yardex-control-surface-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    color: #ffffff;
    margin-bottom: 10px;
}

.yardex-control-surface-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

/* --- Control Surfaces: Tablet + Phone (≤ 991px) --- */

@media (max-width: 991px) {

    .yardex-control-surfaces-section {
        padding: 90px 0 !important;
    }

    .yardex-control-surfaces-title {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }

    .yardex-control-surfaces-intro {
        font-size: 16px !important;
        margin-bottom: 48px !important;
    }

    .yardex-control-surface-card {
        padding: 30px 24px !important;
    }

    .yardex-control-surface-title {
        font-size: 16px !important;
    }

    .yardex-control-surface-text {
        font-size: 14.5px !important;
        line-height: 1.55 !important;
    }
}

/* --- Control Surfaces: Small Phones (≤ 575px) --- */

@media (max-width: 575px) {

    .yardex-control-surfaces-section {
        padding: 80px 0 !important;
    }

    .yardex-control-surfaces-title {
        font-size: 22px !important;
    }

    .yardex-control-surfaces-intro {
        font-size: 15px !important;
    }

    .yardex-control-surface-card {
        padding: 26px 22px !important;
    }

    .yardex-control-surface-title {
        font-size: 15.5px !important;
    }

    .yardex-control-surface-text {
        font-size: 14px !important;
    }
}

/* --- Control Surfaces: Extra-Small Phones (≤ 420px) --- */

@media (max-width: 420px) {

    .yardex-control-surfaces-title {
        font-size: 20px !important;
    }

    .yardex-control-surfaces-intro {
        font-size: 14.5px !important;
    }
}


/* ==================================================================
   17. PRODUCT — BEHAVIOR CHANGE
   ================================================================== */

/* --- Base / Desktop --- */

.yardex-behavior-section {
    padding: 120px 0;
    background-color: #f9fafb;
}

.yardex-behavior-title {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
    color: #1f2933;
    margin-bottom: 72px;
}

.yardex-behavior-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    row-gap: 36px;
}

.yardex-behavior-card {
    height: 100%;
    padding: 38px 30px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(31, 41, 51, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .yardex-behavior-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    }

.yardex-behavior-card-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    color: #1f2933;
    margin-bottom: 8px;
}

.yardex-behavior-card-text {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 0;
}

.yardex-behavior-bridge {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
    max-width: 820px;
    margin: 0 auto;
}

    .yardex-behavior-bridge strong {
        font-weight: 600;
        color: #1f2933;
    }

/* --- Behavior: Tablet + Phone (≤ 991px) --- */

@media (max-width: 991px) {

    .yardex-behavior-section {
        padding: 90px 0 !important;
    }

    .yardex-behavior-title {
        font-size: 24px !important;
        line-height: 1.25 !important;
        margin-bottom: 48px !important;
    }

    .yardex-behavior-card {
        padding: 30px 24px !important;
    }

    .yardex-behavior-card-title {
        font-size: 16px !important;
    }

    .yardex-behavior-card-text {
        font-size: 14.5px !important;
        line-height: 1.55 !important;
    }

    .yardex-behavior-bridge {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
}

/* --- Behavior: Small Phones (≤ 575px) --- */

@media (max-width: 575px) {

    .yardex-behavior-section {
        padding: 80px 0 !important;
    }

    .yardex-behavior-title {
        font-size: 22px !important;
        margin-bottom: 40px !important;
    }

    .yardex-behavior-card {
        padding: 26px 22px !important;
    }

    .yardex-behavior-card-title {
        font-size: 15.5px !important;
    }

    .yardex-behavior-card-text {
        font-size: 14px !important;
    }

    .yardex-behavior-bridge {
        font-size: 15px !important;
    }
}

/* --- Behavior: Extra-Small Phones (≤ 420px) --- */

@media (max-width: 420px) {

    .yardex-behavior-title {
        font-size: 20px !important;
    }

    .yardex-behavior-bridge {
        font-size: 14.5px !important;
        line-height: 1.55 !important;
    }
}


/* ==================================================================
   18. PRODUCT — CONSTRAINTS (Dark)
   ================================================================== */

/* --- Base / Desktop --- */

.yardex-constraints-section {
    padding: 120px 0;
    background-color: #425477;
}

.yardex-constraints-title {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 64px;
}

.yardex-constraints-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.yardex-constraint-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

    .yardex-constraint-item:last-child {
        border-bottom: none;
    }

.yardex-constraint-label {
    flex: 0 0 260px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
}

.yardex-constraint-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.yardex-constraints-bridge {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 820px;
    margin: 0 auto;
}

    .yardex-constraints-bridge strong {
        font-weight: 600;
        color: #ffffff;
    }

/* --- Constraints: Tablet + Phone (≤ 991px) --- */

@media (max-width: 991px) {

    .yardex-constraints-section {
        padding: 90px 0 !important;
    }

    .yardex-constraints-title {
        font-size: 24px !important;
        margin-bottom: 42px !important;
    }

    .yardex-constraint-item {
        flex-direction: column !important;
        gap: 6px !important;
        padding: 18px 0 !important;
    }

    .yardex-constraint-label {
        flex: none !important;
        font-size: 14px !important;
    }

    .yardex-constraint-text {
        font-size: 14.5px !important;
        line-height: 1.55 !important;
    }

    .yardex-constraints-bridge {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
}

/* --- Constraints: Small Phones (≤ 575px) --- */

@media (max-width: 575px) {

    .yardex-constraints-section {
        padding: 80px 0 !important;
    }

    .yardex-constraints-title {
        font-size: 22px !important;
    }

    .yardex-constraint-label {
        font-size: 13.5px !important;
    }

    .yardex-constraint-text {
        font-size: 14px !important;
    }

    .yardex-constraints-bridge {
        font-size: 15px !important;
    }
}

/* --- Constraints: Extra-Small Phones (≤ 420px) --- */

@media (max-width: 420px) {

    .yardex-constraints-title {
        font-size: 20px !important;
    }

    .yardex-constraint-text {
        font-size: 13.5px !important;
        line-height: 1.55 !important;
    }

    .yardex-constraints-bridge {
        font-size: 14.5px !important;
    }
}


/* ==================================================================
   19. WHO IT'S FOR — AUDIENCE / SCALE
   ================================================================== */

/* --- Base / Desktop --- */

.yardex-audience-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.yardex-audience-title {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
    color: #1f2933;
    margin-bottom: 64px;
}

.yardex-audience-frame {
    padding: 48px 46px;
    border: 1px solid rgba(31, 41, 51, 0.1);
    border-radius: 10px;
    background-color: #f9fafb;
}

.yardex-audience-lead {
    font-size: 16px;
    font-weight: 600;
    color: #1f2933;
    margin-bottom: 18px;
}

.yardex-audience-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .yardex-audience-list li {
        position: relative;
        padding-left: 22px;
        margin-bottom: 14px;
        font-size: 15px;
        line-height: 1.6;
        color: #4b5563;
    }

        .yardex-audience-list li::before {
            content: "\2022";
            position: absolute;
            left: 0;
            top: 0;
            color: #3f5375;
            font-weight: 700;
        }

.yardex-audience-bridge {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
    max-width: 860px;
    margin: 0 auto;
}

    .yardex-audience-bridge strong {
        font-weight: 600;
        color: #1f2933;
    }

/* --- Audience: Tablet + Phone (≤ 991px) --- */

@media (max-width: 991px) {

    .yardex-audience-section {
        padding: 90px 0 !important;
    }

    .yardex-audience-title {
        font-size: 24px !important;
        margin-bottom: 42px !important;
    }

    .yardex-audience-frame {
        padding: 36px 30px !important;
    }

    .yardex-audience-lead {
        font-size: 15.5px !important;
    }

    .yardex-audience-list li {
        font-size: 14.5px !important;
        margin-bottom: 12px !important;
    }

    .yardex-audience-bridge {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
}

/* --- Audience: Small Phones (≤ 575px) --- */

@media (max-width: 575px) {

    .yardex-audience-section {
        padding: 80px 0 !important;
    }

    .yardex-audience-title {
        font-size: 22px !important;
    }

    .yardex-audience-frame {
        padding: 30px 24px !important;
    }

    .yardex-audience-list li {
        font-size: 14px !important;
    }

    .yardex-audience-bridge {
        font-size: 15px !important;
    }
}

/* --- Audience: Extra-Small Phones (≤ 420px) --- */

@media (max-width: 420px) {

    .yardex-audience-title {
        font-size: 20px !important;
    }

    .yardex-audience-list li {
        font-size: 13.5px !important;
        line-height: 1.55 !important;
    }

    .yardex-audience-bridge {
        font-size: 14.5px !important;
    }
}


/* ==================================================================
   20. PRODUCT — FINAL SYSTEM CTA
   ================================================================== */

/* --- Base / Desktop --- */

.yardex-final-cta-system {
    padding: 120px 0;
    background-color: #2f3f5f;
}

.yardex-final-cta-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
}

    .yardex-final-cta-title span {
        display: block;
        font-weight: 600;
        opacity: 0.95;
    }

.yardex-final-cta-support {
    max-width: 760px;
    margin: 0 auto 42px;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.yardex-final-cta-actions {
    margin-bottom: 22px;
}

    .yardex-final-cta-actions .butn.primary {
        padding: 14px 34px;
        font-size: 15px;
        font-weight: 600;
    }

.yardex-final-cta-subline {
    max-width: 720px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.65);
}

/* --- Final System CTA: Tablet + Phone (≤ 991px) --- */

@media (max-width: 991px) {

    .yardex-final-cta-system {
        padding: 90px 0 !important;
    }

    .yardex-final-cta-title {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }

    .yardex-final-cta-support {
        font-size: 16px !important;
        margin-bottom: 34px !important;
    }

    .yardex-final-cta-actions .butn.primary {
        padding: 13px 30px !important;
        font-size: 14.5px !important;
    }

    .yardex-final-cta-subline {
        font-size: 13.5px !important;
    }
}

/* --- Final System CTA: Small Phones (≤ 575px) --- */

@media (max-width: 575px) {

    .yardex-final-cta-system {
        padding: 80px 0 !important;
    }

    .yardex-final-cta-title {
        font-size: 22px !important;
    }

    .yardex-final-cta-support {
        font-size: 15px !important;
    }

    .yardex-final-cta-actions .butn.primary {
        padding: 12px 28px !important;
        font-size: 14px !important;
    }

    .yardex-final-cta-subline {
        font-size: 13px !important;
    }
}

/* --- Final System CTA: Extra-Small Phones (≤ 420px) --- */

@media (max-width: 420px) {

    .yardex-final-cta-title {
        font-size: 20px !important;
    }

    .yardex-final-cta-support {
        font-size: 14.5px !important;
        line-height: 1.55 !important;
    }

    .yardex-final-cta-subline {
        font-size: 12.5px !important;
    }
}


/* ==================================================================
   21. WHO IT'S FOR — ROLE SECTION (Dark)
   ================================================================== */

/* --- Base / Desktop --- */

.yardex-role-section-dark {
    background-color: #2f3f5f;
    padding: 120px 0;
}

    .yardex-role-section-dark .yardex-role-title {
        color: #ffffff;
    }

    .yardex-role-section-dark .yardex-role-block-title {
        color: rgba(255, 255, 255, 0.85);
    }

    .yardex-role-section-dark .yardex-role-block-text {
        color: rgba(255, 255, 255, 0.75);
    }

    .yardex-role-section-dark .yardex-role-list li {
        color: rgba(255, 255, 255, 0.75);
    }

        .yardex-role-section-dark .yardex-role-list li::before {
            color: #f5a623;
        }

    .yardex-role-section-dark .yardex-role-bridge {
        color: rgba(255, 255, 255, 0.85);
    }

        .yardex-role-section-dark .yardex-role-bridge strong {
            color: #ffffff;
        }

/* --- Role Section: Tablet + Phone (≤ 991px) --- */

@media (max-width: 991px) {

    .yardex-role-section {
        padding: 90px 0 !important;
    }

    .yardex-role-title {
        font-size: 24px !important;
        margin-bottom: 48px !important;
    }

    .yardex-role-block,
    .yardex-role-block-fit {
        padding: 0 !important;
    }

    .yardex-role-block-text {
        font-size: 15.5px !important;
    }

    .yardex-role-list li {
        font-size: 14.5px !important;
    }

    .yardex-role-bridge {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
}

/* --- Role Section: Small Phones (≤ 575px) --- */

@media (max-width: 575px) {

    .yardex-role-section {
        padding: 80px 0 !important;
    }

    .yardex-role-title {
        font-size: 22px !important;
    }

    .yardex-role-block-text {
        font-size: 14.5px !important;
    }

    .yardex-role-list li {
        font-size: 14px !important;
    }

    .yardex-role-bridge {
        font-size: 15px !important;
    }
}

/* --- Role Section: Extra-Small Phones (≤ 420px) --- */

@media (max-width: 420px) {

    .yardex-role-title {
        font-size: 20px !important;
    }

    .yardex-role-block-text {
        font-size: 14px !important;
        line-height: 1.55 !important;
    }

    .yardex-role-bridge {
        font-size: 14.5px !important;
    }
}


/* ==================================================================
   22. WHO IT'S FOR — EXCLUSION SECTION
   ================================================================== */

/* --- Base / Desktop --- */

.yardex-exclusion-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.yardex-exclusion-title {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
    color: #1f2933;
    margin-bottom: 56px;
}

.yardex-exclusion-intro {
    font-size: 16px;
    font-weight: 600;
    color: #1f2933;
    margin-bottom: 18px;
}

.yardex-exclusion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .yardex-exclusion-list li {
        position: relative;
        padding-left: 22px;
        margin-bottom: 14px;
        font-size: 15px;
        line-height: 1.6;
        color: #4b5563;
    }

        .yardex-exclusion-list li::before {
            content: "\2013";
            position: absolute;
            left: 0;
            top: 0;
            color: #3f5375;
            font-weight: 600;
        }

.yardex-exclusion-bridge {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
    max-width: 860px;
    margin: 0 auto;
}

    .yardex-exclusion-bridge strong {
        font-weight: 600;
        color: #1f2933;
    }

/* --- Exclusion: Tablet + Phone (≤ 991px) --- */

@media (max-width: 991px) {

    .yardex-exclusion-section {
        padding: 90px 0 !important;
    }

    .yardex-exclusion-title {
        font-size: 24px !important;
        margin-bottom: 42px !important;
    }

    .yardex-exclusion-intro {
        font-size: 15.5px !important;
    }

    .yardex-exclusion-list li {
        font-size: 14.5px !important;
    }

    .yardex-exclusion-bridge {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
}

/* --- Exclusion: Small Phones (≤ 575px) --- */

@media (max-width: 575px) {

    .yardex-exclusion-section {
        padding: 80px 0 !important;
    }

    .yardex-exclusion-title {
        font-size: 22px !important;
    }

    .yardex-exclusion-list li {
        font-size: 14px !important;
    }

    .yardex-exclusion-bridge {
        font-size: 15px !important;
    }
}

/* --- Exclusion: Extra-Small Phones (≤ 420px) --- */

@media (max-width: 420px) {

    .yardex-exclusion-title {
        font-size: 20px !important;
    }

    .yardex-exclusion-list li {
        font-size: 13.5px !important;
        line-height: 1.55 !important;
    }

    .yardex-exclusion-bridge {
        font-size: 14.5px !important;
    }
}


/* ==================================================================
   23. WHO IT'S FOR — FINAL CTA
   ================================================================== */

/* --- Base / Desktop --- */

.yardex-final-cta-who {
    padding: 120px 0;
    background-color: #2f3f5f;
}

.yardex-final-cta-who-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
}

    .yardex-final-cta-who-title span {
        display: block;
        font-weight: 600;
        opacity: 0.95;
    }

.yardex-final-cta-who-support {
    max-width: 780px;
    margin: 0 auto 42px;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.yardex-final-cta-who-actions {
    margin-bottom: 22px;
}

.yardex-final-cta-who-subline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 720px;
    margin: 0 auto;
}

/* --- Who Final CTA: Tablet + Phone (≤ 991px) --- */

@media (max-width: 991px) {

    .yardex-final-cta-who {
        padding: 90px 0 !important;
    }

    .yardex-final-cta-who-title {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }

    .yardex-final-cta-who-support {
        font-size: 16px !important;
        margin-bottom: 34px !important;
    }

    .yardex-final-cta-who-actions .butn.primary {
        padding: 13px 30px !important;
        font-size: 14.5px !important;
    }

    .yardex-final-cta-who-subline {
        font-size: 13.5px !important;
    }
}

/* --- Who Final CTA: Small Phones (≤ 575px) --- */

@media (max-width: 575px) {

    .yardex-final-cta-who {
        padding: 80px 0 !important;
    }

    .yardex-final-cta-who-title {
        font-size: 22px !important;
    }

    .yardex-final-cta-who-support {
        font-size: 15px !important;
    }

    .yardex-final-cta-who-actions .butn.primary {
        padding: 12px 28px !important;
        font-size: 14px !important;
    }

    .yardex-final-cta-who-subline {
        font-size: 13px !important;
    }
}

/* --- Who Final CTA: Extra-Small Phones (≤ 420px) --- */

@media (max-width: 420px) {

    .yardex-final-cta-who-title {
        font-size: 20px !important;
    }

    .yardex-final-cta-who-support {
        font-size: 14.5px !important;
        line-height: 1.55 !important;
    }

    .yardex-final-cta-who-subline {
        font-size: 12.5px !important;
    }
}


/* ==================================================================
   24. HOW IT WORKS — CORE PRINCIPLE
   ================================================================== */

/* --- Base / Desktop --- */

.yardex-principle-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.yardex-principle-title {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
    color: #1f2933;
    margin-bottom: 72px;
}

.yardex-principle-block {
    margin-bottom: 40px;
}

.yardex-principle-block-title {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #3f5375;
    margin-bottom: 10px;
}

.yardex-principle-block-text {
    font-size: 16px;
    line-height: 1.65;
    color: #4b5563;
    margin-bottom: 0;
}

.yardex-principle-bridge {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
    max-width: 860px;
    margin: 0 auto;
}

/* --- Principle: Tablet + Phone (≤ 991px) --- */

@media (max-width: 991px) {

    .yardex-principle-section {
        padding: 90px 0 !important;
    }

    .yardex-principle-title {
        font-size: 24px !important;
        margin-bottom: 48px !important;
    }

    .yardex-principle-block {
        margin-bottom: 32px !important;
    }

    .yardex-principle-block-text {
        font-size: 15.5px !important;
        line-height: 1.6 !important;
    }

    .yardex-principle-bridge {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
}

/* --- Principle: Small Phones (≤ 575px) --- */

@media (max-width: 575px) {

    .yardex-principle-section {
        padding: 80px 0 !important;
    }

    .yardex-principle-title {
        font-size: 22px !important;
    }

    .yardex-principle-block-text {
        font-size: 14.5px !important;
    }

    .yardex-principle-bridge {
        font-size: 15px !important;
    }
}

/* --- Principle: Extra-Small Phones (≤ 420px) --- */

@media (max-width: 420px) {

    .yardex-principle-title {
        font-size: 20px !important;
    }

    .yardex-principle-block-text {
        font-size: 14px !important;
        line-height: 1.55 !important;
    }

    .yardex-principle-bridge {
        font-size: 14.5px !important;
    }
}


/* ==================================================================
   25. HOW IT WORKS — FOUR STEPS (Dark)
   ================================================================== */

/* --- Base / Desktop --- */

.yardex-steps-section-dark {
    padding: 120px 0;
    background-color: #2f3f5f;
}

.yardex-steps-title {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 72px;
}

.yardex-step {
    display: flex;
    gap: 28px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

    .yardex-step:last-child {
        border-bottom: none;
    }

.yardex-step-index {
    flex: 0 0 48px;
    font-size: 18px;
    font-weight: 600;
    color: #f5a623;
    opacity: 0.95;
}

.yardex-step-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    color: #ffffff;
    margin-bottom: 6px;
}

.yardex-step-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* --- Four Steps: Tablet + Phone (≤ 991px) --- */

@media (max-width: 991px) {

    .yardex-steps-section-dark {
        padding: 90px 0 !important;
    }

    .yardex-steps-title {
        font-size: 24px !important;
        margin-bottom: 48px !important;
    }

    .yardex-step {
        gap: 20px !important;
        padding: 24px 0 !important;
    }

    .yardex-step-index {
        font-size: 16px !important;
    }

    .yardex-step-title {
        font-size: 16.5px !important;
    }

    .yardex-step-text {
        font-size: 14.5px !important;
        line-height: 1.55 !important;
    }
}

/* --- Four Steps: Small Phones (≤ 575px) --- */

@media (max-width: 575px) {

    .yardex-steps-section-dark {
        padding: 80px 0 !important;
    }

    .yardex-steps-title {
        font-size: 22px !important;
    }

    .yardex-step {
        gap: 16px !important;
    }

    .yardex-step-title {
        font-size: 15.5px !important;
    }

    .yardex-step-text {
        font-size: 14px !important;
    }
}

/* --- Four Steps: Extra-Small Phones (≤ 420px) --- */

@media (max-width: 420px) {

    .yardex-steps-title {
        font-size: 20px !important;
    }

    .yardex-step-index {
        font-size: 15px !important;
    }

    .yardex-step-text {
        font-size: 13.5px !important;
        line-height: 1.55 !important;
    }
}


/* ==================================================================
   26. HOW IT WORKS — WHAT TEAMS DON'T HAVE TO DO (Light)
   ================================================================== */

/* --- Base / Desktop --- */

.yardex-constraints-light-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.yardex-constraints-light-title {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
    color: #1f2933;
    text-align: center;
    margin-bottom: 64px;
}

.yardex-constraints-grid {
    max-width: 720px;
    margin: 0 auto;
}

.yardex-constraint-row {
    display: grid;
    grid-template-columns: 240px 1fr;
    column-gap: 32px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(31, 41, 51, 0.1);
}

    .yardex-constraint-row:last-child {
        border-bottom: none;
    }

.yardex-constraint-key {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #3f5375;
    white-space: nowrap;
}

.yardex-constraint-value {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    max-width: 420px;
}

/* --- Constraints Light: Tablet + Phone (≤ 991px) --- */

@media (max-width: 991px) {

    .yardex-constraints-light-section {
        padding: 90px 0 !important;
    }

    .yardex-constraints-light-title {
        font-size: 24px !important;
        margin-bottom: 42px !important;
    }

    .yardex-constraints-grid {
        max-width: 100% !important;
    }

    .yardex-constraint-row {
        grid-template-columns: 1fr !important;
        row-gap: 6px !important;
        padding: 18px 0 !important;
    }

    .yardex-constraint-key {
        font-size: 13.5px !important;
        letter-spacing: 0.07em !important;
    }

    .yardex-constraint-value {
        font-size: 14.5px !important;
        line-height: 1.55 !important;
        max-width: 100% !important;
    }
}

/* --- Constraints Light: Small Phones (≤ 575px) --- */

@media (max-width: 575px) {

    .yardex-constraints-light-section {
        padding: 80px 0 !important;
    }

    .yardex-constraints-light-title {
        font-size: 22px !important;
    }

    .yardex-constraint-key {
        font-size: 13px !important;
    }

    .yardex-constraint-value {
        font-size: 14px !important;
    }
}

/* --- Constraints Light: Extra-Small Phones (≤ 420px) --- */

@media (max-width: 420px) {

    .yardex-constraints-light-title {
        font-size: 20px !important;
    }

    .yardex-constraint-value {
        font-size: 13.5px !important;
        line-height: 1.55 !important;
    }
}


/* ==================================================================
   27. HOW IT WORKS — WHY THIS APPROACH WORKS (Dark)
   ================================================================== */

/* --- Base / Desktop --- */

.yardex-outcomes-section-dark {
    padding: 120px 0;
    background-color: #2f3f5f;
}

    .yardex-outcomes-section-dark .yardex-outcomes-title {
        font-size: 34px;
        font-weight: 500;
        line-height: 1.2;
        color: #ffffff;
        margin-bottom: 64px;
    }

.yardex-outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 960px;
    margin: 0 auto;
}

.yardex-outcome {
    text-align: center;
}

.yardex-outcome-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.yardex-outcome-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

.yardex-outcomes-bridge {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 860px;
    margin: 0 auto;
}

    .yardex-outcomes-bridge strong {
        font-weight: 600;
        color: #ffffff;
    }

/* --- Outcomes Dark: Tablet + Phone (≤ 991px) --- */

@media (max-width: 991px) {

    .yardex-outcomes-section-dark {
        padding: 90px 0 !important;
    }

        .yardex-outcomes-section-dark .yardex-outcomes-title {
            font-size: 24px !important;
            margin-bottom: 42px !important;
        }

    .yardex-outcomes-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .yardex-outcome-title {
        font-size: 16.5px !important;
    }

    .yardex-outcome-text {
        font-size: 14.5px !important;
        line-height: 1.55 !important;
    }

    .yardex-outcomes-bridge {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
}

/* --- Outcomes Dark: Small Phones (≤ 575px) --- */

@media (max-width: 575px) {

    .yardex-outcomes-section-dark {
        padding: 80px 0 !important;
    }

        .yardex-outcomes-section-dark .yardex-outcomes-title {
            font-size: 22px !important;
        }

    .yardex-outcome-text {
        font-size: 14px !important;
    }

    .yardex-outcomes-bridge {
        font-size: 15px !important;
    }
}

/* --- Outcomes Dark: Extra-Small Phones (≤ 420px) --- */

@media (max-width: 420px) {

    .yardex-outcomes-section-dark .yardex-outcomes-title {
        font-size: 20px !important;
    }

    .yardex-outcome-text {
        font-size: 13.5px !important;
        line-height: 1.55 !important;
    }

    .yardex-outcomes-bridge {
        font-size: 14.5px !important;
    }
}


/* ==================================================================
   28. HOW IT WORKS — TIME TO VALUE
   ================================================================== */

/* --- Base / Desktop --- */

.yardex-timevalue-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.yardex-timevalue-title {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
    color: #1f2933;
    margin-bottom: 64px;
}

.yardex-timevalue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 960px;
    margin: 0 auto;
}

.yardex-timevalue-item {
    text-align: center;
}

.yardex-timevalue-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2933;
    margin-bottom: 8px;
}

.yardex-timevalue-item-text {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 0;
}

.yardex-timevalue-bridge {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
    max-width: 860px;
    margin: 0 auto;
}

    .yardex-timevalue-bridge strong {
        font-weight: 600;
        color: #1f2933;
    }

/* --- Time to Value: Tablet + Phone (≤ 991px) --- */

@media (max-width: 991px) {

    .yardex-timevalue-section {
        padding: 90px 0 !important;
    }

    .yardex-timevalue-title {
        font-size: 24px !important;
        margin-bottom: 42px !important;
    }

    .yardex-timevalue-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .yardex-timevalue-item-title {
        font-size: 16.5px !important;
    }

    .yardex-timevalue-item-text {
        font-size: 14.5px !important;
        line-height: 1.55 !important;
    }

    .yardex-timevalue-bridge {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
}

/* --- Time to Value: Small Phones (≤ 575px) --- */

@media (max-width: 575px) {

    .yardex-timevalue-section {
        padding: 80px 0 !important;
    }

    .yardex-timevalue-title {
        font-size: 22px !important;
    }

    .yardex-timevalue-item-text {
        font-size: 14px !important;
    }

    .yardex-timevalue-bridge {
        font-size: 15px !important;
    }
}

/* --- Time to Value: Extra-Small Phones (≤ 420px) --- */

@media (max-width: 420px) {

    .yardex-timevalue-title {
        font-size: 20px !important;
    }

    .yardex-timevalue-item-text {
        font-size: 13.5px !important;
        line-height: 1.55 !important;
    }

    .yardex-timevalue-bridge {
        font-size: 14.5px !important;
    }
}


/* ==================================================================
   29. HOW IT WORKS — FINAL CTA
   ================================================================== */

/* --- Base / Desktop --- */

.yardex-final-cta-how {
    padding: 120px 0;
    background-color: #2f3f5f;
}

.yardex-final-cta-how-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
}

    .yardex-final-cta-how-title span {
        display: block;
        font-weight: 600;
        opacity: 0.95;
    }

.yardex-final-cta-how-support {
    max-width: 760px;
    margin: 0 auto 42px;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.yardex-final-cta-how-actions {
    margin-bottom: 22px;
}

    .yardex-final-cta-how-actions .butn.primary {
        padding: 14px 34px;
        font-size: 15px;
        font-weight: 600;
    }

.yardex-final-cta-how-subline {
    max-width: 720px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.65);
}

/* --- How Final CTA: Tablet + Phone (≤ 991px) --- */

@media (max-width: 991px) {

    .yardex-final-cta-how {
        padding: 90px 0 !important;
    }

    .yardex-final-cta-how-title {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }

    .yardex-final-cta-how-support {
        font-size: 16px !important;
        margin-bottom: 34px !important;
    }

    .yardex-final-cta-how-actions .butn.primary {
        padding: 13px 30px !important;
        font-size: 14.5px !important;
    }

    .yardex-final-cta-how-subline {
        font-size: 13.5px !important;
    }
}

/* --- How Final CTA: Small Phones (≤ 575px) --- */

@media (max-width: 575px) {

    .yardex-final-cta-how {
        padding: 80px 0 !important;
    }

    .yardex-final-cta-how-title {
        font-size: 22px !important;
    }

    .yardex-final-cta-how-support {
        font-size: 15px !important;
    }

    .yardex-final-cta-how-actions .butn.primary {
        padding: 12px 28px !important;
        font-size: 14px !important;
    }

    .yardex-final-cta-how-subline {
        font-size: 13px !important;
    }
}

/* --- How Final CTA: Extra-Small Phones (≤ 420px) --- */

@media (max-width: 420px) {

    .yardex-final-cta-how-title {
        font-size: 20px !important;
    }

    .yardex-final-cta-how-support {
        font-size: 14.5px !important;
        line-height: 1.55 !important;
    }

    .yardex-final-cta-how-subline {
        font-size: 12.5px !important;
    }
}

/* ==================================================================
   30. WALKTHROUGH PAGE (Optimized + Consolidated)
   ================================================================== */

/* --- Hero Background --- */

.walkthrough-hero-wrapper {
    position: relative;
    background: url('/img/banner/productbanner.jpg') center/cover no-repeat;
}

    .walkthrough-hero-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 0;
    }

/* --- Vertical Center + Full Height --- */

.walkthrough-hero .bg-img.cover-background {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 0 40px;
}

/* --- Container --- */

.walkthrough-container {
    position: relative;
    padding: 20px;
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
}

/* --- Card --- */

.walkthrough-card {
    position: relative;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    min-height: 800px;
}

/* Cancel (X) button */

.walkthrough-cancel-btn {
    position: absolute;
    top: 14px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 22px;
    color: #ffffff;
    cursor: pointer;
    z-index: 5;
    transition: 0.2s ease;
}

    .walkthrough-cancel-btn:hover {
        opacity: 0.7;
    }

/* --- Header --- */

.walkthrough-card-header {
    background-color: #475776;
    padding: 22px 24px 18px;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    color: #ffffff;
}

    .walkthrough-card-header .walkthrough-title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 4px;
        color: #ffffff;
    }

    .walkthrough-card-header .walkthrough-subtitle {
        font-size: 13px;
        opacity: 0.9;
        margin-bottom: 0;
    }

/* --- Body --- */

.walkthrough-card-body {
    padding: 26px 30px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* --- Inputs --- */

.form-label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}

.form-control {
    height: 38px;
    font-size: 13px;
}

.row.g-3 {
    --bs-gutter-y: 8px;
}

/* --- Selection Sections --- */

.selection-section {
    background: #f5f7fa;
    border-radius: 10px;
    padding: 14px;
}

    .selection-section h6 {
        font-size: 13px;
        margin-bottom: 10px;
        font-weight: 600;
    }

.selection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 8px;
}

    /* REMOVE 2-line clamp rule */
    .selection-grid .form-check-label {
        font-size: 13px;
        line-height: 1.4;
        overflow: visible;
        display: inline;
    }

/* Make label clickable fully */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.form-check-input {
    margin-top: 4px;
    cursor: pointer;
}

.form-check-label {
    cursor: pointer;
}

/* --- Error Banner --- */

.walkthrough-error-banner {
    background: #ffe3e3;
    color: #b00020;
    border-left: 4px solid #dc3545;
    padding: 12px 16px;
    margin-bottom: 18px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
}

/* --- Action Buttons --- */

.walkthrough-actions {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    padding-top: 30px;
}

.walkthrough-secondary-btn {
    background: transparent;
    border: 2px solid #F5A623;
    color: #F5A623;
    height: 42px;
    padding: 0 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.2s ease;
}

    .walkthrough-secondary-btn:hover {
        background: #F5A623;
        color: #ffffff;
    }

.walkthrough-primary-btn {
    background-color: #0D6EFD;
    color: #fff;
    border: none;
    height: 42px;
    padding: 0 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s ease;
}

    .walkthrough-primary-btn:hover {
        background-color: #0b5ed7;
    }

/* ==========================================
   CONFIRMATION STATE
========================================== */

.walkthrough-confirmation {
    padding: 40px 30px 50px;
}

.confirmation-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0D6EFD;
}

.confirmation-message {
    font-size: 14px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.summary-card {
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    max-width: 900px;
    margin: 30px auto;
}

.summary-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 40px;
}

    .summary-grid strong {
        font-size: 13px;
        color: #475776;
    }

    .summary-grid div div {
        font-size: 14px;
        margin-top: 4px;
    }



/* ======================================================
   RESPONSIVE (Consolidated)
====================================================== */

/* Tablet + Mobile */
@media (max-width: 991px) {

    .walkthrough-container {
        padding: 16px;
        max-width: 100%;
    }

    .walkthrough-card {
        min-height: auto;
        border-radius: 12px;
    }

    .walkthrough-card-header {
        padding: 16px;
    }

        .walkthrough-card-header .walkthrough-title {
            font-size: 16px;
            color: #ffffff;
        }

        .walkthrough-card-header .walkthrough-subtitle {
            font-size: 12px;
        }

    .walkthrough-card-body {
        padding: 18px;
    }

    .selection-grid {
        grid-template-columns: 1fr 1fr;
        column-gap: 14px;
        row-gap: 6px;
    }

    .walkthrough-actions {
        justify-content: space-between;
        gap: 12px;
    }

    .walkthrough-primary-btn,
    .walkthrough-secondary-btn {
        flex: 1;
        height: 44px;
        font-size: 14px;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Phones */
@media (max-width: 575px) {

    .walkthrough-container {
        padding: 12px;
    }

    .walkthrough-card-body {
        padding: 16px;
    }

    .selection-grid {
        grid-template-columns: 1fr;
    }

    .walkthrough-primary-btn,
    .walkthrough-secondary-btn {
        height: 42px;
        font-size: 13px;
    }

    .walkthrough-error-banner {
        font-size: 12px;
        padding: 10px 12px;
    }

    .walkthrough-stepper {
        font-size: 11px !important;
    }

    .e-stepper.e-horizontal .e-text, .e-stepper.e-horizontal .e-label, .e-stepper.e-horizontal .e-step-label-optional {
        text-overflow: ellipsis;
        overflow: visible !important;
        font-size: 11.5px !important;
    }
}


@media (max-width: 420px) {


    .e-stepper.e-horizontal .e-text, .e-stepper.e-horizontal .e-label, .e-stepper.e-horizontal .e-step-label-optional {
        text-overflow: ellipsis;
        overflow: visible !important;
        font-size: 10.5px !important;
    }
}

/* ==================================================================
   31. GLOBAL FOOTER
   ================================================================== */

/* --- Base / Desktop --- */

.yardex-footer {
    /*background-color: #4B5A76;*/
    background-color: #1E3A5F;
    flex-shrink: 0;
    margin-top: auto;
}

.yardex-footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-main {
    margin: 0;
}

.footer-col {
    padding: 0 15px;
}

.footer-title {
    margin-bottom: 12px;
    font-size: 15px;
}

.yardex-footer-text {
    font-size: 14px;
    color: #9fb3d1;
    line-height: 1.6;
}

.yardex-footer ul li a {
    color: #9fb3d1;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.8;
}

    .yardex-footer ul li a:hover {
        color: #ffffff;
    }

.footer-tagline {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 6px;
}

.footer-copy {
    font-size: 12px;
    color: #8aa2c3;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- Footer: Tablet + Phone (≤ 991px) --- */

@media (max-width: 991px) {

    .yardex-footer {
        padding: 30px 0 16px;
    }

    .footer-title {
        font-size: 12px !important;
        margin-bottom: 6px !important;
    }

    .yardex-footer-text {
        font-size: 11px !important;
        line-height: 1.4 !important;
    }

    .yardex-footer ul li a {
        font-size: 11px !important;
    }

    .yardex-footer ul li {
        margin-bottom: 2px;
    }

    .footer-tagline {
        font-size: 11px;
    }

    .footer-copy {
        font-size: 10px;
    }

    .yardex-footer-links ul {
        padding-left: 0 !important;
    }
}

/* --- Footer: Small Phones (≤ 575px) --- */

@media (max-width: 575px) {
    .yardex-footer {
        padding: 72px 0 36px !important;
    }
}

/* --- Footer: Extra-Small Phones (≤ 420px) --- */

@media (max-width: 420px) {

    .yardex-footer-wrapper {
        padding: 0 12px;
    }

    .footer-col {
        padding: 0 6px;
    }

    .footer-title {
        font-size: 11px !important;
    }

    .yardex-footer-text,
    .yardex-footer ul li a {
        font-size: 10.5px !important;
    }
}


/* ==================================================================
   32. Contact Page
   ================================================================== */


.yardex-bullet-list {
    list-style: none;
    padding-left: 0;
}

    .yardex-bullet-list li {
        margin-bottom: 12px;
        font-weight: 500;
    }

.yardex-muted-text {
    /*opacity: 0.75;*/
    font-weight: 500;
    margin-left: 10px;
    margin-right: 10px;
    color: #4b5563;
}

.yardex-hero-support-text {
    margin-top: 15px;
    opacity: 0.85;
    color: #ffffff;
}

.contact-footer {
    padding: 30px 0 16px;
    margin-top: 40px;
}


/* ==========================================
   WHO THIS IS FOR — EXECUTIVE GRID
========================================== */

.yardex-audience {
    padding: 90px 0;
    background: #ffffff;
}

.yardex-audience-head {
    max-width: 820px;
    margin: 0 auto 34px auto;
}

.yardex-audience-title {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: #0B1420;
}

.yardex-audience-subtitle {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.78;
    margin: 0;
    color: #0B1420;
}

/* grid */
.yardex-audience-grid {
    max-width: 980px;
    margin: 34px auto 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 14px;
}

/* items */
.yardex-audience-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid rgba(15,44,82,0.10);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    font-weight: 600;
    color: rgba(11,20,32,0.92);
}

.yardex-audience-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #0F2C52;
    flex: 0 0 auto;
    opacity: 0.9;
}

/* footer line */
.yardex-audience-footer {
    max-width: 820px;
    margin: 32px auto 0 auto;
    padding-top: 18px;
    border-top: 1px solid rgba(15,44,82,0.10);
    font-weight: 700;
    color: rgba(11,20,32,0.82);
}

/* responsive */
@media (max-width: 992px) {
    .yardex-audience-title {
        font-size: 36px;
    }

    .yardex-audience-grid {
        grid-template-columns: 1fr;
    }
}



/* ==========================================
   CONTACT SECTION BACKGROUND
========================================== */
.yardex-contact-section {
    /*background: linear-gradient(180deg, #0B1420 0%, #0F1C2E 100%);*/
    background: #4B5A77;
    padding: 100px 0;
}

/* ==========================================
   CONTACT CARD (WHITE)
========================================== */

.yardex-contact-card {
    background: #ffffff;
    padding: 50px 55px;
    border-radius: 18px;
    width: 100%;
    max-width: 580px; /* narrower desktop */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

    /* ==========================================
   FORM INPUTS
========================================== */

    .yardex-contact-card .form-control {
        height: 48px;
        border-radius: 8px;
        border: 1px solid #dcdcdc;
        font-size: 14px;
    }

    .yardex-contact-card textarea.form-control {
        height: auto;
    }

/* ==========================================
   SMALL EXECUTIVE SUBMIT BUTTON
========================================== */

.yardex-submit-button {
    background: #0F2C52;
    color: #ffffff;
    border: none;
    padding: 10px 28px;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.2s ease;
}

    .yardex-submit-button:hover {
        background: #123968;
    }


/* left panel */

.bs-dashboard-left {
    border-right: 1px solid #e5e7eb;
    background: #fafafa;
}

.bs-dashboard-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bs-dashboard-panel-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}


/* right main panel */

.bs-dashboard-full {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bs-dashboard-full-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}



.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 0.42rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 999px;
    border: 1px solid transparent;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.10);
    text-transform: uppercase;
}

.status-ordered,
.status-pending-approval {
    background: #fff8e1;
    color: #8d6e00;
    border-color: #ffe082;
}

.status-approved {
    background: #e8f5e9;
    color: #1b5e20;
    border-color: #a5d6a7;
}

.status-rejected {
    background: #ffebee;
    color: #b71c1c;
    border-color: #ef9a9a;
}

.status-progress,
.status-pending-delivery {
    background: #e3f2fd;
    color: #0d47a1;
    border-color: #90caf9;
}

.status-in-progress {
    background: #e8eaf6;
    color: #283593;
    border-color: #9fa8da;
}

.status-derented,
.status-off-rented {
    background: #e8f5e9;
    color: #2e7d32;
    border-color: #81c784;
}

.status-pending-pickup {
    background: #fff3e0;
    color: #e65100;
    border-color: #ffb74d;
}

.status-completed {
    background: #e0f2f1;
    color: #00695c;
    border-color: #80cbc4;
}

.status-cancelled {
    background: #eceff1;
    color: #37474f;
    border-color: #b0bec5;
}

.status-default {
    background: #f5f5f5;
    color: #424242;
    border-color: #e0e0e0;
}


.action-btn-group-vertical {
    display: flex;
    flex-direction: column;
    margin: 5px; /* negative margin to offset button padding for consistent spacing */
    gap: 6px; /* spacing between buttons */
}

    .action-btn-group-vertical .btn {
        width: 100%; /* optional – makes both buttons same width */
    }

.action-btn {
    min-width: 92px;
    height: 32px;
    border: none;
    border-radius: 6px;
    padding: 6px 10px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.btn-approve {
    background-color: #2e7d32;
}

    .btn-approve:hover {
        background-color: #1b5e20;
        color: #fff;
    }

.btn-reject {
    background-color: #c62828;
}

    .btn-reject:hover {
        background-color: #b71c1c;
        color: #fff;
    }

.btn-create-invoice {
    background-color: #1565c0;
}

    .btn-create-invoice:hover {
        background-color: #0d47a1;
        color: #fff;
    }

.column-label {
    margin: 0 0 10px 0;
    padding: 8px 12px;
    background-color: #ffffff;
    color: #0d6efd;
    border: 1px solid #dbe7ff;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* Mobile burger color override for AMAVA nav */
@media (max-width: 991px) {
    .yardex-header .navbar-toggler {
        background: transparent !important;
        border: none !important;
    }

        .yardex-header .navbar-toggler:before {
            background: #ffffff !important;
        }

        .yardex-header .navbar-toggler:after {
            border-top: 2px solid #ffffff !important;
            border-bottom: 2px solid #ffffff !important;
        }

        .yardex-header .navbar-toggler.menu-opened:before,
        .yardex-header .navbar-toggler.menu-opened:after {
            background: #ffffff !important;
        }

    /* Optional: keep icon dark when header becomes white on scroll */
    .yardex-header.scrollHeader .navbar-toggler:before,
    .yardex-header.transparent-header.scrollHeader .navbar-toggler:before {
        background: #1f2933 !important;
    }

    .yardex-header.scrollHeader .navbar-toggler:after,
    .yardex-header.transparent-header.scrollHeader .navbar-toggler:after {
        border-top-color: #1f2933 !important;
        border-bottom-color: #1f2933 !important;
    }

    .yardex-header.scrollHeader .navbar-toggler.menu-opened:before,
    .yardex-header.scrollHeader .navbar-toggler.menu-opened:after,
    .yardex-header.transparent-header.scrollHeader .navbar-toggler.menu-opened:before,
    .yardex-header.transparent-header.scrollHeader .navbar-toggler.menu-opened:after {
        background: #1f2933 !important;
    }
}

/*.sidenav-user .sidenav-user-name {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

.sidenav-company-name {
    font-size: 10px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}*/
