.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: var(--transition, all 0.3s ease-in-out);
}

.btn-primary {
    background: var(--primary, #327ffa);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-hover, #2563eb);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid #327ffa;
    color: #c4cfde;
    background: transparent;
    border-radius: 50px;
}

.btn-outline:hover {
    background: var(--primary, #327ffa);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline .wp-block-button__link {
    border: 1px solid #327ffa;
    color: #c4cfde;
   background: transparent;
}
.btn-outline .wp-block-button__link:hover {
    background: var(--primary, #327ffa);
    color: #fff;
}


.btn-circle{
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.btn-circle.kt-button {
    width: 74px;
    height: 74px;
    min-width: 74px !important;
    padding: 0 !important;
    border-radius: 50%;
    border: 1px solid #2f80ff;
    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(47,128,255,.15),
            #091233
        );
    color: #2f80ff !important;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s ease;
    box-shadow:
        0 0 0 6px rgba(47,128,255,.06),
        0 0 25px rgba(47,128,255,.15);
}

.btn-circle.kt-button:hover {
    transform: translateY(-6px);

    box-shadow:
        0 0 0 8px rgba(47,128,255,.08),
        0 0 35px rgba(47,128,255,.25);
}


.rd-btn-secondary a.kt-button {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rd-btn-secondary a.kt-button:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.rd-btn-secondary a.kt-button:active {
    transform: translateY(1px);
}

.rd-btn-secondary .wp-block-kadence-advancedbtn {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rd-btn-secondary a.kt-button {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: inherit;
}

.rd-btn-secondary a.kt-button:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.rd-btn-secondary a.kt-button:active {
    transform: translateY(1px);
}

