/* ==============================
   RISULTATI HOME - STUDIO GRAFFITI
================================= */

.sg-results-area {
    --sg-orange: #ff3d00;
    --sg-dark: #101010;
    --sg-dark-2: #171717;
    --sg-card: rgba(255, 255, 255, .055);
    --sg-border: rgba(255, 255, 255, .12);
    --sg-text: rgba(255, 255, 255, .74);
    --sg-muted: rgba(255, 255, 255, .52);

    position: relative;
    overflow: hidden;
    padding: clamp(80px, 8vw, 135px) 0;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 61, 0, .22), transparent 32%),
        radial-gradient(circle at 90% 0%, rgba(255, 255, 255, .08), transparent 26%),
        linear-gradient(180deg, #101010 0%, #171717 52%, #101010 100%);
    color: #fff;
}

.sg-results-area .container {
    position: relative;
    z-index: 2;
}

.sg-results-head {
    max-width: 980px;
    margin-bottom: clamp(38px, 5vw, 74px);
}

.sg-results-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 9px 14px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 61, 0, .36);
    border-radius: 999px;
    background: rgba(255, 61, 0, .10);
    color: #fff;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sg-results-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--sg-orange);
    box-shadow: 0 0 0 7px rgba(255, 61, 0, .14);
}

.sg-results-title {
    margin: 0;
    max-width: 900px;
    color: #fff;
    font-size: clamp(44px, 7vw, 96px);
    line-height: .92;
    letter-spacing: -.065em;
    font-weight: 900;
}

.sg-results-title span {
    color: var(--sg-orange);
}

.sg-results-intro {
    max-width: 780px;
    margin: 28px 0 0;
    color: var(--sg-text);
    font-size: clamp(17px, 1.55vw, 22px);
    line-height: 1.55;
}

.sg-results-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.sg-result-card {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    padding: clamp(24px, 2.3vw, 34px);
    border: 1px solid var(--sg-border);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .035));
    box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
    transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.sg-result-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 14% 8%, rgba(255, 61, 0, .18), transparent 34%);
    opacity: .85;
    transition: opacity .28s ease;
}

.sg-result-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 61, 0, .46);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .045));
}

.sg-result-card:hover::before {
    opacity: 1;
}

.sg-result-number {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, .22);
    font-size: 54px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.06em;
    margin-bottom: 34px;
}

.sg-result-icon {
    position: absolute;
    top: 28px;
    right: 28px;
    z-index: 2;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255, 61, 0, .12);
    border: 1px solid rgba(255, 61, 0, .22);
}

.sg-result-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .92;
}

.sg-result-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 300px;
}

.sg-result-content h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.02;
    letter-spacing: -.045em;
    font-weight: 900;
}

.sg-result-content p {
    margin: 0;
    color: var(--sg-text);
    font-size: 15px;
    line-height: 1.58;
}

/* Tablet */
@media (max-width: 1199px) {
    .sg-results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sg-result-card {
        min-height: 360px;
    }

    .sg-result-content {
        min-height: 230px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .sg-results-area {
        padding: 72px 0 82px;
    }

    .sg-results-head {
        margin-bottom: 32px;
    }

    .sg-results-title {
        font-size: clamp(42px, 12vw, 58px);
        line-height: .98;
    }

    .sg-results-intro {
        font-size: 16px;
    }

    .sg-results-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sg-result-card {
        min-height: auto;
        padding: 24px;
        border-radius: 24px;
    }

    .sg-result-number {
        font-size: 46px;
        margin-bottom: 42px;
    }

    .sg-result-icon {
        top: 22px;
        right: 22px;
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .sg-result-content {
        min-height: auto;
    }

    .sg-result-content h3 {
        font-size: 28px;
    }

    .sg-result-content p {
        font-size: 15px;
    }
}