.gv-stack {
	background: var(--gv-color-dark-alt);
	color: var(--gv-color-text-on-dark);
	padding: var(--gv-space-4) 0;
}


.gv-process {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.gv-process::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 50px;
    bottom: 50px;
    width: 2px;
    background: rgba(255,255,255,0.12);
}

.gv-step {
    position: relative;
    margin-bottom: 50px;
    padding-left: 90px;
}

.gv-step:last-child {
    margin-bottom: 0;
}

.gv-step::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 18px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #111;
    border: 2px solid #2f80ed;
    z-index: 2;
}

.gv-step:hover::before {
    width: 30px;
    height: 30px;
    left: 15px;
    top: 15px;
    background: #2f80ed;
    box-shadow: 0 0 20px rgba(47,128,237,0.5);
}

.gv-stack__item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
}

.gv-stack__item:hover {
    transform: translateY(-4px);
    border-color: rgba(47,128,237,0.4);
}

.gv-step-number {
    display: inline-block;
    color: #2f80ed;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.gv-stack__item h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
}

.gv-stack__item .subtitle {
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.gv-stack__item p {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 25px;
}

.gv-ai {
    background: rgba(47,128,237,0.08);
    border-left: 3px solid #2f80ed;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.gv-ai-title {
    color: #2f80ed;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.gv-ai p {
    margin: 0;
}

.gv-groups {
    display: grid;
    gap: 20px;
}

.gv-group-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gv-tag {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.gv-tag:hover {
    background: var(--gv-color-accent);
    color: var(--gv-color-accent-contrast);
    border-color: var(--gv-color-accent);
}

@media (max-width: 768px) {

    .gv-process::before {
        left: 18px;
    }

    .gv-step {
        padding-left: 60px;
    }

    .gv-step::before {
        left: 6px;
    }

    .gv-step:hover::before {
        left: 3px;
    }

    .gv-stack__item {
        padding: 25px;
    }

    .gv-stack__item h3 {
        font-size: 24px;
    }
}



