/* ══════════════════════════════════════════════════════════
   PentCommunity — Infos Pages (Doctrines, Dons, Suppression)
   Design Direction: Luxury Editorial Dark
══════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
    --c-blue:        #357abd;
    --c-blue-dark:   #00224e;
    --c-orange:      #fe9b44;
    --c-orange-dark: #e18009;
    --c-white:       #ffffff;
    --c-off:         #edeae3;
    --c-muted:       rgba(237, 234, 227, 0.45);
    --c-glass:       rgba(255,255,255,0.03);
    --c-border:      rgba(53, 122, 189, 0.15);
    --c-border-h:    rgba(53, 122, 189, 0.38);
    --c-surface:     #0a1428;
    --c-red:         #dc4a4a;
    --c-green:       #22c55e;

    --f-display: 'Cormorant Garamond', Georgia, serif;
    --f-body:    'DM Sans', system-ui, sans-serif;
    --f-label:   'Bebas Neue', sans-serif;

    --nav-h: 68px;
    --r:     14px;
    --r-sm:  8px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--f-body);
    background: #000d1f;
    color: var(--c-off);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
button { font-family: var(--f-body); }

body::after {
    content: '';
    position: fixed; inset: 0;
    pointer-events: none; z-index: 9998; opacity: 0.28;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; height: var(--nav-h);
    display: flex; align-items: center; padding: 0 2.5rem;
    background: rgba(0, 10, 30, 0.65);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
    border-bottom: 1px solid var(--c-border);
    transition: background 0.4s;
}
.nav.scrolled { background: rgba(0, 8, 22, 0.92); }
.nav-inner {
    display: flex; align-items: center;
    width: 100%; max-width: 1280px; margin: 0 auto; gap: 1.5rem;
}
.nav-brand {
    display: flex; align-items: center; gap: 0.55rem;
    font-family: var(--f-display); font-size: 1.25rem; font-weight: 600;
    color: var(--c-white); white-space: nowrap; flex-shrink: 0;
}
.nav-brand img { width: 30px; height: 27px; object-fit: contain; }
.nav-brand .accent { color: var(--c-orange); font-style: italic; }

.nav-links { display: flex; align-items: center; gap: 0.1rem; list-style: none; }
.nav-links > li > a {
    display: flex; align-items: center; gap: 0.3rem;
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase;
    color: rgba(237,234,227,0.6); padding: 0.38rem 0.75rem; border-radius: var(--r-sm);
    transition: color 0.2s, background 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--c-white); background: rgba(53,122,189,0.12); }

.nav-right { margin-left: auto; display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }

.nbtn {
    font-family: var(--f-body); font-size: 0.76rem; font-weight: 600;
    letter-spacing: 0.07em; text-transform: uppercase;
    padding: 0.42rem 1.05rem; border-radius: var(--r-sm);
    cursor: pointer; transition: all 0.22s; white-space: nowrap;
    display: inline-flex; align-items: center; gap: 0.4rem;
    border: none;
}
.nbtn-ghost { background: transparent; border: 1px solid rgba(53,122,189,0.3); color: rgba(237,234,227,0.75); }
.nbtn-ghost:hover { border-color: var(--c-blue); color: var(--c-white); background: rgba(53,122,189,0.08); }
.nbtn-primary { background: var(--c-orange); color: var(--c-blue-dark); border: 1px solid transparent; font-weight: 700; }
.nbtn-primary:hover { background: var(--c-orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(254,155,68,0.3); }

.nav-toggle {
    display: none; background: transparent; border: 1px solid rgba(255,255,255,0.12);
    color: var(--c-white); width: 36px; height: 36px; border-radius: var(--r-sm);
    cursor: pointer; align-items: center; justify-content: center;
    font-size: 0.85rem; margin-left: auto; transition: background 0.2s;
}
.nav-toggle:hover { background: rgba(53,122,189,0.15); }

/* ── Mobile drawer ── */
.nav-drawer {
    display: none; position: fixed; top: var(--nav-h); inset-inline: 0;
    background: rgba(0, 10, 26, 0.98); backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--c-border); padding: 1rem 1.5rem 1.5rem;
    z-index: 999; flex-direction: column; gap: 0.25rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
    font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
    color: rgba(237,234,227,0.7); padding: 0.6rem 0.5rem;
    border-bottom: 1px solid rgba(53,122,189,0.08);
    display: flex; align-items: center; gap: 0.6rem; transition: color 0.2s;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--c-white); }
