.method-hero {
    min-height: auto !important;
    display: block !important;
    text-align: center;
    padding: 180px 24px 90px;
}

.method-hero h1 {
    max-width: 950px;
    margin: 20px auto;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -2px;
}

.method-hero p {
    max-width: 720px;
    margin: 0 auto 35px;
    color: #aaa;
    font-size: 1.15rem;
    line-height: 1.7;
}

.method-intro,
.method-steps,
.method-result {
    min-height: auto !important;
    display: block !important;
    padding: 60px 24px;
}

.intro-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 45px;
    border-radius: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
}

.intro-card h2,
.method-step h2,
.method-result h2 {
    color: #fff;
    margin-bottom: 18px;
}

.intro-card p,
.method-step p,
.method-result p {
    color: #aaa;
    line-height: 1.75;
    font-size: 1.05rem;
}

.method-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.method-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    padding: 38px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.step-number {
    color: #9b30ff;
    font-weight: 900;
    font-size: 1.4rem;
}

.method-result {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
}

.method-result h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
}

.method-result p {
    max-width: 700px;
    margin: 0 auto 35px;
}

@media (max-width: 768px) {
    .method-hero {
        padding-top: 140px;
    }

    .method-step {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .intro-card {
        padding: 30px;
    }
}