﻿*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
/* ===== Header ===== */
.ksg-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(13,19,33,0.85) 0%, rgba(13,19,33,0) 100%);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

    .ksg-header.ksg-header--scrolled {
        background: #0D1321;
        box-shadow: 0 2px 14px rgba(0,0,0,0.35);
    }

    .ksg-header.ksg-header--instant {
        transition: none;
    }

.ksg-header-inner {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ksg-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

    .ksg-logo a {
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 700;
        font-size: 22px;
        letter-spacing: 0.5px;
        color: #ECE7DD;
        text-decoration: none;
        line-height: 1.1;
    }



.logoImg {
    max-width: 70px;
    background: white;
    border-radius: 50%;
}

.ksg-logo span {
    font-size: 11px;
    font-weight: 500;
    color: #E8A33D;
    letter-spacing: 2px;
}

.ksg-nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ksg-nav a {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #ECE7DD;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
}

    .ksg-nav a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background: #E8A33D;
        transition: width 0.25s ease;
    }

    .ksg-nav a:hover::after {
        width: 100%;
    }

.ksg-header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ksg-phone {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ECE7DD;
    text-decoration: none;
    white-space: nowrap;
}

.ksg-btn {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px;
    display: inline-block;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ksg-btn-sm {
    padding: 10px 18px;
    font-size: 14px;
}

.ksg-btn-lg {
    padding: 15px 30px;
    font-size: 16px;
}

.ksg-btn-amber {
    background: #E8A33D;
    color: #0D1321;
    border: 1px solid #E8A33D;
}

    .ksg-btn-amber:hover {
        background: #F2B25A;
        border-color: #F2B25A;
        color: #0D1321;
    }

.ksg-btn-outline {
    background: transparent;
    color: #ECE7DD;
    border: 1px solid #4A5470;
}

    .ksg-btn-outline:hover {
        border-color: #ECE7DD;
    }

.ksg-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

    .ksg-nav-toggle span {
        width: 24px;
        height: 2px;
        background: #ECE7DD;
        display: block;
    }

.ksg-hero {
    position: relative;
    min-height: 92vh;
    background: #0D1321;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ksg-hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ksg-hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: contrast(1.1) brightness(0.85);
    opacity: 0;
}

.ksg-hero-photo--a {
    animation: ksg-fade-a 12s ease-in-out infinite;
}

.ksg-hero-photo--b {
    animation: ksg-fade-b 12s ease-in-out infinite;
}



@keyframes ksg-fade-a {
    0%, 45% {
        opacity: 1;
    }

    55%, 100% {
        opacity: 0;
    }
}

@keyframes ksg-fade-b {
    0%, 45% {
        opacity: 0;
    }

    55%, 100% {
        opacity: 1;
    }
}


.ksg-hero-duotone {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(232, 163, 61, 0.22) 0%, rgb(13 19 33 / 1%) 75%);
    mix-blend-mode: multiply;
}

/* Keeps the left side legible for headline text */
.ksg-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0D1321 22%, rgb(13 19 33 / 18%) 48%, rgb(13 19 33 / 0%) 78%);
}

.ksg-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.ksg-hero-content {
    max-width: 620px;
    padding-top: 60px;
}

.ksg-hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1.08;
    color: #ECE7DD;
    margin: 0 0 24px;
}

.ksg-hero-sub {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #C7CCDA;
    max-width: 480px;
    margin: 0 0 36px;
}

.ksg-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.ksg-hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(236,231,221,0.15);
}

.ksg-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ksg-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #E8A33D;
}

.ksg-stat-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    color: #C7CCDA;
}

/* Credibility chip anchored to the photo, bottom-right */
.ksg-hero-badge {
    position: absolute;
    right: 32px;
    bottom: 40px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(13,19,33,0.7);
    border: 1px solid rgba(232,163,61,0.4);
    border-radius: 3px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    color: #ECE7DD;
    backdrop-filter: blur(3px);
    animation: ksg-badge-in 0.8s ease-out 1.1s both;
}