.nav-drawer a i { color: var(--c-orange); width: 14px; font-size: 0.72rem; }
.nav-drawer-divider { height: 1px; background: rgba(53,122,189,0.12); margin: 0.5rem 0; }
.nav-drawer-btns { display: flex; gap: 0.5rem; margin-top: 0.75rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.u-hero {
    position: relative;
    padding: calc(var(--nav-h) + 3rem) 2.5rem 2.5rem;
    text-align: center;
    overflow: hidden;
}
.u-hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 80%, rgba(53,122,189,0.14) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 80% 10%, rgba(254,155,68,0.06) 0%, transparent 50%),
        linear-gradient(170deg, #000d1f 0%, #001128 55%, #000819 100%);
}
.u-hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
    background: linear-gradient(to bottom, transparent, #000d1f);
    pointer-events: none;
}
.u-hero-content { position: relative; z-index: 2; }
.u-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: var(--f-label); font-size: 0.72rem; letter-spacing: 0.26em;
    color: var(--c-orange); border: 1px solid rgba(254,155,68,0.2);
    padding: 0.3rem 1rem; border-radius: 100px; margin-bottom: 1rem;
    background: rgba(254,155,68,0.04);
}
.u-hero-title {
    font-family: var(--f-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300; line-height: 1.1; color: var(--c-white);
    margin-bottom: 0.5rem;
}
.u-hero-sub {
    font-size: 0.84rem; color: var(--c-muted); line-height: 1.6;
    max-width: 500px; margin: 0 auto;
}

/* ══════════════════════════════════════════════
   TRANSLATE BAR
══════════════════════════════════════════════ */
.translate-bar {
    background: rgba(0,8,20,0.5); border-bottom: 1px solid var(--c-border);
    padding: 0.55rem 2.5rem; display: flex; align-items: center;
    justify-content: flex-end; gap: 0.7rem;
}
.translate-bar-label {
    font-family: var(--f-label); font-size: 0.68rem;
    letter-spacing: 0.18em; color: var(--c-muted);
}

/* ══════════════════════════════════════════════
   PAGE BODY
══════════════════════════════════════════════ */
.page-body {
    max-width: 840px; margin: 0 auto;
    padding: 2rem 2.5rem 5rem;
    position: relative; z-index: 1;
}
.page-body--narrow { max-width: 700px; }
.page-body--wide { max-width: 1060px; }

/* ── Glass Card ── */
.g-card {
    background: var(--c-glass);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color 0.3s;
}
.g-card:hover { border-color: var(--c-border-h); }
.g-card-header {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--c-border);
    background: rgba(255,255,255,0.01);
    font-family: var(--f-label); font-size: 0.65rem;
    letter-spacing: 0.18em; color: var(--c-muted);
}
.g-card-header i { color: var(--c-orange); font-size: 0.72rem; }
.g-card-body { padding: 1.25rem 1.5rem; }

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn-submit {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--c-orange); color: var(--c-blue-dark);
    border: none; border-radius: var(--r-sm);
    padding: 0.7rem 1.6rem;
    font-size: 0.82rem; font-weight: 700;
    font-family: var(--f-body); letter-spacing: 0.04em; text-transform: uppercase;
    cursor: pointer; transition: all 0.22s;
}
.btn-submit:hover {
    background: var(--c-orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(254,155,68,0.3);
}

/* ══════════════════════════════════════════════
   DOCTRINES — Layout
══════════════════════════════════════════════ */
.doctrine-layout {
    max-width: 1060px;
    margin: 0 auto;
    padding: 2rem 2.5rem 5rem;
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 1.5rem;
    align-items: start;
    position: relative; z-index: 1;
}

/* ── Sidebar ── */
.doctrine-sidebar {
    background: var(--c-glass);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    overflow: hidden;
    position: sticky;
    top: calc(var(--nav-h) + 1rem);
}
.doctrine-sidebar-head {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--c-border);
    font-family: var(--f-label);
    font-size: 0.65rem; letter-spacing: 0.18em;
    color: var(--c-muted);
    display: flex; align-items: center; gap: 8px;
}
.doctrine-sidebar-head i { color: var(--c-orange); font-size: 0.68rem; }
.doctrine-nav-link {
    display: block;
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
    color: var(--c-muted);
    border-left: 3px solid transparent;
    border-bottom: 1px solid rgba(53,122,189,0.06);
    transition: all 0.2s;
}
.doctrine-nav-link:last-child { border-bottom: none; }
.doctrine-nav-link:hover {
    color: var(--c-off);
    background: rgba(53,122,189,0.04);
}
.doctrine-nav-link.active {
    color: var(--c-white);
    border-left-color: var(--c-orange);
    background: rgba(53,122,189,0.06);
    font-weight: 600;
}

