.cohorts-section {
    padding: 92px 0;
    color: #fff;
    background: linear-gradient(145deg, var(--green2), #07563a);
}

.cohorts-heading {
    display: grid;
    grid-template-columns: 1fr .7fr;
    align-items: end;
    gap: 60px;
}

.cohorts-heading h2 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(36px, 4.7vw, 58px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.cohorts-heading > p {
    margin: 0;
    color: #bde2cf;
    font-size: 12px;
    line-height: 1.75;
}

.cohort-grid {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
}

.cohort-card {
    min-width: 0;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 21px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, .09);
}

.cohort-card.next {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 24px 55px rgba(3, 29, 20, .24);
}

.cohort-card > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.cohort-card > div span {
    color: #a9dec2;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cohort-card.next > div span { color: var(--green); }
.cohort-card > div small { color: var(--gold); font-size: 10px; font-weight: 900; }

.cohort-card h3 {
    margin: 20px 0 18px;
    color: #fff;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -.035em;
}

.cohort-card.next h3 { color: var(--navy); }

.cohort-card ul {
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    gap: 9px;
    list-style: none;
}

.cohort-card li {
    position: relative;
    padding-left: 18px;
    color: #c5e4d4;
    font-size: 10px;
    line-height: 1.5;
}

.cohort-card.next li { color: var(--muted); }
.cohort-card li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.cohort-card > p { margin: auto 0 18px; display: grid; gap: 3px; }
.cohort-card > p strong { color: var(--gold); font-size: 23px; }
.cohort-card.next > p strong { color: var(--green2); }
.cohort-card > p small { color: #a9d2bc; font-size: 8px; line-height: 1.45; }
.cohort-card.next > p small { color: var(--muted); }
.cohort-card .button { width: 100%; }
.cohort-trust { margin: 18px 0 0; color: #a9d8c0; font-size: 9px; text-align: center; }
.cohort-trust a { color: #fff; font-weight: 850; text-decoration: underline; text-underline-offset: 3px; }

.cohort-empty {
    margin-top: 35px;
    padding: 29px;
    border-radius: 21px;
    color: var(--ink);
    background: #fff;
}

.cohort-empty strong { color: var(--navy); font-size: 19px; }
.cohort-empty p { color: var(--muted); font-size: 11px; }
.cohort-empty .button { margin-top: 8px; }

@media (max-width: 1020px) {
    .cohorts-heading { grid-template-columns: 1fr; gap: 24px; }
    .cohort-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    .cohort-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
    .cohorts-section { padding: 72px 0; }
    .cohort-card { padding: 21px; }
}