.ksg-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #C1432E;
    flex-shrink: 0;
    animation: ksg-live-pulse 1.6s ease-in-out infinite;
}

@keyframes ksg-live-pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }
}

@keyframes ksg-badge-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .ksg-nav-toggle {
        display: flex;
    }

    .ksg-header-cta .ksg-phone {
        display: none;
    }

    .ksg-hero-title {
        font-size: 42px;
    }
    .ksg-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0D1321;
        border-top: 1px solid #1E2A45;
        box-shadow: 0 12px 20px rgba(0,0,0,0.3);
    }

        .ksg-nav.ksg-nav--open {
            display: block;
        }

        .ksg-nav ul {
            flex-direction: column;
            gap: 0;
            padding: 8px 32px 20px;
        }

        .ksg-nav li {
            border-bottom: 1px solid #1E2A45;
        }

            .ksg-nav li:last-child {
                border-bottom: none;
            }

        .ksg-nav a {
            display: block;
            padding: 14px 0;
        }
}

@media (max-width: 576px) {
    .ksg-hero-stats {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .ksg-hero-title {
        font-size: 34px;
    }

    .ksg-hero-actions {
        flex-direction: column;
    }

    .ksg-btn-lg {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ksg-hero-photo--a {
        animation: none;
        opacity: 1;
    }

    .ksg-hero-photo--b {
        animation: none;
        opacity: 0;
    }


    .ksg-hero-badge {
        animation: none;
    }

    .ksg-live-dot {
        animation: none;
    }
}

.ksg-services {
    background: #F1F3F7;
    padding: 100px 32px 110px;
}

.ksg-services-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ksg-services-head {
    max-width: 640px;
    margin-bottom: 56px;
}

.ksg-services-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1.15;
    color: #0D1321;
    margin: 0 0 16px;
}

.ksg-services-sub {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #545E76;
    margin: 0;
}

/* ===== Primary cards ===== */
.ksg-services-primary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 64px;
}

.ksg-primary-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 18px 34px rgba(13, 19, 33, 0.14);
}

.ksg-primary-media {
    position: absolute;
    inset: 0;
}

    .ksg-primary-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: contrast(1.1) brightness(0.75);
        transform: scale(1.03);
        transition: transform 0.5s ease;
    }

.ksg-primary-card:hover .ksg-primary-media img {
    transform: scale(1.08);
}

.ksg-primary-duotone {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgb(13 19 33 / 90%) 10%, rgb(13 19 33 / 0%) 55%, rgb(232 163 61 / 1%) 100%);
}

.ksg-primary-content {
    position: relative;
    z-index: 2;
    padding: 32px 30px;
    width: 100%;
}

.ksg-primary-index {
    display: block;
    font-family: 'Source Sans 3', monospace;
    font-size: 13px;
    font-weight: 600;
    color: #E8A33D;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.ksg-primary-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 34px;
    color: #ECE7DD;
    margin: 0 0 12px;
}

.ksg-primary-desc {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15.5px;
    line-height: 1.6;
    color: #C7CCDA;
    max-width: 420px;
    margin: 0 0 20px;
}

