/* ── Section wrapper ── */
.fin-section {
    background-color: var(--fin-section-bg);
    width: 100%;
    min-height: 657px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 110px 100px;
}

/* ── Inner container (max 1240px) ── */
.fin-container {
    width: 100%;
    max-width: 1240px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

/* ── Top content block ── */
.fin-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 38px;
    align-items: flex-start;
}

/* ── Headline block ── */
.fin-headline-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 960px;
    width: 100%;
}

.fin-headline {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 44px;
    line-height: normal;
    letter-spacing: var(--ls-md);
    color: var(--color-heading);
    text-transform: capitalize;
}

.fin-headline .italic-accent {
    font-family: var(--font-display);
    font-weight: 600;
/*     font-style: italic; */
    color: var(--color-link);
    letter-spacing: 0;
}

.fin-subtext .subtext-accent {
    font-family: var(--font-body);
    font-weight: 700;
    font-style: normal;
    color: var(--color-link);
}

.fin-subtext {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 28px;
    color: var(--color-text-body);
}

/* ── Cards row ── */
.fin-cards {
    display: flex;
    gap: 20px;
    align-items: stretch;
    width: 100%;
}

/* ── Individual card ── */
.fin-card {
    background: var(--card-bg);
    border: var(--card-border);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: var(--card-padding);
}

.fin-card:hover{
	border-color: var(--color-accent-strong);
    box-shadow: 0 0 0 3px var(--color-focus-ring-accent);
    transition: border-color 0.3s ease, color 0.3s ease;
	background: var(--white);
}

/* ── Step badge ── */
.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 8px;
    padding: 2px 12px;
    flex-shrink: 0;
    align-self: flex-start;
}

.step-badge span {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 28px;
    color: var(--color-link);
    white-space: nowrap;
}

/* ── Card body ── */
.card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100px;
}

.card-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 24px;
    line-height: normal;
    color: var(--black);
}

.card-desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    color: var(--black);
}

/* CTA: global .btn + section hook */
.fin-cta {
    flex-shrink: 0;
    text-transform: capitalize;
}

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */

/* Tablet: 768px – 1100px */
@media (max-width: 1100px) {
    .fin-section {
        padding: 48px 32px;
    }

    .fin-headline {
        font-size: 36px;
    }

    .fin-cards {
        flex-wrap: wrap;
    }

    .fin-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 280px;
    }
}

/* Mobile: ≤ 767px */
@media (max-width: 767px) {
    .fin-section {
        padding: 40px 16px;
        min-height: unset;
    }

    .fin-headline {
        font-size: 28px;
        letter-spacing: 0.5px;
    }

    .fin-subtext {
        font-size: 16px;
        line-height: 26px;
    }

    .fin-headline-block {
        gap: 12px;
    }

    .fin-content {
        gap: 28px;
    }

    .fin-cards {
        flex-direction: column;
        gap: 16px;
    }

    .fin-card {
        flex: unset;
        width: 100%;
		background: #FFFFFF;
		border: 1px solid #AADCF3;
    }
	
	.step-badge{
		background: #EAF6FC;
	}

    .card-title {
        font-size: 20px;
    }

    .card-desc {
        font-size: 16px;
        line-height: 26px;
    }

}

/* Small mobile: ≤ 400px */
@media (max-width: 400px) {
    .fin-headline {
        font-size: 24px;
    }
}