/* ── Doctrine content ── */
.doctrine-content { display: flex; flex-direction: column; gap: 1rem; }

/* ── Article ── */
.doctrine-article {
    background: var(--c-glass);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    overflow: hidden;
    scroll-margin-top: calc(var(--nav-h) + 1rem);
    transition: border-color 0.3s;
}
.doctrine-article:hover { border-color: var(--c-border-h); }
.doctrine-article-head {
    background: rgba(53,122,189,0.04);
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--c-border);
    display: flex; align-items: center; gap: 12px;
}
.doctrine-article-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, rgba(53,122,189,0.25), rgba(53,122,189,0.1));
    border: 1px solid rgba(53,122,189,0.2);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: var(--c-blue);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.doctrine-article-title {
    font-family: var(--f-display);
    font-size: 1.1rem; font-weight: 400;
    color: var(--c-white);
    margin: 0;
}
.doctrine-article-body { padding: 1.25rem; }
.doctrine-article-body p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--c-muted);
    margin-bottom: 0.75rem;
}
.doctrine-article-body p:last-child { margin-bottom: 0; }
.doctrine-article-body p strong { color: var(--c-off); }
.bible-link {
    color: var(--c-blue);
    font-weight: 500; font-size: 0.82rem;
    transition: color 0.2s;
}
.bible-link:hover { color: var(--c-orange); }

/* ══════════════════════════════════════════════
   DONS — Sections
══════════════════════════════════════════════ */

/* ── Hero CTA button ── */
.hero-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--c-orange); color: var(--c-blue-dark);
    border: none; border-radius: var(--r-sm);
    padding: 0.75rem 1.8rem;
    font-family: var(--f-body); font-size: 0.88rem; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    cursor: pointer; transition: all 0.25s;
    margin-top: 1.2rem; position: relative; z-index: 2;
}
.hero-cta:hover {
    background: var(--c-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(254,155,68,0.35);
}
.hero-cta .fa-arrow-down { animation: cta-bounce 2s infinite; }
@keyframes cta-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}

/* ── Section label ── */
.section-label {
    display: flex; align-items: center; gap: 0.7rem;
    margin: 2.5rem 0 1.25rem;
    font-family: var(--f-label); font-size: 0.65rem;
    letter-spacing: 0.2em; color: var(--c-muted);
}
.section-label::after {
    content: ''; flex: 1; height: 1px;
    background: linear-gradient(to right, var(--c-border), transparent);
}
.section-label i { color: var(--c-orange); font-size: 0.62rem; }
.section-label:first-child { margin-top: 0; }