.ksg-primary-foot {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ksg-service-tag {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    color: #0D1321;
    background: #ECE7DD;
    padding: 5px 10px;
    border-radius: 3px;
}

.ksg-service-cta {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ECE7DD;
    text-decoration: none;
    border-bottom: 1px solid rgba(236,231,221,0.5);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

    .ksg-service-cta:hover {
        color: #E8A33D;
        border-color: #E8A33D;
    }

/* ===== "Also available" ticker ===== */
.ksg-services-more {
    border-top: 1px solid #D7DCE5;
    padding-top: 36px;
}

.ksg-more-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #545E76;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ksg-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    margin-bottom: 22px;
}

.ksg-marquee-track {
    display: flex;
    width: max-content;
    gap: 16px;
    animation: ksg-marquee-scroll 24s linear infinite;
}

.ksg-marquee:hover .ksg-marquee-track {
    animation-play-state: paused;
}

@keyframes ksg-marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ksg-chip {
    flex-shrink: 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #0D1321;
    background: #FFFFFF;
    border: 1px solid #D7DCE5;
    border-radius: 40px;
    padding: 14px 28px;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

    .ksg-chip:hover,
    .ksg-chip.is-active {
        border-color: #E8A33D;
        background: #0D1321;
        color: #ECE7DD;
    }

.ksg-more-desc {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    color: #545E76;
    min-height: 24px;
    transition: opacity 0.2s ease;
}

    .ksg-more-desc a {
        color: #0D1321;
        font-weight: 600;
    }

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .ksg-services-primary {
        grid-template-columns: 1fr;
    }

    .ksg-primary-card {
        min-height: 340px;
    }
}

@media (max-width: 576px) {
    .ksg-services {
        padding: 70px 20px 90px;
    }

    .ksg-services-title {
        font-size: 30px;
    }

    .ksg-primary-name {
        font-size: 28px;
    }

    .ksg-chip {
        font-size: 17px;
        padding: 12px 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ksg-marquee-track {
        animation: none;
    }

    .ksg-primary-media img {
        transition: none;
    }
}

.ksg-about {
    background: #0d1321;
    padding: 120px 0 0;
    overflow: hidden;
}

/* ===== Statement ===== */
.ksg-about-statement {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px 70px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: end;
}

.ksg-about-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 6vw, 80px);
    line-height: 1.03;
    letter-spacing: -0.5px;
    color: white;
    margin: 0;
}

.ksg-about.is-visible .ksg-about-headline {
    opacity: 1;
    transform: translateY(0);
}

.ksg-about-support p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15.5px;
    line-height: 1.65;
    color: #ece7dd;
    margin: 0 0 16px;
}

.ksg-about-link {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid white;
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

    .ksg-about-link:hover {
        color: #B57420;
        border-color: #B57420;
    }

/* ===== Full-bleed banner ===== */
.ksg-about-banner {
    position: relative;
    width: 100%;
    height: 460px;
}

.ksg-about-banner-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1) brightness(1.1);
    display: block;
}

.ksg-about-banner-duotone {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgb(13 19 33 / 0%) 0%, rgba(13, 19, 33, 0) 48%), linear-gradient(160deg, rgb(232 163 61 / 0%) 0%, rgba(13, 19, 33, 0) 70%);
}

.ksg-about-quote {
    position: absolute;
    left: 32px;
    bottom: -56px;
    max-width: 460px;
    margin: 0;
    background: #ece7dd;
    border-left: 3px solid #E8A33D;
    border-radius: 0 6px 6px 0;
    padding: 28px 32px;
    box-shadow: 0 20px 40px rgba(13,19,33,0.25);
}

.ksg-about.is-visible .ksg-about-quote {
    opacity: 1;
    transform: translateY(0);
}

.ksg-about-quote p {
    font-family: 'Source Sans 3', sans-serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.55;
    color: #0d1321;
    margin: 0 0 14px;
}

.ksg-about-quote cite {
    display: block;
    font-family: 'Source Sans 3', sans-serif;
    font-style: normal;
    font-size: 13px;
    font-weight: 600;
    color: #E8A33D;
}

    .ksg-about-quote cite span {
        display: block;
        font-weight: 500;
        font-size: 12.5px;
        color: #7C86A0;
        margin-top: 2px;
    }

