.servicesFlowSection {
    padding: clamp(4rem, 6vw, 6rem) 1.5rem;
    background: #0b0b0f;
}

.servicesFlowWrapper {
    max-width: 1200px;
    margin: auto;
}

.servicesFlowHeader {
    text-align: center;
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.servicesFlowHeader h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 0.5rem;
}

.flowCardStrategy h3 {
    color: #18CAD2;
}

.flowCardDesign h3 {
    color: #FF46EB;
}

.flowCardBuild h3 {
    color: #FC8176;
}

.flowCardScale h3 {
    color: #AA54FF;
}


.servicesFlowHeader p {
    color: #bdbdbd;
    max-width: 560px;
    margin: auto;
}

.servicesFlowGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.flowCard {
    position: relative;
    padding: 2rem 1.5rem;
    border-radius: 18px;
    background: #121218;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.flowCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.flowIndex {
    position: absolute;
    top: -18px;
    right: 20px;

    width: 42px;
    height: 42px;

    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;

    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

/* Card titles */
.flowCard h3 {
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

.flowCard p {
    color: #b5b5b5;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Gradient variations */
.flowCardStrategy .flowIndex {
    background: linear-gradient(90deg, #00ffe7, #1e90ff);
}

.flowCardDesign .flowIndex {
    background: #FF46EB;
}

.flowCardBuild .flowIndex {
    background: #FC8176;
}

.flowCardScale .flowIndex {
    background: #AA54FF;
}


.servicesOutcomeSection {
    padding: clamp(4rem, 8vw, 7rem) 1rem;
    background: black;
    color: white;
}

.servicesOutcomeWrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

/* LEFT */
.outcomeLeft h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    margin-bottom: 1rem;
}

.outcomeLeft p {
    color: #b5b5b5;
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.outcomePoints {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outcomePoints li {
    font-size: 1rem;
    padding-left: 28px;
    margin-bottom: 1rem;
    position: relative;
}

.outcomePoints li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #00ffe7;
    font-weight: 600;
}

/* RIGHT */
.outcomeRight {
    position: relative;
    height: 320px;
}

.outcomeBubble {
    position: absolute;
    padding: 1rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Floating positions */
.bubbleOne {
    top: 0;
    left: 20%;
    color: #00ffe7;
}

.bubbleTwo {
    top: 45%;
    right: 0;
    color: #FF46EB;
}

.bubbleThree {
    bottom: 0;
    left: 10%;
    color: #AA54FF;
}

/* Mobile */
@media (max-width: 900px) {
    .servicesOutcomeWrapper {
        grid-template-columns: 1fr;
    }

    .outcomeRight {
        height: 240px;
    }
}

.outcomeBubble {
    cursor: pointer;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        background 0.35s ease;
}

/* Hover Effect */
.outcomeBubble:hover {
    transform: translateY(-8px) scale(1.06);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px currentColor;
    background: rgba(255, 255, 255, 0.12);
}

/* Glow ring */
.outcomeBubble::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.35s ease;
    border: 1px solid currentColor;
}

.outcomeBubble:hover::after {
    opacity: 0.6;
}

.bubbleOne:hover {
    box-shadow: 0 0 45px rgba(0, 255, 231, 0.55);
}

.bubbleTwo:hover {
    box-shadow: 0 0 45px rgba(255, 70, 235, 0.55);
}

.bubbleThree:hover {
    box-shadow: 0 0 45px rgba(170, 84, 255, 0.55);
}

