
    /* scoped to .kv-care-section to avoid global leaks */
    .kv-care-section {
        max-width: 1280px;
        margin: 0 auto;
        padding: 64px 40px;
        background: #ffffff;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    }

    .kv-care-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
    }

    .kv-care-content {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .kv-care-content .kv-label {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #0A66C2;
        background: rgba(10, 102, 194, 0.08);
        padding: 4px 18px;
        border-radius: 100px;
        align-self: flex-start;
        margin-bottom: 2px;
    }

    .kv-care-content h2 {
        font-size: 2.25rem;
        font-weight: 700;
        line-height: 1.2;
        color: #111827;
        margin: 0;
    }

    .kv-care-content .kv-sub {
        font-size: 1.125rem;
        font-weight: 400;
        color: #4b5563;
        margin: 0;
    }

    /* ---- all paragraphs justified & properly spaced ---- */
    .kv-care-content p {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: #374151;
        margin: 0;
        text-align: justify;          /* justified alignment */
        text-justify: inter-word;     /* smoother spacing */
        max-width: 660px;
    }

    .kv-care-highlight {
        font-size: 1.125rem;
        font-weight: 500;
        color: #111827;
        padding-top: 14px;
        border-top: 3px solid #0A66C2;
        display: inline-block;
        margin-top: 6px;
        line-height: 1.5;
        text-align: justify;
    }

    .kv-care-image {
        margin: 0;
        line-height: 0;
    }

    .kv-care-image img {
        width: 100%;
        height: auto;
        border-radius: 14px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
        display: block;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .kv-care-image img:hover {
        transform: scale(1.005);
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
    }

    /* ---- responsive ---- */
    @media (max-width: 992px) {
        .kv-care-section {
            padding: 48px 28px;
        }
        .kv-care-grid {
            gap: 40px;
        }
        .kv-care-content h2 {
            font-size: 1.9rem;
        }
        .kv-care-content p {
            font-size: 1rem;
            max-width: 100%;
        }
        .kv-care-highlight {
            font-size: 1rem;
        }
    }

    @media (max-width: 768px) {
        .kv-care-section {
            padding: 36px 20px;
        }
        .kv-care-grid {
            grid-template-columns: 1fr;
            gap: 28px;
        }
        .kv-care-content {
            order: 1;
        }
        .kv-care-image {
            order: 0;
        }
        .kv-care-content h2 {
            font-size: 1.65rem;
        }
        .kv-care-content .kv-sub {
            font-size: 1rem;
        }
        .kv-care-content p {
            font-size: 0.95rem;
            line-height: 1.65;
        }
        .kv-care-highlight {
            font-size: 0.95rem;
            padding-top: 12px;
        }
        .kv-care-content .kv-label {
            font-size: 0.7rem;
            padding: 3px 14px;
        }
    }

    @media (max-width: 480px) {
        .kv-care-section {
            padding: 28px 16px;
        }
        .kv-care-grid {
            gap: 20px;
        }
        .kv-care-content h2 {
            font-size: 1.4rem;
        }
        .kv-care-content p {
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .kv-care-highlight {
            font-size: 0.9rem;
        }
    }
    .tj-slider-paragraph{
        text-align:justify;
    }


    /* scoped to .kv-choose-section */
    .kv-choose-section {
        margin: 0 auto;
        padding: 64px 40px;
        background: #dcf0ff;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    }

    .kv-choose-header {
        text-align: center;
        max-width: 820px;
        margin: 0 auto 44px auto;
    }

    .kv-choose-header .kv-label {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #0A66C2;
        background: rgba(10, 102, 194, 0.10);
        padding: 4px 18px;
        border-radius: 100px;
        margin-bottom: 10px;
    }

    .kv-choose-header h2 {
        font-size: 2.25rem;
        font-weight: 700;
        line-height: 1.2;
        color: #111827;
        margin: 0 0 6px 0;
    }

    .kv-choose-header .kv-sub {
        font-size: 1.125rem;
        font-weight: 400;
        color: #374151;
        margin: 0 0 12px 0;
    }

    .kv-choose-header p {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: #374151;
        margin: 0;
        text-align: justify;
        text-justify: inter-word;
    }

    /* ---- cards grid ---- */
    .kv-choose-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
        gap: 24px;
        margin-top: 8px;
    }

    .kv-choose-card {
        background: #ffffff;
        border-radius: 14px;
        padding: 28px 22px 24px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .kv-choose-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 36px rgba(0, 0, 0, 0.08);
    }

    .kv-choose-card .kv-icon {
        font-size: 1.8rem;
        line-height: 1;
        margin-bottom: 12px;
        color: #0A66C2;
    }

    .kv-choose-card h3 {
        font-size: 1.0625rem;
        font-weight: 600;
        color: #111827;
        margin: 0 0 6px 0;
    }

    .kv-choose-card p {
        font-size: 0.9375rem;
        line-height: 1.6;
        color: #4b5563;
        margin: 0;
        text-align: justify;
        text-justify: inter-word;
    }

    /* ---- responsive ---- */
    @media (max-width: 992px) {
        .kv-choose-section {
            padding: 48px 28px;
        }
        .kv-choose-header h2 {
            font-size: 1.9rem;
        }
        .kv-choose-header p {
            font-size: 1rem;
        }
        .kv-choose-grid {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .kv-choose-section {
            padding: 40px 20px;
        }
        .kv-choose-header {
            margin-bottom: 32px;
        }
        .kv-choose-header h2 {
            font-size: 1.65rem;
        }
        .kv-choose-header .kv-sub {
            font-size: 1rem;
        }
        .kv-choose-header p {
            font-size: 0.95rem;
        }
        .kv-choose-grid {
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }
        .kv-choose-card {
            padding: 22px 18px 20px;
        }
        .kv-choose-card h3 {
            font-size: 1rem;
        }
        .kv-choose-card p {
            font-size: 0.875rem;
        }
    }

    @media (max-width: 480px) {
        .kv-choose-section {
            padding: 32px 16px;
        }
        .kv-choose-header h2 {
            font-size: 1.4rem;
        }
        .kv-choose-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }
        .kv-choose-card {
            padding: 20px 16px 18px;
        }
        .kv-choose-card p {
            font-size: 0.85rem;
        }
        .kv-choose-header p {
            font-size: 0.9rem;
        }
    }


    /* scoped to .kv-people-section */
    .kv-people-section {
        max-width: 1280px;
        margin: 0 auto;
        padding: 64px 40px;
        background: #ffffff;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    }

    .kv-people-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
    }

    .kv-people-content {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .kv-people-content .kv-label {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #0A66C2;
        background: rgba(10, 102, 194, 0.08);
        padding: 4px 18px;
        border-radius: 100px;
        align-self: flex-start;
    }

    .kv-people-content h2 {
        font-size: 2.25rem;
        font-weight: 700;
        line-height: 1.2;
        color: #111827;
        margin: 0;
    }

    .kv-people-content .kv-sub {
        font-size: 1.125rem;
        font-weight: 400;
        color: #4b5563;
        margin: 0;
    }

    .kv-people-content p {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: #374151;
        margin: 0;
        text-align: justify;
        text-justify: inter-word;
        max-width: 640px;
    }

    /* ---- feature items (three) ---- */
    .kv-people-features {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-top: 4px;
    }

    .kv-people-feature {
        padding-left: 20px;
        border-left: 3px solid #0A66C2;
    }

    .kv-people-feature h4 {
        font-size: 1rem;
        font-weight: 600;
        color: #111827;
        margin: 0 0 2px 0;
    }

    .kv-people-feature p {
        font-size: 0.9375rem;
        line-height: 1.6;
        color: #4b5563;
        margin: 0;
        text-align: justify;
        text-justify: inter-word;
        max-width: 100%;
    }

    /* ---- CTA button ---- */
    .kv-people-cta {
        margin-top: 8px;
    }

    .kv-people-cta .kv-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 36px;
        background: #0A66C2;
        color: #ffffff;
        font-weight: 600;
        font-size: 1rem;
        border: none;
        border-radius: 100px;
        text-decoration: none;
        box-shadow: 0 4px 16px rgba(10, 102, 194, 0.20);
        transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
        font-family: inherit;
        cursor: pointer;
    }

    .kv-people-cta .kv-btn:hover {
        background: #084a8f;
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(10, 102, 194, 0.28);
        color: #ffffff;
        text-decoration: none;
    }

    /* ---- image ---- */
    .kv-people-image {
        margin: 0;
        line-height: 0;
    }

    .kv-people-image img {
        width: 100%;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        display: block;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .kv-people-image img:hover {
        transform: scale(1.005);
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
    }

    .kv-people-image figcaption {
        font-size: 0.8125rem;
        color: #6b7280;
        text-align: center;
        padding: 10px 0 0 0;
        font-style: italic;
    }

    /* ---- responsive ---- */
    @media (max-width: 992px) {
        .kv-people-section {
            padding: 48px 28px;
        }
        .kv-people-grid {
            gap: 40px;
        }
        .kv-people-content h2 {
            font-size: 1.9rem;
        }
        .kv-people-content p {
            font-size: 1rem;
            max-width: 100%;
        }
        .kv-people-feature p {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 768px) {
        .kv-people-section {
            padding: 40px 20px;
        }
        .kv-people-grid {
            grid-template-columns: 1fr;
            gap: 28px;
        }
        .kv-people-content {
            order: 1;
        }
        .kv-people-image {
            order: 0;
        }
        .kv-people-content h2 {
            font-size: 1.65rem;
        }
        .kv-people-content .kv-sub {
            font-size: 1rem;
        }
        .kv-people-content p {
            font-size: 0.95rem;
        }
        .kv-people-feature h4 {
            font-size: 0.95rem;
        }
        .kv-people-feature p {
            font-size: 0.875rem;
        }
        .kv-people-feature {
            padding-left: 16px;
        }
        .kv-people-cta .kv-btn {
            padding: 12px 28px;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 480px) {
        .kv-people-section {
            padding: 32px 16px;
        }
        .kv-people-grid {
            gap: 20px;
        }
        .kv-people-content h2 {
            font-size: 1.4rem;
        }
        .kv-people-content p {
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .kv-people-feature {
            padding-left: 12px;
        }
        .kv-people-feature h4 {
            font-size: 0.9rem;
        }
        .kv-people-feature p {
            font-size: 0.85rem;
        }
        .kv-people-cta .kv-btn {
            padding: 12px 24px;
            font-size: 0.85rem;
            width: 100%;
            justify-content: center;
        }
        .kv-people-image figcaption {
            font-size: 0.75rem;
        }
    }


    /* scoped to .kv-process-section */
    .kv-process-section {
        margin: 0 auto;
        padding: 64px 40px;
        background: #dcf0ff;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    }

    .kv-process-header {
        text-align: center;
        max-width: 720px;
        margin: 0 auto 44px auto;
    }

    .kv-process-header .kv-label {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #0A66C2;
        background: rgba(10, 102, 194, 0.10);
        padding: 4px 18px;
        border-radius: 100px;
        margin-bottom: 10px;
    }

    .kv-process-header h2 {
        font-size: 2.25rem;
        font-weight: 700;
        line-height: 1.2;
        color: #111827;
        margin: 0 0 4px 0;
    }

    .kv-process-header .kv-sub {
        font-size: 1.125rem;
        font-weight: 400;
        color: #4b5563;
        margin: 0 0 12px 0;
    }

    .kv-process-header p {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: #374151;
        margin: 0;
        text-align: justify;
        text-justify: inter-word;
    }

    /* ---- process grid ---- */
    .kv-process-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .kv-process-step {
        background: #ffffff;
        border-radius: 14px;
        padding: 24px 22px 22px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .kv-process-step:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 36px rgba(0, 0, 0, 0.08);
    }

    .kv-process-step .kv-step-number {
        font-size: 1.75rem;
        font-weight: 700;
        color: #0A66C2;
        line-height: 1;
        margin-bottom: 10px;
        letter-spacing: -0.02em;
    }

    .kv-process-step h3 {
        font-size: 1.0625rem;
        font-weight: 600;
        color: #111827;
        margin: 0 0 6px 0;
    }

    .kv-process-step p {
        font-size: 0.9375rem;
        line-height: 1.6;
        color: #4b5563;
        margin: 0;
        text-align: justify;
        text-justify: inter-word;
    }

    /* ---- responsive ---- */
    @media (max-width: 992px) {
        .kv-process-section {
            padding: 48px 28px;
        }
        .kv-process-header h2 {
            font-size: 1.9rem;
        }
        .kv-process-header p {
            font-size: 1rem;
        }
        .kv-process-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 768px) {
        .kv-process-section {
            padding: 40px 20px;
        }
        .kv-process-header {
            margin-bottom: 32px;
        }
        .kv-process-header h2 {
            font-size: 1.65rem;
        }
        .kv-process-header .kv-sub {
            font-size: 1rem;
        }
        .kv-process-header p {
            font-size: 0.95rem;
        }
        .kv-process-grid {
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .kv-process-step {
            padding: 20px 18px 18px;
        }
        .kv-process-step .kv-step-number {
            font-size: 1.5rem;
        }
        .kv-process-step h3 {
            font-size: 1rem;
        }
        .kv-process-step p {
            font-size: 0.875rem;
        }
    }

    @media (max-width: 480px) {
        .kv-process-section {
            padding: 32px 16px;
        }
        .kv-process-header h2 {
            font-size: 1.4rem;
        }
        .kv-process-grid {
            grid-template-columns: 1fr;
            gap: 14px;
        }
        .kv-process-step {
            padding: 18px 16px 16px;
        }
        .kv-process-step .kv-step-number {
            font-size: 1.35rem;
            margin-bottom: 6px;
        }
        .kv-process-step h3 {
            font-size: 0.95rem;
        }
        .kv-process-step p {
            font-size: 0.85rem;
            line-height: 1.5;
        }
        .kv-process-header p {
            font-size: 0.9rem;
        }
    }


    /* scoped to .kv-services-section */
    .kv-services-section {
        max-width: 1280px;
        margin: 0 auto;
        padding: 64px 40px;
        background: #ffffff;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    }

    .kv-services-header {
        text-align: center;
        max-width: 780px;
        margin: 0 auto 44px auto;
    }

    .kv-services-header .kv-label {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #0A66C2;
        background: rgba(10, 102, 194, 0.08);
        padding: 4px 18px;
        border-radius: 100px;
        margin-bottom: 10px;
    }

    .kv-services-header h2 {
        font-size: 2.25rem;
        font-weight: 700;
        line-height: 1.2;
        color: #111827;
        margin: 0 0 6px 0;
    }

    .kv-services-header .kv-sub {
        font-size: 1.125rem;
        font-weight: 400;
        color: #4b5563;
        margin: 0 0 12px 0;
    }

    .kv-services-header p {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: #374151;
        margin: 0;
        text-align: justify;
        text-justify: inter-word;
    }

    /* ---- services grid ---- */
    .kv-services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        margin-bottom: 32px;
    }

    .kv-service-card {
        background: #dcf0ff;
        border-radius: 16px;
        padding: 24px 22px 22px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(10, 102, 194, 0.04);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .kv-service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 36px rgba(0, 0, 0, 0.07);
    }

    .kv-service-card .kv-service-icon {
        font-size: 2rem;
        line-height: 1;
        margin-bottom: 12px;
        color: #0A66C2;
    }

    .kv-service-card h3 {
        font-size: 1.125rem;
        font-weight: 600;
        color: #111827;
        margin: 0 0 8px 0;
    }

    .kv-service-card p {
        font-size: 0.9375rem;
        line-height: 1.6;
        color: #4b5563;
        margin: 0 0 16px 0;
        text-align: justify;
        text-justify: inter-word;
        flex: 1;
    }

    .kv-service-card .kv-service-link {
        font-weight: 500;
        color: #0A66C2;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: color 0.2s ease, gap 0.2s ease;
        font-size: 0.9375rem;
    }

    .kv-service-card .kv-service-link:hover {
        color: #084a8f;
        gap: 10px;
        text-decoration: underline;
    }

    .kv-service-card .kv-service-link .kv-arrow {
        transition: transform 0.2s ease;
        display: inline-block;
    }

    .kv-service-card .kv-service-link:hover .kv-arrow {
        transform: translateX(4px);
    }

    /* ---- explore all services CTA ---- */
    .kv-services-cta {
        text-align: center;
        margin-top: 8px;
    }

    .kv-services-cta .kv-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 36px;
        background: #0A66C2;
        color: #ffffff;
        font-weight: 600;
        font-size: 1rem;
        border: none;
        border-radius: 100px;
        text-decoration: none;
        box-shadow: 0 4px 16px rgba(10, 102, 194, 0.20);
        transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
        font-family: inherit;
        cursor: pointer;
    }

    .kv-services-cta .kv-btn:hover {
        background: #084a8f;
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(10, 102, 194, 0.28);
        color: #ffffff;
        text-decoration: none;
    }

    /* ---- responsive ---- */
    @media (max-width: 992px) {
        .kv-services-section {
            padding: 48px 28px;
        }
        .kv-services-header h2 {
            font-size: 1.9rem;
        }
        .kv-services-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 22px;
        }
        .kv-service-card h3 {
            font-size: 1rem;
        }
        .kv-service-card p {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 768px) {
        .kv-services-section {
            padding: 40px 20px;
        }
        .kv-services-header {
            margin-bottom: 32px;
        }
        .kv-services-header h2 {
            font-size: 1.65rem;
        }
        .kv-services-header .kv-sub {
            font-size: 1rem;
        }
        .kv-services-header p {
            font-size: 0.95rem;
        }
        .kv-services-grid {
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }
        .kv-service-card {
            padding: 20px 16px 18px;
        }
        .kv-service-card p {
            font-size: 0.85rem;
        }
        .kv-service-card .kv-service-link {
            font-size: 0.85rem;
        }
        .kv-services-cta .kv-btn {
            padding: 12px 28px;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 480px) {
        .kv-services-section {
            padding: 32px 16px;
        }
        .kv-services-header h2 {
            font-size: 1.4rem;
        }
        .kv-services-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }
        .kv-service-card {
            padding: 18px 16px 16px;
        }
        .kv-service-card .kv-service-icon {
            font-size: 1.6rem;
        }
        .kv-service-card h3 {
            font-size: 0.95rem;
        }
        .kv-service-card p {
            font-size: 0.85rem;
        }
        .kv-services-cta .kv-btn {
            padding: 12px 24px;
            font-size: 0.85rem;
            width: 100%;
            justify-content: center;
        }
    }



    /* scoped to .kv-cleaning-details */
    .kv-cleaning-details {
        margin: 0 auto;
        padding: 64px 40px;
        background: #dcf0ff;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    }

    .kv-cleaning-details .kv-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
    }

    /* ---- left content ---- */
    .kv-cleaning-details .kv-content {
        display: flex;
        flex-direction: column;
    }

    .kv-cleaning-details .kv-label {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #0A66C2;
        background: rgba(10, 102, 194, 0.10);
        padding: 4px 18px;
        border-radius: 100px;
        align-self: flex-start;
        margin-bottom: 12px;
    }

    .kv-cleaning-details h2 {
        font-size: 2.25rem;
        font-weight: 700;
        line-height: 1.15;
        color: #111827;
        margin: 0 0 4px 0;
    }

    .kv-cleaning-details .kv-sub {
        font-size: 1.125rem;
        font-weight: 400;
        color: #4b5563;
        margin: 0 0 16px 0;
    }

    .kv-cleaning-details .kv-content p {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: #374151;
        margin: 0 0 14px 0;
        text-align: justify;
        text-justify: inter-word;
    }

    /* ---- details list - clean alignment ---- */
    .kv-cleaning-details .kv-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px 28px;
        margin: 4px 0 16px 0;
        padding: 0;
        list-style: none;
    }

    .kv-cleaning-details .kv-list li {
        display: flex;
        align-items: baseline;
        gap: 12px;
        font-size: 0.9375rem;
        line-height: 1.6;
        color: #1f2937;
        padding: 4px 0;
        text-align: left;
    }

    .kv-cleaning-details .kv-list li .kv-icon {
        color: #0A66C2;
        font-size: 0.85rem;
        width: 1.25rem;
        text-align: center;
        flex-shrink: 0;
        display: inline-block;
    }

    .kv-cleaning-details .kv-list li .kv-text {
        flex: 1;
    }

    /* ---- closing statement ---- */
    .kv-cleaning-details .kv-closing {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: #111827;
        margin: 6px 0 0 0;
        text-align: justify;
        text-justify: inter-word;
        font-weight: 500;
        padding-top: 14px;
        border-top: 3px solid rgba(10, 102, 194, 0.12);
    }

    /* ---- right image ---- */
    .kv-cleaning-details .kv-image {
        margin: 0;
        line-height: 0;
    }

    .kv-cleaning-details .kv-image img {
        width: 100%;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        display: block;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .kv-cleaning-details .kv-image img:hover {
        transform: scale(1.005);
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
    }

    .kv-cleaning-details .kv-image figcaption {
        font-size: 0.8125rem;
        color: #6b7280;
        text-align: center;
        padding: 10px 0 0 0;
        font-style: italic;
    }

    /* ---- responsive ---- */
    @media (max-width: 1024px) {
        .kv-cleaning-details .kv-grid {
            gap: 40px;
        }
        .kv-cleaning-details h2 {
            font-size: 2rem;
        }
        .kv-cleaning-details .kv-list {
            gap: 4px 20px;
        }
    }

    @media (max-width: 992px) {
        .kv-cleaning-details {
            padding: 48px 28px;
        }
        .kv-cleaning-details .kv-grid {
            gap: 32px;
        }
        .kv-cleaning-details h2 {
            font-size: 1.8rem;
        }
        .kv-cleaning-details .kv-content p {
            font-size: 1rem;
        }
        .kv-cleaning-details .kv-list {
            grid-template-columns: 1fr;
            gap: 4px 0;
        }
        .kv-cleaning-details .kv-list li {
            font-size: 0.9rem;
        }
        .kv-cleaning-details .kv-closing {
            font-size: 1rem;
        }
    }

    @media (max-width: 768px) {
        .kv-cleaning-details {
            padding: 40px 20px;
        }
        .kv-cleaning-details .kv-grid {
            grid-template-columns: 1fr;
            gap: 28px;
        }
        .kv-cleaning-details .kv-content {
            order: 1;
        }
        .kv-cleaning-details .kv-image {
            order: 0;
        }
        .kv-cleaning-details h2 {
            font-size: 1.6rem;
        }
        .kv-cleaning-details .kv-sub {
            font-size: 1rem;
        }
        .kv-cleaning-details .kv-content p {
            font-size: 0.95rem;
        }
        .kv-cleaning-details .kv-list {
            grid-template-columns: 1fr 1fr;
            gap: 4px 16px;
        }
        .kv-cleaning-details .kv-list li {
            font-size: 0.875rem;
        }
        .kv-cleaning-details .kv-closing {
            font-size: 0.95rem;
        }
        .kv-cleaning-details .kv-image figcaption {
            font-size: 0.75rem;
        }
    }

    @media (max-width: 480px) {
        .kv-cleaning-details {
            padding: 32px 16px;
        }
        .kv-cleaning-details .kv-grid {
            gap: 20px;
        }
        .kv-cleaning-details h2 {
            font-size: 1.35rem;
        }
        .kv-cleaning-details .kv-content p {
            font-size: 0.9rem;
        }
        .kv-cleaning-details .kv-list {
            grid-template-columns: 1fr;
            gap: 3px 0;
        }
        .kv-cleaning-details .kv-list li {
            font-size: 0.85rem;
            padding: 2px 0;
        }
        .kv-cleaning-details .kv-list li .kv-icon {
            font-size: 0.75rem;
            width: 1.1rem;
        }
        .kv-cleaning-details .kv-closing {
            font-size: 0.9rem;
            padding-top: 10px;
        }
        .kv-cleaning-details .kv-image figcaption {
            font-size: 0.7rem;
        }
    }


    /* scoped to .kv-schedule-section */
    .kv-schedule-section {
        max-width: 1280px;
        margin: 0 auto;
        padding: 64px 40px;
        background: #ffffff;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    }

    /* ---- header ---- */
    .kv-schedule-header {
        text-align: center;
        max-width: 780px;
        margin: 0 auto 44px auto;
    }

    .kv-schedule-header .kv-label {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #0A66C2;
        background: rgba(10, 102, 194, 0.08);
        padding: 4px 18px;
        border-radius: 100px;
        margin-bottom: 10px;
    }

    .kv-schedule-header h2 {
        font-size: 2.25rem;
        font-weight: 700;
        line-height: 1.2;
        color: #111827;
        margin: 0 0 4px 0;
    }

    .kv-schedule-header .kv-sub {
        font-size: 1.125rem;
        font-weight: 400;
        color: #4b5563;
        margin: 0 0 12px 0;
    }

    .kv-schedule-header p {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: #374151;
        margin: 0 0 8px 0;
        text-align: justify;
        text-justify: inter-word;
    }

    .kv-schedule-header .kv-intro {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: #374151;
        margin: 0;
        text-align: justify;
        text-justify: inter-word;
    }

    /* ---- schedule grid ---- */
    .kv-schedule-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin: 8px 0 28px 0;
    }

    .kv-schedule-card {
        background: #dcf0ff;
        border-radius: 16px;
        padding: 28px 20px 24px;
        text-align: center;
        border: 1px solid rgba(10, 102, 194, 0.06);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .kv-schedule-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(10, 102, 194, 0.08);
        border-color: rgba(10, 102, 194, 0.15);
    }

    .kv-schedule-card .kv-icon-wrapper {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: rgba(10, 102, 194, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        color: #0A66C2;
        transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
        flex-shrink: 0;
    }

    .kv-schedule-card:hover .kv-icon-wrapper {
        background: #0A66C2;
        color: #ffffff;
        transform: scale(1.05);
    }

    .kv-schedule-card h4 {
        font-size: 1.0625rem;
        font-weight: 600;
        color: #111827;
        margin: 0;
        line-height: 1.3;
    }

    .kv-schedule-card p {
        font-size: 0.9375rem;
        line-height: 1.6;
        color: #4b5563;
        margin: 0;
        text-align: justify;
        text-justify: inter-word;
    }

    /* ---- closing note ---- */
    .kv-schedule-footer {
        text-align: center;
        max-width: 680px;
        margin: 0 auto;
        padding-top: 16px;
        border-top: 2px solid rgba(10, 102, 194, 0.08);
    }

    .kv-schedule-footer p {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: #374151;
        margin: 0;
        text-align: justify;
        text-justify: inter-word;
    }

    /* ---- responsive ---- */
    @media (max-width: 992px) {
        .kv-schedule-section {
            padding: 48px 28px;
        }
        .kv-schedule-header h2 {
            font-size: 1.9rem;
        }
        .kv-schedule-header p,
        .kv-schedule-header .kv-intro {
            font-size: 1rem;
        }
        .kv-schedule-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .kv-schedule-card {
            padding: 24px 18px 20px;
        }
        .kv-schedule-card .kv-icon-wrapper {
            width: 56px;
            height: 56px;
            font-size: 1.4rem;
        }
        .kv-schedule-card h4 {
            font-size: 1rem;
        }
        .kv-schedule-card p {
            font-size: 0.9rem;
        }
        .kv-schedule-footer p {
            font-size: 1rem;
        }
    }

    @media (max-width: 768px) {
        .kv-schedule-section {
            padding: 40px 20px;
        }
        .kv-schedule-header {
            margin-bottom: 32px;
        }
        .kv-schedule-header h2 {
            font-size: 1.65rem;
        }
        .kv-schedule-header .kv-sub {
            font-size: 1rem;
        }
        .kv-schedule-header p,
        .kv-schedule-header .kv-intro {
            font-size: 0.95rem;
        }
        .kv-schedule-grid {
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .kv-schedule-card {
            padding: 20px 14px 18px;
        }
        .kv-schedule-card .kv-icon-wrapper {
            width: 48px;
            height: 48px;
            font-size: 1.2rem;
        }
        .kv-schedule-card h4 {
            font-size: 0.95rem;
        }
        .kv-schedule-card p {
            font-size: 0.85rem;
        }
        .kv-schedule-footer p {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 480px) {
        .kv-schedule-section {
            padding: 32px 16px;
        }
        .kv-schedule-header h2 {
            font-size: 1.4rem;
        }
        .kv-schedule-grid {
            grid-template-columns: 1fr;
            gap: 14px;
        }
        .kv-schedule-card {
            flex-direction: row;
            align-items: center;
            text-align: left;
            padding: 16px 18px;
            gap: 16px;
        }
        .kv-schedule-card .kv-icon-wrapper {
            width: 44px;
            height: 44px;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .kv-schedule-card .kv-card-text {
            flex: 1;
        }
        .kv-schedule-card h4 {
            font-size: 0.9rem;
            margin-bottom: 2px;
        }
        .kv-schedule-card p {
            font-size: 0.8rem;
        }
        .kv-schedule-footer p {
            font-size: 0.9rem;
        }
    }


    /* scoped to .kv-relationship-section */
    .kv-relationship-section {
        margin: 0 auto;
        padding: 64px 40px;
        background: #dcf0ff;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    }

    .kv-relationship-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
    }

    /* ---- left content ---- */
    .kv-relationship-content {
        display: flex;
        flex-direction: column;
    }

    .kv-relationship-content .kv-label {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #0A66C2;
        background: rgba(10, 102, 194, 0.10);
        padding: 4px 18px;
        border-radius: 100px;
        align-self: flex-start;
        margin-bottom: 12px;
    }

    .kv-relationship-content h2 {
        font-size: 2.25rem;
        font-weight: 700;
        line-height: 1.15;
        color: #111827;
        margin: 0 0 4px 0;
    }

    .kv-relationship-content .kv-sub {
        font-size: 1.125rem;
        font-weight: 400;
        color: #4b5563;
        margin: 0 0 16px 0;
    }

    .kv-relationship-content p {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: #374151;
        margin: 0 0 12px 0;
        text-align: justify;
        text-justify: inter-word;
    }

    /* ---- relationship points (list) ---- */
    .kv-relationship-content .kv-points {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px 20px;
        margin: 4px 0 16px 0;
        padding: 0;
        list-style: none;
    }

    .kv-relationship-content .kv-points li {
        display: flex;
        align-items: baseline;
        gap: 10px;
        font-size: 0.9375rem;
        line-height: 1.6;
        color: #1f2937;
        padding: 3px 0;
        text-align: left;
    }

    .kv-relationship-content .kv-points li .kv-icon {
        color: #0A66C2;
        font-size: 0.8rem;
        width: 1.15rem;
        text-align: center;
        flex-shrink: 0;
        display: inline-block;
    }

    .kv-relationship-content .kv-points li .kv-text {
        flex: 1;
    }

    /* ---- closing statement ---- */
    .kv-relationship-content .kv-closing {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: #111827;
        margin: 6px 0 0 0;
        text-align: justify;
        text-justify: inter-word;
        font-weight: 500;
        padding-top: 14px;
        border-top: 3px solid rgba(10, 102, 194, 0.12);
    }

    /* ---- right image ---- */
    .kv-relationship-image {
        margin: 0;
        line-height: 0;
    }

    .kv-relationship-image img {
        width: 100%;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        display: block;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .kv-relationship-image img:hover {
        transform: scale(1.005);
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
    }

    .kv-relationship-image figcaption {
        font-size: 0.8125rem;
        color: #6b7280;
        text-align: center;
        padding: 10px 0 0 0;
        font-style: italic;
    }

    /* ---- responsive ---- */
    @media (max-width: 1024px) {
        .kv-relationship-grid {
            gap: 40px;
        }
        .kv-relationship-content h2 {
            font-size: 2rem;
        }
        .kv-relationship-content .kv-points {
            gap: 3px 16px;
        }
    }

    @media (max-width: 992px) {
        .kv-relationship-section {
            padding: 48px 28px;
        }
        .kv-relationship-grid {
            gap: 32px;
        }
        .kv-relationship-content h2 {
            font-size: 1.8rem;
        }
        .kv-relationship-content p {
            font-size: 1rem;
        }
        .kv-relationship-content .kv-points {
            grid-template-columns: 1fr;
            gap: 3px 0;
        }
        .kv-relationship-content .kv-points li {
            font-size: 0.9rem;
        }
        .kv-relationship-content .kv-closing {
            font-size: 1rem;
        }
    }

    @media (max-width: 768px) {
        .kv-relationship-section {
            padding: 40px 20px;
        }
        .kv-relationship-grid {
            grid-template-columns: 1fr;
            gap: 28px;
        }
        .kv-relationship-content {
            order: 1;
        }
        .kv-relationship-image {
            order: 0;
        }
        .kv-relationship-content h2 {
            font-size: 1.6rem;
        }
        .kv-relationship-content .kv-sub {
            font-size: 1rem;
        }
        .kv-relationship-content p {
            font-size: 0.95rem;
        }
        .kv-relationship-content .kv-points {
            grid-template-columns: 1fr 1fr;
            gap: 3px 16px;
        }
        .kv-relationship-content .kv-points li {
            font-size: 0.875rem;
        }
        .kv-relationship-content .kv-closing {
            font-size: 0.95rem;
        }
        .kv-relationship-image figcaption {
            font-size: 0.75rem;
        }
    }

    @media (max-width: 480px) {
        .kv-relationship-section {
            padding: 32px 16px;
        }
        .kv-relationship-grid {
            gap: 20px;
        }
        .kv-relationship-content h2 {
            font-size: 1.35rem;
        }
        .kv-relationship-content p {
            font-size: 0.9rem;
        }
        .kv-relationship-content .kv-points {
            grid-template-columns: 1fr;
            gap: 2px 0;
        }
        .kv-relationship-content .kv-points li {
            font-size: 0.85rem;
            padding: 2px 0;
        }
        .kv-relationship-content .kv-points li .kv-icon {
            font-size: 0.7rem;
            width: 1rem;
        }
        .kv-relationship-content .kv-closing {
            font-size: 0.9rem;
            padding-top: 10px;
        }
        .kv-relationship-image figcaption {
            font-size: 0.7rem;
        }
    }




    /* scoped to .kv-results-section */
    .kv-results-section {
        max-width: 1280px;
        margin: 0 auto;
        padding: 64px 40px;
        background: #ffffff;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    }

    /* ---- header ---- */
    .kv-results-header {
        text-align: center;
        max-width: 720px;
        margin: 0 auto 44px auto;
    }

    .kv-results-header .kv-label {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #0A66C2;
        background: rgba(10, 102, 194, 0.08);
        padding: 4px 18px;
        border-radius: 100px;
        margin-bottom: 10px;
    }

    .kv-results-header h2 {
        font-size: 2.25rem;
        font-weight: 700;
        line-height: 1.2;
        color: #111827;
        margin: 0 0 4px 0;
    }

    .kv-results-header .kv-sub {
        font-size: 1.125rem;
        font-weight: 400;
        color: #4b5563;
        margin: 0 0 12px 0;
    }

    .kv-results-header p {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: #374151;
        margin: 0;
        text-align: justify;
        text-justify: inter-word;
    }

    /* ---- gallery grid (3 columns) ---- */
    .kv-results-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-bottom: 32px;
    }

    .kv-result-card {
        background: #fafcfe;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(10, 102, 194, 0.06);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .kv-result-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(10, 102, 194, 0.08);
        border-color: rgba(10, 102, 194, 0.15);
    }

    .kv-result-card .kv-card-image {
        position: relative;
        overflow: hidden;
        line-height: 0;
        background: #e5e9f0;
    }

    .kv-result-card .kv-card-image img {
        width: 100%;
        aspect-ratio: 16/11;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

    .kv-result-card:hover .kv-card-image img {
        transform: scale(1.03);
    }

    /* ---- overlay badge ---- */
    .kv-result-card .kv-badge {
        position: absolute;
        bottom: 12px;
        left: 12px;
        background: rgba(10, 102, 194, 0.85);
        color: #ffffff;
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        padding: 4px 14px;
        border-radius: 100px;
        backdrop-filter: blur(4px);
    }

    /* ---- card body ---- */
    .kv-result-card .kv-card-body {
        padding: 16px 20px 20px;
    }

    .kv-result-card .kv-card-body h4 {
        font-size: 1rem;
        font-weight: 600;
        color: #111827;
        margin: 0 0 4px 0;
        line-height: 1.3;
    }

    .kv-result-card .kv-card-body p {
        font-size: 0.875rem;
        line-height: 1.6;
        color: #4b5563;
        margin: 0;
        text-align: justify;
        text-justify: inter-word;
    }

    /* ---- CTA ---- */
    .kv-results-cta {
        text-align: center;
    }

    .kv-results-cta .kv-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 40px;
        background: #0A66C2;
        color: #ffffff;
        font-weight: 600;
        font-size: 1rem;
        border: none;
        border-radius: 100px;
        text-decoration: none;
        box-shadow: 0 4px 16px rgba(10, 102, 194, 0.20);
        transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
        font-family: inherit;
        cursor: pointer;
    }

    .kv-results-cta .kv-btn i {
        font-size: 0.9rem;
        transition: transform 0.25s ease;
    }

    .kv-results-cta .kv-btn:hover {
        background: #084a8f;
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(10, 102, 194, 0.28);
        color: #ffffff;
        text-decoration: none;
    }

    .kv-results-cta .kv-btn:hover i {
        transform: translateX(4px);
    }

    /* ---- responsive ---- */
    @media (max-width: 992px) {
        .kv-results-section {
            padding: 48px 28px;
        }
        .kv-results-header h2 {
            font-size: 1.9rem;
        }
        .kv-results-header p {
            font-size: 1rem;
        }
        .kv-results-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .kv-result-card .kv-card-body h4 {
            font-size: 0.95rem;
        }
        .kv-result-card .kv-card-body p {
            font-size: 0.85rem;
        }
    }

    @media (max-width: 768px) {
        .kv-results-section {
            padding: 40px 20px;
        }
        .kv-results-header {
            margin-bottom: 32px;
        }
        .kv-results-header h2 {
            font-size: 1.65rem;
        }
        .kv-results-header .kv-sub {
            font-size: 1rem;
        }
        .kv-results-header p {
            font-size: 0.95rem;
        }
        .kv-results-grid {
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .kv-result-card .kv-card-body {
            padding: 14px 16px 16px;
        }
        .kv-result-card .kv-card-body h4 {
            font-size: 0.9rem;
        }
        .kv-result-card .kv-card-body p {
            font-size: 0.8125rem;
        }
        .kv-result-card .kv-badge {
            font-size: 0.6rem;
            padding: 3px 12px;
            bottom: 8px;
            left: 8px;
        }
        .kv-results-cta .kv-btn {
            padding: 12px 28px;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 480px) {
        .kv-results-section {
            padding: 32px 16px;
        }
        .kv-results-header h2 {
            font-size: 1.4rem;
        }
        .kv-results-grid {
            grid-template-columns: 1fr;
            gap: 14px;
        }
        .kv-result-card .kv-card-image img {
            aspect-ratio: 16/10;
        }
        .kv-result-card .kv-card-body {
            padding: 12px 14px 14px;
        }
        .kv-result-card .kv-card-body h4 {
            font-size: 0.9rem;
        }
        .kv-result-card .kv-card-body p {
            font-size: 0.8rem;
        }
        .kv-results-cta .kv-btn {
            padding: 12px 24px;
            font-size: 0.85rem;
            width: 100%;
            justify-content: center;
        }
    }


    /* scoped to .kv-reviews-section */
    .kv-reviews-section {
        margin: 0 auto;
        padding: 64px 40px;
        background: #dcf0ff;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    }

    /* ---- header ---- */
    .kv-reviews-header {
        text-align: center;
        max-width: 720px;
        margin: 0 auto 44px auto;
    }

    .kv-reviews-header .kv-label {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #0A66C2;
        background: rgba(10, 102, 194, 0.08);
        padding: 4px 18px;
        border-radius: 100px;
        margin-bottom: 10px;
    }

    .kv-reviews-header h2 {
        font-size: 2.25rem;
        font-weight: 700;
        line-height: 1.2;
        color: #111827;
        margin: 0 0 4px 0;
    }

    .kv-reviews-header .kv-sub {
        font-size: 1.125rem;
        font-weight: 400;
        color: #4b5563;
        margin: 0 0 12px 0;
    }

    .kv-reviews-header p {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: #374151;
        margin: 0;
        text-align: justify;
        text-justify: inter-word;
    }

    /* ---- Elfsight widget wrapper ---- */
    .kv-reviews-widget {
        margin: 0 auto 32px auto;
        padding: 23px;
        background: #fafcfe;
        border-radius: 16px;
        border: 1px solid rgba(10, 102, 194, 0.06);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
        transition: box-shadow 0.3s ease;
    }

    .kv-reviews-widget:hover {
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    }

    .kv-reviews-widget .elfsight-app-4964e1c4-3f81-4a57-b2b4-48a92523935a {
        border-radius: 12px;
        overflow: hidden;
    }

    /* ---- CTA ---- */
    .kv-reviews-cta {
        text-align: center;
    }

    .kv-reviews-cta .kv-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 40px;
        background: #0A66C2;
        color: #ffffff;
        font-weight: 600;
        font-size: 1rem;
        border: none;
        border-radius: 100px;
        text-decoration: none;
        box-shadow: 0 4px 16px rgba(10, 102, 194, 0.20);
        transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
        font-family: inherit;
        cursor: pointer;
    }

    .kv-reviews-cta .kv-btn i {
        font-size: 0.9rem;
        transition: transform 0.25s ease;
    }

    .kv-reviews-cta .kv-btn:hover {
        background: #084a8f;
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(10, 102, 194, 0.28);
        color: #ffffff;
        text-decoration: none;
    }

    .kv-reviews-cta .kv-btn:hover i {
        transform: translateX(4px);
    }

    /* ---- responsive ---- */
    @media (max-width: 992px) {
        .kv-reviews-section {
            padding: 48px 28px;
        }
        .kv-reviews-header h2 {
            font-size: 1.9rem;
        }
        .kv-reviews-header p {
            font-size: 1rem;
        }
        .kv-reviews-widget {
            padding: 6px;
            margin-bottom: 28px;
        }
    }

    @media (max-width: 768px) {
        .kv-reviews-section {
            padding: 40px 20px;
        }
        .kv-reviews-header {
            margin-bottom: 32px;
        }
        .kv-reviews-header h2 {
            font-size: 1.65rem;
        }
        .kv-reviews-header .kv-sub {
            font-size: 1rem;
        }
        .kv-reviews-header p {
            font-size: 0.95rem;
        }
        .kv-reviews-widget {
            padding: 4px;
            margin-bottom: 24px;
            border-radius: 12px;
        }
        .kv-reviews-cta .kv-btn {
            padding: 12px 28px;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 480px) {
        .kv-reviews-section {
            padding: 32px 16px;
        }
        .kv-reviews-header h2 {
            font-size: 1.4rem;
        }
        .kv-reviews-header p {
            font-size: 0.9rem;
        }
        .kv-reviews-widget {
            padding: 2px;
            margin-bottom: 20px;
            border-radius: 10px;
        }
        .kv-reviews-cta .kv-btn {
            padding: 12px 24px;
            font-size: 0.85rem;
            width: 100%;
            justify-content: center;
        }
    }


    /* scoped to .kv-quality-section */
    .kv-quality-section {
        max-width: 1280px;
        margin: 0 auto;
        padding: 64px 40px;
        background: #ffffff;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    }

    .kv-quality-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
    }

    /* ---- left content ---- */
    .kv-quality-content {
        display: flex;
        flex-direction: column;
    }

    .kv-quality-content .kv-label {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #0A66C2;
        background: rgba(10, 102, 194, 0.08);
        padding: 4px 18px;
        border-radius: 100px;
        align-self: flex-start;
        margin-bottom: 12px;
    }

    .kv-quality-content h2 {
        font-size: 2.25rem;
        font-weight: 700;
        line-height: 1.15;
        color: #111827;
        margin: 0 0 4px 0;
    }

    .kv-quality-content .kv-sub {
        font-size: 1.125rem;
        font-weight: 400;
        color: #4b5563;
        margin: 0 0 16px 0;
    }

    .kv-quality-content p {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: #374151;
        margin: 0 0 14px 0;
        text-align: justify;
        text-justify: inter-word;
    }

    /* ---- quality processes list ---- */
    .kv-quality-content .kv-processes {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px 20px;
        margin: 4px 0 16px 0;
        padding: 0;
        list-style: none;
    }

    .kv-quality-content .kv-processes li {
        display: flex;
        align-items: baseline;
        gap: 10px;
        font-size: 0.9375rem;
        line-height: 1.6;
        color: #1f2937;
        padding: 3px 0;
        text-align: left;
    }

    .kv-quality-content .kv-processes li .kv-icon {
        color: #0A66C2;
        font-size: 0.8rem;
        width: 1.15rem;
        text-align: center;
        flex-shrink: 0;
        display: inline-block;
    }

    .kv-quality-content .kv-processes li .kv-text {
        flex: 1;
    }

    /* ---- closing statement ---- */
    .kv-quality-content .kv-closing {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: #111827;
        margin: 6px 0 0 0;
        text-align: justify;
        text-justify: inter-word;
        font-weight: 500;
        padding-top: 14px;
        border-top: 3px solid rgba(10, 102, 194, 0.12);
    }

    /* ---- right image ---- */
    .kv-quality-image {
        margin: 0;
        line-height: 0;
    }

    .kv-quality-image img {
        width: 100%;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        display: block;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .kv-quality-image img:hover {
        transform: scale(1.005);
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
    }

    .kv-quality-image figcaption {
        font-size: 0.8125rem;
        color: #6b7280;
        text-align: center;
        padding: 10px 0 0 0;
        font-style: italic;
    }

    /* ---- responsive ---- */
    @media (max-width: 1024px) {
        .kv-quality-grid {
            gap: 40px;
        }
        .kv-quality-content h2 {
            font-size: 2rem;
        }
        .kv-quality-content .kv-processes {
            gap: 3px 16px;
        }
    }

    @media (max-width: 992px) {
        .kv-quality-section {
            padding: 48px 28px;
        }
        .kv-quality-grid {
            gap: 32px;
        }
        .kv-quality-content h2 {
            font-size: 1.8rem;
        }
        .kv-quality-content p {
            font-size: 1rem;
        }
        .kv-quality-content .kv-processes {
            grid-template-columns: 1fr;
            gap: 3px 0;
        }
        .kv-quality-content .kv-processes li {
            font-size: 0.9rem;
        }
        .kv-quality-content .kv-closing {
            font-size: 1rem;
        }
    }

    @media (max-width: 768px) {
        .kv-quality-section {
            padding: 40px 20px;
        }
        .kv-quality-grid {
            grid-template-columns: 1fr;
            gap: 28px;
        }
        .kv-quality-content {
            order: 1;
        }
        .kv-quality-image {
            order: 0;
        }
        .kv-quality-content h2 {
            font-size: 1.6rem;
        }
        .kv-quality-content .kv-sub {
            font-size: 1rem;
        }
        .kv-quality-content p {
            font-size: 0.95rem;
        }
        .kv-quality-content .kv-processes {
            grid-template-columns: 1fr 1fr;
            gap: 3px 16px;
        }
        .kv-quality-content .kv-processes li {
            font-size: 0.875rem;
        }
        .kv-quality-content .kv-closing {
            font-size: 0.95rem;
        }
        .kv-quality-image figcaption {
            font-size: 0.75rem;
        }
    }

    @media (max-width: 480px) {
        .kv-quality-section {
            padding: 32px 16px;
        }
        .kv-quality-grid {
            gap: 20px;
        }
        .kv-quality-content h2 {
            font-size: 1.35rem;
        }
        .kv-quality-content p {
            font-size: 0.9rem;
        }
        .kv-quality-content .kv-processes {
            grid-template-columns: 1fr;
            gap: 2px 0;
        }
        .kv-quality-content .kv-processes li {
            font-size: 0.85rem;
            padding: 2px 0;
        }
        .kv-quality-content .kv-processes li .kv-icon {
            font-size: 0.7rem;
            width: 1rem;
        }
        .kv-quality-content .kv-closing {
            font-size: 0.9rem;
            padding-top: 10px;
        }
        .kv-quality-image figcaption {
            font-size: 0.7rem;
        }
    }


    /* scoped to .kv-why-section */
    .kv-why-section {
        margin: 0 auto;
        padding: 64px 40px;
        background: #dcf0ff;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    }

    /* ---- header ---- */
    .kv-why-header {
        text-align: center;
        max-width: 720px;
        margin: 0 auto 44px auto;
    }

    .kv-why-header .kv-label {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #0A66C2;
        background: rgba(10, 102, 194, 0.10);
        padding: 4px 18px;
        border-radius: 100px;
        margin-bottom: 10px;
    }

    .kv-why-header h2 {
        font-size: 2.25rem;
        font-weight: 700;
        line-height: 1.2;
        color: #111827;
        margin: 0 0 4px 0;
    }

    .kv-why-header .kv-sub {
        font-size: 1.125rem;
        font-weight: 400;
        color: #4b5563;
        margin: 0 0 12px 0;
    }

    .kv-why-header p {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: #374151;
        margin: 0;
        text-align: justify;
        text-justify: inter-word;
    }

    /* ---- features grid (compact, 2 columns) ---- */
    .kv-why-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 860px;
        margin: 0 auto;
    }

    .kv-why-item {
        background: #ffffff;
        border-radius: 14px;
        padding: 22px 24px 20px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        border: 1px solid rgba(10, 102, 194, 0.04);
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .kv-why-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 36px rgba(10, 102, 194, 0.08);
        border-color: rgba(10, 102, 194, 0.12);
    }

    .kv-why-item .kv-icon-wrapper {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 50%;
        background: rgba(10, 102, 194, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        color: #0A66C2;
        transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    }

    .kv-why-item:hover .kv-icon-wrapper {
        background: #0A66C2;
        color: #ffffff;
        transform: scale(1.05);
    }

    .kv-why-item .kv-item-content {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .kv-why-item .kv-item-content h4 {
        font-size: 1rem;
        font-weight: 600;
        color: #111827;
        margin: 0 0 2px 0;
        line-height: 1.3;
    }

    .kv-why-item .kv-item-content p {
        font-size: 0.875rem;
        line-height: 1.5;
        color: #4b5563;
        margin: 0;
        text-align: justify;
        text-justify: inter-word;
    }

    /* ---- responsive ---- */
    @media (max-width: 992px) {
        .kv-why-section {
            padding: 48px 28px;
        }
        .kv-why-header h2 {
            font-size: 1.9rem;
        }
        .kv-why-header p {
            font-size: 1rem;
        }
        .kv-why-grid {
            gap: 16px;
            max-width: 100%;
        }
        .kv-why-item {
            padding: 18px 20px 16px;
            gap: 14px;
        }
        .kv-why-item .kv-icon-wrapper {
            width: 40px;
            height: 40px;
            min-width: 40px;
            font-size: 1rem;
        }
        .kv-why-item .kv-item-content h4 {
            font-size: 0.95rem;
        }
        .kv-why-item .kv-item-content p {
            font-size: 0.85rem;
        }
    }

    @media (max-width: 768px) {
        .kv-why-section {
            padding: 40px 20px;
        }
        .kv-why-header {
            margin-bottom: 32px;
        }
        .kv-why-header h2 {
            font-size: 1.65rem;
        }
        .kv-why-header .kv-sub {
            font-size: 1rem;
        }
        .kv-why-header p {
            font-size: 0.95rem;
        }
        .kv-why-grid {
            grid-template-columns: 1fr;
            gap: 14px;
            max-width: 100%;
        }
        .kv-why-item {
            padding: 16px 18px 14px;
            gap: 14px;
        }
        .kv-why-item .kv-icon-wrapper {
            width: 38px;
            height: 38px;
            min-width: 38px;
            font-size: 0.9rem;
        }
        .kv-why-item .kv-item-content h4 {
            font-size: 0.9rem;
        }
        .kv-why-item .kv-item-content p {
            font-size: 0.825rem;
        }
    }

    @media (max-width: 480px) {
        .kv-why-section {
            padding: 32px 16px;
        }
        .kv-why-header h2 {
            font-size: 1.4rem;
        }
        .kv-why-header p {
            font-size: 0.9rem;
        }
        .kv-why-grid {
            gap: 12px;
        }
        .kv-why-item {
            padding: 14px 14px 12px;
            gap: 12px;
        }
        .kv-why-item .kv-icon-wrapper {
            width: 34px;
            height: 34px;
            min-width: 34px;
            font-size: 0.8rem;
        }
        .kv-why-item .kv-item-content h4 {
            font-size: 0.85rem;
        }
        .kv-why-item .kv-item-content p {
            font-size: 0.8rem;
        }
    }
