/* ===== Features page — self-contained styles ===== */
.ft {
    --red: #EB5C5A;
    --red-soft: #fdeceb;
    --ink: #1c1c1e;
    --charcoal: #333334;
    --muted: #6d6d75;
    --line: #ececee;
    --band: #f5f7f9;
    --serif: "Playfair Display", Georgia, serif;
    --sans: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, sans-serif;
    font-family: var(--sans);
    color: var(--charcoal);
}

.ft * {
    box-sizing: border-box;
}

.ft .eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
    margin: 0 0 14px;
}

.ft h1,
.ft h2 {
    font-family: var(--serif);
    color: var(--ink);
    font-weight: 600;
    margin: 0;
    letter-spacing: -.01em;
}

/* ---------- Hero ---------- */
.ft-hero {
    padding: 72px 0 40px;
}

.ft-hero h1 {
    font-size: 54px;
    line-height: 1.06;
    max-width: 640px;
}

.ft-hero .ft-lead {
    font-size: 17px;
    color: var(--muted);
    max-width: 470px;
    margin: 24px 0 0;
}

/* ---------- Section shell ---------- */
.ft-section {
    padding: 72px 0;
}

.ft-band {
    background: var(--band);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.ft-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.ft-head-text {
    max-width: 560px;
}

.ft-head h2 {
    font-size: 38px;
    line-height: 1.1;
}

.ft-head .ft-lead {
    font-size: 16px;
    color: var(--muted);
    margin: 18px 0 0;
    max-width: 480px;
}

.ft-head .btn {
    flex: none;
    margin-top: 4px;
}

/* ---------- Cards ---------- */
.ft-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 44px;
}

.ft-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    background: #fff;
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s;
}

.ft-card:hover {
    box-shadow: 0 16px 40px rgba(20, 20, 30, .07);
    transform: translateY(-3px);
    border-color: #e2e2e6;
}

.ft-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--red-soft);
    color: var(--red);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
}

.ft-card h3 {
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 8px;
}

.ft-card p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
}

/* ---------- Final CTA (One account. Any role.) ---------- */
.ft-final {
    padding: 96px 0 104px;
    text-align: center;
}

.ft-final .globe {
    color: var(--red);
    margin: 0 auto 20px;
    display: block;
}

.ft-final h2 {
    font-size: 42px;
    line-height: 1.1;
}

.ft-final .ft-lead {
    font-size: 16px;
    color: var(--muted);
    max-width: 480px;
    margin: 18px auto 30px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .ft-cards {
        grid-template-columns: 1fr;
    }

    .ft-head {
        flex-direction: column;
    }

    .ft-hero h1 {
        font-size: 40px;
    }

    .ft-section {
        padding: 56px 0;
    }
}

@media (max-width: 560px) {

    .ft-hero h1,
    .ft-head h2 {
        font-size: 34px;
    }
}