/* ── Project cards ── */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.project-card {
    background: var(--c-glass);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.project-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(180deg, var(--c-blue), var(--c-orange));
}
.project-card:hover {
    border-color: var(--c-border-h);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(53,122,189,0.1);
}
.project-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(53,122,189,0.2), rgba(53,122,189,0.06));
    border: 1px solid rgba(53,122,189,0.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--c-blue); font-size: 1.2rem;
}
.project-title {
    font-family: var(--f-display);
    font-size: 1.4rem; font-weight: 400;
    color: var(--c-white);
    margin-bottom: 0.25rem;
}
.project-subtitle {
    font-size: 0.78rem; color: var(--c-muted);
    font-style: italic; margin-bottom: 1rem;
}
.project-desc {
    font-size: 0.84rem; color: var(--c-muted); line-height: 1.7;
    margin-bottom: 1rem;
}
.feature-list {
    list-style: none; padding: 0; margin: 0 0 1rem;
}
.feature-list li {
    padding: 0.45rem 0;
    font-size: 0.84rem; color: var(--c-off);
    display: flex; align-items: flex-start; gap: 10px;
    line-height: 1.55;
}
.feature-list li i {
    color: var(--c-green); font-size: 0.72rem;
    margin-top: 4px; flex-shrink: 0;
}
.project-note {
    font-size: 0.82rem; font-style: italic;
    color: var(--c-muted); line-height: 1.6;
    padding-top: 0.5rem; border-top: 1px solid var(--c-border);
}
.project-note strong { color: var(--c-orange); }

/* ── Support section ── */
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.support-card {
    background: var(--c-glass);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}
.support-card:hover {
    border-color: var(--c-border-h);
    transform: translateY(-3px);
}
.support-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, rgba(53,122,189,0.2), rgba(53,122,189,0.06));
    border: 1px solid rgba(53,122,189,0.18);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    color: var(--c-blue); font-size: 1rem;
}
.support-card h4 {
    font-family: var(--f-display);
    font-size: 1rem; font-weight: 400;
    color: var(--c-white);
    margin-bottom: 0.6rem;
}
.support-card p {
    font-size: 0.8rem; color: var(--c-muted); line-height: 1.6;
    margin: 0;
}

/* ── Donation CTA section ── */
.donation-cta {
    background: var(--c-glass);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 2.5rem;
    position: relative;
    overflow: hidden;
}
.donation-cta::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 50% 100%, rgba(53,122,189,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 0%, rgba(254,155,68,0.06) 0%, transparent 50%);
}
.donation-cta-content { position: relative; z-index: 1; }
.donation-cta h2 {
    font-family: var(--f-display);
    font-size: 1.6rem; font-weight: 300;
    color: var(--c-white);
    margin-bottom: 0.75rem;
}
.donation-cta p {
    font-size: 0.84rem; color: var(--c-muted);
    line-height: 1.7; max-width: 560px;
    margin: 0 auto 1.5rem;
}
.btn-donate {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--c-orange); color: var(--c-blue-dark);
    border: none; border-radius: var(--r-sm);
    padding: 0.8rem 2rem;
    font-family: var(--f-body); font-size: 0.88rem; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    cursor: pointer; transition: all 0.25s;
}
.btn-donate:hover {
    background: var(--c-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(254,155,68,0.35);
    color: var(--c-blue-dark);
}
.btn-donate i { font-size: 1.1rem; }

/* ── Thank you section ── */
.thank-you-card {
    background: var(--c-glass);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    padding: 2rem;
    text-align: center;
    margin-top: 1.5rem;
    position: relative;
}
.thank-you-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--c-blue), var(--c-orange), var(--c-blue));
    border-radius: var(--r) var(--r) 0 0;
}
.thank-you-icon {
    color: var(--c-red); font-size: 1.5rem;
    margin-bottom: 0.75rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.15); }
    50% { transform: scale(1); }
}
.thank-you-card h3 {
    font-family: var(--f-display);
    font-size: 1.3rem; font-weight: 400;
    color: var(--c-white);
    margin-bottom: 0.75rem;
}
.thank-you-card p {
    font-size: 0.84rem; color: var(--c-muted);
    line-height: 1.7; margin: 0;
}
.thank-you-card p strong { color: var(--c-off); }
.thank-you-card .closing {
    margin-top: 1.25rem;
    font-size: 0.95rem; font-weight: 500;
    color: var(--c-off);
}