/* ===== Stat band ===== */
.ksg-about-stats {
    max-width: 1200px;
    margin: 0 auto;
    padding: 130px 32px 90px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ksg-stat-block {
    padding-right: 32px;
    border-right: 1px solid rgba(13,19,33,0.12);
}

    .ksg-stat-block:last-child {
        border-right: none;
        padding-right: 0;
    }

.ksg-stat-block-num {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1;
    color: #ece7dd;
    margin-bottom: 10px;
}

.ksg-stat-block-label {
    display: block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: white;
    max-width: 180px;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .ksg-about-statement {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: start;
    }

    .ksg-about-support {
        max-width: 520px;
    }

    .ksg-about-banner {
        height: 380px;
    }

    .ksg-about-quote {
        left: 20px;
        right: 20px;
        max-width: none;
        bottom: -76px;
    }

    .ksg-about-stats {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
        padding-top: 150px;
    }

    .ksg-stat-block:nth-child(odd) {
        border-right: 1px solid rgba(13,19,33,0.12);
    }

    .ksg-stat-block:nth-child(even) {
        border-right: none;
    }
}

@media (max-width: 576px) {
    .ksg-about {
        padding-top: 80px;
    }

    .ksg-about-statement {
        padding: 0 20px 56px;
    }

    .ksg-about-headline {
        font-size: 34px;
    }

    .ksg-about-banner {
        height: 300px;
    }

    .ksg-about-quote {
        padding: 22px 24px;
        bottom: -90px;
    }

    .ksg-about-stats {
        grid-template-columns: 1fr 1fr;
        padding: 190px 20px 60px;
        row-gap: 30px;
    }

    .ksg-stat-block {
        border-right: none !important;
        border-bottom: 1px solid rgba(13,19,33,0.12);
        padding-bottom: 24px;
    }

        .ksg-stat-block:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
}

@media (prefers-reduced-motion: reduce) {
    .ksg-about-headline,
    .ksg-about-quote {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.ksg-testimonials {
    background: #f1f3f7;
    padding: 110px 32px;
}

.ksg-testimonials-inner {
    max-width: 980px;
    margin: 0 auto;
}

.ksg-testimonials-head {
    max-width: 520px;
    margin-bottom: 56px;
}

.ksg-testimonials-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.12;
    color: #0d1321;
    margin: 0 0 14px;
}

.ksg-testimonials-sub {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    color: #A9AFC2;
    margin: 0;
}

/* ===== Stage & deck ===== */
.ksg-testimonial-stage {
    position: relative;
    padding: 0 0 26px 26px;
}

.ksg-testimonial-deck {
    position: absolute;
    inset: 0 0 26px 26px;
    z-index: 0;
}

.ksg-deck-card {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: #131A2C;
    border: 1px solid rgba(236,231,221,0.08);
}

.ksg-deck-card--1 {
    transform: translate(14px, 14px) rotate(1.4deg);
}

.ksg-deck-card--2 {
    transform: translate(28px, 26px) rotate(2.6deg);
    background: #0F1526;
    opacity: 0.7;
}

/* ===== Main card ===== */
.ksg-testimonial-card {
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.ksg-testimonial-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ksg-testimonial-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) brightness(1);
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1s ease, transform 6s ease;
}

    .ksg-testimonial-bg-img.is-active {
        opacity: 1;
        transform: scale(1);
    }

.ksg-testimonial-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgb(13 19 33 / 81%) 10%, rgb(13 19 33 / 6%) 60%, rgb(13 19 33 / 0%) 100%);
}

/* ===== Progress segments ===== */
.ksg-testimonial-progress {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 6px;
    padding: 22px 30px 0;
}

.ksg-progress-seg {
    flex: 1;
    height: 3px;
    background: rgba(236,231,221,0.22);
    border: none;
    border-radius: 2px;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
}

.ksg-progress-fill {
    display: block;
    height: 100%;
    width: 0;
    background: #E8A33D;
    border-radius: 2px;
}

.ksg-progress-seg.is-done .ksg-progress-fill {
    width: 100%;
}

.ksg-progress-seg.is-active .ksg-progress-fill {
    animation: ksg-progress-run 6s linear forwards;
}

.ksg-testimonial-stage.is-paused .ksg-progress-seg.is-active .ksg-progress-fill {
    animation-play-state: paused;
}

@keyframes ksg-progress-run {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* ===== Content ===== */
.ksg-testimonial-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 40px 44px 40px;
}

