/* ==============================
   METODO STUDIO GRAFFITI - HOME
   Sfondo bianco
================================= */

.sg-method-area {
    --sg-orange: #ff3d00;
    --sg-black: #111111;
    --sg-dark: #171717;
    --sg-text: rgba(17, 17, 17, .72);
    --sg-muted: rgba(17, 17, 17, .52);
    --sg-border: rgba(17, 17, 17, .10);
    --sg-soft: rgba(255, 61, 0, .10);

    position: relative;
    overflow: hidden;
    padding: clamp(80px, 8vw, 135px) 0;
    background: #ffffff;
    color: var(--sg-black);
}

.sg-method-area::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    top: -180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 61, 0, .12), transparent 68%);
    pointer-events: none;
}

.sg-method-area::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    left: -140px;
    bottom: -160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17, 17, 17, .055), transparent 70%);
    pointer-events: none;
}

.sg-method-inner {
    position: relative;
    z-index: 2;
}

.sg-method-head {
    max-width: 1120px;
    margin-bottom: clamp(36px, 5vw, 70px);
}

.sg-method-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, .28);
    border-radius: 999px;
    background: rgba(255, 61, 0, .08);
    color: var(--sg-black);
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sg-method-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--sg-orange);
    box-shadow: 0 0 0 7px rgba(255, 61, 0, .13);
}

.sg-method-title {
    margin: 0;
    max-width: 1120px;
    color: var(--sg-black);
    font-size: clamp(44px, 7vw, 94px);
    line-height: .92;
    letter-spacing: -.065em;
    font-weight: 900;
}

.sg-method-title span {
    color: var(--sg-orange);
}

.sg-method-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: clamp(28px, 5vw, 80px);
    align-items: stretch;
}

.sg-method-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 800px;
}

.sg-method-text p {
    margin: 0;
    color: var(--sg-text);
    font-size: clamp(20px, 2vw, 34px);
    line-height: 1.18;
    letter-spacing: -.035em;
    font-weight: 700;
}

.sg-method-text p + p {
    margin-top: 28px;
}

.sg-method-card {
    position: relative;
    overflow: hidden;
    min-height: 470px;
    padding: clamp(28px, 3vw, 42px);
    border: 1px solid var(--sg-border);
    border-radius: 34px;
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 61, 0, .13), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%);
    box-shadow: 0 32px 90px rgba(17, 17, 17, .10);
}

.sg-method-card::before {
    content: "";
    position: absolute;
    right: -52px;
    top: -52px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--sg-orange);
    opacity: .11;
}

.sg-method-card-label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 34px;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--sg-black);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sg-method-card h3 {
    margin: 0 0 18px;
    color: var(--sg-black);
    font-size: clamp(30px, 3vw, 46px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 900;
}

.sg-method-card p {
    margin: 0 0 28px;
    color: var(--sg-text);
    font-size: 17px;
    line-height: 1.55;
}

.sg-method-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sg-method-card li {
    position: relative;
    padding-left: 30px;
    color: var(--sg-black);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 800;
}

.sg-method-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .38em;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--sg-orange);
    box-shadow: 0 0 0 6px rgba(255, 61, 0, .12);
}

/* Tablet */
@media (max-width: 1199px) {
    .sg-method-content {
        grid-template-columns: 1fr;
    }

    .sg-method-card {
        min-height: auto;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .sg-method-area {
        padding: 72px 0 82px;
    }

    .sg-method-head {
        margin-bottom: 32px;
    }

    .sg-method-title {
        font-size: clamp(42px, 12vw, 58px);
        line-height: .98;
    }

    .sg-method-text p {
        font-size: 22px;
        line-height: 1.25;
    }

    .sg-method-card {
        padding: 26px;
        border-radius: 26px;
    }

    .sg-method-card h3 {
        font-size: 32px;
    }

    .sg-method-card p {
        font-size: 16px;
    }
}