.hero {
    min-height: calc(100vh - 76px);
    padding: 90px 7%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 45, 122, 0.22), transparent 35%),
        var(--black);
}

.eyebrow {
    color: var(--pink);
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(54px, 8vw, 112px);
    line-height: 0.9;
    font-weight: 900;
    margin: 10px 0 24px;
}

.hero h1 span {
    color: var(--pink);
}

.hero-text {
    font-size: 20px;
    color: var(--muted);
    max-width: 620px;
    line-height: 1.5;
}

.hero-btn {
    display: inline-block;
    margin-top: 28px;
    background: var(--pink);
    color: white;
    padding: 16px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
}

.hero-card {
    background: #f8f8f8;
    color: #111;
    border-radius: 24px;
    padding: 42px;
    transform: rotate(4deg);
    box-shadow: 0 25px 80px rgba(255, 45, 122, 0.18);
}

.stamp {
    display: inline-block;
    color: #d71920;
    border: 5px solid #d71920;
    border-radius: 999px;
    padding: 16px 26px;
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
}

.score {
    font-size: 90px;
    font-weight: 900;
    margin-top: 26px;
}

.score span {
    font-size: 32px;
}

.how {
    padding: 80px 7%;
    background: #f4f1eb;
    color: #111;
}

.how h2 {
    font-size: 44px;
    font-weight: 900;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 30px;
}

.steps div {
    background: white;
    padding: 30px;
    border-radius: 18px;
}

.steps h3 {
    color: var(--pink);
    font-weight: 900;
}

@media (max-width: 850px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 50px;
    }

    .steps {
        grid-template-columns: 1fr;
    }
}