/* ============================================================
   FINC/PHINC 94 — Main Stylesheet
   Palette: #009400 (vert) | #ed1844 (rouge) | #0a1628 (marine)
   Fonts: Libre Baskerville (serif display) + DM Sans (body)
   ============================================================ */

:root {
    --green:   #009400;
    --green-d: #007300;
    --green-l: #e8f5e8;
    --red:     #ed1844;
    --red-d:   #c41037;
    --red-l:   #fde8ec;
    --navy:    #0a1628;
    --navy-m:  #1a2e4a;
    --slate:   #3d5170;
    --grey:    #f4f6f9;
    --border:  #dde3ec;
    --text:    #1c2b3a;
    --muted:   #6b7a8d;
    --white:   #ffffff;
    --font-display: 'Libre Baskerville', Georgia, serif;
    --font-body:    'DM Sans', sans-serif;
    --shadow-sm:  0 1px 4px rgba(10,22,40,.06);
    --shadow-md:  0 4px 20px rgba(10,22,40,.10);
    --shadow-lg:  0 12px 40px rgba(10,22,40,.14);
    --radius:  6px;
    --radius-l:12px;
    --trans:   0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; }
a { color: var(--green); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--green-d); }
img { max-width: 100%; height: auto; display: block; }

/* ── TOP BAR ─────────────────────────────────────────────── */
.top-bar { background: var(--navy); }
.top-bar-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: stretch; }
.top-bar-link {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 24px;
    font-size: .72rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--white);
    transition: opacity var(--trans);
}
.top-bar-link:hover { opacity: .8; color: var(--white); }
.top-bar-green { background: var(--green); }
.top-bar-red   { background: var(--red); }
.top-bar-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.3; } }

/* ── HEADER ──────────────────────────────────────────────── */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 200; box-shadow: var(--shadow-sm); }
.header-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.brand-link { display: flex; text-decoration: none; }
.brand-logo { display: flex; align-items: center; gap: 14px; }
.logo-heart { width: 48px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--navy); letter-spacing: -.01em; }
.brand-tagline { font-size: .72rem; color: var(--muted); line-height: 1.3; max-width: 320px; }
.header-actions { display: flex; align-items: center; gap: 12px; }

.btn-don { background: var(--red); color: var(--white) !important; padding: 9px 20px; border-radius: var(--radius); font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; transition: background var(--trans), transform var(--trans); border: none; cursor: pointer; }
.btn-don:hover { background: var(--red-d); transform: translateY(-1px); }

.burger-btn { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; width: 36px; height: 36px; }
.burger-btn span { display: block; height: 2px; background: var(--navy); transition: transform var(--trans), opacity var(--trans); border-radius: 2px; }
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MAIN NAV ────────────────────────────────────────────── */
.main-nav { background: var(--navy); position: sticky; top: 69px; z-index: 190; }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.nav-list { list-style: none; display: flex; flex-wrap: wrap; align-items: center; }
.nav-item { position: relative; }
.nav-link { display: block; padding: 14px 13px; font-size: .72rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.82); background: none; border: none; cursor: pointer; white-space: nowrap; transition: color var(--trans), background var(--trans); }
.nav-link:hover, .nav-link.active, .has-dropdown:hover > .nav-link { color: var(--white); background: rgba(255,255,255,.08); }
.nav-link .arrow { font-size: .6rem; margin-left: 2px; }

/* Dropdown */
.dropdown { display: none; position: absolute; top: 100%; left: 0; min-width: 280px; background: var(--white); list-style: none; border-radius: 0 0 var(--radius-l) var(--radius-l); box-shadow: var(--shadow-lg); border-top: 3px solid var(--green); z-index: 300; }
.dropdown-wide { min-width: 320px; }
.has-dropdown:hover > .dropdown { display: block; animation: fadeDown .18s ease; }
.dropdown li a { display: block; padding: 10px 18px; font-size: .83rem; color: var(--text); border-bottom: 1px solid var(--grey); transition: background var(--trans), color var(--trans), padding-left var(--trans); }
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--green-l); color: var(--green-d); padding-left: 24px; }
@keyframes fadeDown { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }

/* ── PAGE HERO ───────────────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-m) 60%, #1e3a5f 100%); padding: 60px 24px; position: relative; overflow: hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.page-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--white); font-weight: 700; line-height: 1.25; }
.page-hero .hero-breadcrumb { font-size: .78rem; color: rgba(255,255,255,.5); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .08em; }
.page-hero .hero-breadcrumb a { color: rgba(255,255,255,.5); }
.page-hero .hero-breadcrumb a:hover { color: var(--white); }
.hero-accent-line { width: 48px; height: 3px; background: var(--red); border-radius: 2px; margin-top: 16px; }

/* ── MAIN CONTENT ────────────────────────────────────────── */
.main-content { max-width: 1280px; margin: 0 auto; padding: 52px 24px; }
.content-prose { max-width: 780px; }
.content-prose p { margin-bottom: 1.3em; font-size: 1.02rem; }
.content-prose h2 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin: 2em 0 .75em; padding-bottom: .4em; border-bottom: 2px solid var(--green-l); }
.content-prose h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy-m); margin: 1.5em 0 .5em; }
.content-prose a { color: var(--green); font-weight: 500; }
.content-prose a:hover { color: var(--green-d); text-decoration: underline; }

/* ── HOME HERO ───────────────────────────────────────────── */
.home-hero { background: linear-gradient(150deg, var(--navy) 0%, var(--navy-m) 50%, #1e4080 100%); padding: 80px 24px; position: relative; overflow: hidden; }
.home-hero::before { content:''; position:absolute; right:-100px; top:-100px; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle, rgba(0,148,0,.15) 0%, transparent 70%); pointer-events:none; }
.home-hero::after { content:''; position:absolute; left:-50px; bottom:-100px; width:400px; height:400px; border-radius:50%; background:radial-gradient(circle, rgba(237,24,68,.12) 0%, transparent 70%); pointer-events:none; }
.home-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.home-hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,148,0,.2); border: 1px solid rgba(0,148,0,.3); color: #4dcc4d; padding: 6px 14px; border-radius: 99px; font-size: .73rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; }
.home-hero-tag::before { content:''; width:6px; height:6px; border-radius:50%; background:#4dcc4d; }
.home-hero h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--white); line-height: 1.2; font-weight: 700; margin-bottom: 24px; }
.home-hero-lead { font-size: 1.05rem; color: rgba(255,255,255,.75); margin-bottom: 32px; line-height: 1.7; }
.home-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary { background: var(--green); color: var(--white) !important; padding: 13px 28px; border-radius: var(--radius); font-weight: 600; font-size: .9rem; transition: background var(--trans), transform var(--trans); box-shadow: 0 4px 14px rgba(0,148,0,.35); }
.btn-primary:hover { background: var(--green-d); transform: translateY(-2px); }
.btn-outline { background: transparent; color: rgba(255,255,255,.85) !important; padding: 13px 28px; border-radius: var(--radius); border: 1.5px solid rgba(255,255,255,.3); font-weight: 600; font-size: .9rem; transition: all var(--trans); }
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); color: var(--white) !important; }

.home-hero-card { background: rgba(255,255,255,.07); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-l); padding: 36px; color: var(--white); }
.home-hero-card .card-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.home-hero-card h2 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 16px; color: var(--white); }
.home-hero-card p { font-size: .93rem; line-height: 1.7; color: rgba(255,255,255,.78); margin-bottom: 1em; }
.home-hero-card .card-sig { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: .83rem; color: rgba(255,255,255,.6); font-style: italic; }

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: 72px 24px; }
.section-grey { background: var(--grey); }
.section-navy { background: var(--navy); }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--navy); margin-bottom: 12px; }
.section-navy .section-header h2 { color: var(--white); }
.section-header p { color: var(--muted); font-size: 1.02rem; max-width: 560px; margin: 0 auto; }
.section-divider { width: 40px; height: 3px; background: var(--red); border-radius: 2px; margin: 12px auto 0; }

