/* =========================
   Generic sections
   ========================= */

.section {
    padding: 140px 0;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 100px;
    text-align: center;
}
/* 
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(6, 182, 212, 0.1));
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(20, 184, 166, 0.2);
} */

.section-title {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.section-description {
    font-size: 20px;
    color: var(--gray);
    line-height: 1.8;
}

/* =========================
   Promise section
   ========================= */

.promise {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-2) 100%);
}

.promise-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.promise-text h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.promise-text p {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 36px;
}

.steps-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.step-number-circle {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.25);
}

.step-number-circle p {
    margin: 0;
    line-height: 1;
    color: #fff;
}

.step-content {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h4 {
    font-size: 17px;
    font-weight: 700;
}

/* Sticky example card on the right */
.example-card {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 48px;
    border-radius: 24px;
    color: #fff;
    position: sticky;
    top: 120px;
    align-self: flex-start;
    box-shadow: 0 24px 64px rgba(20, 184, 166, 0.3);
}

.example-card h4,
.example-card p {
    color: #fff;
}

.example-card h4 {
    font-size: 22px;
    margin-bottom: 28px;
    font-weight: 800;
}

.example-stat {
    font-size: 44px;
    font-weight: 900;
    margin: 28px 0 16px;
}

/* Responsive adjustments (extend the ones you already have) */

@media (max-width: 1024px) {
    .promise-content {
        grid-template-columns: 1fr;
    }

    .example-card {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
}
