/* ========== BUKLET SECTION ========== */
.buklet-block {
    padding-block: 5rem;
    position: relative;
    background:
        radial-gradient(900px 500px at 15% 10%, #1a2547 0%, transparent 60%),
        radial-gradient(700px 500px at 90% 90%, #1a2e5c 0%, transparent 60%),
        #0b1220;
}

.buklet-section {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5.6rem;
    align-items: center;
}

/* ---- MOCKUP ---- */
.buklet-section__mockup {
    position: relative;
    perspective: 1800px;
    height: 60rem;
}

.buklet-section__stage {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    transition: transform .3s cubic-bezier(.2,.8,.2,1);
}

.buklet-section__bro {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32rem;
    margin-left: -16rem;
    transform-style: preserve-3d;
    transition: transform .7s cubic-bezier(.2,.8,.2,1);
    cursor: pointer;
    will-change: transform;
}

.buklet-section__bro img {
    display: block;
    width: 100%;
    height: auto;
    filter:
        drop-shadow(0 3rem 4rem rgba(0,0,0,.55))
        drop-shadow(0 1.2rem 1.8rem rgba(0,0,0,.4));
}

.buklet-section__bro--left {
    transform: translateY(-50%) rotate(-14deg) translate(-13rem, 2rem);
}
.buklet-section__bro--center {
    transform: translateY(-50%) rotate(-2deg) translate(0, -1.8rem) scale(1.05);
    z-index: 2;
}
.buklet-section__bro--right {
    transform: translateY(-50%) rotate(12deg) translate(13rem, 2.4rem);
}

.buklet-section__mockup:hover .buklet-section__bro--left {
    transform: translateY(-50%) rotate(-19deg) translate(-18rem, .4rem);
}
.buklet-section__mockup:hover .buklet-section__bro--center {
    transform: translateY(-50%) rotate(-2deg) translate(0, -3.4rem) scale(1.08);
}
.buklet-section__mockup:hover .buklet-section__bro--right {
    transform: translateY(-50%) rotate(17deg) translate(18rem, .8rem);
}

.buklet-section__mockup::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4rem;
    width: 52rem;
    height: 4rem;
    margin-left: -26rem;
    background: radial-gradient(ellipse at center, rgba(0,74,153,.18), transparent 70%);
    filter: blur(1.2rem);
    pointer-events: none;
}

.buklet-section__badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 5;
    background: #004A99;
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: .04rem;
    padding: 1rem 1.4rem;
    border-radius: 99.9rem;
    box-shadow: 0 1.2rem 2.8rem -.8rem rgba(0,74,153,.7);
    transform: rotate(6deg);
}

/* ---- CONTENT ---- */
.buklet-section__content {
    color: #eef2ff;
}

.buklet-section__trust {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    font-size: 1.2rem;
    color: #cbd5ff;
    background: rgba(0,74,153,.18);
    border: .1rem solid rgba(120,160,255,.25);
    padding: .7rem 1.2rem;
    border-radius: 99.9rem;
    margin-bottom: 1.8rem;
    font-weight: 600;
    letter-spacing: .02rem;
}

.buklet-section__trust-dot {
    width: .6rem;
    height: .6rem;
    border-radius: 50%;
    background: #68C736;
    box-shadow: 0 0 0 .3rem rgba(104,199,54,.2);
}

.buklet-section__title {
    font-size: clamp(2.8rem, 3.4vw, 4.4rem);
    line-height: 1.05;
    margin: 0 0 1.4rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #fff;
}

.buklet-section__title span {
    color: #004A99;
}

.buklet-section__lead {
    color: #9aa6c0;
    margin: 0 0 2.8rem;
    font-size: 1.7rem;
    line-height: 1.55;
    max-width: 48ch;
}

.buklet-section__features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.8rem;
}

.buklet-section__features span {
    font-size: 1.2rem;
    color: #cbd5ff;
    background: rgba(255,255,255,.05);
    border: .1rem solid rgba(255,255,255,.08);
    padding: .7rem 1.2rem;
    border-radius: 99.9rem;
}

/* ---- FORM WRAPPER ---- */
.buklet-section__form-wrap {
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
    border: .1rem solid rgba(255,255,255,.08);
    border-radius: 1.6rem;
    padding: 2.2rem;
    backdrop-filter: blur(.8rem);
}

