/* ══════════════════════════════════════════════
   ROHO — Safety & Trust Page Styles
   css/safety.css   (extends landing.css tokens)
   ══════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body, html {
    font-family: 'Source Sans Pro', sans-serif;
    background: #f2f5ff;
    min-height: 100vh;
    color: #2c2c2a;
}

/* ── NAV ── */
.nav {
    background: #1a3a6b;
    padding: 0 24px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 200;
}
.nav-logo {
    font-family: 'Libre Baskerville', serif;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.nav-badge {
    background: #f0a500;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a3a6b;
    font-size: 16px;
}
.nav-links { display: flex; gap: 4px; }
.nav-links a {
    color: #aac4f0;
    font-size: 12px;
    padding: 6px 11px;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
}
.nav-links a:hover, .nav-links a.act { background: #2a5298; color: #fff; }
.nav-right { display: flex; align-items: center; gap: 8px; }
.btn-mpesa {
    background: #00a651;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Source Sans Pro', sans-serif;
}
.btn-login {
    background: #2a5298;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Source Sans Pro', sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ── HERO ── */
.hero {
    background: #1a3a6b;
    padding: 52px 24px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 0%,  rgba(29,158,117,.18), transparent 55%),
        radial-gradient(ellipse at 20% 110%, rgba(240,165,0,.12),  transparent 55%);
    pointer-events: none;
}
.hero-shield {
    width: 72px;
    height: 72px;
    background: #1d9e75;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 0 0 12px rgba(29,158,117,.15);
}
.hero h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.25;
    position: relative;
}
.hero h1 span { color: #f0a500; }
.hero p {
    font-size: 14px;
    color: #aac4f0;
    max-width: 580px;
    margin: 0 auto 28px;
    line-height: 1.75;
    position: relative;
}

/* trust score bar */
.safety-score {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}
.ss-label { font-size: 11px; color: #6b8fc7; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.ss-bar-wrap { background: #223d75; border-radius: 20px; height: 10px; width: 300px; overflow: hidden; }
.ss-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #1d9e75, #f0a500);
    border-radius: 20px;
    transition: width 1.4s ease;
}
.ss-bar-fill.animate { width: var(--score-pct, 97%); }
.ss-score { font-family: 'Libre Baskerville', serif; font-size: 28px; font-weight: 700; color: #f0a500; }

/* ── TRUST BADGES ── */
.trust-badges {
    background: #e1f5ee;
    border-bottom: 2px solid #5dcaa5;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
}
.tb-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 20px;
    font-size: 11px;
    color: #085041;
    font-weight: 700;
    border-right: 1px solid #9fe1cb;
}
.tb-item:last-child { border-right: none; }
.tb-item i { font-size: 18px; color: #1d9e75; }

/* ── SECTION HEADERS ── */
.sec-head { text-align: center; padding: 44px 24px 8px; }
.sec-head h2 { font-family: 'Libre Baskerville', serif; font-size: 22px; font-weight: 700; color: #1a3a6b; margin-bottom: 6px; }
.sec-head p  { font-size: 12px; color: #993556; max-width: 560px; margin: 0 auto; }

/* ── SAFETY PILLARS ── */
.pillars { padding: 20px 24px 40px; background: #f2f5ff; }
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}
.pillar-card {
    background: #fff;
    border-radius: 14px;
    border: 0.5px solid #dde8f8;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow .15s;
}
.pillar-card:hover { box-shadow: 0 4px 20px rgba(26,58,107,.09); }
.pc-icon {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.pci-green  { background: #e1f5ee; } .pci-green  i { color: #085041; }
.pci-blue   { background: #e6f1fb; } .pci-blue   i { color: #0c447c; }
.pci-amber  { background: #faeeda; } .pci-amber  i { color: #633806; }
.pci-pink   { background: #fbeaf0; } .pci-pink   i { color: #72243e; }
.pci-purple { background: #eeedfe; } .pci-purple i { color: #3c3489; }
.pci-teal   { background: #e1f5ee; } .pci-teal   i { color: #085041; }

.pillar-card h3 { font-family: 'Libre Baskerville', serif; font-size: 15px; font-weight: 700; color: #1a3a6b; }
.pillar-card p  { font-size: 12px; color: #5f5e5a; line-height: 1.65; }
.pillar-card .pc-badges { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 4px; }
.pcb { font-size: 9px; font-weight: 700; padding: 3px 9px; border-radius: 10px; display: inline-flex; align-items: center; gap: 3px; }
.pcb-green  { background: #e1f5ee; color: #085041; }
.pcb-blue   { background: #e6f1fb; color: #0c447c; }
.pcb-amber  { background: #faeeda; color: #633806; }
.pcb-pink   { background: #fbeaf0; color: #72243e; }
.pcb-purple { background: #eeedfe; color: #3c3489; }

/* ── VERIFICATION TIMELINE ── */
.verify-section { background: #1a3a6b; padding: 44px 24px; }
.verify-section h2 { font-family: 'Libre Baskerville', serif; font-size: 22px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 6px; }
.verify-section .vs-sub { font-size: 12px; color: #6b8fc7; text-align: center; margin-bottom: 32px; }
.timeline { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.tl-item { display: grid; grid-template-columns: 52px 1fr; gap: 0; position: relative; }
.tl-item:not(:last-child) .tl-line { position: absolute; left: 25px; top: 52px; bottom: 0; width: 2px; background: #2a5298; }
.tl-left { display: flex; flex-direction: column; align-items: center; padding-top: 4px; position: relative; z-index: 1; }
.tl-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 3px solid #1a3a6b;
}
.tn1 { background: #e1f5ee; color: #085041; }
.tn2 { background: #eeedfe; color: #3c3489; }
.tn3 { background: #faeeda; color: #633806; }
.tn4 { background: #fbeaf0; color: #72243e; }
.tn5 { background: #e6f1fb; color: #0c447c; }
.tn6 { background: #eaf3de; color: #27500a; }
.tl-right { padding: 4px 0 32px 20px; }
.tl-right h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 5px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tl-right h4 .tl-tag { font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 10px; background: #f0a500; color: #1a3a6b; }
.tl-right p  { font-size: 12px; color: #6b8fc7; line-height: 1.65; }
.tl-right .tl-detail { margin-top: 8px; background: #223d75; border-radius: 9px; padding: 10px 12px; font-size: 11px; color: #aac4f0; line-height: 1.55; }
.tl-right .tl-detail strong { color: #f0a500; }

/* ── FOR WOMEN ── */
.for-women { background: #fbeaf0; border-top: 2px solid #e8a0bb; padding: 44px 24px; }
.for-women h2 { font-family: 'Libre Baskerville', serif; font-size: 22px; font-weight: 700; color: #72243e; text-align: center; margin-bottom: 6px; }
.for-women .fw-sub { font-size: 12px; color: #993556; text-align: center; margin-bottom: 28px; }
.fw-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 860px;
    margin: 0 auto;
}
.fw-card { background: #fff; border-radius: 13px; padding: 18px 16px; border: 1px solid #e8a0bb; display: flex; gap: 14px; align-items: flex-start; }
.fw-card .fw-ico { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.fwi-pink   { background: #fbeaf0; } .fwi-pink   i { color: #72243e; }
.fwi-green  { background: #e1f5ee; } .fwi-green  i { color: #085041; }
.fwi-purple { background: #eeedfe; } .fwi-purple i { color: #3c3489; }
.fwi-amber  { background: #faeeda; } .fwi-amber  i { color: #633806; }
.fwi-blue   { background: #e6f1fb; } .fwi-blue   i { color: #0c447c; }
.fwi-teal   { background: #eaf3de; } .fwi-teal   i { color: #27500a; }
.fw-card h4 { font-size: 13px; font-weight: 700; color: #72243e; margin-bottom: 4px; }
.fw-card p  { font-size: 11px; color: #5f5e5a; line-height: 1.6; }

/* consent spotlight */
.consent-spotlight { background: #1a3a6b; border-radius: 13px; padding: 20px; margin: 20px auto 0; max-width: 860px; display: flex; align-items: flex-start; gap: 16px; }
.cs-ico { width: 48px; height: 48px; background: #f0a500; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #1a3a6b; flex-shrink: 0; }
.cs-body h4 { font-family: 'Libre Baskerville', serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.cs-body p  { font-size: 12px; color: #aac4f0; line-height: 1.6; }
.cs-body .cs-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.cs-tag { font-size: 9px; font-weight: 700; padding: 3px 9px; border-radius: 10px; background: #223d75; color: #aac4f0; display: flex; align-items: center; gap: 3px; }

/* ── FOR SUITORS ── */
.for-suitors { background: #eeedfe; border-top: 2px solid #afa9ec; padding: 44px 24px; }
.for-suitors h2  { font-family: 'Libre Baskerville', serif; font-size: 22px; font-weight: 700; color: #3c3489; text-align: center; margin-bottom: 6px; }
.for-suitors .fs-sub { font-size: 12px; color: #534ab7; text-align: center; margin-bottom: 28px; }
.fs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 1000px;
    margin: 0 auto;
}
.fs-card { background: #fff; border-radius: 13px; padding: 18px 16px; border: 1px solid #afa9ec; }
.fs-card .fs-num { width: 32px; height: 32px; border-radius: 50%; background: #eeedfe; color: #3c3489; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.fs-card h4 { font-size: 13px; font-weight: 700; color: #3c3489; margin-bottom: 5px; }
.fs-card p  { font-size: 11px; color: #5f5e5a; line-height: 1.6; }

/* ── REPORTING ── */
.reporting { background: #fff; padding: 44px 24px; border-top: 0.5px solid #dde8f8; }
.reporting h2   { font-family: 'Libre Baskerville', serif; font-size: 22px; font-weight: 700; color: #1a3a6b; text-align: center; margin-bottom: 6px; }
.reporting .rp-sub { font-size: 12px; color: #993556; text-align: center; margin-bottom: 28px; }
.rp-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 860px; margin: 0 auto; }

/* report steps */
.report-steps { display: flex; flex-direction: column; gap: 10px; }
.rs-item { background: #f7faff; border-radius: 10px; padding: 14px; border: 0.5px solid #dde8f8; display: flex; gap: 12px; align-items: flex-start; }
.rs-num { width: 30px; height: 30px; border-radius: 50%; background: #1a3a6b; color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rs-item h4 { font-size: 12px; font-weight: 700; color: #1a3a6b; margin-bottom: 3px; }
.rs-item p  { font-size: 11px; color: #5f5e5a; line-height: 1.5; }

/* SLA box */
.sla-box { background: #1a3a6b; border-radius: 13px; padding: 22px 20px; display: flex; flex-direction: column; gap: 12px; }
.sla-box h4 { font-family: 'Libre Baskerville', serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.sla-item { display: flex; align-items: flex-start; gap: 10px; }
.sla-ico { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.si-green { background: #1d9e75; } .si-amber { background: #ba7517; } .si-pink { background: #993556; }
.sla-item p      { font-size: 11px; color: #aac4f0; line-height: 1.5; }
.sla-item strong { color: #f0a500; display: block; font-size: 12px; margin-bottom: 2px; }
.sla-whatsapp    { background: #223d75; border-radius: 8px; padding: 10px 12px; font-size: 11px; color: #aac4f0; line-height: 1.5; margin-top: 4px; }
.sla-whatsapp i  { color: #f0a500; }

/* report CTA */
.report-cta {
    background: #993556;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 20px auto 0;
    font-family: 'Source Sans Pro', sans-serif;
}
.report-cta:hover { background: #7a2343; }

/* ── DATA & PRIVACY ── */
.privacy { background: #f2f5ff; padding: 44px 24px; border-top: 0.5px solid #dde8f8; }
.privacy h2    { font-family: 'Libre Baskerville', serif; font-size: 22px; font-weight: 700; color: #1a3a6b; text-align: center; margin-bottom: 6px; }
.privacy .pv-sub { font-size: 12px; color: #993556; text-align: center; margin-bottom: 28px; }
.pv-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 1000px;
    margin: 20px auto 0;
}
.pv-card { background: #fff; border-radius: 12px; border: 0.5px solid #dde8f8; padding: 18px 14px; text-align: center; }
.pv-card i { font-size: 28px; display: block; margin-bottom: 10px; }
.pv-card.pvc-green i { color: #1d9e75; }
.pv-card.pvc-blue  i { color: #185fa5; }
.pv-card.pvc-amber i { color: #ba7517; }
.pv-card.pvc-pink  i { color: #993556; }
.pv-card h4 { font-size: 12px; font-weight: 700; color: #1a3a6b; margin-bottom: 5px; }
.pv-card p  { font-size: 10px; color: #5f5e5a; line-height: 1.55; }

/* ── EMERGENCY CONTACTS ── */
.emergency { background: #faeeda; border-top: 2px solid #fac775; border-bottom: 2px solid #fac775; padding: 28px 24px; }
.emergency h2 { font-family: 'Libre Baskerville', serif; font-size: 18px; font-weight: 700; color: #633806; text-align: center; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.em-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}
.em-card { background: #fff; border-radius: 12px; padding: 14px; border: 1.5px solid #fac775; text-align: center; }
.em-card i   { font-size: 24px; color: #ba7517; display: block; margin-bottom: 6px; }
.em-card h4  { font-size: 12px; font-weight: 700; color: #633806; margin-bottom: 3px; }
.em-card .em-num { font-family: 'Libre Baskerville', serif; font-size: 18px; font-weight: 700; color: #1a3a6b; margin-bottom: 3px; }
.em-card p   { font-size: 10px; color: #854f0b; }

/* ── SAFETY PLEDGE ── */
.pledge { background: #1a3a6b; padding: 44px 24px; text-align: center; }
.pledge-inner { max-width: 680px; margin: 0 auto; }
.pledge-icon { width: 60px; height: 60px; background: #f0a500; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #1a3a6b; margin: 0 auto 16px; }
.pledge h2 { font-family: 'Libre Baskerville', serif; font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.pledge p  { font-size: 13px; color: #aac4f0; line-height: 1.8; margin-bottom: 20px; }
.pledge-sigs { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.pledge-sig .sig-name { font-family: 'Libre Baskerville', serif; font-size: 14px; color: #fff; font-weight: 700; }
.pledge-sig .sig-role { font-size: 10px; color: #6b8fc7; }
.pledge-badges { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.pledge-badge { background: #223d75; border-radius: 10px; padding: 8px 14px; font-size: 11px; font-weight: 700; color: #aac4f0; display: flex; align-items: center; gap: 6px; }
.pledge-badge i { color: #f0a500; }

/* ── MODALS ── */
.modal-bg { background: rgba(26,58,107,.6); position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 999; padding: 20px; }
.modal-bg.show { display: flex; }

/* report modal */
.modal { background: #fff; border-radius: 14px; width: 100%; max-width: 460px; overflow: hidden; max-height: 92vh; overflow-y: auto; }
.modal-hdr { background: #993556; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; }
.modal-hdr-title { font-family: 'Libre Baskerville', serif; font-size: 15px; color: #fff; font-weight: 700; display: flex; align-items: center; gap: 7px; }
.modal-close { color: rgba(255,255,255,.7); font-size: 18px; cursor: pointer; background: none; border: none; }
.modal-body { padding: 20px; }
.form-grp { margin-bottom: 12px; }
.form-grp label { font-size: 11px; font-weight: 700; color: #1a3a6b; display: block; margin-bottom: 5px; display: flex; align-items: center; gap: 5px; }
.form-grp input,
.form-grp select,
.form-grp textarea {
    width: 100%;
    padding: 9px 11px;
    border: 1.5px solid #c4d7f0;
    border-radius: 8px;
    font-size: 12px;
    font-family: 'Source Sans Pro', sans-serif;
    color: #2c2c2a;
    background: #f7faff;
    outline: none;
    resize: vertical;
}
.form-grp input:focus,
.form-grp select:focus,
.form-grp textarea:focus { border-color: #993556; }

.report-type-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 12px; }
.rt-card { border: 1.5px solid #dde8f8; border-radius: 9px; padding: 10px; cursor: pointer; text-align: center; transition: .12s; }
.rt-card.active { border-color: #993556; background: #fbeaf0; }
.rt-card i    { font-size: 18px; color: #993556; display: block; margin-bottom: 4px; }
.rt-card span { font-size: 10px; font-weight: 700; color: #72243e; }

.submit-report-btn {
    background: #993556;
    color: #fff;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: 'Source Sans Pro', sans-serif;
    margin-top: 4px;
    transition: background .12s;
}
.submit-report-btn:hover { background: #7a2343; }
.submit-report-btn:disabled { opacity: .7; cursor: default; }
.anon-note { font-size: 10px; color: #888780; text-align: center; margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 4px; }

/* report success state */
.report-success { display: none; text-align: center; padding: 20px 0; }
.report-success i { font-size: 48px; color: #1d9e75; display: block; margin-bottom: 12px; }
.report-success h4 { font-family: 'Libre Baskerville', serif; font-size: 16px; color: #1a3a6b; margin-bottom: 6px; }
.report-success .ref { font-family: 'Libre Baskerville', serif; font-size: 22px; font-weight: 700; color: #f0a500; margin: 8px 0; }
.report-success p { font-size: 12px; color: #5f5e5a; line-height: 1.6; }

/* login modal */
.login-modal { background: #fff; border-radius: 14px; width: 100%; max-width: 400px; overflow: hidden; }
.login-modal .modal-hdr { background: #1a3a6b; }
.login-tabs { display: flex; border-bottom: 1.5px solid #dde8f8; }
.ltab { flex: 1; padding: 12px; text-align: center; font-size: 12px; font-weight: 700; color: #888780; cursor: pointer; background: none; border: none; font-family: 'Source Sans Pro', sans-serif; }
.ltab.active { color: #1a3a6b; border-bottom: 2px solid #f0a500; background: #f7faff; }
.login-body { padding: 18px 20px; }
.lform-grp { margin-bottom: 12px; }
.lform-grp label { font-size: 11px; font-weight: 700; color: #1a3a6b; display: flex; align-items: center; gap: 5px; margin-bottom: 5px; }
.lform-grp input { width: 100%; padding: 9px 11px; border: 1.5px solid #c4d7f0; border-radius: 8px; font-size: 13px; font-family: 'Source Sans Pro', sans-serif; color: #2c2c2a; background: #f7faff; outline: none; }
.lform-grp input:focus { border-color: #993556; }
.phone-input { display: flex; align-items: center; border: 1.5px solid #c4d7f0; border-radius: 8px; overflow: hidden; }
.phone-prefix { background: #e6f1fb; color: #0c447c; font-size: 12px; font-weight: 700; padding: 9px 10px; border-right: 1.5px solid #c4d7f0; white-space: nowrap; }
.phone-input input { border: none; outline: none; padding: 9px 10px; font-size: 13px; font-family: 'Source Sans Pro', sans-serif; flex: 1; color: #2c2c2a; }
.role-select { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.role-card { border: 2px solid #dde8f8; border-radius: 9px; padding: 11px; text-align: center; cursor: pointer; }
.role-card.active { border-color: #993556; background: #fbeaf0; }
.role-card i { font-size: 20px; color: #993556; display: block; margin-bottom: 4px; }
.role-card .rc-name { font-size: 11px; font-weight: 700; color: #72243e; }
.role-card .rc-desc { font-size: 9px; color: #993556; }
.login-btn { background: #993556; color: #fff; border: none; width: 100%; padding: 11px; border-radius: 9px; font-size: 13px; font-weight: 700; cursor: pointer; margin-bottom: 10px; font-family: 'Source Sans Pro', sans-serif; }
.login-footer-note { font-size: 10px; color: #888780; text-align: center; line-height: 1.5; }

/* pay modal */
.pay-modal { background: #fff; border-radius: 14px; width: 100%; max-width: 400px; overflow: hidden; }
.pay-modal .modal-hdr { background: #00a651; }
.pay-modal .modal-hdr .modal-close { color: rgba(255,255,255,.8); }
.pay-modal-body { padding: 20px; }
.tier-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; margin-bottom: 14px; }
.tier-card { border: 2px solid #dde8f8; border-radius: 9px; padding: 10px; text-align: center; cursor: pointer; }
.tier-card.active { border-color: #00a651; background: #f0faf5; }
.tier-card .tc-name  { font-size: 10px; font-weight: 700; color: #085041; margin-bottom: 2px; }
.tier-card .tc-price { font-family: 'Libre Baskerville', serif; font-size: 16px; font-weight: 700; color: #1d9e75; }
.tier-card .tc-dur   { font-size: 9px; color: #888780; }
.mpesa-pay-btn { background: #00a651; color: #fff; border: none; width: 100%; padding: 12px; border-radius: 9px; font-size: 13px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 7px; font-family: 'Source Sans Pro', sans-serif; }
.secure-note { font-size: 10px; color: #888780; text-align: center; margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 4px; }

/* ── FOOTER ── */
.footer { background: #1a3a6b; padding: 24px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.ft-col .ft-title { font-family: 'Libre Baskerville', serif; font-size: 13px; color: #fff; font-weight: 700; margin-bottom: 10px; }
.ft-col a { display: block; font-size: 11px; color: #6b8fc7; margin-bottom: 5px; text-decoration: none; cursor: pointer; }
.ft-col a:hover { color: #aac4f0; }
.footer-bottom { background: #162f59; padding: 10px 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.fb-text { font-size: 10px; color: #5a7fc0; }
.fb-mpesa-badge { background: #00a651; color: #fff; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 10px; display: flex; align-items: center; gap: 4px; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .fs-grid      { grid-template-columns: repeat(2, 1fr); }
    .pv-grid      { grid-template-columns: repeat(2, 1fr); }
    .em-grid      { grid-template-columns: repeat(2, 1fr); }
    .rp-layout    { grid-template-columns: 1fr; }
    .footer       { grid-template-columns: repeat(2, 1fr); }
    .nav-links    { display: none; }
}
@media (max-width: 600px) {
    .pillars-grid { grid-template-columns: 1fr; }
    .fw-grid      { grid-template-columns: 1fr; }
    .fs-grid      { grid-template-columns: 1fr; }
    .pv-grid      { grid-template-columns: 1fr; }
    .em-grid      { grid-template-columns: repeat(2, 1fr); }
    .hero h1      { font-size: 22px; }
    .consent-spotlight { flex-direction: column; }
    .tier-grid    { grid-template-columns: 1fr; }
}
