/* ========================================
   FLOW BUTTONS (Animated CTAs)
======================================== */

.flow-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    overflow: hidden;
    border-radius: 100px;
    border: 1.5px solid rgba(51, 51, 51, 0.4);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    transition: all 600ms cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
}

.flow-button:hover {
    border-color: transparent;
    color: white;
    border-radius: 12px;
}

.flow-button .arrow-left {
    position: absolute;
    width: 16px;
    height: 16px;
    left: -25%;
    stroke: #111;
    fill: none;
    z-index: 9;
    transition: all 800ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.flow-button:hover .arrow-left {
    left: 16px;
    stroke: white;
}

.flow-button .button-text {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 800ms ease-out;
}

.flow-button:hover .button-text {
    transform: translateX(12px);
}

.flow-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #111;
    border-radius: 50%;
    opacity: 0;
    transition: all 800ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.flow-button:hover .circle {
    width: 240px;
    height: 240px;
    opacity: 1;
}

.flow-button .arrow-right {
    position: relative;
    width: 16px;
    height: 16px;
    fill: none;
    transition: all 800ms cubic-bezier(0.23, 1, 0.32, 1);
}
