.leftovers-page {
    --primary: #2E7D32;
    --surface: #ffffff;
    --background: #f7faf7;
    --text: #1f2937;
    --muted: #6b7280;
    --radius: 20px;

    background: var(--background);
    color: var(--text);

    font-family: system-ui, sans-serif;
}

.leftovers-page section {
    margin: 0 auto;
    max-width: 1290px;
    padding: 0 2rem;
}

.leftovers-page section + section {
    margin-top: 5rem;
}

.leftovers-page .leftovers-hero {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
    background-image: url("images/hero-image.png");
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
}

.leftovers-page .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.leftovers-page h1 {
    font-size: 32px;
}

.leftovers-page h2 {
    font-size: 24px;
}

.leftovers-page h3 {
    font-size: 1.17em;
}

.button-primary,
.button-secondary {
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

.button-primary {
    background: var(--primary);
    color: white;
}

.button-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.phone-placeholder {
    aspect-ratio: 9 / 19;
    border-radius: 36px;
    background: white;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2rem;
}

.step {
    position: relative;
    padding: 2rem;
    border: 1px solid rgba(46, 125, 50, .16);
    border-radius: 28px;
    background: var(--surface);
    text-align: center;
}

.step-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step-icon {
    display: inline-flex;
    color: var(--primary);
    font-size: 72px;
    font-variation-settings:
            'FILL' 0,
            'wght' 500,
            'GRAD' 0,
            'opsz' 72;
}

.step-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:bold;
}

.screenshot-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2rem;
}

.screenshot-card {
    aspect-ratio:9/19;
    background:var(--background);
    border-radius:0;
    overflow:hidden;
}

.screenshot-card img {
    display:block;
    width:100%;
    height:100%;
    object-fit:contain;
}

.cta {
    text-align:center;
}