.kcyas-wrap,
.kcyas-wrap * {
    box-sizing: border-box;
}

.kcyas-wrap {
    --kcyas-navy: #062238;
    --kcyas-gold: #c89449;
    --kcyas-text: #5c6b7c;
    --kcyas-soft: #f4f7fb;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: var(--kcyas-text);
    font-family: "Poppins", Arial, sans-serif;
    isolation: isolate;
}

.kcyas-fullbleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.kcyas-bg-shape {
    position: absolute;
    inset: auto -160px -260px auto;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(200, 148, 73, .12), rgba(200, 148, 73, 0) 68%);
    pointer-events: none;
    z-index: -1;
}

.kcyas-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 90px 24px;
}

.kcyas-grid {
    display: grid;
    grid-template-columns: minmax(0, 50%) minmax(0, 50%);
    gap: 70px;
    align-items: center;
}

.kcyas-copy {
    width: 100%;
    max-width: 660px;
}

.kcyas-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--kcyas-navy);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.kcyas-eyebrow span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 1px;
    background: var(--kcyas-gold);
    flex: 0 0 auto;
}

.kcyas-title {
    margin: 0;
    color: var(--kcyas-navy);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(34px, 4.6vw, 72px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.055em;
}

.kcyas-title span,
.kcyas-title strong,
.kcyas-title em {
    color: var(--kcyas-gold);
    font-weight: 500;
    font-style: normal;
}

.kcyas-desc {
    margin-top: 28px;
    color: var(--kcyas-text);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.95;
    max-width: 620px;
}

.kcyas-desc p {
    margin: 0 0 14px;
}

.kcyas-desc p:last-child {
    margin-bottom: 0;
}

.kcyas-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
    min-height: 54px;
    padding: 15px 24px 15px 28px;
    border: 0;
    border-radius: 40px;
    background: var(--kcyas-gold);
    color: #ffffff;
    text-decoration: none !important;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    box-shadow: 0 15px 35px rgba(200, 148, 73, .22);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.kcyas-button:hover,
.kcyas-button:focus {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(200, 148, 73, .30);
}

.kcyas-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--kcyas-navy);
    flex: 0 0 auto;
}

.kcyas-button-icon svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.kcyas-media {
    position: relative;
    min-width: 0;
}

.kcyas-image-frame {
    position: relative;
    width: 100%;
    height: 560px;
    min-height: 280px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--kcyas-soft);
    box-shadow: 0 24px 65px rgba(6, 34, 56, .10);
    transform: translateZ(0);
}

.kcyas-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 34, 56, 0) 50%, rgba(6, 34, 56, .24) 100%);
    opacity: .75;
    pointer-events: none;
}

.kcyas-image-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.001);
}

.kcyas-image-line {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .36);
    pointer-events: none;
    z-index: 2;
}

.kcyas-image-line-one {
    inset: 18px 18px auto auto;
    width: 115px;
    height: 115px;
    border-left: 0;
    border-bottom: 0;
}

.kcyas-image-line-two {
    inset: auto auto 18px 18px;
    width: 115px;
    height: 115px;
    border-right: 0;
    border-top: 0;
}

.kcyas-image-badge {
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: min(320px, calc(100% - 56px));
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    background: rgba(6, 34, 56, .92);
    color: #ffffff;
    box-shadow: 0 16px 45px rgba(6, 34, 56, .28);
    backdrop-filter: blur(10px);
    z-index: 4;
}

.kcyas-image-badge span {
    display: block;
    margin: 0 0 5px;
    color: var(--kcyas-gold);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.kcyas-image-badge strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
}

.kcyas-anim-float .kcyas-image-frame {
    animation: kcyasFloat 5.8s ease-in-out infinite;
}

.kcyas-anim-zoom .kcyas-image-frame img {
    animation: kcyasZoom 8s ease-in-out infinite alternate;
}

.kcyas-anim-shine .kcyas-image-frame::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -85%;
    width: 42%;
    height: 190%;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.42), rgba(255,255,255,0));
    transform: rotate(18deg);
    z-index: 3;
    animation: kcyasShine 4.8s ease-in-out infinite;
    pointer-events: none;
}

.kcyas-anim-reveal .kcyas-image-frame {
    animation: kcyasReveal .95s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes kcyasFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes kcyasZoom {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.10); }
}

@keyframes kcyasShine {
    0% { left: -85%; opacity: 0; }
    20% { opacity: .65; }
    48%, 100% { left: 130%; opacity: 0; }
}

@keyframes kcyasReveal {
    from { opacity: 0; transform: translateY(28px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1024px) {
    .kcyas-container {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .kcyas-grid {
        gap: 44px;
    }

    .kcyas-title {
        font-size: clamp(32px, 5.8vw, 56px);
    }

    .kcyas-image-frame {
        height: 460px;
    }
}

@media (max-width: 767px) {
    .kcyas-fullbleed {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .kcyas-container {
        padding: 48px 18px;
    }

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

    .kcyas-media {
        order: -1;
    }

    .kcyas-copy {
        max-width: 100%;
        text-align: left;
    }

    .kcyas-title {
        font-size: clamp(30px, 10vw, 42px);
        line-height: 1.12;
        letter-spacing: -0.045em;
    }

    .kcyas-desc {
        margin-top: 20px;
        max-width: 100%;
        font-size: 15px;
        line-height: 1.78;
    }

    .kcyas-button {
        width: auto;
        max-width: 100%;
        margin-top: 26px;
    }

    .kcyas-image-frame {
        height: 320px;
        border-radius: 10px;
    }

    .kcyas-image-badge {
        right: 14px;
        bottom: 14px;
        width: calc(100% - 28px);
        padding: 14px 16px;
    }

    .kcyas-image-badge strong {
        font-size: 14px;
    }

    .kcyas-image-line-one,
    .kcyas-image-line-two {
        width: 74px;
        height: 74px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .kcyas-wrap *,
    .kcyas-wrap *::before,
    .kcyas-wrap *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}