.ksg-testimonial-mark {
    position: absolute;
    top: -18px;
    left: 40px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 130px;
    line-height: 1;
    color: #f1f3f7;
    opacity: 0.8;
    pointer-events: none;
    user-select: none;
}

.ksg-testimonial-sector {
    display: inline-block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #0D1321;
    background: #E8A33D;
    padding: 6px 14px;
    border-radius: 3px;
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.ksg-testimonial-content.is-visible .ksg-testimonial-sector {
    opacity: 1;
    transform: translateY(0);
}

.ksg-testimonial-quote {
    margin: 0 0 32px;
}

    .ksg-testimonial-quote p {
        font-family: 'Source Sans 3', sans-serif;
        font-weight: 400;
        font-size: 24px;
        line-height: 1.5;
        color: #ECE7DD;
        max-width: 640px;
        margin: 0;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.5s ease 0.08s, transform 0.5s ease 0.08s;
    }

.ksg-testimonial-content.is-visible .ksg-testimonial-quote p {
    opacity: 1;
    transform: translateY(0);
}

.ksg-testimonial-person {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(236,231,221,0.14);
    opacity: 0;
    transition: opacity 0.5s ease 0.16s;
}

.ksg-testimonial-content.is-visible .ksg-testimonial-person {
    opacity: 1;
}

.ksg-testimonial-avatar {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #E8A33D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #0D1321;
}

.ksg-testimonial-person-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-right: auto;
}

.ksg-testimonial-name {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #ECE7DD;
}

.ksg-testimonial-role {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    color: #A9AFC2;
}

.ksg-testimonial-tenure {
    flex-shrink: 0;
    font-family: 'Source Sans 3', monospace;
    font-size: 12px;
    font-weight: 600;
    color: #C7CCDA;
}

/* ===== Responsive ===== */
@media (max-width: 700px) {
    .ksg-testimonial-stage {
        padding: 0 0 16px 16px;
    }

    .ksg-deck-card--1 {
        transform: translate(8px, 8px) rotate(1deg);
    }

    .ksg-deck-card--2 {
        transform: translate(16px, 16px) rotate(1.8deg);
    }

    .ksg-testimonial-card {
        min-height: 420px;
    }

    .ksg-testimonial-mark {
        font-size: 100px;
        left: 24px;
    }

    .ksg-testimonial-content {
        padding: 32px 26px 32px;
    }

    .ksg-testimonial-quote p {
        font-size: 20px;
    }

    .ksg-testimonial-person {
        flex-wrap: wrap;
        row-gap: 12px;
    }
}

@media (max-width: 576px) {
    .ksg-testimonials {
        padding: 70px 20px 80px;
    }

    .ksg-testimonials-title {
        font-size: 30px;
    }

    .ksg-testimonial-progress {
        padding: 18px 22px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ksg-testimonial-bg-img {
        transition: opacity 0.6s ease;
    }

    .ksg-progress-seg.is-active .ksg-progress-fill {
        animation: none;
        width: 100%;
    }

    .ksg-testimonial-sector,
    .ksg-testimonial-quote p,
    .ksg-testimonial-person {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* ===== Contact band ===== */
.ksg-contact {
    position: relative;
    background: #ece7dd;
    padding: 110px 32px;
    overflow: hidden;
}

.ksg-contact-scan {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgb(13 19 33 / 5%) 1px, transparent 1px), linear-gradient(90deg, rgb(13 19 33 / 4%) 1px, #0d132100 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

    .ksg-contact-scan::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        height: 140px;
        top: -140px;
        background: linear-gradient(180deg, rgb(13 19 33 / 0%) 0%, rgb(13 19 33 / 9%) 50%, rgb(13 19 33 / 0%) 100%);
        animation: ksg-scan-sweep 9s linear infinite;
    }

@keyframes ksg-scan-sweep {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(calc(100vh + 140px));
    }
}

.ksg-contact-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 72px;
    align-items: start;
}

/* ===== Left: info ===== */
.ksg-contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    background: rgba(232,163,61,0.08);
    border: 1px solid rgba(232,163,61,0.3);
    border-radius: 30px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: #E8A33D;
    margin-bottom: 26px;
}