/* Cards */
.cards-grid { display: grid; gap: 24px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-l); padding: 28px; transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--green); }
.card-icon { width: 48px; height: 48px; background: var(--green-l); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 1.3rem; }
.card h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; }
.card p { font-size: .9rem; color: var(--muted); line-height: 1.65; }
.card .card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: .83rem; font-weight: 600; color: var(--green); }
.card .card-link::after { content: '→'; }
.card .card-link:hover { color: var(--green-d); }

/* Welcome split */
.welcome-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.welcome-content h2 { font-family: var(--font-display); font-size: 1.75rem; color: var(--navy); margin-bottom: 20px; line-height: 1.25; }
.welcome-content p { margin-bottom: 1.1em; font-size: 1rem; color: var(--text); }
.welcome-content .signature { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); font-style: italic; color: var(--muted); font-size: .9rem; }
.welcome-aside { background: var(--navy); border-radius: var(--radius-l); padding: 32px; color: var(--white); }
.welcome-aside .aside-tag { display: inline-block; background: rgba(0,148,0,.25); color: #4ddd4d; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 99px; margin-bottom: 16px; }
.welcome-aside h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); margin-bottom: 14px; }
.welcome-aside p { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.75); margin-bottom: 1em; }
.welcome-aside .aside-sig { padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12); font-style: italic; font-size: .83rem; color: rgba(255,255,255,.5); }

/* Stats band */
.stats-band { background: linear-gradient(90deg, var(--green) 0%, var(--green-d) 100%); padding: 36px 24px; }
.stats-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; color: var(--white); }
.stat-number { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: .78rem; opacity: .85; letter-spacing: .05em; text-transform: uppercase; }

/* Contact */
.contact-section { background: var(--grey); padding: 72px 24px; }
.contact-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.contact-info h2 { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy); margin-bottom: 20px; }
.contact-info p { font-size: .95rem; color: var(--muted); margin-bottom: 12px; }
.contact-info address { font-style: normal; margin-top: 20px; padding: 20px; background: var(--white); border-radius: var(--radius-l); border-left: 4px solid var(--green); }
.contact-info address p { margin-bottom: 6px; font-size: .9rem; }
.contact-info address a { color: var(--green); font-weight: 500; }
.contact-form h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--slate); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .05em; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: .93rem; color: var(--text); background: var(--white); transition: border-color var(--trans), box-shadow var(--trans); outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,148,0,.12); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit { background: var(--green); color: var(--white); border: none; padding: 13px 32px; border-radius: var(--radius); font-family: var(--font-body); font-size: .9rem; font-weight: 600; cursor: pointer; transition: background var(--trans), transform var(--trans); }
.form-submit:hover { background: var(--green-d); transform: translateY(-1px); }
.form-success { display: none; background: var(--green-l); color: var(--green-d); padding: 12px 16px; border-radius: var(--radius); font-size: .9rem; font-weight: 500; margin-top: 12px; border: 1px solid rgba(0,148,0,.3); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 60px 24px 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.footer-desc { font-size: .88rem; line-height: 1.65; margin-bottom: 20px; }
.footer-address p { font-size: .85rem; margin-bottom: 4px; }
.footer-address a { color: rgba(255,255,255,.6); }
.footer-address a:hover { color: var(--white); }
.footer-nav-col h4 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--white); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-nav-col ul { list-style: none; }
.footer-nav-col li { margin-bottom: 8px; }
.footer-nav-col a { font-size: .85rem; color: rgba(255,255,255,.6); transition: color var(--trans); }
.footer-nav-col a:hover { color: var(--white); }
.footer-partners { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 24px; }
.footer-partners span { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); }
.footer-partners img { filter: brightness(0) invert(1); opacity: .5; height: 26px; width: auto; }
.footer-partners img:hover { opacity: .85; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 20px 0; font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.4); transition: color var(--trans); }
.footer-legal a:hover { color: rgba(255,255,255,.8); }

