/* ─── Partners Page Styles ────────────────────────────── */
/* Additive layer on top of contact.css (nav, footer, form, buttons). */

/* ─── Section shells ──────────────────────────────────── */
.partner-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
}

.partner-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.25rem;
}

.partner-section-head h2 {
    font-size: 1.9rem;
    color: #2b2325;
    margin-bottom: 0.6rem;
}

.partner-section-head p {
    color: #7a6b6e;
    font-size: 1rem;
}

/* ─── Tier cards ──────────────────────────────────────── */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.tier-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 2px solid #f5ece9;
    border-radius: 24px;
    padding: 2rem 1.6rem;
    transition: box-shadow 0.3s, transform 0.3s;
}

.tier-card:hover {
    box-shadow: 0 12px 40px rgba(232, 108, 108, 0.08);
    transform: translateY(-3px);
}

.tier-card.featured {
    border-color: #e86c6c;
}

.tier-flag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e86c6c, #f2a097);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
    white-space: nowrap;
}

.tier-icon {
    font-size: 1.9rem;
    margin-bottom: 0.7rem;
}

.tier-card h3 {
    font-size: 1.2rem;
    color: #2b2325;
    margin-bottom: 0.3rem;
}

.tier-who {
    font-size: 0.82rem;
    color: #9a8d8f;
    margin-bottom: 1.1rem;
}

.tier-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: #e86c6c;
    line-height: 1.25;
    margin-bottom: 0.35rem;
}

.tier-sub {
    font-size: 0.88rem;
    color: #7a6b6e;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f5ece9;
}

.tier-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    flex: 1;
}

.tier-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: #5d5053;
    line-height: 1.55;
}

.tier-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #e86c6c;
    font-weight: 700;
}

.tier-card .btn {
    width: 100%;
}

/* ─── How it works ────────────────────────────────────── */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    counter-reset: step;
}

.step {
    background: #fff;
    border: 2px solid #f5ece9;
    border-radius: 20px;
    padding: 1.5rem 1.25rem;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fef0ee;
    color: #e86c6c;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
}

.step h3 {
    font-size: 1rem;
    color: #2b2325;
    margin-bottom: 0.35rem;
}

.step p {
    font-size: 0.87rem;
    color: #7a6b6e;
    line-height: 1.55;
}

/* ─── Who it is for ───────────────────────────────────── */
.audience {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.audience span {
    background: #fff;
    border: 1px solid #f5ece9;
    border-radius: 100px;
    padding: 0.5rem 1.1rem;
    font-size: 0.88rem;
    color: #5d5053;
    font-weight: 500;
}

/* ─── Numbers strip ───────────────────────────────────── */
.proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    background: #fff;
    border: 2px solid #f5ece9;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.proof-item strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #e86c6c;
    line-height: 1.2;
}

.proof-item span {
    font-size: 0.87rem;
    color: #7a6b6e;
}

/* ─── FAQ ─────────────────────────────────────────────── */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 2px solid #f5ece9;
    border-radius: 18px;
    padding: 1.25rem 1.4rem;
    margin-bottom: 0.85rem;
}

.faq-item h3 {
    font-size: 1rem;
    color: #2b2325;
    margin-bottom: 0.4rem;
}

.faq-item p {
    font-size: 0.9rem;
    color: #7a6b6e;
    line-height: 1.6;
}

/* ─── Application form ────────────────────────────────── */
.apply-wrap {
    max-width: 680px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-hint {
    font-size: 0.78rem;
    color: #9a8d8f;
    margin-top: 0.3rem;
}

.form-note {
    text-align: center;
    font-size: 0.82rem;
    color: #9a8d8f;
    margin-top: 1rem;
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {

    .tier-grid,
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .tier-grid,
    .steps,
    .proof,
    .form-row {
        grid-template-columns: 1fr;
    }

    .partner-section-head h2 {
        font-size: 1.55rem;
    }

    .tier-card {
        padding: 1.75rem 1.35rem;
    }
}