.ksg-contact-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 1.1;
    color: #0d1321;
    margin: 0 0 18px;
    max-width: 420px;
}

.ksg-contact-sub {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #A9AFC2;
    max-width: 420px;
    margin: 0 0 40px;
}

.ksg-contact-direct {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(236,231,221,0.12);
    margin-bottom: 40px;
}

.ksg-contact-direct-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(236,231,221,0.12);
    text-decoration: none;
    transition: padding-left 0.2s ease;
}

    .ksg-contact-direct-item:hover {
        padding-left: 6px;
    }

.ksg-contact-direct-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    color: #7C86A0;
}

.ksg-contact-direct-value {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15.5px;
    font-weight: 600;
    color: #A9AFC2;
}

.ksg-contact-trust {
    display: flex;
    gap: 36px;
}

.ksg-contact-trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ksg-contact-trust-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #E8A33D;
}

.ksg-contact-trust-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12.5px;
    color: #7C86A0;
}

/* ===== Right: form card ===== */
.ksg-contact-form-wrap {
    background: #131A2C;
    border: 1px solid rgba(236,231,221,0.1);
    border-radius: 10px;
    padding: 36px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.ksg-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.ksg-form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
    position: relative;
}

    .ksg-form-field label {
        font-family: 'Source Sans 3', sans-serif;
        font-size: 12.5px;
        font-weight: 600;
        color: #A9AFC2;
        margin-bottom: 8px;
    }

    .ksg-form-field input,
    .ksg-form-field select,
    .ksg-form-field textarea {
        font-family: 'Source Sans 3', sans-serif;
        font-size: 14.5px;
        color: #ECE7DD;
        background: #0D1321;
        border: 1px solid rgba(236,231,221,0.14);
        border-radius: 4px;
        padding: 12px 14px;
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
        width: 100%;
        box-sizing: border-box;
    }

    .ksg-form-field select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A9AFC2' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 16px;
        padding-right: 36px;
    }

    .ksg-form-field textarea {
        resize: vertical;
        min-height: 80px;
    }

        .ksg-form-field input::placeholder,
        .ksg-form-field textarea::placeholder {
            color: #5A6280;
        }

        .ksg-form-field input:focus,
        .ksg-form-field select:focus,
        .ksg-form-field textarea:focus {
            border-color: #E8A33D;
            box-shadow: 0 0 0 3px rgba(232,163,61,0.15);
        }

.ksg-form-error {
    display: none;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    color: #E27D6B;
    margin-top: 6px;
}

.ksg-form-field.is-invalid input,
.ksg-form-field.is-invalid select {
    border-color: #E27D6B;
}

.ksg-form-field.is-invalid .ksg-form-error {
    display: block;
}

.ksg-form-submit {
    position: relative;
    width: 100%;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    font-size: 15.5px;
    color: #0D1321;
    background: #E8A33D;
    border: 1px solid #E8A33D;
    border-radius: 4px;
    padding: 15px 0;
    cursor: pointer;
    margin-top: 4px;
    transition: background-color 0.2s ease;
}

    .ksg-form-submit:hover {
        background: #F2B25A;
    }

.ksg-form-submit-spinner,
.ksg-form-submit-check {
    display: none;
}

.ksg-form-submit-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(13,19,33,0.3);
    border-top-color: #0D1321;
    border-radius: 50%;
    margin: 0 auto;
    animation: ksg-spin 0.7s linear infinite;
}

.ksg-form-submit-check {
    align-items: center;
    justify-content: center;
}

@keyframes ksg-spin {
    to {
        transform: rotate(360deg);
    }
}

.ksg-form-submit.is-loading .ksg-form-submit-label {
    display: none;
}

.ksg-form-submit.is-loading .ksg-form-submit-spinner {
    display: block;
}