/* ── Floating donate button ── */
.floating-donate {
    position: fixed; bottom: 28px; right: 28px;
    background: var(--c-orange); color: var(--c-blue-dark);
    border: none; border-radius: 100px;
    padding: 0.75rem 1.4rem;
    font-family: var(--f-body); font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    cursor: pointer; z-index: 999;
    display: none; align-items: center; gap: 8px;
    box-shadow: 0 8px 28px rgba(254,155,68,0.35);
    transition: all 0.3s;
}
.floating-donate.show { display: inline-flex; animation: slideUp 0.4s ease; }
@keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.floating-donate:hover {
    background: var(--c-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(254,155,68,0.45);
}
.floating-donate i { animation: heartbeat 1.5s ease-in-out infinite; }

/* ══════════════════════════════════════════════
   SUPPRESSION — Components
══════════════════════════════════════════════ */

/* ── Alert warning ── */
.alert-warning {
    background: rgba(220,74,74,0.06);
    border: 1px solid rgba(220,74,74,0.2);
    border-radius: var(--r);
    padding: 1rem 1.25rem;
    display: flex; align-items: flex-start; gap: 0.9rem;
    margin-bottom: 2rem;
}
.alert-warning-icon {
    width: 36px; height: 36px;
    background: rgba(220,74,74,0.15);
    border: 1px solid rgba(220,74,74,0.2);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: var(--c-red); font-size: 0.85rem;
    flex-shrink: 0;
}
.alert-warning p {
    margin: 0;
    font-size: 0.84rem; color: rgba(220,74,74,0.75);
    line-height: 1.65;
}
.alert-warning strong { color: var(--c-red); }

/* ── Steps card ── */
.steps-card {
    background: var(--c-glass);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.steps-card-header {
    background: rgba(53,122,189,0.06);
    border-bottom: 1px solid var(--c-border);
    padding: 1rem 1.5rem;
    display: flex; align-items: center; gap: 0.75rem;
    font-family: var(--f-label); font-size: 0.65rem;
    letter-spacing: 0.18em; color: var(--c-muted);
}
.steps-card-header i { color: var(--c-orange); font-size: 0.72rem; }
.steps-card-header h2 {
    font-family: var(--f-display);
    font-size: 1.05rem; font-weight: 400;
    color: var(--c-white);
    margin: 0;
}
.steps-list {
    padding: 1.5rem;
    display: flex; flex-direction: column;
}

/* ── Step item ── */
.step-item {
    display: flex; align-items: flex-start;
    gap: 1rem; padding: 1rem 0;
    position: relative;
}
.step-item:not(:last-child) {
    border-bottom: 1px solid var(--c-border);
}
.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px; top: 52px; bottom: -1px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(53,122,189,0.2), transparent);
}
.step-number {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, rgba(53,122,189,0.25), rgba(53,122,189,0.1));
    border: 1px solid rgba(53,122,189,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--c-blue); font-size: 0.82rem; font-weight: 700;
    flex-shrink: 0;
}
.step-item.step-danger .step-number {
    background: linear-gradient(135deg, rgba(220,74,74,0.25), rgba(220,74,74,0.1));
    border-color: rgba(220,74,74,0.2);
    color: var(--c-red);
}
.step-content { flex: 1; padding-top: 2px; }
.step-title {
    font-weight: 600; font-size: 0.9rem;
    color: var(--c-off);
    margin-bottom: 0.3rem;
}
.step-desc {
    font-size: 0.82rem; color: var(--c-muted);
    line-height: 1.65; margin: 0;
}
.step-desc strong { color: var(--c-off); }
.step-pill {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(53,122,189,0.06);
    border: 1px solid var(--c-border);
    color: var(--c-blue);
    font-size: 0.72rem; font-weight: 600;
    padding: 0.2rem 0.65rem;
    border-radius: 100px;
    margin-top: 0.5rem;
}
.step-pill.pill-danger {
    background: rgba(220,74,74,0.06);
    border-color: rgba(220,74,74,0.15);
    color: var(--c-red);
}

