/* ==========================================================================
   FER-Mali — Design System & Custom CSS
   ========================================================================== */

:root {
  --navy: #12294D;
  --navy2: #0B1B33;
  --navy3: #071224;
  --red: #EC1C24;
  --yellow: #FCD116;
  --gold: #D4A311;
  --green: #0DA153;
  --ink: #111827;
  --ink2: #374151;
  --grey: #6B7280;
  --line: #E5E7EB;
  --soft: #F9FAFB;
  --sh: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --serif: "Outfit", "Georgia", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--sans); color: var(--ink); background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Top Mockup Bar */
.mock { background: #071224; color: #9CA3AF; font-size: 11px; padding: 6px 24px; display: flex; gap: 15px; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mock b { color: var(--yellow); letter-spacing: 1px; }

/* Flash Marquee (Opaque Background) */
.flash { background: #EC1C24; color: #fff; display: flex; align-items: center; height: 38px; overflow: hidden; font-size: 13px; font-weight: 600; opacity: 1; position: relative; z-index: 1001; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.flash .lb { background: #991B1B; color: #FFF; padding: 0 22px; height: 100%; display: flex; align-items: center; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 800; white-space: nowrap; position: relative; z-index: 10; flex-shrink: 0; box-shadow: 5px 0 15px rgba(0,0,0,0.3); opacity: 1; }
.flash .track { display: flex; gap: 40px; animation: marquee 25s linear infinite; white-space: nowrap; position: relative; z-index: 1; }
.flash .track span::before { content: "•"; margin-right: 15px; opacity: 0.8; color: var(--yellow); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Utility Bar */
.util { background: var(--navy3); color: #9CA3AF; font-size: 12px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.util .wrap { display: flex; justify-content: space-between; align-items: center; }
.util .s { display: flex; gap: 15px; }
.util a:hover { color: #fff; }
.util .lang { color: var(--yellow); font-weight: 700; cursor: pointer; }

/* Header & Nav */
header#hd { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; transition: box-shadow 0.3s; }
header#hd.stuck { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
header#hd .wrap { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.brand img { height: 50px; width: auto; }

nav.main { display: flex; gap: 6px; }
nav.main a { padding: 8px 12px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--ink2); border-radius: 4px; transition: all 0.2s; cursor: pointer; position: relative; }
nav.main a:hover, nav.main a.on { color: var(--red); background: transparent; }
nav.main a.on::after { content: ""; position: absolute; bottom: -20px; left: 0; right: 0; height: 3px; background: var(--red); }

.hbtn { background: var(--red); color: #fff; padding: 11px 20px; border-radius: 4px; font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; transition: background 0.2s; }
.hbtn:hover { background: #C5141B; }

/* Page Header (.pgh) */
.pgh { background: var(--navy2); color: #fff; padding: 48px 0 52px; position: relative; }
.pgh::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--green) 0 33%, var(--yellow) 33% 66%, var(--red) 66%); }
.pgh .bc { font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: #94A3B8; margin-bottom: 8px; }
.pgh h1 { font-family: var(--serif); font-size: 38px; font-weight: 700; color: #fff; line-height: 1.2; }

/* Hero */
.hero { position: relative; background: var(--navy2); color: #fff; padding: 60px 0 80px; overflow: hidden; }
.hero .bgsvg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.9; }
.hero .veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,27,51,0.4) 0%, rgba(11,27,51,0.9) 100%); }
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.kicker { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--yellow); margin-bottom: 12px; }
.hero h1 { font-family: var(--serif); font-size: 44px; line-height: 1.15; font-weight: 700; margin-bottom: 16px; }
.hero h1 span { color: var(--yellow); }
.hero .sub { font-size: 16px; color: #D1D5DB; line-height: 1.7; margin-bottom: 28px; }
.hbtns { display: flex; gap: 14px; }
.b-red { background: var(--red); color: #fff; padding: 14px 26px; border-radius: 4px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; display: inline-block; }
.b-red:hover { background: #C5141B; }
.b-gh { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); padding: 14px 26px; border-radius: 4px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; display: inline-block; cursor: pointer; }
.b-gh:hover { background: rgba(255,255,255,0.2); }

/* Card Solde */
.svcard { background: #fff; color: var(--ink); border-radius: 8px; overflow: hidden; box-shadow: var(--sh); }
.svcard .h { background: var(--navy); color: #fff; padding: 18px 20px; }
.svcard .h b { display: block; font-size: 16px; font-family: var(--serif); }
.svcard .h span { font-size: 11px; color: var(--yellow); text-transform: uppercase; letter-spacing: 1px; }
.svcard .bd { padding: 20px; }
.fld { margin-bottom: 14px; }
.fld label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--grey); margin-bottom: 5px; }
.fld input { width: 100%; border: 1px solid var(--line); border-radius: 4px; padding: 11px 12px; font-size: 14px; font-family: var(--sans); background: var(--soft); outline: none; }
.fld input:focus { border-color: var(--navy); background: #fff; }
.svcard button { width: 100%; background: var(--navy); color: #fff; border: none; padding: 13px; border-radius: 4px; font-size: 11.5px; font-weight: 700; letter-spacing: 1.3px; text-transform: uppercase; cursor: pointer; font-family: var(--sans); }
.svcard button:hover { background: var(--navy2); }
.qlinks { border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr 1fr; }
.qlinks a { padding: 14px 6px; text-align: center; font-size: 10px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; color: var(--navy); border-right: 1px solid var(--line); cursor: pointer; }
.qlinks a:last-child { border-right: none; }
.qlinks a:hover { background: var(--soft); color: var(--red); }
.qlinks i { display: block; font-style: normal; font-size: 18px; margin-bottom: 4px; }

.slog { background: var(--red); color: #fff; text-align: center; padding: 15px; font-family: var(--serif); font-size: 15px; letter-spacing: 3.2px; text-transform: uppercase; }

.stats { background: var(--navy); color: #fff; }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 40px 22px; text-align: center; border-right: 1px solid rgba(255, 255, 255, .1); }
.stat:last-child { border-right: none; }
.stat .v { font-family: var(--serif); font-size: 40px; font-weight: 700; line-height: 1; }
.stat .v em { font-style: normal; color: var(--yellow); font-size: 25px; }
.stat .l { font-size: 10.5px; letter-spacing: 1.8px; text-transform: uppercase; color: #8FA3BE; margin-top: 9px; }

section { padding: 86px 0; }
.sec-h { margin-bottom: 42px; }
.sec-h .ov { font-size: 10.5px; letter-spacing: 2.6px; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 11px; display: flex; align-items: center; gap: 10px; }
.sec-h .ov::before { content: ""; width: 28px; height: 2px; background: var(--red); }
.sec-h h2 { font-size: 35px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.sec-h p { font-size: 15.5px; color: var(--ink2); max-width: 700px; margin-top: 13px; }
.sec-h.ctr { text-align: center; } .sec-h.ctr .ov { justify-content: center; } .sec-h.ctr p { margin-left: auto; margin-right: auto; }
.alt { background: var(--soft); }

.words { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.word { background: #fff; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; display: flex; align-items: center; gap: 0; padding: 24px 26px; }
.word:hover { box-shadow: var(--sh); }
.word .avatar { width: 118px; height: 118px; border-radius: 50%; flex-shrink: 0; background: #EEF3FA; box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--line); object-fit: cover; }
.word .c { padding: 0 0 0 24px; }
.word .role { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--red); font-weight: 700; }
.word h3 { font-size: 20px; color: var(--navy); margin: 6px 0 11px; }
.word p { font-size: 14px; color: var(--ink2); line-height: 1.85; }
.word .more { display: inline-block; margin-top: 14px; font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--navy); border-bottom: 2px solid var(--yellow); padding-bottom: 3px; cursor: pointer; }
.word .more:hover { color: var(--red); border-color: var(--red); }

.miss { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.mi { background: #fff; padding: 32px 28px; }
.mi:hover { background: var(--navy); }
.mi:hover h4, .mi:hover .ic { color: #fff; } .mi:hover p { color: #B9C6D8; }
.mi .ic { font-size: 28px; color: var(--red); margin-bottom: 14px; font-style: normal; display: block; }
.mi h4 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.mi p { font-size: 13.5px; color: var(--ink2); line-height: 1.75; }

/* Section Paiement Dématérialisé (3 Cartes) */
section.pay { background: var(--navy2); color: #fff; }
section.pay .sec-h h2 { color: #fff; }
section.pay .sec-h p { color: #A4B7D1; }

.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pc { background: #102442; border: 1px solid #1D375F; border-radius: 8px; padding: 32px 26px; text-align: left; color: #fff; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.pc:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4); }
.pc.feat { border: 1px solid #991D24; background: #132746; box-shadow: 0 0 25px rgba(236, 28, 36, 0.25); }

.pc .vis { height: 120px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.pc .tagl { font-size: 10px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--yellow); margin-bottom: 8px; }
.pc h4 { font-family: var(--serif); font-size: 24px; color: #fff; margin-bottom: 12px; }
.pc p { font-size: 13.5px; color: #A4B7D1; line-height: 1.7; margin-bottom: 20px; }
.pc ul { list-style: none; margin-bottom: 28px; flex: 1; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; }
.pc ul li { font-size: 12.5px; color: #C5D4E8; margin-bottom: 10px; line-height: 1.5; }

.pc .act { display: block; width: 100%; text-align: center; padding: 13px; border: 1px solid #284775; border-radius: 4px; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-top: auto; transition: all .2s; cursor: pointer; }
.pc .act:hover { background: var(--red); border-color: var(--red); color: #fff; }
.pc.feat .act { background: var(--red); border-color: var(--red); }
.pc.feat .act:hover { background: #C5141B; }

/* Operateurs / Badges */
.ops { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.op { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 8px; padding: 18px 22px; display: flex; align-items: center; gap: 16px; }
.op .sq { width: 44px; height: 44px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; color: #fff; flex-shrink: 0; }
.op b { display: block; font-family: var(--serif); font-size: 16px; color: #fff; margin-bottom: 2px; }
.op span { font-size: 12px; color: #8FA3BE; }

/* 3D Badge & Card Mockups */
.badge3d { width: 170px; height: 100px; background: linear-gradient(135deg, #12294D, #1E3E6E); border-radius: 8px; border: 1px solid #3A5F95; box-shadow: 0 8px 20px rgba(0,0,0,0.4); padding: 12px; position: relative; overflow: hidden; }
.badge3d .w { font-size: 11px; font-weight: 800; color: #fff; letter-spacing: 1.5px; }
.badge3d .t { font-size: 9px; color: var(--yellow); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.badge3d .s { font-size: 8px; color: #8FA3BE; margin-top: 18px; text-transform: uppercase; }
.badge3d .wv { position: absolute; bottom: 10px; right: 12px; font-size: 14px; font-weight: bold; color: var(--yellow); }

/* Realisations (Proofs / Before-After) */
.proofs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pr { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #fff; display: flex; flex-direction: column; transition: box-shadow 0.25s, transform 0.25s; }
.pr:hover { box-shadow: 0 12px 28px rgba(15,35,66,0.12); }
.pr .ba { height: 200px; background: linear-gradient(135deg, #2D3748 0%, #1A202C 100%); position: relative; display: flex; overflow: hidden; }
.pr .ba::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 10px, transparent 10px, transparent 20px); pointer-events: none; }
.pr .ba .b { flex: 1; background: rgba(180, 140, 80, 0.25); position: relative; border-right: 2px solid rgba(255,255,255,0.3); display: flex; align-items: flex-end; padding: 12px; cursor: pointer; transition: flex 0.45s cubic-bezier(0.25, 1, 0.5, 1), filter 0.35s ease; z-index: 1; }
.pr .ba .a { flex: 1; position: relative; display: flex; align-items: flex-end; justify-content: flex-end; padding: 12px; cursor: pointer; transition: flex 0.45s cubic-bezier(0.25, 1, 0.5, 1), filter 0.35s ease; z-index: 1; }
.pr .ba .b:hover, .pr .ba .a:hover { flex: 9.5; z-index: 3; filter: brightness(1.08); }
.pr .ba:hover .b:not(:hover), .pr .ba:hover .a:not(:hover) { flex: 0.5; filter: brightness(0.45) opacity(0.7); }
.pr .ba span { background: rgba(15,35,66,0.85); backdrop-filter: blur(4px); color: #fff; font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; padding: 5px 10px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.2); white-space: nowrap; z-index: 4; transition: transform 0.2s; }
.pr .ba .b:hover span, .pr .ba .a:hover span { transform: scale(1.05); background: var(--navy); border-color: var(--gold, #FCD116); }
.pr .c { padding: 22px 20px; display: flex; flex-direction: column; flex: 1; }
.pr .m { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; }
.pr h4 { font-family: var(--serif); font-size: 18px; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.pr p { font-size: 13.5px; color: var(--ink2); line-height: 1.7; margin-bottom: 18px; flex: 1; }

.pill { display: inline-block; padding: 5px 12px; border-radius: 4px; font-size: 10px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; align-self: flex-start; }
.pill.p-i { background: #EBF8FF; color: #2B6CB0; border: 1px solid #BEE3F8; }
.pill.p-w { background: #FEFCBF; color: #744210; border: 1px solid #FEEBC8; }

.info { background: #EFF6FF; border-left: 4px solid #3B82F6; color: #1E40AF; padding: 16px 20px; border-radius: 4px; font-size: 13.5px; line-height: 1.7; margin-top: 26px; }

/* News & Aside Layout (.two - 2x2 Grid pour les news) */
.two { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.news { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.nw { background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.2s, transform 0.2s; }
.nw:hover { box-shadow: var(--sh); transform: translateY(-2px); }
.nw .im { height: 160px; background: var(--navy2); position: relative; display: flex; align-items: flex-start; padding: 12px; }
.nw .im .cat { position: absolute; top: 12px; left: 12px; background: var(--red); color: #fff; padding: 4px 8px; font-size: 9px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; border-radius: 2px; z-index: 2; }
.nw .im::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--green) 0 33%, var(--yellow) 33% 66%, var(--red) 66%); z-index: 2; }
.nw .c { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.nw .d { font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; }
.nw h4 { font-family: var(--serif); font-size: 17px; color: var(--navy); margin-bottom: 10px; line-height: 1.35; font-weight: 700; }
.nw p { font-size: 13px; color: var(--ink2); line-height: 1.65; }

/* Aside Column */
.aside { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 26px; }
.aside h3 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); margin-bottom: 16px; font-weight: 800; font-family: var(--sans); border-bottom: 2px solid var(--red); padding-bottom: 8px; }
.ao { border-bottom: 1px solid var(--line); padding-bottom: 14px; margin-bottom: 14px; }
.ao:last-of-type { border-bottom: none; margin-bottom: 0; }
.ao .t { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.4; }
.ao .mt { display: flex; justify-content: space-between; font-size: 11px; color: var(--grey); }
.ao .mt b { color: var(--red); font-weight: 700; }
.dl { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.dl:last-of-type { border-bottom: none; }
.dl .ic { background: #FEE2E2; color: var(--red); font-size: 9px; font-weight: 800; padding: 4px 6px; border-radius: 3px; letter-spacing: 1px; }
.dl b { font-size: 13.5px; color: var(--navy); display: block; font-family: var(--sans); }
.dl span { font-size: 11px; color: var(--grey); }
.seeall { display: inline-block; margin-top: 14px; font-size: 10.5px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; color: var(--red); cursor: pointer; }
.seeall:hover { text-decoration: underline; }

.tgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tc { border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: #fff; text-align: center; }
.tc:hover { box-shadow: var(--sh); }
.tc .ill { height: 104px; background: var(--soft); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--line); }
.tc .c { padding: 18px 16px; }
.tc h4 { font-size: 15.5px; color: var(--navy); margin-bottom: 4px; }
.tc .cat { font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--grey); font-weight: 600; }
.tc .pr { font-family: var(--serif); font-size: 26px; color: var(--red); font-weight: 700; background: #FFF5F5; border: 1px solid #FED7D7; border-radius: 6px; padding: 6px 16px; margin: 12px auto 6px; display: block; width: 90%; text-align: center; }
.tc .un { font-size: 11px; color: var(--grey); margin-top: 6px; }

.exo { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 26px; }
.ex { border: 1px solid var(--green); background: #F0FFF4; border-radius: 6px; padding: 20px 22px; display: flex; align-items: center; gap: 14px; }
.ex b { font-family: var(--serif); font-size: 17px; color: #0b6b39; display: block; }
.ex span { font-size: 12.5px; color: #2b6b48; }
.ex .ic { font-size: 26px; color: var(--green); }

.speech { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: start; }
.pf { border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: #fff; }
.pf .avatar-lg { width: 224px; height: 224px; border-radius: 50%; margin: 0 auto; display: block; background: #EEF3FA; box-shadow: 0 0 0 6px #fff, 0 0 0 8px var(--line); object-fit: cover; }
.pf .idc { padding: 22px; text-align: center; }
.pf .idc b { display: block; font-family: var(--serif); font-size: 19px; color: var(--navy); }
.pf .idc span { font-size: 12.5px; color: var(--grey); }
.pf .idc .fl { height: 4px; width: 64px; margin: 14px auto 0; border-radius: 2px; background: linear-gradient(90deg, var(--green) 0 33%, var(--yellow) 33% 66%, var(--red) 66%); }
.pull { font-family: var(--serif); font-size: 22px; line-height: 1.5; color: var(--navy); border-left: 4px solid var(--red); padding-left: 20px; margin-bottom: 26px; }
.speech .tx p { font-size: 15.5px; color: var(--ink2); line-height: 1.95; margin-bottom: 15px; }

table.st { border-collapse: collapse; width: 100%; font-size: 14px; border: 1px solid var(--line); margin-top: 15px; }
table.st th { background: var(--navy); color: #fff; padding: 13px 16px; text-align: left; font-size: 10.5px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700; }
table.st td { padding: 12px 16px; border-bottom: 1px solid var(--line); }
table.st tr:nth-child(even) td { background: var(--soft); }

.maplg { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px 20px; margin-top: 20px; font-size: 13px; color: var(--ink2); }
.maplg span { display: flex; align-items: center; gap: 8px; }
.maplg i { display: inline-block; width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.maplg u { display: inline-block; width: 24px; height: 3px; border-radius: 2px; flex-shrink: 0; text-decoration: none; }

.fbar { height: 4px; background: linear-gradient(90deg, var(--green) 0 33%, var(--yellow) 33% 66%, var(--red) 66%); }
footer { background: var(--navy3); color: #93A6C0; padding: 66px 0 0; font-size: 13.5px; }
.fg { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 44px; padding-bottom: 44px; }
footer img.fl { height: 44px; margin-bottom: 18px; }
footer h5 { font-size: 11px; letter-spacing: 2.2px; text-transform: uppercase; color: #fff; margin-bottom: 18px; font-weight: 700; font-family: var(--sans); }
footer ul { list-style: none; }
footer li { padding: 5px 0; }
footer a:hover { color: #fff; }
.nl input { width: 100%; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .16); border-radius: 4px; padding: 12px; color: #fff; font-size: 13px; outline: none; font-family: var(--sans); margin-bottom: 10px; }
.nl button { width: 100%; background: var(--red); color: #fff; border: none; padding: 12px; border-radius: 4px; font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; cursor: pointer; font-family: var(--sans); }
.fbot { border-top: 1px solid rgba(255, 255, 255, .1); padding: 20px 0; font-size: 12px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }

.pages { display: none; } .pages.on { display: block; }

/* FAQ Accordion Menu Styling */
.faq-accordion { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 8px; overflow: hidden; transition: box-shadow 0.25s, border-color 0.25s; }
.faq-item:hover { border-color: #CBD5E1; box-shadow: 0 4px 12px rgba(15,35,66,0.06); }
.faq-item[open] { background: #FFFFFF; border-color: var(--navy, #0F2342); box-shadow: 0 8px 24px rgba(15,35,66,0.1); }
.faq-item summary { padding: 18px 24px; font-weight: 700; font-size: 16px; color: #0F2342; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; user-select: none; transition: color 0.2s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--red, #EC1C24); }
.faq-item .faq-icon { font-size: 22px; font-weight: 700; color: var(--red, #EC1C24); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: inline-block; width: 24px; text-align: center; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item .faq-content { padding: 16px 24px 22px 24px; font-size: 14.5px; color: #475569; line-height: 1.7; border-top: 1px dashed #E2E8F0; background: #FFFFFF; animation: fadeIn 0.3s ease-out; }

@media(max-width: 1080px) {
  .hero .wrap, .two, .speech, .app, .wgrid { grid-template-columns: 1fr; }
  .words, .pgrid, .proofs, .news, .ops, .exo { grid-template-columns: 1fr; }
  .miss, .stats .wrap, .tgrid { grid-template-columns: 1fr 1fr; }
  .fg { grid-template-columns: 1fr 1fr; }
  nav.main { display: none; }
  .hero h1 { font-size: 33px; }
}