/* ── FORUM ───────────────────────────────────────────────── */
.forum-layout { max-width: 1100px; margin: 0 auto; padding: 48px 24px; display: grid; grid-template-columns: 1fr 280px; gap: 36px; }
.forum-main h2 { font-family: var(--font-display); font-size: 1.35rem; color: var(--navy); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.forum-category { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-l); margin-bottom: 20px; overflow: hidden; }
.forum-category-header { background: var(--navy); padding: 14px 20px; display: flex; align-items: center; gap: 12px; }
.forum-category-header h3 { font-size: .88rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--white); flex: 1; }
.forum-category-header .cat-count { font-size: .75rem; color: rgba(255,255,255,.5); }
.forum-topic { display: flex; align-items: flex-start; gap: 14px; padding: 16px 20px; border-bottom: 1px solid var(--border); transition: background var(--trans); }
.forum-topic:last-child { border-bottom: none; }
.forum-topic:hover { background: var(--grey); }
.topic-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--green-l); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; font-weight: 700; }
.topic-content { flex: 1; }
.topic-title a { font-weight: 600; font-size: .93rem; color: var(--navy); }
.topic-title a:hover { color: var(--green); }
.topic-meta { font-size: .78rem; color: var(--muted); margin-top: 3px; }
.topic-stats { text-align: right; font-size: .78rem; color: var(--muted); white-space: nowrap; }
.sidebar-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-l); padding: 20px; margin-bottom: 20px; }
.sidebar-box h4 { font-family: var(--font-display); font-size: .95rem; color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.btn-new-topic { display: block; width: 100%; background: var(--green); color: var(--white) !important; padding: 12px; border-radius: var(--radius); text-align: center; font-weight: 600; font-size: .88rem; margin-bottom: 20px; transition: background var(--trans); }
.btn-new-topic:hover { background: var(--green-d); }
.thread-post { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-l); margin-bottom: 20px; overflow: hidden; }
.post-header { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: var(--grey); border-bottom: 1px solid var(--border); }
.post-author { font-weight: 600; font-size: .9rem; color: var(--navy); }
.post-date { font-size: .78rem; color: var(--muted); }
.post-body { padding: 20px; font-size: .93rem; line-height: 1.7; }
.post-reply-form { padding: 24px; border-top: 1px solid var(--border); }
.post-reply-form h3 { font-size: 1rem; color: var(--navy); margin-bottom: 16px; }

/* Breadcrumb */
.breadcrumb { background: var(--grey); padding: 12px 24px; border-bottom: 1px solid var(--border); }
.breadcrumb-inner { max-width: 1280px; margin: 0 auto; display: flex; gap: 8px; align-items: center; font-size: .8rem; color: var(--muted); }
.breadcrumb-inner a { color: var(--muted); }
.breadcrumb-inner a:hover { color: var(--green); }
.breadcrumb-inner span { color: var(--text); font-weight: 500; }

/* Alert */
.alert { padding: 14px 18px; border-radius: var(--radius); border-left: 4px solid; margin-bottom: 20px; font-size: .9rem; }
.alert-info { background: #e8f4fd; border-color: #2196f3; color: #0c4a6e; }
.alert-success { background: var(--green-l); border-color: var(--green); color: var(--green-d); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .cards-3 { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .home-hero-inner, .welcome-split, .contact-inner, .forum-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .burger-btn { display: flex; }
    .main-nav { display: none; position: static; top: auto; }
    .main-nav.open { display: block; }
    .nav-list { flex-direction: column; }
    .dropdown { display: none !important; position: static; border-radius: 0; box-shadow: none; border: none; background: rgba(255,255,255,.05); }
    .has-dropdown.open > .dropdown { display: block !important; }
    .dropdown li a { color: rgba(255,255,255,.8); border-bottom-color: rgba(255,255,255,.08); padding-left: 28px; }
    .dropdown li a:hover { background: rgba(255,255,255,.06); color: var(--white); }
    .brand-tagline { display: none; }
    .cards-3, .cards-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    .stats-inner { grid-template-columns: 1fr; }
    .home-hero-btns { flex-direction: column; }
}