/* ── Info box ── */
.info-box {
    background: var(--c-glass);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}
.info-box h3 {
    font-family: var(--f-display);
    font-size: 1.05rem; font-weight: 400;
    color: var(--c-white);
    margin: 0 0 0.75rem;
    display: flex; align-items: center; gap: 8px;
}
.info-box h3 i { color: var(--c-orange); font-size: 0.82rem; }
.info-box p, .info-box li {
    font-size: 0.84rem; color: var(--c-muted);
    line-height: 1.7; margin: 0;
}
.info-box ul {
    padding-left: 1.2rem; margin: 0.5rem 0 0;
    list-style: disc;
}
.info-box ul li::marker { color: rgba(53,122,189,0.3); }
.info-box li { margin-bottom: 0.3rem; }

/* ── Contact CTA card ── */
.contact-cta {
    background: var(--c-glass);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    padding: 1.75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 100%, rgba(53,122,189,0.08) 0%, transparent 60%);
}
.contact-cta p {
    font-size: 0.84rem; color: var(--c-muted);
    line-height: 1.65; margin: 0 0 1rem;
    position: relative; z-index: 1;
}
.btn-contact {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--c-orange); color: var(--c-blue-dark);
    border: none; border-radius: var(--r-sm);
    padding: 0.6rem 1.4rem;
    font-size: 0.82rem; font-weight: 700;
    font-family: var(--f-body);
    letter-spacing: 0.04em; text-transform: uppercase;
    transition: all 0.22s;
    position: relative; z-index: 1;
}
.btn-contact:hover {
    background: var(--c-orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(254,155,68,0.3);
    color: var(--c-blue-dark);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
    background: rgba(0,6,16,0.7); border-top: 1px solid var(--c-border);
    padding: 3.5rem 2.5rem 2rem;
    position: relative; z-index: 1;
}
.footer-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 3rem; flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-brand-name { font-family: var(--f-display); font-size: 1.15rem; font-weight: 600; color: var(--c-white); }
.footer-brand-sub { font-size: 0.76rem; color: var(--c-muted); }
.footer-cols { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col-head { font-family: var(--f-label); font-size: 0.68rem; letter-spacing: 0.22em; color: var(--c-orange); margin-bottom: 0.15rem; }
.footer-col a { font-size: 0.8rem; color: var(--c-muted); display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--c-white); }
.footer-bottom {
    max-width: 1280px; margin: 2.5rem auto 0;
    padding-top: 1.5rem; border-top: 1px solid rgba(53,122,189,0.07);
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.7rem; color: rgba(237,234,227,0.18);
    letter-spacing: 0.05em; flex-wrap: wrap; gap: 0.5rem;
}

/* ══════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 980px) {
    .nav-links, .nav-right { display: none; }
    .nav-toggle { display: flex; }
}

@media (max-width: 768px) {
    .doctrine-layout {
        grid-template-columns: 1fr;
        padding: 1.5rem 1.25rem 3rem;
    }
    .doctrine-sidebar { position: static; }
    .projects-grid { grid-template-columns: 1fr; }
    .support-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .nav { padding: 0 1.25rem; }
    .u-hero { padding: calc(var(--nav-h) + 2rem) 1.25rem 2rem; }
    .page-body { padding: 1.5rem 1.25rem 4rem; }
    .translate-bar { padding: 0.55rem 1.25rem; }
    footer { padding: 2.5rem 1.25rem 1.5rem; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .footer-cols { gap: 2rem; }
    .support-grid { grid-template-columns: 1fr; }
    .donation-cta { padding: 2rem 1.25rem; }
}