.buklet-section__form-wrap .form__title {
    color: #fff;
}

.buklet-section__form-wrap .form__field {
    background: #0a1226;
    color: #eef2ff;
    border-color: rgba(255,255,255,.08);
}

.buklet-section__form-wrap .form__field:focus {
    border-color: #004A99;
    box-shadow: 0 0 0 .4rem rgba(0,74,153,.15);
}

.buklet-section__form-wrap .form__field::placeholder {
    color: #5d6880;
}

.buklet-section__form-wrap .form__submit.btn {
    background: #004A99;
    border-color: #004A99;
    font-weight: 700;
    box-shadow: 0 1.4rem 3rem -1.2rem rgba(0,74,153,.6);
    transition: transform .15s, box-shadow .2s;
}

.buklet-section__form-wrap .form__submit.btn:hover {
    transform: translateY(-.1rem);
    box-shadow: 0 1.8rem 3.4rem -1.2rem rgba(0,74,153,.75);
}

.buklet-section__form-wrap .form__conf {
    color: #5d6880;
}

.buklet-section__form-wrap .form__conf a {
    color: #7da0d6;
}

.buklet-section__form-wrap .form__buklet-warn {
    background: rgba(203,154,54,.1);
    border-color: rgba(203,154,54,.3);
    color: #c9b87a;
}

/* ---- DEALER ---- */
.buklet-section__dealer {
    margin-top: 1.4rem;
    padding: 1.2rem 1.4rem;
    background: rgba(255,255,255,.03);
    border: .1rem solid rgba(255,255,255,.08);
    border-radius: 1rem;
    font-size: 1.2rem;
    color: #9aa6c0;
    line-height: 1.5;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.buklet-section__dealer strong {
    color: #dbe3ff;
    font-weight: 700;
    display: block;
    margin-bottom: .2rem;
}

.buklet-section__dealer-icon {
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: rgba(0,74,153,.15);
    color: #004A99;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buklet-section__dealer-icon svg {
    width: 1.4rem;
    height: 1.4rem;
}

.buklet-section__feature-gift {
    background: rgba(230, 81, 0, .2) !important;
    border-color: rgba(230, 81, 0, .4) !important;
    color: #ffb74d !important;
    font-weight: 700;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 990.9px) {
    .buklet-section {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .buklet-section__mockup {
        height: 45rem;
        order: -1;
    }

    .buklet-section__bro {
        width: 24rem;
        margin-left: -12rem;
    }

    .buklet-section__bro--left {
        transform: translateY(-50%) rotate(-14deg) translate(-10rem, 2rem);
    }
    .buklet-section__bro--center {
        transform: translateY(-50%) rotate(-2deg) translate(0, -1.8rem) scale(1.05);
    }
    .buklet-section__bro--right {
        transform: translateY(-50%) rotate(12deg) translate(10rem, 2.4rem);
    }

    .buklet-section__mockup::before {
        width: 36rem;
        margin-left: -18rem;
    }
}

@media screen and (max-width: 575.9px) {
    .buklet-block {
        padding-block: 3rem;
    }

    .buklet-section__mockup {
        height: 34rem;
    }

    .buklet-section__bro {
        width: 18rem;
        margin-left: -9rem;
    }

    .buklet-section__bro--left {
        transform: translateY(-50%) rotate(-14deg) translate(-7rem, 1.5rem);
    }
    .buklet-section__bro--center {
        transform: translateY(-50%) rotate(-2deg) translate(0, -1.5rem) scale(1.05);
    }
    .buklet-section__bro--right {
        transform: translateY(-50%) rotate(12deg) translate(7rem, 2rem);
    }

    .buklet-section__title {
        font-size: 2.4rem;
    }

    .buklet-section__lead {
        font-size: 1.4rem;
    }

    .buklet-section__features {
        gap: .5rem;
    }

    .buklet-section__features span {
        font-size: 1.1rem;
        padding: .5rem 1rem;
    }

    .buklet-section__badge {
        font-size: 1rem;
        padding: .7rem 1rem;
    }

    .buklet-section__mockup::before {
        width: 26rem;
        margin-left: -13rem;
    }
}