.ksg-form-submit.is-success {
    background: #6FBF8B;
    border-color: #6FBF8B;
    pointer-events: none;
}

    .ksg-form-submit.is-success .ksg-form-submit-label,
    .ksg-form-submit.is-success .ksg-form-submit-spinner {
        display: none;
    }

    .ksg-form-submit.is-success .ksg-form-submit-check {
        display: flex;
    }

.ksg-form-note {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12.5px;
    color: #7C86A0;
    text-align: center;
    margin: 14px 0 0;
    transition: color 0.2s ease;
}

    .ksg-form-note.is-success-note {
        color: #6FBF8B;
        font-weight: 600;
    }

/* ===== Footer main ===== */
.ksg-footer-main {
    background: #0A0E19;
    padding: 70px 32px 50px;
}

.ksg-footer-main-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
}

.ksg-footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #ECE7DD;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.5;

}

    .ksg-footer-logo span {
        font-size: 11px;
        font-weight: 500;
        color: #E8A33D;
        letter-spacing: 2px;
    }

.ksg-footer-tagline {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    font-weight:600;
    line-height: 1.6;
    color: #7C86A0;
    max-width: 280px;
    margin: 0 0 24px;
}

.ksg-footer-social {
    display: flex;
    gap: 12px;
}

.ksg-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(236,231,221,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A9AFC2;
    transition: border-color 0.2s ease, color 0.2s ease;
}

    .ksg-social-icon:hover {
        border-color: #E8A33D;
        color: #E8A33D;
    }

.ksg-footer-col h3 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ECE7DD;
    margin: 0 0 20px;
}

.ksg-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ksg-footer-col a {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    font-weight:600;
    color: #7C86A0;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .ksg-footer-col a:hover {
        color: #E8A33D;
    }

.ksg-footer-address li {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    font-weight:600;
    line-height: 1.6;
    color: #7C86A0;
}

/* ===== Footer bottom ===== */
.ksg-footer-bottom {
    background: #0A0E19;
    border-top: 1px solid rgba(236,231,221,0.08);
    padding: 22px 32px;
}

.ksg-footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

    .ksg-footer-bottom-inner p {
        font-family: 'Source Sans 3', sans-serif;
        font-size: 12.5px;
        color: #5A6280;
        margin: 0;
    }

.ksg-footer-legal {
    display: flex;
    gap: 20px;
}

    .ksg-footer-legal a {
        font-family: 'Source Sans 3', sans-serif;
        font-size: 12.5px;
        color: #5A6280;
        text-decoration: none;
    }

        .ksg-footer-legal a:hover {
            color: #A9AFC2;
        }

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .ksg-contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ksg-footer-main-inner {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }
}

@media (max-width: 576px) {
    .ksg-contact {
        padding: 70px 20px 80px;
    }

    .ksg-contact-title {
        font-size: 32px;
    }

    .ksg-contact-form-wrap {
        padding: 24px;
    }

    .ksg-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ksg-footer-main {
        padding: 56px 20px 40px;
    }

    .ksg-footer-main-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ksg-footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ksg-contact-scan::after {
        animation: none;
        opacity: 0;
    }

    .ksg-form-submit-spinner {
        animation: none;
    }
}


@media(max-width:500px){
    .Req-btn{
        display: none;
    }

    .ksg-hero-content{
        padding-top:110px;
    }

    .ksg-gsap-badge{
        display:none;
    }
}

.footerLogo{
    display:flex;
    gap:10px;
    align-items:center;
    margin:5px 0;

}

.footerLogo img{
    max-width:60px;
    background:white;
    border-radius:50%;
}

.ksg-footer-address b {
    color: #ece7dd;
}

@media(max-width:1040px){
    .menuNum{
        display:none;
    }
}


.ksg-form-field input:-webkit-autofill,
.ksg-form-field input:-webkit-autofill:hover,
.ksg-form-field input:-webkit-autofill:focus,
.ksg-form-field input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #0D1321 inset !important;
    -webkit-text-fill-color: #ECE7DD !important;
    caret-color: #ECE7DD;
    transition: background-color 5000s ease-in-out 0s;
}