/* =========================================================
   GLOBAL BOX SIZING
========================================================= */

.commercial-window-section *,
.commercial-window-section *::before,
.commercial-window-section *::after,

.looking-reliable-section *,
.looking-reliable-section *::before,
.looking-reliable-section *::after,

.commercial-window-matter-section *,
.commercial-window-matter-section *::before,
.commercial-window-matter-section *::after,

.commercial-window-services-content *,
.commercial-window-services-content *::before,
.commercial-window-services-content *::after,

.commercial-services-section *,
.commercial-services-section *::before,
.commercial-services-section *::after,

.kv-why-choose-section *,
.kv-why-choose-section *::before,
.kv-why-choose-section *::after {
    box-sizing: border-box;
}


/* =========================================================
   SAFE CONTAINERS
========================================================= */

.commercial-window-section .container,
.looking-reliable-section .container,
.commercial-window-matter-section .container,
.commercial-window-services-content .container,
.commercial-services-section .container,
.kv-why-choose-section .container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   COMMERCIAL WINDOW HERO
========================================================= */

.commercial-window-section {
    width: 100%;
    padding: 70px 0;
    background: #ffffff;
    overflow: hidden;
}

.commercial-window-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    gap: 55px;
    align-items: center;
}

.commercial-window-image {
    width: 100%;
    min-width: 0;
}

.commercial-window-image img {
    display: block;
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 15px;
}

.commercial-window-content {
    width: 100%;
    min-width: 0;
}

.commercial-window-tag {
    display: inline-flex;
    align-items: center;

    padding: 9px 15px;

    background: #0071bc;
    border: 1px solid #0071bc;
    border-radius: 20px;

    color: #ffffff;
    font-size: 14px;
    line-height: 1.2;
}

.commercial-window-content h1 {
    margin: 18px 0 15px;

    color: #222222;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;

    text-align: left;
}

.commercial-window-content h2 {
    margin: 0 0 25px;

    color: #0071bc;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 600;

    text-align: left;
}

.commercial-window-content p {
    margin: 0 0 17px;

    color: #555555;
    font-size: 16px;
    line-height: 1.7;

    text-align: justify;
}


/* =========================================================
   COMMERCIAL WINDOW FEATURES
========================================================= */

.commercial-window-features {
    width: 100%;
    margin-top: 30px;
    padding: 40px 35px;

    background: #dcf0ff;
    border-radius: 12px;
}

.commercial-window-features h2 {
    margin: 0 0 20px;

    color: #222222;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;

    text-align: left;
}

.commercial-window-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 12px;
    width: 100%;
}

.commercial-window-feature {
    display: flex;
    align-items: center;

    gap: 9px;
    width: 100%;
    min-width: 0;
    min-height: 48px;

    padding: 10px 12px;

    background: #f7f9fb;
    border: 1px solid #e7ebef;
    border-radius: 6px;

    transition: all 0.25s ease;
}

.commercial-window-feature:hover {
    background: #ffffff;
    border-color: #0071bc;
    box-shadow: 0 5px 15px rgba(0, 113, 188, 0.08);
    transform: translateY(-2px);
}

.commercial-window-feature span {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 21px;
    height: 21px;
    min-width: 21px;

    flex: 0 0 21px;

    margin: 0;
    padding: 0;

    background: #0071bc;
    color: #ffffff;

    border-radius: 50%;

    font-size: 11px;
    line-height: 1;
    font-weight: 700;
}

.commercial-window-feature p {
    flex: 1 1 auto;
    min-width: 0;

    margin: 0;

    color: #333333;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
}


/* =========================================================
   BUTTONS
========================================================= */

.commercial-window-buttons {
    display: flex;
    justify-content: center;
    align-items: center;

    flex-wrap: wrap;
    gap: 15px;

    margin-top: 30px;
}

.commercial-window-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;
    padding: 0 25px;

    border-radius: 6px;

    text-decoration: none;
    font-size: 15px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.commercial-window-btn-primary {
    background: #0071bc;
    color: #ffffff;
    border: 2px solid #0071bc;
}

.commercial-window-btn-primary:hover {
    background: #005a96;
    border-color: #005a96;
    color: #ffffff;
}

.commercial-window-btn-secondary {
    background: transparent;
    color: #222222;
    border: 2px solid #222222;
}

.commercial-window-btn-secondary:hover {
    background: #222222;
    color: #ffffff;
}


/* =========================================================
   LOOKING RELIABLE
========================================================= */

/* =========================================================
   LOOKING RELIABLE SECTION
   50% CONTENT + 50% IMAGE
========================================================= */

.looking-reliable-section {
    width: 100%;
    padding: 70px 0;
    background: #ffffff;
    overflow: hidden;
}

.looking-reliable-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Equal 50 / 50 columns */
.looking-reliable-section .row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 40px;

    margin: 0;
}

/* Both columns */
.looking-reliable-section .col-12,
.looking-reliable-section .col-md-6 {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
}

/* =========================================================
   CONTENT
========================================================= */

.looking-reliable-section h2 {
    margin: 0 0 20px;

    color: #222222;
    font-size: 34px;
    line-height: 1.3;
    font-weight: 700;

    text-align: left;
}

.looking-reliable-section p {
    margin: 0;

    color: #555555;
    font-size: 16px;
    line-height: 1.7;

    text-align: justify;
}

/* =========================================================
   KEY HIGHLIGHTS
========================================================= */

.looking-reliable-section .key {
    width: 100%;
    margin-top: 25px;
}

.looking-reliable-section .key h3 {
    margin: 0 0 15px;

    color: #222222;
    font-size: 21px;
    line-height: 1.4;
    font-weight: 700;
}

.looking-reliable-section .key-insights-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px;
    width: 100%;
}

.looking-reliable-section .key-insight {
    width: 100%;
    min-width: 0;
}

.looking-reliable-section .key-insight button {
    display: flex;
    align-items: center;

    width: 100%;
    min-width: 0;
    min-height: 48px;

    padding: 10px 15px;

    color: #ffffff;
    background: #0071bc;
    border: 1px solid #0071bc;
    border-radius: 10px;

    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;

    text-align: left;
    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.looking-reliable-section .key-insight button:hover {
    background: #005f9e;
    border-color: #005f9e;
    transform: translateY(-2px);
}

/* =========================================================
   IMAGE
========================================================= */

.looking-reliable-section .looking-reliable-img {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-width: 0;
    height: 100%;
}

.looking-reliable-section .looking-reliable-img img {
    display: block;

    width: 100%;
    height: 100%;
    min-height: 500px;
    max-width: 100%;

    object-fit: cover;

    border-radius: 15px;
}



/* =========================================================
   WHY COMMERCIAL WINDOWS MATTER
========================================================= */

.commercial-window-matter-section {
    width: 100%;
    padding: 80px 0;

    background: #dcf0ff;
    overflow: hidden;
}

.commercial-window-matter-grid {
    display: grid;

    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);

    gap: 50px;
    align-items: start;
}

.commercial-window-section-tag {
    display: inline-block;

    margin-bottom: 12px;
    padding: 9px 15px;

    background: #0071bc;
    border: 1px solid #0071bc;
    border-radius: 20px;

    color: #ffffff;
}

.commercial-window-matter-content {
    min-width: 0;
}

.commercial-window-matter-content h2,
.commercial-window-services-header h2 {
    margin: 0 0 20px;

    color: #222222;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;

    text-align: left;
}

.commercial-window-matter-content p {
    margin: 0;

    color: #555555;
    font-size: 16px;
    line-height: 1.75;

    text-align: justify;
}

.commercial-window-benefits {
    min-width: 0;

    padding: 30px;

    background: #ffffff;
    border-radius: 15px;
}

.commercial-window-benefits h3 {
    margin: 0 0 22px;

    color: #222222;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}

.commercial-window-benefit-list {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px;
}

.commercial-window-benefit {
    display: flex;
    align-items: flex-start;

    gap: 10px;
    min-width: 0;

    padding: 12px;

    background: #f7f9fb;
    border-radius: 8px;
}

.commercial-window-benefit span {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 21px;
    height: 21px;
    min-width: 21px;

    flex: 0 0 21px;

    background: #0071bc;
    color: #ffffff;

    border-radius: 50%;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.commercial-window-benefit p {
    min-width: 0;
    margin: 0;

    color: #444444;
    font-size: 13px;
    line-height: 1.5;
}

.commercial-window-matter-note {
    margin-top: 35px;
    padding: 25px 30px;

    background: #f5f8fa;

    border-left: 4px solid #0071bc;
    border-radius: 8px;
}

.commercial-window-matter-note p {
    margin: 0;

    color: #444444;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   COMMERCIAL WINDOW SERVICES INTRO
========================================================= */

.commercial-window-services-content {
    width: 100%;
    padding: 80px 0;

    background: #f5f9fc;
    overflow: hidden;
}

.commercial-window-services-header {
    max-width: 950px;
    margin: 0 auto;

    text-align: center;
}

.commercial-window-services-header p {
    margin: 0;

    color: #555555;
    font-size: 16px;
    line-height: 1.75;

    text-align: justify;
}

.commercial-window-service-intro {
    display: flex;
    align-items: flex-start;

    gap: 18px;

    max-width: 1000px;
    margin: 35px auto 0;

    padding: 25px 30px;

    background: #ffffff;
    border-radius: 12px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.commercial-window-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;
    min-width: 42px;

    background: #0071bc;
    color: #ffffff;

    border-radius: 50%;

    font-size: 18px;
}

.commercial-window-service-intro p {
    min-width: 0;
    margin: 0;

    color: #444444;
    font-size: 15px;
    line-height: 1.7;
}

.commercial-window-service-bottom {
    max-width: 900px;
    margin: 25px auto 0;

    text-align: center;
}

.commercial-window-service-bottom p {
    margin: 0;

    color: #555555;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   COMMERCIAL SERVICES
========================================================= */

.commercial-services-section {
    width: 100%;
    padding: 80px 0;

    background: #dcf0ff;
    overflow: hidden;
}

.commercial-services-section .container {
    padding-left: 20px;
    padding-right: 20px;
}

.commercial-services-heading {
    width: 100%;
    max-width: 950px;

    margin: 0 auto 50px;

    text-align: center;
}

.commercial-services-tag {
    display: inline-block;

    margin-bottom: 12px;
    padding: 9px 15px;

    background: #0071bc;
    color: #ffffff;

    border-radius: 30px;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.commercial-services-heading h2 {
    margin: 0 0 20px;

    color: #172b3a;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;

    text-align: left;
}

.commercial-services-heading p {
    margin: 0 0 15px;

    color: #555555;
    font-size: 16px;
    line-height: 1.8;

    text-align: justify;
}

.commercial-services-heading p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.commercial-service-card {
    width: 100%;
    min-width: 0;

    display: flex;
    align-items: flex-start;

    gap: 30px;

    margin-bottom: 30px;
    padding: 35px;

    background: #ffffff;

    border: 1px solid #e3edf5;
    border-radius: 18px;

    box-shadow: 0 8px 30px rgba(0, 76, 120, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.commercial-service-card:last-child {
    margin-bottom: 0;
}

.commercial-service-card:hover {
    transform: translateY(-4px);

    border-color: #b9dcf3;

    box-shadow: 0 15px 40px rgba(0, 113, 188, 0.10);
}


/* =========================================================
   SERVICE ICON
========================================================= */

.commercial-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 65px;
    height: 65px;
    min-width: 65px;

    flex: 0 0 65px;

    background: #0071bc;
    color: #ffffff;

    border-radius: 50%;

    font-size: 25px;

    box-shadow: 0 8px 18px rgba(0, 113, 188, 0.18);
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.commercial-service-content {
    flex: 1 1 auto;
    min-width: 0;
}

.commercial-service-content h3 {
    margin: 0 0 15px;

    color: #172b3a;

    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;

    overflow-wrap: anywhere;
}

.commercial-service-content p {
    margin: 0 0 16px;

    color: #494848;

    font-size: 16px;
    line-height: 1.75;

    text-align: justify;

    overflow-wrap: anywhere;
}

.commercial-service-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   SERVICE LIST
========================================================= */

.service-list {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 10px 18px;

    margin: 18px 0 20px;
}

.service-list span {
    position: relative;

    min-width: 0;

    padding: 10px 12px 10px 34px;

    background: #f7fbfe;
    border: 1px solid #e4f0f7;
    border-radius: 7px;

    color: #333333;

    font-size: 14px;
    line-height: 1.4;

    overflow-wrap: anywhere;
}

.service-list span::before {
    content: "✓";

    position: absolute;

    left: 10px;
    top: 50%;

    width: 16px;
    height: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    background: #0071bc;
    color: #ffffff;

    border-radius: 50%;

    font-size: 9px;
    font-weight: 700;
}


/* =========================================================
   IDEAL / BENEFITS
========================================================= */

.ideal-box,
.benefits-box {
    width: 100%;

    margin-top: 25px;
    padding: 20px;

    background: #eef8ff;

    border-left: 4px solid #0071bc;
    border-radius: 8px;
}

.ideal-box strong,
.benefits-box strong {
    display: block;

    margin-bottom: 10px;

    color: #172b3a;
    font-size: 17px;
}

.ideal-box .service-list,
.benefits-box .service-list {
    margin-bottom: 0;
}


/* =========================================================
   INTERNAL / EXTERNAL
========================================================= */

.internal-external-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 25px;

    margin: 25px 0;
}

.cleaning-side {
    min-width: 0;

    padding: 25px;

    background: #f7fbfe;

    border: 1px solid #e2edf4;
    border-radius: 12px;
}

.cleaning-side h4 {
    margin: 0 0 12px;

    color: #0071bc;

    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
}

.cleaning-side .service-list {
    grid-template-columns: 1fr;
    margin-bottom: 0;
}


/* =========================================================
   WHY CHOOSE
========================================================= */

.kv-why-choose-section {
    width: 100%;
    padding: 80px 0;

    background: #ffffff;

    overflow: hidden;
}

.kv-why-choose-wrapper {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.85fr);

    gap: 55px;

    align-items: center;
}

.kv-why-choose-content {
    width: 100%;
    min-width: 0;
}

.kv-why-choose-tag {
    display: inline-flex;
    align-items: center;

    padding: 9px 16px;

    margin-bottom: 18px;

    background: #0071bc;
    color: #ffffff;

    border: 1px solid #0071bc;
    border-radius: 30px;

    font-size: 14px;
    font-weight: 700;
}

.kv-why-choose-content h2 {
    margin: 0 0 20px;

    color: #172b3a;

    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;

    text-align: left;
}

.kv-why-choose-intro {
    margin: 0 0 25px;

    color: #555555;

    font-size: 16px;
    line-height: 1.75;

    text-align: justify;
}

.kv-why-choose-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px;

    margin-bottom: 25px;
}

.kv-why-choose-item {
    width: 100%;
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 12px 14px;

    background: #0071bc;
    border: 1px solid #0071bc;
    border-radius: 8px;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}

.kv-why-choose-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;
    min-width: 22px;

    flex: 0 0 22px;

    background: #005f9e;
    color: #ffffff;

    border-radius: 50%;

    font-size: 11px;
    font-weight: 700;
}

.kv-why-choose-bottom-text {
    margin: 0;
    padding: 18px 20px;

    background: #eef8ff;

    border-left: 4px solid #0071bc;
    border-radius: 7px;

    color: #444444;

    font-size: 15px;
    line-height: 1.7;

    text-align: justify;
}

.kv-why-choose-image {
    width: 100%;
    min-width: 0;
}

.kv-why-choose-image img {
    display: block;

    width: 100%;
    height: 560px;

    object-fit: cover;

    border-radius: 18px;
}


/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .commercial-window-section,
    .looking-reliable-section,
    .commercial-window-matter-section,
    .commercial-window-services-content,
    .commercial-services-section,
    .kv-why-choose-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .commercial-window-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .commercial-window-image {
        order: 1;
    }

    .commercial-window-content {
        order: 2;
    }

    .commercial-window-image img {
        height: 500px;
    }

    .commercial-window-content h1 {
        font-size: 38px;
    }

    .commercial-window-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .looking-reliable-section h2 {
        font-size: 30px;
    }

    .commercial-window-matter-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .commercial-window-matter-content h2,
    .commercial-window-services-header h2 {
        font-size: 32px;
    }

    .commercial-service-card {
        gap: 24px;
        padding: 28px;
    }

    .commercial-service-content h3 {
        font-size: 27px;
    }

    .kv-why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .kv-why-choose-content h2 {
        font-size: 32px;
    }

    .kv-why-choose-image img {
        height: 480px;
    }
}


/* =========================================================
   MOBILE
   0px - 767px
========================================================= */

@media (max-width: 767px) {

    .commercial-window-section,
    .looking-reliable-section,
    .commercial-window-matter-section,
    .commercial-window-services-content,
    .commercial-services-section,
    .kv-why-choose-section {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    /* -----------------------------------------
       HERO
    ----------------------------------------- */

    .commercial-window-container {
        display: flex;
        flex-direction: column;

        gap: 30px;

        padding-left: 15px;
        padding-right: 15px;
    }

    .commercial-window-image {
        order: 1;
    }

    .commercial-window-content {
        order: 2;
    }

    .commercial-window-image img {
        width: 100%;
        height: 350px;

        border-radius: 10px;
    }

    .commercial-window-content h1 {
        margin-top: 15px;

        font-size: 30px;
        line-height: 1.2;

        text-align: left;
    }

    .commercial-window-content h2 {
        font-size: 18px;
        line-height: 1.45;

        text-align: left;
    }

    .commercial-window-content p {
        font-size: 15px;
        line-height: 1.65;

        text-align: left;
    }

    /* -----------------------------------------
       FEATURES
    ----------------------------------------- */

    .commercial-window-features {
        margin-top: 25px;
        padding: 25px 18px;
    }

    .commercial-window-features h2 {
        font-size: 20px;
    }

    .commercial-window-feature-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .commercial-window-feature p {
        font-size: 14px;
    }

    /* -----------------------------------------
       BUTTONS
    ----------------------------------------- */

    .commercial-window-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .commercial-window-btn {
        width: 100%;
    }

    /* -----------------------------------------
       RELIABLE
    ----------------------------------------- */

    .looking-reliable-section .row {
        display: flex;
        flex-direction: column;
    }

    .looking-reliable-section .col-12 {
        width: 100%;
    }

    .looking-reliable-section h2 {
        font-size: 27px;
        line-height: 1.3;

        text-align: left;
    }

    .looking-reliable-section p {
        font-size: 15px;
        line-height: 1.7;

        text-align: left;
    }

    .looking-reliable-section .key-insights-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .looking-reliable-section .looking-reliable-img {
        width: 100%;
        margin-top: 30px;
    }

    .looking-reliable-section .looking-reliable-img img {
        width: 100%;
        height: auto;
        max-height: none;
    }

    /* -----------------------------------------
       MATTER
    ----------------------------------------- */

    .commercial-window-matter-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .commercial-window-matter-content h2,
    .commercial-window-services-header h2 {
        font-size: 28px;
        line-height: 1.3;

        text-align: left;
    }

    .commercial-window-matter-content p,
    .commercial-window-services-header p {
        font-size: 15px;
        line-height: 1.7;

        text-align: left;
    }

    .commercial-window-benefits {
        padding: 20px 15px;
    }

    .commercial-window-benefit-list {
        grid-template-columns: 1fr;
    }

    .commercial-window-matter-note {
        padding: 20px;
    }

    /* -----------------------------------------
       SERVICE INTRO
    ----------------------------------------- */

    .commercial-window-service-intro {
        flex-direction: column;

        gap: 15px;

        padding: 20px;
    }

    /* -----------------------------------------
       COMMERCIAL SERVICES
    ----------------------------------------- */

    .commercial-services-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .commercial-services-heading {
        margin-bottom: 30px;
    }

    .commercial-services-tag {
        font-size: 13px;
        padding: 8px 13px;
    }

    .commercial-services-heading h2 {
        margin-bottom: 16px;

        font-size: 26px;
        line-height: 1.3;

        text-align: left;
    }

    .commercial-services-heading p {
        font-size: 15px;
        line-height: 1.7;

        text-align: left;
    }

    /* -----------------------------------------
       SERVICE CARD
    ----------------------------------------- */

    .commercial-service-card {
        display: flex;
        flex-direction: column;

        gap: 18px;

        margin-bottom: 20px;
        padding: 22px;

        border-radius: 14px;
    }

    .commercial-service-card:hover {
        transform: none;
    }

    .commercial-service-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;

        flex: 0 0 55px;

        font-size: 21px;
    }

    .commercial-service-content h3 {
        margin-bottom: 13px;

        font-size: 23px;
        line-height: 1.3;
    }

    .commercial-service-content p {
        font-size: 15px;
        line-height: 1.7;

        text-align: left;
    }

    /* -----------------------------------------
       SERVICE LIST
    ----------------------------------------- */

    .service-list {
        grid-template-columns: 1fr;

        gap: 8px;

        margin: 15px 0 18px;
    }

    .service-list span {
        width: 100%;

        padding: 9px 10px 9px 32px;

        font-size: 14px;
    }

    /* -----------------------------------------
       BOXES
    ----------------------------------------- */

    .ideal-box,
    .benefits-box {
        margin-top: 20px;
        padding: 16px;
    }

    /* -----------------------------------------
       INTERNAL / EXTERNAL
    ----------------------------------------- */

    .internal-external-grid {
        grid-template-columns: 1fr;

        gap: 15px;

        margin: 20px 0;
    }

    .cleaning-side {
        padding: 18px;
    }

    .cleaning-side h4 {
        font-size: 18px;
    }

    /* -----------------------------------------
       WHY CHOOSE
    ----------------------------------------- */

    .kv-why-choose-wrapper {
        display: flex;
        flex-direction: column;

        gap: 30px;
    }

    .kv-why-choose-content {
        order: 1;
    }

    .kv-why-choose-content h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .kv-why-choose-intro {
        font-size: 15px;
        line-height: 1.7;
    }

    .kv-why-choose-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .kv-why-choose-item {
        min-height: 48px;
        padding: 11px 13px;
        font-size: 14px;
    }

    .kv-why-choose-bottom-text {
        margin-top: 22px;

        padding: 16px;

        font-size: 14px;
        line-height: 1.7;
    }

    .kv-why-choose-image {
        order: 2;
        width: 100%;
    }

    .kv-why-choose-image img {
        width: 100%;
        height: 360px;

        border-radius: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
   0px - 480px
========================================================= */

@media (max-width: 480px) {

    .commercial-window-section,
    .looking-reliable-section,
    .commercial-window-matter-section,
    .commercial-window-services-content,
    .commercial-services-section,
    .kv-why-choose-section {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .commercial-window-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .commercial-window-image img {
        height: 300px;
    }

    .commercial-window-content h1 {
        font-size: 27px;
    }

    .commercial-window-content h2 {
        font-size: 17px;
    }

    .commercial-window-content p {
        font-size: 14px;
    }

    .commercial-window-features {
        padding: 20px 14px;
    }

    .commercial-window-feature p {
        font-size: 13px;
    }

    .looking-reliable-section h2 {
        font-size: 24px;
    }

    .looking-reliable-section p {
        font-size: 14px;
    }

    .commercial-window-matter-content h2,
    .commercial-window-services-header h2 {
        font-size: 24px;
    }

    .commercial-window-benefits {
        padding: 18px 12px;
    }

    .commercial-services-section .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .commercial-services-heading h2 {
        font-size: 23px;
    }

    .commercial-services-heading p {
        font-size: 14px;
        line-height: 1.65;
    }

    .commercial-service-card {
        padding: 18px;
        margin-bottom: 16px;
    }

    .commercial-service-content h3 {
        font-size: 21px;
    }

    .commercial-service-content p {
        font-size: 14px;
        line-height: 1.65;
    }

    .service-list span {
        font-size: 13px;
    }

    .ideal-box,
    .benefits-box {
        padding: 14px;
    }

    .kv-why-choose-content h2 {
        font-size: 24px;
    }

    .kv-why-choose-intro {
        font-size: 14px;
    }

    .kv-why-choose-item {
        min-height: 46px;

        padding: 10px 11px;

        font-size: 13px;
    }

    .kv-why-choose-bottom-text {
        font-size: 13px;
        padding: 14px;
    }

    .kv-why-choose-image img {
        height: 300px;
    }
}

/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .looking-reliable-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .looking-reliable-section .row {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 30px;
    }

    .looking-reliable-section h2 {
        font-size: 30px;
    }

    .looking-reliable-section p {
        font-size: 15px;
    }

    .looking-reliable-section .key-insights-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .looking-reliable-section .looking-reliable-img img {
        min-height: 500px;
    }
}


/* =========================================================
   MOBILE
   0px - 767px
========================================================= */

@media (max-width: 767px) {

    .looking-reliable-section {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    /*
       Change from 50/50 to stacked layout
    */
    .looking-reliable-section .row {
        display: flex;
        flex-direction: column;

        gap: 30px;

        margin: 0;
    }

    .looking-reliable-section .col-12,
    .looking-reliable-section .col-md-6 {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    /* Content first */
    .looking-reliable-section .col-12:first-child {
        order: 1;
    }

    /* Image second */
    .looking-reliable-section .looking-reliable-img {
        order: 2;

        width: 100%;
        height: auto;
        margin-top: 0;
    }

    .looking-reliable-section h2 {
        font-size: 27px;
        line-height: 1.3;
        text-align: left;
    }

    .looking-reliable-section p {
        font-size: 15px;
        line-height: 1.7;
        text-align: left;
    }

    .looking-reliable-section .key-insights-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .looking-reliable-section .looking-reliable-img img {
        width: 100%;
        height: 350px;
        min-height: 0;

        object-fit: cover;
        border-radius: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
   0px - 480px
========================================================= */

@media (max-width: 480px) {

    .looking-reliable-section {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .looking-reliable-section h2 {
        font-size: 24px;
    }

    .looking-reliable-section p {
        font-size: 14px;
    }

    .looking-reliable-section .key {
        margin-top: 20px;
    }

    .looking-reliable-section .key h3 {
        font-size: 19px;
    }

    .looking-reliable-section .key-insights-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .looking-reliable-section .key-insight button {
        min-height: 46px;
        padding: 9px 12px;

        font-size: 13px;
    }

    .looking-reliable-section .looking-reliable-img img {
        height: 300px;
        border-radius: 8px;
    }
}


/* =========================================
   COMMERCIAL WINDOWS SECTION
========================================= */

.commercial-windows-section {
    width: 100%;
    padding: 80px 20px;
    background:#dcf0ff;
}

.commercial-windows-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* =========================================
   INTRODUCTION
========================================= */

.commercial-windows-intro {
    grid-column: 1 / -1;
    max-width: 900px;
    margin: 0 auto 35px;
    text-align: center;
}

.commercial-windows-intro h2 {
    margin: 0 0 25px;
    color: #111;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    text-align: justify;
}

.commercial-windows-intro p {
    margin: 0 0 16px;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

.commercial-windows-intro strong {
    color: #111;
}


/* =========================================
   CARDS
========================================= */

.commercial-window-card {
    padding: 30px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;

    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.commercial-window-card:hover {
    transform: translateY(-5px);
    border-color: #0071bc;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}


/* =========================================
   HEADINGS
========================================= */

.commercial-window-card h3 {
    margin: 0 0 18px;
    color: #111;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.commercial-window-card h4 {
    margin: 22px 0 12px;
    color: #222;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
}


/* =========================================
   PARAGRAPHS
========================================= */

.commercial-window-card p {
    margin: 0 0 18px;
    color: #5c5c5c;
    font-size: 15px;
    line-height: 1.75;
    text-align: justify;
}

.commercial-window-card p:last-child {
    margin-bottom: 0;
}


/* =========================================
   LIST
========================================= */

.commercial-window-card ul {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.commercial-window-card li {
    position: relative;

    margin: 0 0 9px;
    padding-left: 20px;

    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.commercial-window-card li:last-child {
    margin-bottom: 0;
}

.commercial-window-card li::before {
    content: "";

    position: absolute;
    top: 9px;
    left: 0;

    width: 7px;
    height: 7px;

    background: #0071bc;
    border-radius: 50%;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .commercial-windows-section {
        padding: 65px 20px;
    }

    .commercial-windows-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .commercial-windows-intro {
        margin-bottom: 25px;
    }

    .commercial-windows-intro h2 {
        font-size: 36px;
    }

    .commercial-window-card {
        padding: 26px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .commercial-windows-section {
        padding: 50px 15px;
    }

    .commercial-windows-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .commercial-windows-intro {
        margin-bottom: 20px;
    }

    .commercial-windows-intro h2 {
        font-size: 30px;
        line-height: 1.25;
    }

    .commercial-windows-intro p {
        font-size: 15px;
        line-height: 1.7;
    }

    .commercial-window-card {
        padding: 24px 20px;
        border-radius: 10px;
    }

    .commercial-window-card h3 {
        font-size: 21px;
    }

    .commercial-window-card h4 {
        font-size: 14px;
    }

    .commercial-window-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .commercial-window-card li {
        font-size: 14px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .commercial-windows-section {
        padding: 40px 12px;
    }

    .commercial-windows-intro h2 {
        font-size: 27px;
    }

    .commercial-window-card {
        padding: 22px 18px;
    }

    .commercial-window-card h3 {
        font-size: 20px;
    }

}

/* =========================================
   SPECIALISED COMMERCIAL GLASS
========================================= */

.specialised-glass {
    width: 100%;
    padding: 80px 20px;
    background:white;
}

.specialised-glass .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   SECTION HEADER
========================================= */

.specialised-glass .section-header {
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: center;
}

.specialised-glass .section-header h2 {
    margin: 0 0 20px;
    color: #111111;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.specialised-glass .section-header p {
    margin: 0;
    color: #555555;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   GLASS TYPES GRID
========================================= */

.specialised-glass .glass-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


/* =========================================
   GLASS TYPE CARD
========================================= */

.specialised-glass .glass-type {
    display: flex;
    align-items: center;
    gap: 15px;

    min-height: 90px;
    padding: 20px;

    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.specialised-glass .glass-type:hover {
    transform: translateY(-4px);
    border-color:#0071bc;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}


/* =========================================
   NUMBER
========================================= */

.specialised-glass .glass-icon {
    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background:#0071bc;
    color: #ffffff;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}


/* =========================================
   GLASS TITLE
========================================= */

.specialised-glass .glass-type h3 {
    margin: 0;

    color: #222222;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
}


/* =========================================
   FOOTER
========================================= */

.specialised-glass .section-footer {
    max-width: 950px;
    margin: 40px auto 0;
    padding: 24px 30px;

    background: #ffffff;
    border-left: 4px solid #0071bc;
    border-radius: 8px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.specialised-glass .section-footer p {
    margin: 0;

    color: #555555;
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1100px) {

    .specialised-glass .glass-types {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

    .specialised-glass {
        padding: 65px 20px;
    }

    .specialised-glass .section-header h2 {
        font-size: 36px;
    }

    .specialised-glass .glass-types {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .specialised-glass .glass-type {
        min-height: 85px;
        padding: 18px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .specialised-glass {
        padding: 50px 15px;
    }

    .specialised-glass .section-header {
        margin-bottom: 30px;
    }

    .specialised-glass .section-header h2 {
        margin-bottom: 16px;
        font-size: 30px;
    }

    .specialised-glass .section-header p {
        font-size: 15px;
        line-height: 1.7;
    }

    .specialised-glass .glass-types {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .specialised-glass .glass-type {
        min-height: 72px;
        padding: 16px;
    }

    .specialised-glass .glass-icon {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
        font-size: 10px;
    }

    .specialised-glass .glass-type h3 {
        font-size: 15px;
    }

    .specialised-glass .section-footer {
        margin-top: 30px;
        padding: 20px;
    }

    .specialised-glass .section-footer p {
        font-size: 14px;
        line-height: 1.7;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .specialised-glass {
        padding: 40px 12px;
    }

    .specialised-glass .section-header h2 {
        font-size: 27px;
    }

    .specialised-glass .glass-type {
        padding: 14px;
    }

    .specialised-glass .glass-type h3 {
        font-size: 14px;
    }

}



/* =========================================
   ADVANCED WINDOW CLEANING METHODS
========================================= */

.advanced-window-methods {
    width: 100%;
    padding: 80px 20px;
    background:#dcf0ff;
}

.advanced-window-methods .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   SECTION HEADER
========================================= */

.advanced-window-methods .section-header {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.advanced-window-methods .section-header h2 {
    margin: 0 0 20px;
    color: #111111;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    text-align: justify;
}

.advanced-window-methods .section-header p {
    margin: 0;
    color: #555555;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}


/* =========================================
   METHODS GRID
========================================= */

.advanced-window-methods .cleaning-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}


/* =========================================
   METHOD CARD
========================================= */

.advanced-window-methods .cleaning-method {
    position: relative;

    padding: 32px;

    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;

    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Gold accent */

.advanced-window-methods .cleaning-method::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background:#0071bc;
}


.advanced-window-methods .cleaning-method:hover {
    transform: translateY(-5px);

    border-color:#0071bc;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}


/* =========================================
   METHOD TITLE
========================================= */

.advanced-window-methods .method-title {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 20px;
}


/* =========================================
   METHOD NUMBER
========================================= */

.advanced-window-methods .method-title span {
    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    background:#0071bc;
    color: #ffffff;

    border-radius: 50%;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}


/* =========================================
   METHOD HEADING
========================================= */

.advanced-window-methods .method-title h3 {
    margin: 0;

    color: #111111;
    font-size: 23px;
    line-height: 1.3;
    font-weight: 700;
}


/* =========================================
   PARAGRAPHS
========================================= */

.advanced-window-methods .cleaning-method p {
    margin: 0 0 18px;
    text-align: justify;
    color: #5a5a5a;
    font-size: 15px;
    line-height: 1.75;
}

.advanced-window-methods .cleaning-method p:last-child {
    margin-bottom: 0;
}


/* =========================================
   LIST SECTION
========================================= */

.advanced-window-methods .method-list {
    margin-top: 22px;
}

.advanced-window-methods .method-list h4 {
    margin: 0 0 13px;

    color: #222222;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
}


/* =========================================
   LIST
========================================= */

.advanced-window-methods .method-list ul {
    margin: 0 0 20px;
    padding: 0;

    list-style: none;
}

.advanced-window-methods .method-list li {
    position: relative;

    margin: 0 0 9px;
    padding-left: 21px;

    color: #555555;
    font-size: 14px;
    line-height: 1.6;
}

.advanced-window-methods .method-list li:last-child {
    margin-bottom: 0;
}


/* Gold bullet */

.advanced-window-methods .method-list li::before {
    content: "";

    position: absolute;
    top: 9px;
    left: 0;

    width: 7px;
    height: 7px;

    background:#0071bc;
    border-radius: 50%;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .advanced-window-methods {
        padding: 65px 20px;
    }

    .advanced-window-methods .section-header {
        margin-bottom: 40px;
    }

    .advanced-window-methods .section-header h2 {
        font-size: 36px;
    }

    .advanced-window-methods .cleaning-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .advanced-window-methods {
        padding: 50px 15px;
    }

    .advanced-window-methods .section-header {
        margin-bottom: 30px;
    }

    .advanced-window-methods .section-header h2 {
        margin-bottom: 16px;

        font-size: 30px;
        line-height: 1.25;
    }

    .advanced-window-methods .section-header p {
        font-size: 15px;
        line-height: 1.7;
    }

    .advanced-window-methods .cleaning-method {
        padding: 25px 22px;
        border-radius: 10px;
    }

    .advanced-window-methods .method-title {
        align-items: flex-start;
        gap: 12px;
    }

    .advanced-window-methods .method-title span {
        flex: 0 0 36px;

        width: 36px;
        height: 36px;

        font-size: 10px;
    }

    .advanced-window-methods .method-title h3 {
        font-size: 20px;
        line-height: 1.35;
    }

    .advanced-window-methods .cleaning-method p {
        font-size: 14px;
        line-height: 1.7;
    }

    .advanced-window-methods .method-list h4 {
        font-size: 14px;
    }

    .advanced-window-methods .method-list li {
        font-size: 14px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .advanced-window-methods {
        padding: 40px 12px;
    }

    .advanced-window-methods .section-header h2 {
        font-size: 27px;
    }

    .advanced-window-methods .cleaning-method {
        padding: 22px 18px;
    }

    .advanced-window-methods .method-title h3 {
        font-size: 19px;
    }

}

/* =========================================
   ECO-FRIENDLY CLEANING SOLUTIONS
========================================= */

.eco-friendly-cleaning {
    width: 100%;
    padding: 80px 20px;
    background:white;
}

.eco-friendly-cleaning .container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================
   MAIN CONTENT
========================================= */

.eco-friendly-cleaning .eco-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;

    padding: 50px;

    background:#f5fbff;

    border: 1px solid #c2e7ff;
    border-radius: 16px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}


/* =========================================
   LEFT CONTENT
========================================= */

.eco-friendly-cleaning .eco-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-right: 20px;
}

.eco-friendly-cleaning .eco-text h2 {
    position: relative;

    margin: 0 0 24px;

    padding-left: 18px;

    color: #111111;

    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
}

.eco-friendly-cleaning .eco-text h2::before {
    content: "";

    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;

    width: 4px;

    background:#0071bc;

    border-radius: 4px;
}

.eco-friendly-cleaning .eco-text p {
    margin: 0;

    color: #555555;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   BENEFITS
========================================= */

.eco-friendly-cleaning .eco-benefits {
    padding: 30px;

    background:#cbe5f6;

    border: 1px solid #b9dcf3;
    border-radius: 12px;
}

.eco-friendly-cleaning .eco-benefits h3 {
    margin: 0 0 22px;

    color: #222222;

    font-size: 19px;
    line-height: 1.4;
    font-weight: 700;
}


/* =========================================
   BENEFITS LIST
========================================= */

.eco-friendly-cleaning .eco-benefits ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.eco-friendly-cleaning .eco-benefits li {
    position: relative;

    margin: 0 0 16px;
    padding-left: 32px;

    color: #555555;

    font-size: 15px;
    line-height: 1.6;
}

.eco-friendly-cleaning .eco-benefits li:last-child {
    margin-bottom: 0;
}


/* Green check */

.eco-friendly-cleaning .eco-benefits li::before {
    content: "✓";

    position: absolute;
    top: 0;
    left: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    background:#0071bc;
    color: #ffffff;

    border-radius: 50%;

    font-size: 12px;
    font-weight: 700;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .eco-friendly-cleaning {
        padding: 65px 20px;
    }

    .eco-friendly-cleaning .eco-content {
        grid-template-columns: 1fr;
        gap: 35px;

        padding: 40px;
    }

    .eco-friendly-cleaning .eco-text {
        padding-right: 0;
    }

    .eco-friendly-cleaning .eco-text h2 {
        font-size: 36px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .eco-friendly-cleaning {
        padding: 50px 15px;
    }

    .eco-friendly-cleaning .eco-content {
        gap: 25px;

        padding: 28px 20px;

        border-radius: 12px;
    }

    .eco-friendly-cleaning .eco-text h2 {
        margin-bottom: 18px;

        padding-left: 14px;

        font-size: 30px;
    }

    .eco-friendly-cleaning .eco-text p {
        font-size: 15px;
        line-height: 1.7;
    }

    .eco-friendly-cleaning .eco-benefits {
        padding: 22px 20px;
    }

    .eco-friendly-cleaning .eco-benefits h3 {
        margin-bottom: 18px;

        font-size: 17px;
    }

    .eco-friendly-cleaning .eco-benefits li {
        margin-bottom: 13px;
        padding-left: 30px;

        font-size: 14px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .eco-friendly-cleaning {
        padding: 40px 12px;
    }

    .eco-friendly-cleaning .eco-content {
        padding: 24px 16px;
    }

    .eco-friendly-cleaning .eco-text h2 {
        font-size: 27px;
    }

    .eco-friendly-cleaning .eco-benefits {
        padding: 20px 16px;
    }

}


/* =========================================
   WHY OUR CLEANING METHODS DELIVER
   BETTER RESULTS
========================================= */

.better-results-section {
    width: 100%;
    padding: 80px 20px;
    background:#dcf0ff;
}

.better-results-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   SECTION HEADER
========================================= */

.better-results-section .section-header {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.better-results-section .section-header h2 {
    margin: 0 0 20px;
    color: #111111;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    text-align: justify;
}

.better-results-section .section-header p {
    margin: 0;
    color: #555555;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}


/* =========================================
   RESULTS GRID
========================================= */

.better-results-section .results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}


/* =========================================
   RESULT ITEM
========================================= */

.better-results-section .result-item {
    display: flex;
    align-items: center;
    gap: 18px;

    min-height: 90px;
    padding: 20px 24px;

    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================
   HOVER
========================================= */

.better-results-section .result-item:hover {
    transform: translateY(-4px);

    border-color:#0071bc;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}


/* =========================================
   NUMBER
========================================= */

.better-results-section .result-number {
    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    background:#0071bc;
    color: #ffffff;

    border-radius: 50%;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}


/* =========================================
   RESULT TITLE
========================================= */

.better-results-section .result-item h3 {
    margin: 0;

    color: #222222;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 600;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .better-results-section {
        padding: 65px 20px;
    }

    .better-results-section .section-header {
        margin-bottom: 40px;
    }

    .better-results-section .section-header h2 {
        font-size: 36px;
    }

    .better-results-section .results-grid {
        gap: 15px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .better-results-section {
        padding: 50px 15px;
    }

    .better-results-section .section-header {
        margin-bottom: 30px;
    }

    .better-results-section .section-header h2 {
        margin-bottom: 16px;
        font-size: 30px;
        line-height: 1.25;
    }

    .better-results-section .section-header p {
        font-size: 15px;
        line-height: 1.7;
    }

    .better-results-section .results-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .better-results-section .result-item {
        min-height: 72px;
        padding: 16px 18px;
        gap: 14px;
    }

    .better-results-section .result-number {
        flex-basis: 36px;

        width: 36px;
        height: 36px;

        font-size: 10px;
    }

    .better-results-section .result-item h3 {
        font-size: 15px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .better-results-section {
        padding: 40px 12px;
    }

    .better-results-section .section-header h2 {
        font-size: 27px;
    }

    .better-results-section .result-item {
        padding: 14px;
    }

    .better-results-section .result-item h3 {
        font-size: 14px;
    }

}


/* =========================================
   COMMERCIAL PROCESS - TIMELINE DESIGN
========================================= */

.commercial-process {
    width: 100%;
    padding: 100px 20px;
    background:white;
}

.commercial-process .process-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.commercial-process .process-heading {
    max-width: 900px;
    margin: 0 auto 75px;
    text-align: center;
}

.commercial-process .process-label {
    display: inline-block;
    margin-bottom: 15px;
    color:white;
    border: 1px solid #0071bc;
    border-radius: 15px;
    padding: 10px 15px;
    background-color: #0071bc;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.commercial-process .process-heading h2 {
    margin: 0 0 22px;
    text-align: justify;
    color: #111;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
}

.commercial-process .process-heading p {
    margin: 0 0 16px;
    text-align: justify;
    color: #5b5b5b;
    font-size: 16px;
    line-height: 1.8;
}

.commercial-process .process-heading p:last-child {
    margin-bottom: 0;
}


/* =========================================
   TIMELINE
========================================= */

.commercial-process .process-timeline {
    position: relative;

    display: flex;
    flex-direction: column;

    gap: 35px;
}


/* Central timeline */

.commercial-process .process-timeline::before {
    content: "";

    position: absolute;

    top: 40px;
    bottom: 40px;
    left: 50%;

    width: 2px;

    background: linear-gradient(
        to bottom,
        #0071bc,
        #dedede,
        #0071bc
    );

    transform: translateX(-50%);
}


/* =========================================
   PROCESS ITEM
========================================= */

.commercial-process .process-item {
    position: relative;

    display: grid;
    grid-template-columns: 1fr 90px 1fr;

    align-items: start;

    min-height: 100px;
}


/* Alternate card placement */

.commercial-process .process-item:nth-child(odd) .process-card {
    grid-column: 1;
    grid-row: 1;

    text-align:left;
}

.commercial-process .process-item:nth-child(even) .process-card {
    grid-column: 3;
    grid-row: 1;
}


/* =========================================
   ICON
========================================= */

.commercial-process .process-icon {
    position: relative;
    z-index: 2;

    grid-column: 2;
    grid-row: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 68px;
    height: 68px;

    margin: 5px auto 0;

    background: #111;

    border: 5px solid #f6f6f4;
    border-radius: 50%;

    color: #0071bc;

    box-shadow: 0 0 0 2px #0071bc;
}

.commercial-process .process-icon i {
    font-size: 22px;
}


/* Number */

.commercial-process .process-icon span {
    position: absolute;

    right: -13px;
    bottom: -9px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    background: #0071bc;
    color: #fff;

    border: 3px solid #f4f6f6;
    border-radius: 50%;

    font-size: 8px;
    font-weight: 700;
}


/* =========================================
   CARD
========================================= */

.commercial-process .process-card {
    padding: 30px;

    background: #fff;

    border: 1px solid #e3e3e3;
    border-radius: 14px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.commercial-process .process-card:hover {
    transform: translateY(-5px);

    border-color: #0071bc;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
}


/* =========================================
   CARD CONTENT
========================================= */

.commercial-process .process-card h3 {
    margin: 0 0 17px;

    color: #111;

    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
}

.commercial-process .process-card h4 {
    margin: 22px 0 12px;

    color: #222;

    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.commercial-process .process-card p {
    margin: 0 0 17px;

    color: #5b5b5b;

    font-size: 15px;
    line-height: 1.75;
}

.commercial-process .process-card p:last-child {
    margin-bottom: 0;
}


/* =========================================
   LIST
========================================= */

/* =========================================
   COMMERCIAL PROCESS BULLET LIST
========================================= */

.commercial-process .process-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
    width: 100%;
}

.commercial-process .process-card li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 20px;
    padding-right: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

.commercial-process .process-card li:last-child {
    margin-bottom: 0;
}

/* LEFT-SIDE BULLET */
.commercial-process .process-card li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    right: auto;

    width: 6px;
    height: 6px;

    background:#0071bc;
    border-radius: 50%;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .commercial-process {
        padding: 75px 20px;
    }

    .commercial-process .process-heading {
        margin-bottom: 55px;
    }

    .commercial-process .process-heading h2 {
        font-size: 37px;
    }

    .commercial-process .process-item {
        grid-template-columns: 70px 1fr;
        gap: 20px;
    }

    .commercial-process .process-timeline::before {
        left: 35px;
    }

    .commercial-process .process-icon {
        grid-column: 1;
        grid-row: 1;

        width: 58px;
        height: 58px;
    }

    .commercial-process .process-icon i {
        font-size: 19px;
    }

    .commercial-process .process-item:nth-child(odd) .process-card,
    .commercial-process .process-item:nth-child(even) .process-card {
        grid-column: 2;
        grid-row: 1;

        text-align: left;
    }

    .commercial-process .process-item:nth-child(odd) .process-card li {
        padding-left: 20px;
        padding-right: 0;
    }

    .commercial-process .process-item:nth-child(odd) .process-card li::before {
        left: 0;
        right: auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .commercial-process {
        padding: 55px 15px;
    }

    .commercial-process .process-heading {
        margin-bottom: 40px;
    }

    .commercial-process .process-label {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .commercial-process .process-heading h2 {
        font-size: 30px;
    }

    .commercial-process .process-heading p {
        font-size: 15px;
        line-height: 1.7;
    }

    .commercial-process .process-timeline {
        gap: 25px;
    }

    .commercial-process .process-item {
        grid-template-columns: 48px 1fr;
        gap: 15px;
    }

    .commercial-process .process-timeline::before {
        left: 24px;
    }

    .commercial-process .process-icon {
        width: 45px;
        height: 45px;

        border-width: 3px;
    }

    .commercial-process .process-icon i {
        font-size: 15px;
    }

    .commercial-process .process-icon span {
        right: -8px;
        bottom: -7px;

        width: 20px;
        height: 20px;

        font-size: 7px;
    }

    .commercial-process .process-card {
        padding: 23px 20px;

        border-radius: 11px;
    }

    .commercial-process .process-card h3 {
        font-size: 19px;
    }

    .commercial-process .process-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .commercial-process .process-card li {
        font-size: 13px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .commercial-process {
        padding: 45px 12px;
    }

    .commercial-process .process-heading h2 {
        font-size: 27px;
    }

    .commercial-process .process-item {
        grid-template-columns: 42px 1fr;
        gap: 12px;
    }

    .commercial-process .process-timeline::before {
        left: 21px;
    }

    .commercial-process .process-icon {
        width: 40px;
        height: 40px;
    }

    .commercial-process .process-card {
        padding: 20px 16px;
    }

}


/* =========================================
   COMMERCIAL SAFETY SECTION
========================================= */

.commercial-safety-section {
    width: 100%;
    padding: 90px 20px;
    background:#dcf0ff ;
    box-sizing: border-box;
}

.commercial-safety-section *,
.commercial-safety-section *::before,
.commercial-safety-section *::after {
    box-sizing: border-box;
}


/* =========================================
   CONTAINER
========================================= */

.commercial-safety-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.commercial-safety-header {
    max-width: 850px;
    margin-bottom: 55px;
}

.commercial-safety-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color:#0071bc;
    margin-bottom: 15px;
}

.commercial-safety-label::before {
    content: "";
    width: 28px;
    height: 2px;
    background:#0071bc;
}

.commercial-safety-header h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 700;
    color: #1d1d1d;
    letter-spacing: -1px;
    text-align: justify;
}

.commercial-safety-line {
    width: 70px;
    height: 4px;
    margin-top: 22px;
    background:#0071bc;
    border-radius: 10px;
}


/* =========================================
   MAIN GRID
========================================= */

.commercial-safety-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 70px;
    align-items: start;
}


/* =========================================
   LEFT CONTENT
========================================= */

.commercial-safety-content {
    padding-top: 10px;
}

.commercial-safety-content p {
    margin: 0 0 28px;
    font-size: 17px;
    line-height: 1.8;
    color: #5b5b5b;
    text-align: justify;
}

.commercial-safety-content p:last-child {
    margin-bottom: 0;
}


/* =========================================
   RIGHT CARD
========================================= */

.commercial-safety-card {
    position: relative;
    padding: 38px 38px 35px;

    background: #ffffff;

    border: 1px solid #e8e8e8;
    border-radius: 16px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
}


/* Gold accent */
.commercial-safety-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 6px;
    height: 100%;

    background:#0071bc;
    border-radius: 16px 0 0 16px;
}


/* =========================================
   CARD TOP
========================================= */

.commercial-safety-card-top {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 25px;
}

.commercial-safety-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background:#dbe9f3;
    border: 1px solid #b9dcf3;
    border-radius: 50%;
}

.commercial-safety-icon span {
    font-size: 22px;
    font-weight: 700;
    color:#0071bc;
}

.commercial-safety-card-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    color:#0071bc;
}


/* =========================================
   INTRO
========================================= */

.commercial-safety-intro {
    margin: 0 0 22px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    color: #222;
}


/* =========================================
   SAFETY LIST
========================================= */

.commercial-safety-list {
    list-style: none;

    padding: 0;
    margin: 0;
}

.commercial-safety-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    padding: 14px 0;

    border-bottom: 1px solid #eeeeee;

    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.commercial-safety-list li:first-child {
    padding-top: 0;
}

.commercial-safety-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}


/* Check icon */
.commercial-safety-check {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    flex-shrink: 0;

    margin-top: 1px;

    background:#0071bc;
    color: #ffffff;

    border-radius: 50%;

    font-size: 12px;
    font-weight: 700;
}


/* =========================================
   BOTTOM STATEMENT
========================================= */

.commercial-safety-bottom {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 50px;
    padding: 25px 30px;

    background:#000000;
    border-radius: 12px;
}

.commercial-safety-bottom-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex-shrink: 0;

    background: #0071bc;
    color: #ffffff;

    border-radius: 50%;

    font-size: 18px;
    font-weight: 700;
}

.commercial-safety-bottom p {
    margin: 0;

    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .commercial-safety-section {
        padding: 70px 20px;
    }

    .commercial-safety-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .commercial-safety-header {
        margin-bottom: 40px;
    }

    .commercial-safety-content {
        padding-top: 0;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .commercial-safety-section {
        padding: 55px 16px;
    }

    .commercial-safety-header {
        margin-bottom: 32px;
    }

    .commercial-safety-header h2 {
        font-size: 30px;
        letter-spacing: -0.5px;
    }

    .commercial-safety-content p {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 22px;
    }

    .commercial-safety-card {
        padding: 28px 22px 25px 28px;
        border-radius: 12px;
    }

    .commercial-safety-card::before {
        width: 4px;
        border-radius: 12px 0 0 12px;
    }

    .commercial-safety-list li {
        gap: 10px;
        padding: 12px 0;
        font-size: 14px;
    }

    .commercial-safety-check {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }

    .commercial-safety-bottom {
        align-items: flex-start;
        gap: 13px;

        margin-top: 35px;
        padding: 20px;
    }

    .commercial-safety-bottom p {
        font-size: 14px;
        line-height: 1.65;
    }

    .commercial-safety-bottom-icon {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

}

/* =========================================
   GLOBAL BOX SIZING
========================================= */

.commercial-benefits-section *,
.commercial-benefits-section *::before,
.commercial-benefits-section *::after {
    box-sizing: border-box;
}


/* =========================================
   MAIN SECTION
========================================= */

.commercial-benefits-section {
    width: 100%;
    padding: 100px 20px;
    background: #ffffff;
}

.commercial-benefits-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   SECTION HEADER
========================================= */

.commercial-benefits-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align:justify;
}

.commercial-benefits-label,
.kv-cleaning-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 15px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;

    color:#0071bc;
}

.commercial-benefits-label::before,
.commercial-benefits-label::after,
.kv-cleaning-label::before,
.kv-cleaning-label::after {
    content: "";
    width: 25px;
    height: 2px;
    background:#0071bc;
}

.commercial-benefits-header h2,
.kv-cleaning-header h2 {
    margin: 0;
    color: #1d1d1d;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1px;
    text-align: justify;
}


.commercial-benefits-header p,
.kv-cleaning-header p {
    /* margin: 0 auto 20px; */
    text-align: justify;
    max-width: 850px;

    color: #5b5b5b;

    font-size: 16px;
    line-height: 1.8;
}

.commercial-benefits-header p:last-child,
.kv-cleaning-header p:last-child {
    margin-bottom: 0;
}


/* =========================================
   BENEFITS GRID
========================================= */

.commercial-benefits-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}


/* =========================================
   BENEFIT CARD
========================================= */

.commercial-benefit-card {
    position: relative;

    padding: 32px 30px;

    background: #ffffff;

    border: 1px solid #e8e8e8;
    border-radius: 14px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.commercial-benefit-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background:#0071bc;

    transition: width 0.3s ease;
}

.commercial-benefit-card:hover {
    transform: translateY(-5px);

    border-color: #dedede;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.commercial-benefit-card:hover::after {
    width: 100%;
}


/* =========================================
   BENEFIT NUMBER
========================================= */

.commercial-benefit-number {
    position: absolute;

    top: 22px;
    right: 25px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;

    color:#0071bc;
}


/* =========================================
   BENEFIT ICON
========================================= */

.commercial-benefit-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background:#dbe9f3;
    border: 1px solid #b9dcf3;
    border-radius: 50%;
}

.commercial-benefit-icon i {
    color:#0071bc;
    font-size: 20px;
}


/* =========================================
   BENEFIT CONTENT
========================================= */

.commercial-benefit-card h3 {
    margin: 0 0 13px;

    color: #222;

    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
}

.commercial-benefit-card p {
    margin: 0 0 16px;

    color: #666;

    font-size: 14px;
    line-height: 1.75;
}

.commercial-benefit-card p:last-child {
    margin-bottom: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .commercial-benefits-section {
        padding: 80px 20px;
    }

    .commercial-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .commercial-benefits-section {
        padding: 60px 16px;
    }

    .commercial-benefits-header {
        margin-bottom: 38px;
    }

    .commercial-benefits-header  h2 {
        font-size: 30px;
        letter-spacing: -0.5px;
    }

    .commercial-benefits-header p{
        font-size: 15px;
        line-height: 1.75;
    }

    .commercial-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .commercial-benefit-card {
        padding: 28px 24px;
    }

    .commercial-benefit-card h3 {
        font-size: 18px;
    }

    .commercial-benefit-card p {
        font-size: 14px;
    }


}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .commercial-benefits-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .commercial-benefit-card {
        padding: 25px 20px;
    }

}

/* =========================================
   KV CLEANING SECTION
========================================= */

.kv-cleaning-section {
    width: 100%;
    margin-top: 20px;
    padding: 80px 20px;

    background-color: #dbe9f3;
}


/* =========================================
   INNER CONTAINER
========================================= */

.kv-cleaning-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   SECTION HEADER
========================================= */

.kv-cleaning-header {
    max-width: 900px;
    margin: 0 auto 55px;

    text-align:justify;
}

.kv-cleaning-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-bottom: 15px;

    color: #0071bc;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}


.kv-cleaning-header h2 {
    margin: 0;
    text-align: justify;
    color: #222;

    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1px;
}


.kv-cleaning-header p {
    max-width: 850px;
    text-align: justify;
    /* margin: 0 auto; */

    color: #555;

    font-size: 16px;
    line-height: 1.8;

    text-align: justify;
}


/* =========================================
   KV CLEANING GRID
========================================= */

.kv-cleaning-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================
   KV CLEANING CARD
========================================= */

.kv-cleaning-card {
    display: flex;
    align-items: flex-start;

    gap: 20px;

    padding: 28px;

    background: #ffffff;

    border: 1px solid #d5e2ea;

    border-radius: 14px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* =========================================
   CARD HOVER
========================================= */

.kv-cleaning-card:hover {
    transform: translateY(-5px);

    border-color: #b9d6e8;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}


/* =========================================
   KV ICON
========================================= */

.kv-cleaning-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #0071bc;

    border: 1px solid #b9dcf3;

    border-radius: 12px;
}


.kv-cleaning-icon i {
    color: #ffffff;

    font-size: 19px;
}


/* =========================================
   CARD CONTENT
========================================= */

.kv-cleaning-content {
    flex: 1;
    min-width: 0;
}


.kv-cleaning-content h3 {
    margin: 0 0 10px;

    color: #222;

    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}


.kv-cleaning-content p {
    margin: 0;

    color: #666;

    font-size: 14px;
    line-height: 1.75;

    text-align: left;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .kv-cleaning-section {
        margin-top: 60px;
        padding: 65px 20px;
    }

    .kv-cleaning-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .kv-cleaning-section {
        margin-top: 50px;
        padding: 55px 16px;
    }

    .kv-cleaning-header {
        margin-bottom: 35px;
    }

    .kv-cleaning-header h2 {
        font-size: 30px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .kv-cleaning-header p {
        font-size: 15px;
        line-height: 1.75;
        text-align: left;
    }

    .kv-cleaning-grid {
        gap: 15px;
    }

    .kv-cleaning-card {
        gap: 15px;
        padding: 22px;
    }

    .kv-cleaning-icon {
        width: 45px;
        height: 45px;

        border-radius: 10px;
    }

    .kv-cleaning-icon i {
        font-size: 16px;
    }

    .kv-cleaning-content h3 {
        font-size: 17px;
    }

    .kv-cleaning-content p {
        font-size: 14px;
        line-height: 1.7;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .kv-cleaning-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .kv-cleaning-card {
        padding: 20px;
    }

}

/* =========================================
   CLEANING FREQUENCY SECTION
========================================= */

.cleaning-frequency-section {
    width: 100%;
    padding: 90px 20px;
    background: #ffffff;
}

.cleaning-frequency-section *,
.cleaning-frequency-section *::before,
.cleaning-frequency-section *::after {
    box-sizing: border-box;
}


/* =========================================
   CONTAINER
========================================= */

.cleaning-frequency-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.cleaning-frequency-header {
    max-width: 900px;
    margin: 0 auto 45px;
    text-align:justify;
    
}

.cleaning-frequency-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-bottom: 15px;

    color: #0071bc;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}


.cleaning-frequency-label::before,
.cleaning-frequency-label::after {
    content: "";

    width: 28px;
    height: 2px;

    background: #0071bc;
}

.cleaning-frequency-divider {
    width: 65px;
    height: 4px;
    text-align: justify;
    margin-top: 20px;
    background: #0071bc;
    border-radius: 10px;
}
.cleaning-frequency-header h2 {
    margin: 0;
    text-align: justify;
    color: #222;

    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* =========================================
   TABLE WRAPPER
========================================= */

.cleaning-frequency-table-wrapper {
    width: 100%;

    overflow-x: auto;

    background: #ffffff;

    border: 1px solid #dce5eb;
    border-radius: 14px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}


/* =========================================
   TABLE
========================================= */

.cleaning-frequency-table {
    width: 100%;
    border-collapse: collapse;

    min-width: 650px;
}


/* =========================================
   TABLE HEADER
========================================= */

.cleaning-frequency-table thead th {
    padding: 20px 25px;

    background: #0071bc;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    text-align: left;

    border: none;
}

.cleaning-frequency-table thead th:first-child {
    width: 55%;
}

.cleaning-frequency-table thead th:last-child {
    width: 45%;
}


/* =========================================
   TABLE BODY
========================================= */

.cleaning-frequency-table tbody td {
    padding: 18px 25px;

    color: #000000;

    font-size: 15px;
    line-height: 1.6;

    border-bottom: 1px solid #e8edf0;
}

.cleaning-frequency-table tbody tr:last-child td {
    border-bottom: none;
}


/* Alternate rows */

.cleaning-frequency-table tbody tr:nth-child(even) {
    background: #f8fbfd;
}


/* Hover */

.cleaning-frequency-table tbody tr {
    transition: background 0.2s ease;
}

.cleaning-frequency-table tbody tr:hover {
    background: #edf7fc;
}


/* Frequency column */

.cleaning-frequency-table tbody td:last-child {
    color: #0071bc;
    font-weight: 600;
}


/* =========================================
   NOTE
========================================= */

.cleaning-frequency-note {
    margin-top: 25px;
    padding: 20px 24px;

    background: #eaf5fb;

    border-left: 4px solid #0071bc;
    border-radius: 8px;

    color: #555;

    font-size: 14px;
    line-height: 1.7;
}

.cleaning-frequency-note strong {
    color: #222;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    .cleaning-frequency-section {
        padding: 70px 20px;
    }

    .cleaning-frequency-header {
        margin-bottom: 35px;
    }

    .cleaning-frequency-table thead th,
    .cleaning-frequency-table tbody td {
        padding: 16px 18px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .cleaning-frequency-section {
        padding: 55px 16px;
    }

    .cleaning-frequency-header h2 {
        font-size: 30px;
    }

    .cleaning-frequency-table-wrapper {
        border-radius: 10px;
    }

    .cleaning-frequency-table {
        min-width: 580px;
    }

    .cleaning-frequency-table thead th {
        padding: 15px 16px;
        font-size: 14px;
    }

    .cleaning-frequency-table tbody td {
        padding: 14px 16px;
        font-size: 14px;
    }

    .cleaning-frequency-note {
        padding: 17px 18px;
        font-size: 13px;
    }

}


/* =========================================
   COMMERCIAL INDUSTRIES SECTION
========================================= */

.industries-section {
    width: 100%;
    padding: 100px 20px;
    background:#dbe9f3;
}

.industries-section *,
.industries-section *::before,
.industries-section *::after {
    box-sizing: border-box;
}


/* =========================================
   CONTAINER
========================================= */

.industries-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.industries-header {
    max-width: 920px;
    margin: 0 auto 30px;
    text-align:justify;
}

.industries-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: justify;
    margin-bottom: 15px;

    color: #0071bc;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.industries-label::before,
.industries-label::after {
    content: "";

    width: 28px;
    height: 2px;

    background: #0071bc;
}

.industries-header h2 {
    margin: 0;

    color: #222;

    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1px;
}

.industries-divider {
    width: 65px;
    height: 4px;
    text-align: justify;
    margin-top:20px;
    background: #0071bc;
    border-radius: 10px;
}

.industries-header p {
    margin: 0 auto 18px;
    padding-top:20px;
    color: #5d5d5d;

    font-size: 16px;
    line-height: 1.8;

    text-align: justify;
}

.industries-header p:last-child {
    margin-bottom: 0;
}


/* =========================================
   INDUSTRIES GRID
========================================= */

.industries-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 24px;
}


/* =========================================
   INDUSTRY CARD
========================================= */

.industry-card {
    position: relative;

    padding: 32px;

    background: #ffffff;

    border: 1px solid #e1e6e9;
    border-radius: 16px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.industry-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background: #0071bc;

    transition: width 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);

    border-color: #c8dce7;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.industry-card:hover::after {
    width: 100%;
}


/* =========================================
   FEATURED CARD
========================================= */

.industry-card-featured {
    grid-column: 1 / -1;
}


/* =========================================
   CARD TOP
========================================= */

.industry-card-top {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 22px;
}


/* =========================================
   ICON
========================================= */

.industry-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #0071bc;

    border: 1px solid #b8d9eb;

    border-radius:30px;
}

.industry-icon i {
    color: #ffffff;

    font-size: 21px;
}


/* =========================================
   TITLE
========================================= */

.industry-title {
    min-width: 0;
}

.industry-title span {
    display: block;

    margin-bottom: 3px;

    color: #0071bc;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.industry-title h3 {
    margin: 0;

    color: #222;

    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
}


/* =========================================
   INTRO
========================================= */

.industry-intro {
    margin: 0 0 25px;

    color: #5d5d5d;

    font-size: 14px;
    line-height: 1.8;

    text-align: justify;
}


/* =========================================
   CONTENT GRID
========================================= */

.industry-content-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 25px;

    padding-top: 24px;

    border-top: 1px solid #e8ecef;
}


/* =========================================
   CONTENT BLOCK
========================================= */

.industry-content-block {
    min-width: 0;
}

.industry-content-block.full-width {
    padding-top: 24px;

    border-top: 1px solid #e8ecef;
}


/* =========================================
   SUB HEADINGS
========================================= */

.industry-content-block h4,
.industry-solution h4 {
    position: relative;

    margin: 0 0 15px;

    padding-left: 14px;

    color: #222;

    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.industry-content-block h4::before,
.industry-solution h4::before {
    content: "";

    position: absolute;

    left: 0;
    top: 3px;

    width: 4px;
    height: 18px;

    background: #0071bc;

    border-radius: 3px;
}


/* =========================================
   LIST
========================================= */

.industry-content-block ul,
.industry-solution ul {
    list-style: none;

    padding: 0;
    margin: 0;
}

.industry-content-block li,
.industry-solution li {
    position: relative;

    margin-bottom: 9px;
    padding-left: 18px;

    color: #666;

    font-size: 13px;
    line-height: 1.6;
}

.industry-content-block li::before,
.industry-solution li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 9px;

    width: 6px;
    height: 6px;

    background: #0071bc;

    border-radius: 50%;
}

.industry-content-block li:last-child,
.industry-solution li:last-child {
    margin-bottom: 0;
}


/* =========================================
   CONTENT PARAGRAPHS
========================================= */

.industry-content-block p {
    margin: 0 0 15px;

    color: #666;

    font-size: 14px;
    line-height: 1.75;

    text-align: justify;
}

.industry-content-block p:last-child {
    margin-bottom: 0;
}


/* =========================================
   SOLUTION BOX
========================================= */

.industry-solution {
    margin-top: 25px;
    padding: 22px 24px;

    background: #edf7fc;

    border-left: 4px solid #0071bc;
    border-radius: 8px;
}

.industry-solution p {
    margin: 0;

    color: #555;

    font-size: 14px;
    line-height: 1.75;

    text-align: justify;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .industries-section {
        padding: 80px 20px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .industry-card-featured {
        grid-column: auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .industries-section {
        padding: 60px 16px;
    }

    .industries-header {
        margin-bottom: 40px;
    }

    .industries-header h2 {
        font-size: 30px;
        letter-spacing: -0.5px;
    }

    .industries-header p {
        font-size: 15px;
        line-height: 1.75;
        text-align: left;
    }

    .industry-card {
        padding: 24px 20px;
        border-radius: 13px;
    }

    .industry-card-top {
        gap: 14px;
        margin-bottom: 20px;
    }

    .industry-icon {
        width: 48px;
        height: 48px;

        border-radius:25px;
    }

    .industry-icon i {
        font-size: 17px;
    }

    .industry-title h3 {
        font-size: 19px;
    }

    .industry-intro {
        font-size: 14px;
        line-height: 1.75;
        text-align: left;
    }

    .industry-content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .industry-content-block p,
    .industry-solution p {
        text-align: left;
    }

    .industry-solution {
        padding: 20px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .industry-card {
        padding: 22px 18px;
    }

    .industry-card-top {
        align-items: flex-start;
    }

    .industry-icon {
        width: 44px;
        height: 44px;
    }

    .industry-title h3 {
        font-size: 18px;
    }

}


/* =========================================
   INDUSTRY CLEANING SCHEDULE
========================================= */

.industry-schedule-section {
    width: 100%;
    padding: 100px 20px;
    background: #ffffff;
}

.industry-schedule-section *,
.industry-schedule-section *::before,
.industry-schedule-section *::after {
    box-sizing: border-box;
}


/* =========================================
   CONTAINER
========================================= */

.industry-schedule-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.industry-schedule-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align:justify;
}

.industry-schedule-eyebrow {
     display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: justify;
    margin-bottom: 15px;

    color: #0071bc;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}


.industry-schedule-eyebrow::before,
.industry-schedule-eyebrow::after {
    content: "";

    width: 28px;
    height: 2px;

    background: #0071bc;
}


.industry-schedule-header h2 {
    margin: 0;

    color: #202020;

    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
    font-weight: 700;
}

.industry-schedule-line {
    display: block;
    text-align: justify;
    width: 60px;
    height: 4px;
    margin-top:10px;
    background: #0071bc;
    border-radius: 20px;
}

.industry-schedule-header p {
    margin-top:20px;
    color: #606060;
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}


/* =========================================
   CARD LIST
========================================= */

.industry-schedule-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


/* =========================================
   CARD
========================================= */

.schedule-card {
    position: relative;

    display: grid;

    grid-template-columns: 55px 1fr 1fr;

    gap: 20px;

    align-items: center;

    padding: 25px;

    background: #ffffff;

    border: 1px solid #e0e8ed;
    border-radius: 14px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.schedule-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 4px;

    background: #0071bc;

    transform: scaleY(0);

    transform-origin: center;

    transition: transform 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-4px);

    border-color: #c5dce9;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.schedule-card:hover::before {
    transform: scaleY(1);
}


/* =========================================
   NUMBER
========================================= */

.schedule-number {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0071bc;

    color: #ffffff;

    border-radius: 50%;

    font-size: 13px;
    font-weight: 700;
}


/* =========================================
   LABELS
========================================= */

.schedule-industry > span,
.schedule-frequency > span,
.schedule-reason > span {
    display: block;

    margin-bottom: 6px;

    color: #2e2e2e;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.2px;
}


/* =========================================
   INDUSTRY
========================================= */

.schedule-industry h3 {
    margin: 0;

    color: #222;

    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
}


/* =========================================
   FREQUENCY
========================================= */

.schedule-frequency {
    padding-left: 20px;

    border-left: 1px solid #e4eaed;
}

.schedule-frequency strong {
    display: inline-block;

    color: #0071bc;

    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}


/* =========================================
   REASON
========================================= */

.schedule-reason {
    grid-column: 2 / -1;

    padding-top: 18px;

    border-top: 1px solid #e8edef;
}

.schedule-reason p {
    margin: 0;

    color: #626a6f;

    font-size: 13px;
    line-height: 1.65;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .industry-schedule-section {
        padding: 80px 20px;
    }

    .industry-schedule-list {
        grid-template-columns: 1fr;
    }

    .schedule-card {
        grid-template-columns: 55px 1fr 1fr;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .industry-schedule-section {
        padding: 60px 16px;
    }

    .industry-schedule-header {
        margin-bottom: 40px;
    }

    .industry-schedule-header h2 {
        font-size: 30px;
    }

    .industry-schedule-header p {
        font-size: 14px;
        text-align: left;
    }

    .schedule-card {
        display: grid;

        grid-template-columns: 48px 1fr;

        gap: 16px;

        padding: 22px 20px;
    }

    .schedule-number {
        width: 44px;
        height: 44px;
    }

    .schedule-industry {
        align-self: center;
    }

    .schedule-industry h3 {
        font-size: 17px;
    }

    .schedule-frequency {
        grid-column: 1 / -1;

        padding: 16px 0 0;

        border-left: none;
        border-top: 1px solid #e5eaed;
    }

    .schedule-frequency strong {
        font-size: 14px;
    }

    .schedule-reason {
        grid-column: 1 / -1;

        padding-top: 16px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .industry-schedule-section {
        padding: 50px 14px;
    }

    .schedule-card {
        padding: 20px 17px;
    }

    .schedule-industry h3 {
        font-size: 16px;
    }

}


/* =========================================
   KV TRUST SECTION
========================================= */
/* =========================================
   KV TRUST MODERN SECTION
========================================= */

.kv-trust-modern {
    width: 100%;
    padding: 100px 20px;
    background:#dbe9f3;
}

.kv-trust-modern *,
.kv-trust-modern *::before,
.kv-trust-modern *::after {
    box-sizing: border-box;
}


/* =========================================
   MAIN CONTAINER
========================================= */

.kv-trust-modern-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   TOP HEADING
========================================= */

.kv-trust-modern-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    padding-bottom: 35px;

    border-bottom: 1px solid #dfe6ea;
}


/* =========================================
   TITLE
========================================= */

.kv-trust-modern-title-wrap {
    max-width: 760px;
}

.kv-trust-modern-label {
      display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: justify;
    margin-bottom: 15px;
    color: #0071bc;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.kv-trust-modern-label::before,
.kv-trust-modern-label::after {
    content: "";

    width: 28px;
    height: 2px;

    background: #0071bc;
}


.kv-trust-modern-title-wrap h2 {
    margin: 0;
    text-align: justify;
    color: #202020;

    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -1px;
}


/* =========================================
   TRUST BADGE
========================================= */

.kv-trust-modern-badge {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    padding: 12px 17px;

    background: #f1f8fc;

    border: 1px solid #d5e8f2;

    border-radius: 50px;

    color: #0071bc;

    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;
}

.kv-trust-modern-badge i {
    font-size: 13px;
}


/* =========================================
   MAIN CONTENT AREA
========================================= */

.kv-trust-modern-body {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    padding: 55px 0;
}


/* =========================================
   FIRST PARAGRAPH
========================================= */

.kv-trust-modern-intro {
    display: flex;

    align-items: flex-start;

    gap: 22px;
}

.kv-trust-modern-line {
    display: block;

    width: 4px;
    min-height: 120px;

    flex-shrink: 0;

    background: #0071bc;

    border-radius: 10px;
}

.kv-trust-modern-intro p {
    margin: 0;

    color: #333;

    font-size: 16px;

    line-height: 1.85;

    font-weight: 500;
}


/* =========================================
   SECOND PARAGRAPH
========================================= */

.kv-trust-modern-content {
    padding-top: 3px;
}

.kv-trust-modern-content p {
    margin: 0;

    color: #555;

    font-size: 16px;

    line-height: 1.85;
}


/* =========================================
   FINAL HIGHLIGHT BOX
========================================= */

.kv-trust-modern-final {
    position: relative;

    padding: 30px 35px;

    background: #0071bc;

    border-radius: 16px;

    overflow: hidden;
}


/* Decorative Circle */

.kv-trust-modern-final::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -90px;
    top: -100px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;
}


/* Final Paragraph */

.kv-trust-modern-final p {
    position: relative;

    z-index: 1;

    max-width: 1000px;

    margin: 0;

    color: #ffffff;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .kv-trust-modern {
        padding: 80px 20px;
    }


    /* Heading */

    .kv-trust-modern-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 25px;
    }


    /* Main Content */

    .kv-trust-modern-body {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 45px 0;
    }


    .kv-trust-modern-intro {
        max-width: 800px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .kv-trust-modern {
        padding: 60px 16px;
    }


    /* Heading */

    .kv-trust-modern-heading {
        padding-bottom: 28px;
    }


    .kv-trust-modern-title-wrap h2 {
        font-size: 30px;

        letter-spacing: -0.5px;
    }


    /* Badge */

    .kv-trust-modern-badge {
        padding: 10px 14px;

        font-size: 11px;
    }


    /* Main Content */

    .kv-trust-modern-body {
        padding: 35px 0;
    }


    /* Intro */

    .kv-trust-modern-intro {
        gap: 15px;
    }


    .kv-trust-modern-line {
        min-height: 100px;
    }


    .kv-trust-modern-intro p,
    .kv-trust-modern-content p {

        font-size: 14px;

        line-height: 1.75;

        text-align: left;
    }


    /* Final Box */

    .kv-trust-modern-final {
        padding: 22px 20px;

        border-radius: 12px;
    }


    .kv-trust-modern-final p {
        font-size: 14px;

        line-height: 1.7;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .kv-trust-modern {
        padding: 50px 14px;
    }


    .kv-trust-modern-title-wrap h2 {
        font-size: 27px;
    }


    .kv-trust-modern-badge {
        padding: 9px 12px;
    }


    .kv-trust-modern-final {
        padding: 20px 17px;
    }

}


/* =========================================
   COMMERCIAL WINDOW PROBLEMS
========================================= */

.window-problems-section {
    width: 100%;
    padding: 100px 20px;
    background: #ffffff;
}

.window-problems-section *,
.window-problems-section *::before,
.window-problems-section *::after {
    box-sizing: border-box;
}


/* =========================================
   CONTAINER
========================================= */

.window-problems-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.window-problems-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align:justify;
}

.window-problems-eyebrow {
     display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: justify;
    margin-bottom: 15px;

    color: #0071bc;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.window-problems-eyebrow::before,
.window-problems-eyebrow::after {
    content: "";

    width: 28px;
    height: 2px;

    background: #0071bc;
}


.window-problems-header h2 {
    margin: 0 0 25px;

    color: #202020;

    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;

    font-weight: 700;
}

.window-problems-header p {
    margin: 0 0 15px;

    color: #5d5d5d;

    font-size: 15px;
    line-height: 1.8;

    text-align: justify;
}

.window-problems-header p:last-child {
    margin-bottom: 0;
}


/* =========================================
   GRID
========================================= */

.window-problems-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}


/* =========================================
   CARD
========================================= */

.window-problem-card {
    position: relative;

    padding: 32px;

    background: #ffffff;

    border: 1px solid #e1e8ed;

    border-radius: 16px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.window-problem-card:hover {
    transform: translateY(-5px);

    border-color: #c9dce8;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
}


/* =========================================
   TOP ROW
========================================= */

.window-problem-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 24px;
}


/* =========================================
   NUMBER
========================================= */

.window-problem-number {
    color: #d7e1e7;

    font-size: 34px;

    line-height: 1;

    font-weight: 800;
}


/* =========================================
   ICON
========================================= */

.window-problem-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf5fb;

    color: #0071bc;

    border-radius: 12px;
}

.window-problem-icon i {
    font-size: 18px;
}


/* =========================================
   CARD HEADING
========================================= */

.window-problem-card h3 {
    margin: 0 0 16px;

    color: #222;

    font-size: 22px;

    line-height: 1.3;

    font-weight: 700;
}


/* =========================================
   CARD PARAGRAPHS
========================================= */

.window-problem-card > p {
    margin: 0 0 16px;

    color: #626262;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================
   SUBSECTION
========================================= */

.window-problem-subsection {
    margin-top: 25px;
}

.window-problem-subsection h4 {
    margin: 0 0 14px;

    color: #333;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.3px;
}


/* =========================================
   LIST
========================================= */

.window-problem-subsection ul {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 9px 20px;

    margin: 0;

    padding: 0;

    list-style: none;
}

.window-problem-subsection li {
    position: relative;

    padding-left: 17px;

    color: #666;

    font-size: 13px;

    line-height: 1.5;
}

.window-problem-subsection li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 8px;

    width: 6px;
    height: 6px;

    background: #0071bc;

    border-radius: 50%;
}


/* =========================================
   SOLUTION BOX
========================================= */

.window-problem-solution {
    margin-top: 28px;

    padding: 20px;

    background: #f4f8fa;

    border-left: 3px solid #0071bc;

    border-radius: 0 10px 10px 0;
}

.window-problem-solution span {
    display: block;

    margin-bottom: 8px;

    color: #0071bc;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.window-problem-solution p {
    margin: 0;

    color: #555;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .window-problems-section {
        padding: 80px 20px;
    }

    .window-problems-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .window-problems-section {
        padding: 60px 16px;
    }

    .window-problems-header {
        margin-bottom: 40px;
    }

    .window-problems-header h2 {
        font-size: 30px;
    }

    .window-problems-header p {
        font-size: 14px;
        line-height: 1.75;
        text-align: left;
    }

    .window-problem-card {
        padding: 24px;
        border-radius: 13px;
    }

    .window-problem-card h3 {
        font-size: 20px;
    }

    .window-problem-card > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .window-problem-subsection ul {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .window-problem-solution {
        padding: 17px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .window-problems-section {
        padding: 50px 14px;
    }

    .window-problem-card {
        padding: 20px;
    }

    .window-problem-number {
        font-size: 29px;
    }

    .window-problem-icon {
        width: 45px;
        height: 45px;
    }

}


/* =========================================
   KV DIY VS PROFESSIONAL SECTION
========================================= */

.kv-diy-section {
    width: 100%;
    padding: 100px 20px;
    background:#dbe9f3;
}

.kv-diy-section *,
.kv-diy-section *::before,
.kv-diy-section *::after {
    box-sizing: border-box;
}


/* =========================================
   CONTAINER
========================================= */

.kv-diy-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.kv-diy-header {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align:justify;
}

.kv-diy-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: justify;
    margin-bottom: 15px;

    color: #0071bc;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.kv-diy-eyebrow::before,
.kv-diy-eyebrow::after {
    content: "";

    width: 28px;
    height: 2px;

    background: #0071bc;
}


.kv-diy-header h2 {
    margin: 0 0 22px;

    color: #202020;

    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;

    font-weight: 700;
}

.kv-diy-header p {
    margin: 0;

    color: #606060;

    font-size: 15px;
    line-height: 1.8;

    text-align: justify;
}


/* =========================================
   COMPARISON
========================================= */

.kv-diy-comparison {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 24px;
}


/* =========================================
   COLUMNS
========================================= */

.kv-diy-column {
    background: #ffffff;

    border-radius: 16px;

    overflow: hidden;

    border: 1px solid #dfe6ea;
}


/* =========================================
   COLUMN HEADER
========================================= */

.kv-diy-column-header {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 28px;

    border-bottom: 1px solid #e4eaee;
}

.kv-diy-column-header > div:last-child {
    min-width: 0;
}

.kv-diy-column-header span {
    display: block;

    margin-bottom: 6px;

    color: #888;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.kv-diy-column-header h3 {
    margin: 0;

    color: #222;

    font-size: 22px;

    line-height: 1.3;

    font-weight: 700;
}


/* =========================================
   ICON
========================================= */

.kv-diy-column-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #edf2f5;

    color: #707070;

    border-radius: 12px;
}

.kv-diy-column-icon i {
    font-size: 18px;
}


/* =========================================
   PROFESSIONAL HEADER
========================================= */

.kv-diy-column-pro {
    border: 2px solid #0071bc;

    box-shadow: 0 12px 35px rgba(0, 113, 188, 0.08);
}

.kv-diy-column-pro .kv-diy-column-header {
    background: #0071bc;

    border-bottom-color: #0071bc;
}

.kv-diy-column-pro .kv-diy-column-header span {
    color: rgba(255, 255, 255, 0.7);
}

.kv-diy-column-pro .kv-diy-column-header h3 {
    color: #ffffff;
}

.kv-diy-column-pro .kv-diy-column-icon {
    background: rgba(255, 255, 255, 0.14);

    color: #ffffff;
}


/* =========================================
   LIST
========================================= */

.kv-diy-list {
    margin: 0;

    padding: 12px 28px 22px;

    list-style: none;
}

.kv-diy-list li {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 17px 0;

    border-bottom: 1px solid #edf0f2;

    color: #555;

    font-size: 14px;

    line-height: 1.6;
}

.kv-diy-list li:last-child {
    border-bottom: none;
}


/* =========================================
   LIST ICON
========================================= */

.kv-diy-list li > i {
    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    margin-top: 1px;

    background: #edf1f3;

    border-radius: 50%;

    color: #888;

    font-size: 9px;
}


/* Professional Check */

.kv-diy-column-pro .kv-diy-list li > i {
    background: #e7f4fb;

    color: #0071bc;
}


/* =========================================
   CONCLUSION
========================================= */

.kv-diy-conclusion {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 30px;

    padding: 24px 28px;

    background: #ffffff;

    border-left: 4px solid #0071bc;

    border-radius: 10px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.kv-diy-conclusion-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #eaf5fb;

    color: #0071bc;

    border-radius: 50%;
}

.kv-diy-conclusion-icon i {
    font-size: 17px;
}

.kv-diy-conclusion p {
    margin: 0;

    color: #4f4f4f;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

    .kv-diy-section {
        padding: 80px 20px;
    }

    .kv-diy-comparison {
        grid-template-columns: 1fr;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .kv-diy-section {
        padding: 60px 16px;
    }

    .kv-diy-header {
        margin-bottom: 40px;
    }

    .kv-diy-header h2 {
        font-size: 30px;
    }

    .kv-diy-header p {
        font-size: 14px;
        line-height: 1.75;
        text-align: left;
    }

    .kv-diy-comparison {
        gap: 18px;
    }

    .kv-diy-column-header {
        padding: 22px 20px;

        gap: 14px;
    }

    .kv-diy-column-header h3 {
        font-size: 19px;
    }

    .kv-diy-column-icon {
        width: 46px;
        height: 46px;
    }

    .kv-diy-list {
        padding: 8px 20px 16px;
    }

    .kv-diy-list li {
        padding: 14px 0;

        font-size: 13px;
    }

    .kv-diy-conclusion {
        align-items: flex-start;

        padding: 20px;

        gap: 14px;
    }

    .kv-diy-conclusion p {
        font-size: 13px;
        line-height: 1.7;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .kv-diy-section {
        padding: 50px 14px;
    }

    .kv-diy-header h2 {
        font-size: 27px;
    }

    .kv-diy-column-header h3 {
        font-size: 18px;
    }

    .kv-diy-column-header {
        padding: 20px 17px;
    }

    .kv-diy-list {
        padding-left: 17px;
        padding-right: 17px;
    }

}


/* =========================================
   ENVIRONMENTAL / SEASONAL SECTION
========================================= */

.kv-seasonal-section {
    width: 100%;
    padding: 100px 20px;
    background: #ffffff;
}

.kv-seasonal-section *,
.kv-seasonal-section *::before,
.kv-seasonal-section *::after {
    box-sizing: border-box;
}


/* =========================================
   CONTAINER
========================================= */

.kv-seasonal-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.kv-seasonal-header {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align:justify;
}

.kv-seasonal-eyebrow {
   display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: justify;
    margin-bottom: 15px;

    color: #0071bc;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.kv-seasonal-eyebrow::before,
.kv-seasonal-eyebrow::after {
    content: "";

    width: 28px;
    height: 2px;

    background: #0071bc;
}


.kv-seasonal-header h2 {
    margin: 0 0 20px;

    color: #222222;

    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;

    font-weight: 700;
}

.kv-seasonal-header p {
    margin: 0;

    color: #666666;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   SEASON GRID
========================================= */

.kv-seasonal-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


/* =========================================
   SEASON CARD
========================================= */

.kv-season-card {
    position: relative;

    min-height: 330px;

    padding: 28px 24px;

    background: #f6f9fb;

    border: 1px solid #e2e9ed;

    border-radius: 16px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.kv-season-card:hover {
    transform: translateY(-6px);

    background: #ffffff;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}


/* =========================================
   TOP
========================================= */

.kv-season-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 30px;
}


/* =========================================
   ICON
========================================= */

.kv-season-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #0071bc;

    border: 1px solid #dcecf5;

    border-radius: 13px;
}

.kv-season-icon i {
    font-size: 19px;
}


/* =========================================
   NUMBER
========================================= */

.kv-season-number {
    color: #d2dce2;

    font-size: 30px;

    line-height: 1;

    font-weight: 800;
}


/* =========================================
   LABEL
========================================= */

.kv-season-label {
    display: block;

    margin-bottom: 6px;

    color: #0071bc;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================================
   HEADING
========================================= */

.kv-season-card h3 {
    margin: 0 0 20px;

    color: #222222;

    font-size: 23px;

    line-height: 1.3;

    font-weight: 700;
}


/* =========================================
   LIST
========================================= */

.kv-season-card ul {
    margin: 0;

    padding: 0;

    list-style: none;
}

.kv-season-card li {
    position: relative;

    margin-bottom: 13px;

    padding-left: 17px;

    color: #606060;

    font-size: 13px;

    line-height: 1.55;
}

.kv-season-card li:last-child {
    margin-bottom: 0;
}

.kv-season-card li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 8px;

    width: 6px;
    height: 6px;

    background: #0071bc;

    border-radius: 50%;
}


/* =========================================
   BOTTOM NOTE
========================================= */

.kv-seasonal-note {
    display: flex;

    align-items: center;

    gap: 18px;

    max-width: 900px;

    margin: 35px auto 0;

    padding: 22px 26px;

    background: #eef7fc;

    border: 1px solid #d8ebf5;

    border-radius: 12px;
}

.kv-seasonal-note-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #0071bc;

    color: #ffffff;

    border-radius: 50%;
}

.kv-seasonal-note-icon i {
    font-size: 16px;
}

.kv-seasonal-note p {
    margin: 0;

    color: #4e5a61;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1000px) {

    .kv-seasonal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kv-season-card {
        min-height: auto;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 700px) {

    .kv-seasonal-section {
        padding: 75px 20px;
    }

    .kv-seasonal-header {
        margin-bottom: 40px;
    }

    .kv-seasonal-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .kv-season-card {
        min-height: auto;
        padding: 25px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 500px) {

    .kv-seasonal-section {
        padding: 60px 16px;
    }

    .kv-seasonal-header h2 {
        font-size: 30px;
    }

    .kv-seasonal-header p {
        font-size: 14px;
        line-height: 1.7;
    }

    .kv-season-card {
        padding: 22px;
        border-radius: 13px;
    }

    .kv-season-card h3 {
        font-size: 21px;
    }

    .kv-season-card li {
        font-size: 13px;
    }

    .kv-seasonal-note {
        align-items: flex-start;

        padding: 18px;

        gap: 13px;
    }

    .kv-seasonal-note p {
        font-size: 13px;
    }

}


/* =========================================
   WARNING SIGNS SECTION
========================================= */

.kv-warning-section {
    width: 100%;
    padding: 100px 20px;
    background:#dbe9f3;
}

.kv-warning-section *,
.kv-warning-section *::before,
.kv-warning-section *::after {
    box-sizing: border-box;
}


/* =========================================
   CONTAINER
========================================= */

.kv-warning-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.kv-warning-header {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align:justify;
}

.kv-warning-eyebrow {
     display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: justify;
    margin-bottom: 15px;
    color: #0071bc;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.kv-warning-eyebrow::before,
.kv-warning-eyebrow::after {
    content: "";

    width: 28px;
    height: 2px;

    background: #0071bc;
}



.kv-warning-header h2 {
    margin: 0 0 22px;
    text-align: justify;
    color: #222;

    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;

    font-weight: 700;
}

.kv-warning-header p {
    margin: 0 0 12px;

    color: #666;

    font-size: 15px;
    line-height: 1.8;
}

.kv-warning-header p:last-child {
    margin-bottom: 0;
}


/* =========================================
   MAIN WARNING BOX
========================================= */

.kv-warning-box {
    display: grid;

    grid-template-columns: 0.85fr 1.5fr;

    background: #ffffff;

    border: 1px solid #e1e8ec;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}


/* =========================================
   LEFT VISUAL
========================================= */

.kv-warning-visual {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 45px;

    background: #0071bc;
}

.kv-warning-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    background: rgba(255, 255, 255, 0.14);

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 15px;
}

.kv-warning-icon i {
    font-size: 25px;
}

.kv-warning-label {
    margin-bottom: 8px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.kv-warning-visual h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 28px;

    line-height: 1.25;

    font-weight: 700;
}

.kv-warning-visual p {
    max-width: 330px;

    margin: 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================
   CHECKLIST
========================================= */

.kv-warning-checklist {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    align-content: center;

    gap: 0 25px;

    padding: 38px 42px;
}

.kv-warning-check-item {
    display: flex;

    align-items: center;

    gap: 13px;

    min-height: 60px;

    border-bottom: 1px solid #edf0f2;

    color: #4f4f4f;

    font-size: 14px;

    line-height: 1.5;
}

.kv-warning-check {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #eaf5fb;

    color: #0071bc;

    border-radius: 50%;
}

.kv-warning-check i {
    font-size: 10px;
}


/* =========================================
   BOTTOM MESSAGE
========================================= */

.kv-warning-message {
    display: flex;

    align-items: center;

    gap: 17px;

    max-width: 950px;

    margin: 30px auto 0;

    padding: 22px 28px;

    background: #ffffff;

    border-left: 4px solid #0071bc;

    border-radius: 10px;

    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.04);
}

.kv-warning-message-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #eaf5fb;

    color: #0071bc;

    border-radius: 50%;
}

.kv-warning-message-icon i {
    font-size: 16px;
}

.kv-warning-message p {
    margin: 0;

    color: #555;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .kv-warning-section {
        padding: 80px 20px;
    }

    .kv-warning-box {
        grid-template-columns: 1fr;
    }

    .kv-warning-visual {
        padding: 35px;
    }

    .kv-warning-visual p {
        max-width: 600px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .kv-warning-section {
        padding: 60px 16px;
    }

    .kv-warning-header {
        margin-bottom: 40px;
    }

    .kv-warning-header h2 {
        font-size: 30px;
    }

    .kv-warning-header p {
        font-size: 14px;
        line-height: 1.7;
    }

    .kv-warning-visual {
        padding: 30px 24px;
    }

    .kv-warning-icon {
        width: 55px;
        height: 55px;
    }

    .kv-warning-visual h3 {
        font-size: 24px;
    }

    .kv-warning-checklist {
        grid-template-columns: 1fr;

        padding: 20px 24px;
    }

    .kv-warning-check-item {
        min-height: 55px;

        font-size: 13px;
    }

    .kv-warning-message {
        align-items: flex-start;

        padding: 19px 20px;

        gap: 13px;
    }

    .kv-warning-message p {
        font-size: 13px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .kv-warning-section {
        padding: 50px 14px;
    }

    .kv-warning-visual {
        padding: 26px 20px;
    }

    .kv-warning-checklist {
        padding: 15px 20px;
    }

}


/* =========================================
   INVESTMENT PROTECTION SECTION
========================================= */

.kv-investment-section {
    width: 100%;
    padding: 100px 20px;
    background: #ffffff;
}

.kv-investment-section *,
.kv-investment-section *::before,
.kv-investment-section *::after {
    box-sizing: border-box;
}


/* =========================================
   CONTAINER
========================================= */

.kv-investment-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.kv-investment-header {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align:justify;
}

.kv-investment-eyebrow {
     display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: justify;
    margin-bottom: 15px;
    color: #0071bc;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.kv-investment-eyebrow::before,
.kv-investment-eyebrow::after {
    content: "";

    width: 28px;
    height: 2px;

    background: #0071bc;
}




.kv-investment-header h2 {
    margin: 0 0 20px;
    text-align: justify;
    color: #222;

    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;

    font-weight: 700;
}

.kv-investment-header p {
    margin: 0;

    color: #666;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   MAIN LAYOUT
========================================= */

.kv-investment-layout {
    display: grid;

    grid-template-columns: 0.8fr 1.5fr;

    background: #ffffff;

    border: 1px solid #dce6eb;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}


/* =========================================
   LEFT VISUAL
========================================= */

.kv-investment-visual {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 50px;

    background: #0071bc;
}

.kv-investment-shield {
    width: 75px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    background: rgba(255, 255, 255, 0.13);

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 18px;
}

.kv-investment-shield i {
    color: #ffffff;

    font-size: 32px;
}

.kv-investment-visual > span {
    margin-bottom: 10px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.kv-investment-visual h3 {
    max-width: 280px;

    margin: 0;

    color: #ffffff;

    font-size: 28px;

    line-height: 1.3;

    font-weight: 700;
}


/* =========================================
   BENEFITS
========================================= */

.kv-investment-benefits {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    padding: 28px 35px;
}


/* =========================================
   BENEFIT ITEM
========================================= */

.kv-investment-benefit {
    display: flex;

    align-items: center;

    gap: 15px;

    min-height: 75px;

    padding: 12px 15px;

    border-bottom: 1px solid #edf0f2;

    transition: background 0.25s ease;
}

.kv-investment-benefit:hover {
    background: #f7fafc;
}


/* =========================================
   NUMBER
========================================= */

.kv-investment-number {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #eaf5fb;

    color: #0071bc;

    border-radius: 50%;

    font-size: 10px;

    font-weight: 700;
}


/* =========================================
   BENEFIT HEADING
========================================= */

.kv-investment-benefit h3 {
    margin: 0;

    color: #444;

    font-size: 14px;

    line-height: 1.5;

    font-weight: 600;
}


/* =========================================
   BOTTOM MESSAGE
========================================= */

.kv-investment-message {
    display: flex;

    align-items: center;

    gap: 18px;

    max-width: 950px;

    margin: 30px auto 0;

    padding: 24px 28px;

    background: #ffffff;

    border-left: 4px solid #0071bc;

    border-radius: 10px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.kv-investment-message-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #eaf5fb;

    color: #0071bc;

    border-radius: 50%;
}

.kv-investment-message-icon i {
    font-size: 17px;
}

.kv-investment-message p {
    margin: 0;

    color: #555;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .kv-investment-section {
        padding: 80px 20px;
    }

    .kv-investment-layout {
        grid-template-columns: 1fr;
    }

    .kv-investment-visual {
        padding: 40px;
    }

    .kv-investment-visual h3 {
        max-width: 600px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .kv-investment-section {
        padding: 60px 16px;
    }

    .kv-investment-header {
        margin-bottom: 40px;
    }

    .kv-investment-header h2 {
        font-size: 30px;
    }

    .kv-investment-header p {
        font-size: 14px;
        line-height: 1.7;
    }

    .kv-investment-visual {
        padding: 30px 24px;
    }

    .kv-investment-shield {
        width: 60px;
        height: 60px;
        margin-bottom: 22px;
    }

    .kv-investment-shield i {
        font-size: 26px;
    }

    .kv-investment-visual h3 {
        font-size: 24px;
    }

    .kv-investment-benefits {
        grid-template-columns: 1fr;

        padding: 15px 20px;
    }

    .kv-investment-benefit {
        min-height: 62px;

        padding: 12px 5px;
    }

    .kv-investment-benefit h3 {
        font-size: 13px;
    }

    .kv-investment-message {
        align-items: flex-start;

        padding: 20px;

        gap: 13px;
    }

    .kv-investment-message p {
        font-size: 13px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .kv-investment-section {
        padding: 50px 14px;
    }

    .kv-investment-header h2 {
        font-size: 27px;
    }

    .kv-investment-visual {
        padding: 26px 20px;
    }

    .kv-investment-benefits {
        padding: 10px 17px;
    }

}

/* =========================================
   DID YOU KNOW SECTION
========================================= */

.kv-didyouknow-section {
    width: 100%;
    padding: 20px  20px 50px 20px;
    background:#dbe9f3;
}

.kv-didyouknow-section *,
.kv-didyouknow-section *::before,
.kv-didyouknow-section *::after {
    box-sizing: border-box;
}


/* =========================================
   CONTAINER
========================================= */

.kv-didyouknow-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.kv-didyouknow-header {
    text-align: center;
    margin-bottom: 45px;
}


.kv-didyouknow-header h2 {
    margin: 0;

    color: #222;

    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.2;

    font-weight: 700;
}


/* =========================================
   FACT GRID
========================================= */

.kv-didyouknow-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}


/* =========================================
   FACT CARD
========================================= */

.kv-didyouknow-card {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 20px;

    min-height:120px;

    padding: 32px;

    background: #f5f9fc;

    border: 1px solid #e1ebf1;
    border-radius: 16px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.kv-didyouknow-card:hover {
    transform: translateY(-5px);

    border-color: #c5dfea;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}


/* =========================================
   NUMBER
========================================= */

.kv-didyouknow-number {
    position: absolute;

    top: 18px;
    right: 22px;

    color: #dceaf2;

    font-size: 34px;

    font-weight: 800;

    line-height: 1;
}


/* =========================================
   ICON
========================================= */

.kv-didyouknow-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #0071bc;

    color: #ffffff;

    border-radius: 13px;

    position: relative;
    z-index: 1;
}

.kv-didyouknow-icon i {
    font-size: 19px;
}


/* =========================================
   TEXT
========================================= */

.kv-didyouknow-card p {
    position: relative;
    z-index: 1;

    margin: 3px 30px 0 0;

    color: #555;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

    .kv-didyouknow-section {
        padding: 75px 20px;
    }

    .kv-didyouknow-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .kv-didyouknow-section {
        padding: 60px 16px;
    }

    .kv-didyouknow-header {
        margin-bottom: 35px;
    }

    .kv-didyouknow-header h2 {
        font-size: 30px;
    }

    .kv-didyouknow-card {
        min-height: auto;

        padding: 25px 22px;

        gap: 16px;
    }

    .kv-didyouknow-icon {
        width: 48px;
        height: 48px;
    }

    .kv-didyouknow-icon i {
        font-size: 16px;
    }

    .kv-didyouknow-card p {
        margin-top: 0;

        font-size: 13px;

        line-height: 1.7;
    }

    .kv-didyouknow-number {
        top: 14px;
        right: 16px;

        font-size: 28px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .kv-didyouknow-section {
        padding: 50px 14px;
    }

    .kv-didyouknow-card {
        padding: 22px 18px;
    }

    .kv-didyouknow-icon {
        width: 44px;
        height: 44px;
    }

    .kv-didyouknow-card p {
        font-size: 12.5px;
    }

}