
:root{
  --red:#d51d35;
  --red-700:#a81126;
  --red-50:#fff2f4;
  --navy:#0e223d;
  --navy-700:#163b68;
  --sky:#eef5ff;
  --green:#18a957;
  --green-700:#0f7f40;
  --white:#ffffff;
  --bg:#f6f8fc;
  --surface:#ffffff;
  --text:#142033;
  --muted:#6c7789;
  --border:#dfe6ef;
  --shadow-sm:0 8px 22px rgba(14,34,61,.07);
  --shadow-md:0 18px 48px rgba(14,34,61,.11);
  --radius:22px;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  color-scheme:light;
}

body{
  margin:0;
  min-height:100vh;
  font-family:Inter,"Segoe UI",Tahoma,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 12% 0%,rgba(213,29,53,.08),transparent 25rem),
    radial-gradient(circle at 100% 5%,rgba(22,59,104,.09),transparent 24rem),
    var(--bg);
}

button,input,select,textarea{font:inherit}
button,a{-webkit-tap-highlight-color:transparent}

a{color:inherit}

.app-shell{min-height:100vh}

.topbar{
  position:sticky;
  top:0;
  z-index:100;
  display:grid;
  grid-template-columns:48px 1fr 48px;
  align-items:center;
  min-height:76px;
  padding:10px clamp(12px,3vw,28px);
  background:rgba(14,34,61,.96);
  color:#fff;
  backdrop-filter:blur(14px);
  box-shadow:0 8px 28px rgba(14,34,61,.2);
}

.topbar-title{
  min-width:0;
  text-align:center;
  font-weight:900;
  font-size:clamp(15px,2vw,20px);
}

.brand-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:11px;
  min-width:0;
}

.brand-wrap span{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.brand-logo{
  width:42px;
  height:42px;
  flex:0 0 42px;
  object-fit:contain;
  padding:4px;
  border-radius:14px;
  background:#fff;
  box-shadow:0 8px 22px rgba(0,0,0,.18);
}

.back-btn{
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:14px;
  background:rgba(255,255,255,.1);
  color:#fff;
  font-size:23px;
  cursor:pointer;
  transition:.18s ease;
}

.back-btn:hover{
  background:rgba(255,255,255,.18);
  transform:translateX(-1px);
}

.back-placeholder{width:44px;height:44px}

.container{
  width:min(1180px,100%);
  margin:auto;
  padding:clamp(20px,4vw,42px) clamp(14px,3vw,28px) 60px;
}

.hero-card{
  position:relative;
  overflow:hidden;
  padding:clamp(28px,5vw,52px);
  margin-bottom:28px;
  border:1px solid rgba(223,230,239,.9);
  border-radius:32px;
  background:
    linear-gradient(145deg,rgba(255,255,255,.98),rgba(255,247,248,.98));
  box-shadow:var(--shadow-md);
  text-align:center;
}

.hero-card::before,
.hero-card::after{
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}

.hero-card::before{
  width:220px;
  height:220px;
  right:-90px;
  top:-105px;
  background:rgba(213,29,53,.07);
}

.hero-card::after{
  width:180px;
  height:180px;
  left:-85px;
  bottom:-90px;
  background:rgba(14,34,61,.06);
}

.hero-brand{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.hero-logo{
  width:118px;
  height:118px;
  object-fit:contain;
  padding:9px;
  margin-bottom:16px;
  border:1px solid rgba(213,29,53,.12);
  border-radius:30px;
  background:#fff;
  box-shadow:0 18px 40px rgba(14,34,61,.13);
}

.hero-title{
  position:relative;
  z-index:1;
  margin:0;
  color:var(--navy);
  font-size:clamp(30px,5vw,52px);
  line-height:1.12;
  font-weight:950;
  letter-spacing:-.025em;
}

.hero-subtitle{
  position:relative;
  z-index:1;
  max-width:760px;
  margin:14px auto 0;
  color:var(--muted);
  line-height:1.8;
  font-size:clamp(15px,2vw,18px);
}

.section-title{
  margin:0 0 17px;
  color:var(--navy);
  font-size:clamp(21px,3vw,27px);
  font-weight:900;
}

.region-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.region-card{
  position:relative;
  min-height:158px;
  padding:24px;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:24px;
  background:linear-gradient(145deg,#fff,#f9fbff);
  box-shadow:var(--shadow-sm);
  text-align:left;
  cursor:pointer;
  transition:.22s ease;
}

.region-card::after{
  content:"→";
  position:absolute;
  right:20px;
  bottom:17px;
  color:var(--red);
  font-size:25px;
  font-weight:950;
}

.region-card:hover{
  transform:translateY(-5px);
  border-color:#efb6c0;
  box-shadow:0 22px 46px rgba(14,34,61,.14);
}

.region-card .en{
  display:block;
  color:var(--navy);
  font-size:22px;
  font-weight:950;
}

.region-card .ar{
  display:block;
  margin-top:10px;
  color:var(--red);
  font-size:20px;
  font-weight:850;
  direction:rtl;
}

.grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.btn{
  width:100%;
  border:0;
  border-radius:17px;
  padding:16px 18px;
  font-size:17px;
  line-height:1.45;
  font-weight:900;
  cursor:pointer;
  transition:.18s ease;
}

.btn:hover{transform:translateY(-2px)}

.btn:disabled{
  opacity:.6;
  cursor:not-allowed;
  transform:none;
}

.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--red),var(--red-700));
  box-shadow:0 12px 26px rgba(213,29,53,.22);
}

.btn-secondary{
  color:var(--navy);
  border:1px solid var(--border);
  background:#fff;
}

.btn-navy{
  color:#fff;
  background:linear-gradient(135deg,var(--navy),var(--navy-700));
}

.search-input,
.form-control{
  width:100%;
  padding:15px 17px;
  border:1px solid var(--border);
  border-radius:16px;
  background:#fff;
  color:var(--text);
  outline:none;
  font-size:16px;
}

.search-input{
  margin-bottom:18px;
  box-shadow:var(--shadow-sm);
}

.search-input:focus,
.form-control:focus{
  border-color:#df6b7c;
  box-shadow:0 0 0 4px rgba(213,29,53,.08);
}

.list{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin:0;
  padding:0;
  list-style:none;
}

.list-item{
  padding:16px;
  border:1px solid var(--border);
  border-radius:17px;
  background:#fff;
  box-shadow:0 7px 20px rgba(14,34,61,.05);
  font-weight:850;
  cursor:pointer;
  transition:.18s ease;
}

.list-item:hover{
  transform:translateY(-3px);
  border-color:#eaa8b4;
  color:var(--red-700);
}

.blood-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.blood-btn{
  min-height:108px;
  font-size:30px;
}

.form-card,
.contact-card,
.about-section,
.status{
  padding:22px;
  border:1px solid var(--border);
  border-radius:24px;
  background:#fff;
  box-shadow:var(--shadow-md);
}

.form-group{margin-bottom:17px}

.form-label{
  display:block;
  margin-bottom:8px;
  color:var(--navy);
  font-weight:850;
}

textarea.form-control{
  min-height:135px;
  resize:vertical;
}

.message{
  display:none;
  margin-top:16px;
  padding:14px;
  border-radius:14px;
  text-align:center;
  font-weight:800;
}

.message.success{
  display:block;
  border:1px solid #bce9cd;
  background:#eefbf3;
  color:#11673b;
}

.message.error{
  display:block;
  border:1px solid #f3c6ce;
  background:#fff2f4;
  color:#94172c;
}

.donor-card{
  position:relative;
  overflow:hidden;
  padding:20px;
  margin-bottom:14px;
  border:1px solid rgba(14,34,61,.1);
  border-radius:22px;
  background:linear-gradient(145deg,#fff,#fbfcff);
  box-shadow:var(--shadow-sm);
}

.donor-card::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:5px;
  background:linear-gradient(180deg,var(--red),var(--navy));
}

.donor-card-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:16px;
}

.donor-avatar{
  width:52px;
  height:52px;
  flex:0 0 52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:17px;
  color:#fff;
  background:linear-gradient(135deg,var(--red),var(--red-700));
  box-shadow:0 9px 22px rgba(213,29,53,.22);
  font-size:22px;
  font-weight:950;
}

.donor-main{min-width:0;flex:1}

.donor-name{
  margin:0 0 5px;
  color:var(--navy);
  font-size:20px;
  line-height:1.35;
  font-weight:950;
}

.donor-meta{
  color:var(--muted);
  font-size:14px;
  font-weight:750;
}

.donor-status{
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin-top:8px;
  color:#137647;
  font-size:13px;
  font-weight:900;
}

.donor-status::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:#21b66d;
  box-shadow:0 0 0 4px rgba(33,182,109,.12);
}

.donor-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.action-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px;
  border-radius:14px;
  color:#fff;
  text-decoration:none;
  font-weight:900;
  transition:.18s ease;
}

.action-btn:hover{transform:translateY(-2px)}

.call-btn{
  background:linear-gradient(135deg,var(--red),var(--red-700));
}

.whatsapp-btn{
  background:linear-gradient(135deg,var(--green),var(--green-700));
}

.global-cooldown-info{
  margin-bottom:16px;
  padding:14px 16px;
  border:1px solid #cfdef2;
  border-radius:16px;
  background:var(--sky);
  color:var(--navy);
  text-align:center;
  line-height:1.7;
  font-weight:750;
}

.results-progress{
  margin:14px 0 4px;
  color:var(--muted);
  text-align:center;
  font-weight:750;
}

.load-more-wrap{
  display:flex;
  justify-content:center;
  margin-top:20px;
}

.load-more-btn{width:min(100%,320px)}

.sponsor{
  width:100%;
  max-height:240px;
  object-fit:contain;
  margin-top:20px;
  padding:10px;
  border:1px solid var(--border);
  border-radius:22px;
  background:#fff;
  box-shadow:var(--shadow-md);
}

.contact-confirm-overlay{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  background:rgba(7,20,38,.7);
  backdrop-filter:blur(5px);
}

.contact-confirm-overlay.is-open{display:flex}

.contact-confirm-modal{
  width:min(100%,520px);
  padding:26px;
  border:1px solid rgba(255,255,255,.7);
  border-radius:24px;
  background:#fff;
  box-shadow:0 28px 80px rgba(0,0,0,.28);
}

.contact-confirm-icon{
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 15px;
  border-radius:18px;
  background:linear-gradient(135deg,var(--red),var(--red-700));
  color:#fff;
  font-size:27px;
  font-weight:950;
}

.contact-confirm-title{
  margin:0 0 13px;
  color:var(--navy);
  text-align:center;
  font-size:23px;
  font-weight:950;
}

.contact-confirm-text{
  margin:0;
  color:var(--text);
  text-align:center;
  line-height:1.75;
  font-size:15px;
}

.contact-confirm-text.ar{
  margin-top:13px;
  direction:rtl;
  color:var(--navy);
  font-weight:750;
}

.contact-confirm-actions{
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:10px;
  margin-top:22px;
}

.contact-confirm-cancel{
  background:#eef1f5;
  color:var(--navy);
}

.contact-confirm-continue{
  background:linear-gradient(135deg,var(--red),var(--red-700));
  color:#fff;
}

.footer{
  margin-top:34px;
  padding:18px;
  color:var(--muted);
  text-align:center;
  font-size:14px;
}

@media(max-width:900px){
  .region-grid,.list{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:620px){
  .topbar{
    grid-template-columns:44px 1fr 44px;
    min-height:68px;
    padding:8px 10px;
  }

  .brand-logo{
    width:36px;
    height:36px;
    flex-basis:36px;
    border-radius:11px;
  }

  .container{padding:22px 13px 42px}
  .hero-card{padding:28px 18px;border-radius:25px}
  .hero-logo{width:96px;height:96px;border-radius:24px}

  .region-grid,.grid,.list{grid-template-columns:1fr}
  .blood-grid{grid-template-columns:repeat(2,1fr)}
  .donor-actions{grid-template-columns:1fr}
  .contact-confirm-actions{grid-template-columns:1fr}
}

@media(min-width:1400px){
  .container{width:min(1320px,100%)}
  .region-grid{grid-template-columns:repeat(4,1fr)}
}


/* ===== My Blood Is Yours V3 Foundation ===== */
.v3-nav{
  position:sticky;
  top:0;
  z-index:200;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px clamp(14px,3vw,30px);
  background:rgba(14,34,61,.95);
  color:#fff;
  backdrop-filter:blur(14px);
  box-shadow:0 8px 28px rgba(14,34,61,.22);
}
.v3-brand{
  display:flex;
  align-items:center;
  gap:11px;
  text-decoration:none;
  font-weight:950;
}
.v3-brand img{
  width:44px;
  height:44px;
  object-fit:contain;
  border-radius:14px;
  background:#fff;
  padding:4px;
}
.v3-nav-links{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.v3-nav-links a{
  color:#fff;
  text-decoration:none;
  padding:10px 13px;
  border-radius:12px;
  font-weight:800;
}
.v3-nav-links a:hover{background:rgba(255,255,255,.11)}
.v3-hero{
  position:relative;
  overflow:hidden;
  min-height:560px;
  display:grid;
  place-items:center;
  padding:56px 20px;
  border-radius:0 0 38px 38px;
  color:#fff;
  background:
    radial-gradient(circle at 20% 20%,rgba(255,255,255,.12),transparent 24rem),
    radial-gradient(circle at 85% 10%,rgba(213,29,53,.42),transparent 22rem),
    linear-gradient(135deg,#0e223d 0%,#163b68 55%,#8f1025 100%);
}
.v3-hero-inner{
  width:min(1100px,100%);
  text-align:center;
  position:relative;
  z-index:2;
}
.v3-hero-logo{
  width:128px;height:128px;object-fit:contain;
  background:#fff;padding:10px;border-radius:32px;
  box-shadow:0 20px 55px rgba(0,0,0,.24);
}
.v3-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:18px;
  padding:8px 13px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:999px;
  background:rgba(255,255,255,.1);
  font-weight:850;
}
.v3-title{
  margin:20px auto 0;
  max-width:900px;
  font-size:clamp(38px,7vw,76px);
  line-height:1.02;
  font-weight:1000;
  letter-spacing:-.04em;
}
.v3-title-ar{
  display:block;
  margin-top:16px;
  font-size:clamp(28px,5vw,50px);
  direction:rtl;
}
.v3-subtitle{
  max-width:760px;
  margin:22px auto 0;
  color:rgba(255,255,255,.88);
  font-size:clamp(16px,2.2vw,20px);
  line-height:1.8;
}
.v3-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}
.v3-action{
  min-width:220px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:16px 22px;
  border-radius:17px;
  text-decoration:none;
  font-weight:950;
  transition:.2s ease;
}
.v3-action:hover{transform:translateY(-3px)}
.v3-action.primary{background:#fff;color:#0e223d}
.v3-action.secondary{
  color:#fff;
  border:1px solid rgba(255,255,255,.3);
  background:rgba(255,255,255,.10);
}
.v3-section{
  width:min(1180px,100%);
  margin:auto;
  padding:64px 22px;
}
.v3-section-head{text-align:center;margin-bottom:28px}
.v3-section-head h2{
  margin:0;
  color:var(--navy);
  font-size:clamp(28px,4vw,42px);
  font-weight:950;
}
.v3-section-head p{
  max-width:760px;
  margin:12px auto 0;
  color:var(--muted);
  line-height:1.8;
}
.v3-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.v3-stat{
  padding:24px;
  border:1px solid var(--border);
  border-radius:22px;
  background:#fff;
  box-shadow:var(--shadow-sm);
  text-align:center;
}
.v3-stat-value{
  color:var(--red);
  font-size:34px;
  font-weight:1000;
}
.v3-stat-label{margin-top:8px;color:var(--muted);font-weight:800}
.v3-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.v3-card{
  padding:24px;
  border:1px solid var(--border);
  border-radius:24px;
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.v3-card-icon{font-size:34px}
.v3-card h3{margin:14px 0 8px;color:var(--navy);font-size:21px}
.v3-card p{margin:0;color:var(--muted);line-height:1.7}
.v3-supported{
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:26px;
  background:#fff;
  box-shadow:var(--shadow-md);
  padding:22px;
}
.v3-supported-track{
  display:flex;
  gap:18px;
  overflow:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:6px;
}
.v3-support-item{
  min-width:210px;
  scroll-snap-align:start;
  border:1px solid var(--border);
  border-radius:18px;
  padding:14px;
  background:#fff;
}
.v3-support-item img{width:100%;height:110px;object-fit:contain}
.v3-story-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  align-items:stretch;
}
.v3-story-card{
  padding:28px;
  border:1px solid var(--border);
  border-radius:26px;
  background:#fff;
  box-shadow:var(--shadow-md);
}
.v3-story-card h3{margin-top:0;color:var(--navy);font-size:25px}
.v3-story-card p{line-height:1.85;color:var(--text)}
.v3-dedication{
  background:linear-gradient(145deg,#fff7f8,#fff);
  border-color:#efc2ca;
}
.v3-wizard{
  width:min(780px,100%);
  margin:auto;
  border:1px solid var(--border);
  border-radius:28px;
  background:#fff;
  box-shadow:var(--shadow-md);
  padding:28px;
}
.v3-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-bottom:24px;
}
.v3-step{
  text-align:center;
  padding:12px;
  border-radius:14px;
  background:#eef2f7;
  color:var(--muted);
  font-weight:900;
}
.v3-step.active{background:var(--red);color:#fff}
.v3-wizard-panel{display:none}
.v3-wizard-panel.active{display:block}
.v3-option-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.v3-option{
  padding:15px;
  border:1px solid var(--border);
  border-radius:16px;
  background:#fff;
  font-weight:850;
  cursor:pointer;
}
.v3-option:hover{border-color:#eaa8b4;color:var(--red)}
.v3-footer{
  margin-top:50px;
  padding:36px 20px;
  background:#0e223d;
  color:#fff;
  text-align:center;
}
.v3-footer p{margin:7px 0;color:rgba(255,255,255,.8)}
@media(max-width:900px){
  .v3-stats{grid-template-columns:repeat(2,1fr)}
  .v3-cards{grid-template-columns:1fr 1fr}
  .v3-story-grid{grid-template-columns:1fr}
}
@media(max-width:700px){
  .v3-nav{align-items:flex-start}
  .v3-nav-links{display:none}
  .v3-hero{min-height:520px}
  .v3-stats,.v3-cards,.v3-option-grid{grid-template-columns:1fr}
  .v3-action{width:100%;min-width:0}
}


/* ===== V3 Stage 2: Complete Search Wizard ===== */
.v3-wizard-shell{
  width:min(980px,100%);
  margin:auto;
}
.v3-wizard{
  padding:clamp(20px,4vw,34px);
}
.v3-wizard-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
}
.v3-wizard-back{
  display:inline-flex;
  align-items:center;
  gap:7px;
  border:1px solid var(--border);
  border-radius:13px;
  padding:10px 14px;
  background:#fff;
  color:var(--navy);
  font-weight:900;
  cursor:pointer;
}
.v3-wizard-back[hidden]{display:none}
.v3-selection-summary{
  color:var(--muted);
  text-align:right;
  font-size:14px;
  font-weight:800;
}
.v3-progress-line{
  height:6px;
  margin-bottom:22px;
  overflow:hidden;
  border-radius:999px;
  background:#edf1f6;
}
.v3-progress-fill{
  width:33.333%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--red),var(--red-700));
  transition:width .25s ease;
}
.v3-region-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:13px;
}
.v3-region-option,
.v3-town-option,
.v3-blood-option{
  position:relative;
  min-height:78px;
  border:1px solid var(--border);
  border-radius:18px;
  padding:15px 16px;
  background:linear-gradient(145deg,#fff,#fafcff);
  color:var(--navy);
  font-weight:900;
  cursor:pointer;
  transition:.18s ease;
}
.v3-region-option:hover,
.v3-town-option:hover,
.v3-blood-option:hover{
  transform:translateY(-2px);
  border-color:#e9a9b5;
  box-shadow:var(--shadow-sm);
}
.v3-region-option .ar{
  display:block;
  margin-top:5px;
  color:var(--red);
  direction:rtl;
  font-size:15px;
}
.v3-town-search{
  position:sticky;
  top:82px;
  z-index:10;
  margin-bottom:15px;
  padding:10px 0;
  background:var(--bg);
}
.v3-town-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:11px;
  max-height:520px;
  overflow:auto;
  padding:2px 3px 5px;
}
.v3-town-option{
  min-height:62px;
  text-align:left;
  line-height:1.45;
}
.v3-town-empty{
  grid-column:1/-1;
  padding:26px;
  border:1px dashed var(--border);
  border-radius:18px;
  color:var(--muted);
  text-align:center;
}
.v3-blood-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.v3-blood-option{
  min-height:100px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:linear-gradient(135deg,var(--red),var(--red-700));
  font-size:30px;
  box-shadow:0 12px 25px rgba(213,29,53,.18);
}
.v3-review{
  margin-top:22px;
  padding:20px;
  border:1px solid var(--border);
  border-radius:20px;
  background:var(--sky);
}
.v3-review-row{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:9px 0;
  border-bottom:1px solid rgba(14,34,61,.09);
}
.v3-review-row:last-child{border-bottom:0}
.v3-review-label{color:var(--muted);font-weight:800}
.v3-review-value{color:var(--navy);font-weight:950;text-align:right}
.v3-wizard-help{
  margin-top:18px;
  color:var(--muted);
  text-align:center;
  line-height:1.7;
  font-size:14px;
}
@media(max-width:900px){
  .v3-region-grid,.v3-town-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:620px){
  .v3-region-grid,.v3-town-grid{grid-template-columns:1fr}
  .v3-blood-grid{grid-template-columns:repeat(2,1fr)}
  .v3-selection-summary{font-size:12px}
  .v3-town-search{top:69px}
}


/* ===== V3 Stage 3: Firebase Integration and Production Feedback ===== */
.system-banner{
  display:none;
  width:min(1180px,calc(100% - 28px));
  margin:16px auto 0;
  padding:13px 16px;
  border-radius:15px;
  text-align:center;
  font-weight:800;
}
.system-banner.is-visible{display:block}
.system-banner.error{
  border:1px solid #f1c0ca;
  background:#fff0f3;
  color:#961b31;
}
.system-banner.success{
  border:1px solid #bde8cd;
  background:#eefbf3;
  color:#14673c;
}
.loading-state{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:11px;
  min-height:100px;
  color:var(--muted);
  font-weight:800;
}
.spinner{
  width:24px;
  height:24px;
  border:3px solid #e3e8ef;
  border-top-color:var(--red);
  border-radius:50%;
  animation:spin .8s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}
.form-help{
  margin-top:6px;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}
.required-mark{color:var(--red)}
.privacy-note{
  margin-top:16px;
  padding:13px 15px;
  border:1px solid #d9e3f0;
  border-radius:15px;
  background:#f6f9fd;
  color:var(--navy);
  line-height:1.65;
  font-size:13px;
}
.retry-button{
  width:auto;
  margin-top:14px;
  padding:11px 17px;
}
.partner-placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  height:110px;
  border-radius:13px;
  background:#f3f6fa;
  color:var(--muted);
  font-weight:850;
}
.donor-results-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:15px;
}
.donor-results-header p{margin:0;color:var(--muted)}
@media(max-width:620px){
  .donor-results-header{align-items:flex-start;flex-direction:column}
}


/* ===== V3.2 Release Candidate ===== */
.contact-confirm-overlay{
  background:rgba(5,14,28,.82) !important;
  backdrop-filter:blur(9px) !important;
  -webkit-backdrop-filter:blur(9px) !important;
}

.contact-confirm-modal{
  width:min(94vw,560px) !important;
  padding:32px !important;
  border:2px solid rgba(213,29,53,.15) !important;
  border-radius:26px !important;
  background:#ffffff !important;
  color:#172033 !important;
  opacity:1 !important;
  box-shadow:0 32px 90px rgba(0,0,0,.42) !important;
}

.contact-confirm-modal *{
  opacity:1 !important;
}

.contact-confirm-icon{
  width:66px !important;
  height:66px !important;
  border-radius:21px !important;
  background:linear-gradient(135deg,#d51d35,#a81126) !important;
  color:#ffffff !important;
  font-size:31px !important;
  font-weight:1000 !important;
}

.contact-confirm-title{
  margin:0 0 16px !important;
  color:#0e223d !important;
  font-size:clamp(22px,4vw,28px) !important;
  line-height:1.3 !important;
  font-weight:1000 !important;
}

.contact-confirm-text{
  color:#1d2738 !important;
  font-size:17px !important;
  line-height:1.8 !important;
  font-weight:650 !important;
}

.contact-confirm-text strong{
  color:#a81126 !important;
  font-weight:1000 !important;
}

.contact-confirm-text.ar{
  margin-top:16px !important;
  padding-top:16px !important;
  border-top:1px solid #e3e8ef !important;
  color:#0e223d !important;
  font-size:18px !important;
  font-weight:800 !important;
}

.contact-confirm-actions{
  grid-template-columns:1fr 1.45fr !important;
  gap:12px !important;
  margin-top:25px !important;
}

.contact-confirm-actions .btn{
  min-height:54px !important;
  font-size:16px !important;
  font-weight:950 !important;
}

.contact-confirm-cancel{
  border:1px solid #d8dee8 !important;
  background:#f1f4f8 !important;
  color:#172033 !important;
}

.contact-confirm-cancel:hover{
  background:#e5eaf1 !important;
}

.contact-confirm-continue{
  background:linear-gradient(135deg,#d51d35,#a81126) !important;
  color:#ffffff !important;
  box-shadow:0 12px 26px rgba(213,29,53,.24) !important;
}

.contact-confirm-continue:hover{
  background:linear-gradient(135deg,#be172e,#8f0d22) !important;
}

.skip-link{
  position:fixed;
  top:-80px;
  left:16px;
  z-index:10000;
  padding:12px 16px;
  border-radius:12px;
  background:#fff;
  color:#0e223d;
  font-weight:900;
  box-shadow:0 8px 24px rgba(0,0,0,.2);
  transition:top .2s ease;
}
.skip-link:focus{top:16px}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline:3px solid rgba(213,29,53,.35);
  outline-offset:3px;
}

.release-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-left:8px;
  padding:4px 8px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:11px;
  font-weight:900;
  vertical-align:middle;
}

@media(max-width:520px){
  .contact-confirm-modal{
    width:96vw !important;
    padding:24px 18px !important;
    border-radius:22px !important;
  }

  .contact-confirm-text{
    font-size:16px !important;
  }

  .contact-confirm-text.ar{
    font-size:17px !important;
  }

  .contact-confirm-actions{
    grid-template-columns:1fr !important;
  }
}


/* ===== V3.3 Contact and Supporters Upgrade ===== */
.contact-layout{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
  gap:24px;
  align-items:start;
}

.direct-contact-card{
  position:sticky;
  top:96px;
  padding:28px;
  border:1px solid var(--border);
  border-radius:26px;
  background:linear-gradient(145deg,#ffffff,#f8fbff);
  box-shadow:var(--shadow-md);
}

.direct-contact-card h3{
  margin:0 0 22px;
  color:var(--navy);
  font-size:27px;
  font-weight:1000;
}

.direct-contact-item{
  display:flex;
  align-items:flex-start;
  gap:13px;
  padding:16px 0;
  border-bottom:1px solid var(--border);
}

.direct-contact-item:last-of-type{
  border-bottom:0;
}

.direct-contact-icon{
  width:42px;
  height:42px;
  flex:0 0 42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:var(--red-50);
  color:var(--red);
  font-size:20px;
}

.direct-contact-label{
  margin-bottom:5px;
  color:var(--navy);
  font-weight:950;
}

.direct-contact-value{
  color:var(--text);
  line-height:1.55;
  overflow-wrap:anywhere;
}

.direct-contact-actions{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin-top:22px;
}

.direct-contact-actions .btn{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  text-decoration:none;
}

.direct-contact-actions .whatsapp-contact{
  background:linear-gradient(135deg,var(--green),var(--green-700));
  color:#fff;
  box-shadow:0 12px 25px rgba(24,169,87,.20);
}

.supporters-showcase{
  position:relative;
  overflow:hidden;
  padding:28px;
  border:1px solid var(--border);
  border-radius:28px;
  background:
    radial-gradient(circle at top right,rgba(213,29,53,.06),transparent 16rem),
    linear-gradient(145deg,#ffffff,#f8fbff);
  box-shadow:var(--shadow-md);
}

.supporters-tier-note{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin:0 0 20px;
}

.supporter-tier-chip{
  padding:7px 11px;
  border-radius:999px;
  background:#f0f4f9;
  color:var(--muted);
  font-size:12px;
  font-weight:900;
}

.supporters-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.supporter-card{
  position:relative;
  min-height:170px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding:18px;
  border:1px solid var(--border);
  border-radius:22px;
  background:#fff;
  box-shadow:var(--shadow-sm);
  text-decoration:none;
  transition:.2s ease;
}

.supporter-card:hover{
  transform:translateY(-4px);
  border-color:#eab0bb;
  box-shadow:0 18px 38px rgba(14,34,61,.13);
}

.supporter-card img{
  width:100%;
  height:120px;
  object-fit:contain;
}

.supporter-card-badge{
  position:absolute;
  top:10px;
  right:10px;
  padding:5px 8px;
  border-radius:999px;
  background:rgba(14,34,61,.08);
  color:var(--navy);
  font-size:10px;
  font-weight:950;
}

.supporter-card[data-tier="gold"]{
  border-color:#e0b74f;
  background:linear-gradient(145deg,#fffdf5,#fff);
}

.supporter-card[data-tier="silver"]{
  border-color:#bbc4cf;
  background:linear-gradient(145deg,#f8fafc,#fff);
}

.supporter-card[data-tier="bronze"]{
  border-color:#c88a5d;
  background:linear-gradient(145deg,#fff8f3,#fff);
}

.supporters-empty{
  grid-column:1/-1;
  padding:28px;
  border:1px dashed var(--border);
  border-radius:20px;
  color:var(--muted);
  text-align:center;
}

@media(max-width:980px){
  .contact-layout{
    grid-template-columns:1fr;
  }

  .direct-contact-card{
    position:static;
  }

  .supporters-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:700px){
  .supporters-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:480px){
  .supporters-grid{
    grid-template-columns:1fr;
  }

  .direct-contact-card{
    padding:22px 17px;
  }
}


/* ===== FINAL RELEASE POLISH ===== */
.v3-hero-logo{
  margin-bottom:10px !important;
}

.v3-hero-initiative{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:2px;
  margin:0 0 18px;
  color:rgba(255,255,255,.82);
  font-size:13px;
  line-height:1.45;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.v3-hero-initiative span{
  direction:rtl;
  font-size:14px;
  letter-spacing:0;
  text-transform:none;
  font-weight:850;
}

.v3-title{
  margin-top:8px !important;
}

.v3-stats{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.v3-stat{
  min-height:154px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.v3-stat-value{
  font-variant-numeric:tabular-nums;
}

.v3-stat-label{
  line-height:1.55;
}

@media(max-width:900px){
  .v3-stats{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:520px){
  .v3-stats{
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .v3-stat{
    min-height:136px;
    padding:18px 12px;
  }

  .v3-stat-value{
    font-size:29px;
  }

  .v3-stat-label{
    font-size:13px;
  }

  .v3-hero-initiative{
    font-size:11px;
  }

  .v3-hero-initiative span{
    font-size:12px;
  }
}


/* ===== Homepage Leadership Block ===== */
.homepage-leadership-card{
  width:min(760px,100%);
  margin:0 auto;
  text-align:center;
}

.homepage-leadership-card h3{
  margin:0 0 10px;
  color:var(--navy);
  font-size:clamp(24px,4vw,32px);
  font-weight:1000;
}

.homepage-leadership-title{
  margin:0;
  color:var(--red-700);
  font-size:18px;
  line-height:1.6;
  font-weight:950;
}

.homepage-leadership-ar{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid var(--border);
  color:var(--navy);
}

.homepage-leadership-ar p{
  margin:6px 0;
  font-size:18px;
  line-height:1.6;
}


/* ===== FINAL CONTACT CONFIRMATION MODAL FIX ===== */
#contactConfirmOverlay.contact-confirm-overlay{
  position:fixed !important;
  inset:0 !important;
  z-index:999999 !important;
  display:none !important;
  align-items:center !important;
  justify-content:center !important;
  padding:20px !important;
  overflow-y:auto !important;
  background:rgba(4,12,24,.86) !important;
  backdrop-filter:blur(8px) !important;
  -webkit-backdrop-filter:blur(8px) !important;
  opacity:1 !important;
  visibility:visible !important;
}

#contactConfirmOverlay.contact-confirm-overlay.is-open{
  display:flex !important;
}

#contactConfirmOverlay .contact-confirm-modal{
  position:relative !important;
  z-index:1000000 !important;
  width:min(560px,100%) !important;
  max-height:calc(100vh - 40px) !important;
  overflow-y:auto !important;
  margin:auto !important;
  padding:32px !important;
  border:2px solid rgba(213,29,53,.18) !important;
  border-radius:26px !important;
  background:#ffffff !important;
  background-color:#ffffff !important;
  color:#172033 !important;
  opacity:1 !important;
  visibility:visible !important;
  box-shadow:0 32px 100px rgba(0,0,0,.55) !important;
  transform:none !important;
}

#contactConfirmOverlay .contact-confirm-modal,
#contactConfirmOverlay .contact-confirm-modal *{
  opacity:1 !important;
  visibility:visible !important;
  text-shadow:none !important;
}

#contactConfirmOverlay .contact-confirm-icon{
  width:68px !important;
  height:68px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin:0 auto 18px !important;
  border-radius:22px !important;
  background:linear-gradient(135deg,#d51d35,#9c1024) !important;
  color:#ffffff !important;
  font-size:32px !important;
  box-shadow:0 12px 28px rgba(213,29,53,.28) !important;
}

#contactConfirmOverlay .contact-confirm-title{
  display:flex !important;
  flex-direction:column !important;
  gap:5px !important;
  margin:0 0 18px !important;
  color:#0e223d !important;
  font-size:clamp(23px,4vw,29px) !important;
  line-height:1.3 !important;
  font-weight:1000 !important;
  text-align:center !important;
}

#contactConfirmOverlay .contact-confirm-title span{
  color:#a81126 !important;
  font-size:.82em !important;
}

#contactConfirmOverlay .contact-confirm-text,
#contactConfirmOverlay .contact-confirm-ar,
#contactConfirmOverlay .contact-confirm-warning,
#contactConfirmOverlay .contact-confirm-thanks{
  color:#1b2638 !important;
  font-size:16.5px !important;
  line-height:1.8 !important;
  font-weight:650 !important;
}

#contactConfirmOverlay .contact-confirm-text{
  margin:0 0 12px !important;
}

#contactConfirmOverlay .contact-confirm-warning{
  margin:12px 0 !important;
  padding:13px 15px !important;
  border:1px solid #f0c3cb !important;
  border-radius:14px !important;
  background:#fff3f5 !important;
  color:#8e1327 !important;
}

#contactConfirmOverlay .contact-confirm-ar{
  margin-top:17px !important;
  padding-top:17px !important;
  border-top:1px solid #dde3eb !important;
  color:#0e223d !important;
  font-size:17px !important;
  text-align:right !important;
}

#contactConfirmOverlay .contact-confirm-ar p{
  margin:0 0 10px !important;
}

#contactConfirmOverlay .contact-confirm-thanks{
  display:flex !important;
  flex-direction:column !important;
  gap:3px !important;
  margin:18px 0 0 !important;
  color:#516075 !important;
  font-size:14px !important;
  text-align:center !important;
}

#contactConfirmOverlay .contact-confirm-actions{
  display:grid !important;
  grid-template-columns:1fr 1.45fr !important;
  gap:12px !important;
  margin-top:25px !important;
}

#contactConfirmOverlay .contact-confirm-button{
  min-height:56px !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  gap:2px !important;
  padding:12px 15px !important;
  border-radius:15px !important;
  font-family:inherit !important;
  font-size:15px !important;
  line-height:1.25 !important;
  font-weight:950 !important;
  cursor:pointer !important;
  opacity:1 !important;
}

#contactConfirmOverlay .contact-confirm-cancel{
  border:1px solid #cfd7e2 !important;
  background:#eef2f7 !important;
  color:#172033 !important;
}

#contactConfirmOverlay .contact-confirm-cancel:hover{
  background:#e0e6ee !important;
}

#contactConfirmOverlay .contact-confirm-continue{
  border:1px solid #a81126 !important;
  background:linear-gradient(135deg,#d51d35,#a81126) !important;
  color:#ffffff !important;
  box-shadow:0 12px 28px rgba(213,29,53,.25) !important;
}

#contactConfirmOverlay .contact-confirm-continue:hover{
  background:linear-gradient(135deg,#bf172f,#8f0d21) !important;
}

#contactConfirmOverlay .contact-confirm-continue:focus,
#contactConfirmOverlay .contact-confirm-cancel:focus{
  outline:4px solid rgba(213,29,53,.25) !important;
  outline-offset:3px !important;
}

@media(max-width:560px){
  #contactConfirmOverlay.contact-confirm-overlay{
    padding:12px !important;
  }

  #contactConfirmOverlay .contact-confirm-modal{
    padding:24px 18px !important;
    border-radius:21px !important;
  }

  #contactConfirmOverlay .contact-confirm-actions{
    grid-template-columns:1fr !important;
  }

  #contactConfirmOverlay .contact-confirm-text,
  #contactConfirmOverlay .contact-confirm-ar,
  #contactConfirmOverlay .contact-confirm-warning{
    font-size:15.5px !important;
  }
}


/* =========================================================
   HOMEPAGE V4 — MY BLOOD IS YOURS
   ========================================================= */

:root{
  --home-navy:#102a4c;
  --home-navy-2:#173d68;
  --home-red:#d71932;
  --home-red-dark:#a90f25;
  --home-soft:#f4f8fc;
  --home-text:#17233a;
  --home-muted:#65748a;
  --home-line:#dfe7ef;
  --home-white:#ffffff;
}

.home-v4{
  margin:0;
  color:var(--home-text);
  background:#fff;
  font-family:Inter,Arial,"Segoe UI",Tahoma,sans-serif;
}

.home-v4 *{
  box-sizing:border-box;
}

.home-container{
  width:min(1180px,calc(100% - 40px));
  margin-inline:auto;
}

.home-nav{
  position:sticky;
  top:0;
  z-index:1000;
  min-height:76px;
  display:flex;
  align-items:center;
  gap:28px;
  padding:12px max(24px,calc((100% - 1180px)/2));
  background:rgba(255,255,255,.95);
  border-bottom:1px solid rgba(16,42,76,.08);
  box-shadow:0 8px 30px rgba(16,42,76,.06);
  backdrop-filter:blur(14px);
}

.home-brand{
  display:flex;
  align-items:center;
  gap:11px;
  color:var(--home-navy);
  text-decoration:none;
}

.home-brand img{
  width:50px;
  height:50px;
  object-fit:contain;
  border-radius:15px;
  background:#fff;
}

.home-brand span{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.home-brand strong{
  font-size:18px;
  font-weight:950;
}

.home-brand small{
  margin-top:4px;
  color:var(--home-red);
  font-size:15px;
  font-weight:900;
}

.home-nav-links{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:23px;
}

.home-nav-links a{
  color:var(--home-navy);
  font-size:14px;
  font-weight:850;
  text-decoration:none;
}

.home-nav-links a:hover{
  color:var(--home-red);
}

.home-nav-cta{
  padding:13px 19px;
  border-radius:999px;
  background:var(--home-red);
  color:#fff !important;
  box-shadow:0 10px 24px rgba(215,25,50,.22);
}

.home-menu-button{
  display:none;
  margin-left:auto;
  border:0;
  background:transparent;
  color:var(--home-navy);
  font-size:29px;
  cursor:pointer;
}

.home-hero{
  position:relative;
  overflow:hidden;
  padding:72px 0 0;
  background:
    radial-gradient(circle at 70% 15%,rgba(255,255,255,.8),transparent 35%),
    linear-gradient(110deg,#f8fbfe 0%,#e5f1fa 54%,#d4e9f8 100%);
}

.home-hero::before{
  content:"";
  position:absolute;
  inset:auto -8% -180px auto;
  width:620px;
  height:620px;
  border-radius:50%;
  background:rgba(215,25,50,.08);
}

.home-hero-grid{
  position:relative;
  z-index:2;
  min-height:520px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:54px;
  align-items:center;
}

.home-eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:20px;
  color:var(--home-red-dark);
  font-size:13px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.lebanon-mini-flag{
  width:34px;
  display:grid;
  grid-template-rows:8px 12px 8px;
  overflow:hidden;
  border-radius:4px;
  box-shadow:0 2px 8px rgba(0,0,0,.12);
}

.lebanon-mini-flag i{
  background:var(--home-red);
}

.lebanon-mini-flag b{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  font-size:9px;
}

.home-hero h1{
  max-width:680px;
  margin:0;
  color:var(--home-navy);
  font-size:clamp(48px,6.5vw,78px);
  line-height:.98;
  letter-spacing:-.055em;
  font-weight:1000;
}

.home-hero h1 span{
  display:block;
  color:var(--home-red);
}

.home-hero-ar{
  margin:24px 0 0;
  color:var(--home-navy);
  font-size:clamp(24px,3.2vw,36px);
  font-weight:1000;
}

.home-hero-text{
  max-width:650px;
  margin:20px 0 0;
  color:#425470;
  font-size:18px;
  line-height:1.75;
}

.home-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}

.home-btn{
  min-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 22px;
  border-radius:999px;
  border:1px solid transparent;
  font-size:15px;
  font-weight:950;
  text-decoration:none;
  transition:.2s ease;
}

.home-btn:hover{
  transform:translateY(-2px);
}

.home-btn-primary{
  background:var(--home-red);
  color:#fff;
  box-shadow:0 13px 32px rgba(215,25,50,.25);
}

.home-btn-light{
  background:#fff;
  color:var(--home-navy);
  border-color:#dce5ee;
  box-shadow:0 10px 26px rgba(16,42,76,.1);
}

.home-hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-top:24px;
  color:#51637a;
  font-size:13px;
  font-weight:800;
}

.home-hero-visual{
  position:relative;
  min-height:460px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.home-flag-card{
  position:absolute;
  top:34px;
  right:0;
  width:290px;
  height:174px;
  overflow:hidden;
  border-radius:22px;
  transform:rotate(4deg);
  box-shadow:0 28px 70px rgba(16,42,76,.2);
}

.flag-red{
  height:25%;
  background:#d71932;
}

.flag-white{
  height:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  font-size:62px;
}

.home-drop{
  position:relative;
  z-index:3;
  width:260px;
  height:330px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:60px;
  border-radius:54% 54% 60% 60% / 68% 68% 38% 38%;
  transform:rotate(45deg);
  background:linear-gradient(145deg,#ff344d,#b00921);
  box-shadow:
    inset 18px 20px 28px rgba(255,255,255,.2),
    0 34px 80px rgba(164,11,33,.28);
}

.home-drop::after{
  content:"";
  position:absolute;
  inset:20px 34px auto auto;
  width:50px;
  height:120px;
  border-radius:100%;
  background:rgba(255,255,255,.28);
  filter:blur(2px);
}

.home-drop img{
  width:145px;
  height:145px;
  object-fit:contain;
  border-radius:28px;
  transform:rotate(-45deg);
  background:#fff;
  padding:14px;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.home-hero-badge{
  position:absolute;
  z-index:5;
  bottom:58px;
  right:10px;
  display:flex;
  flex-direction:column;
  padding:16px 20px;
  border-radius:17px;
  background:rgba(16,42,76,.94);
  color:#fff;
  box-shadow:0 18px 45px rgba(16,42,76,.25);
}

.home-hero-badge strong{
  font-size:17px;
}

.home-hero-badge span{
  margin-top:4px;
  font-size:14px;
}

.home-stats-panel{
  position:relative;
  z-index:10;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-radius:26px 26px 0 0;
  overflow:hidden;
  background:linear-gradient(110deg,var(--home-navy),#173f6e);
  color:#fff;
  box-shadow:0 -4px 34px rgba(16,42,76,.14);
}

.home-stats-panel article{
  min-height:126px;
  display:flex;
  align-items:center;
  gap:15px;
  padding:24px 25px;
  border-right:1px solid rgba(255,255,255,.16);
}

.home-stats-panel article:last-child{
  border-right:0;
}

.home-stat-icon{
  width:54px;
  height:54px;
  flex:0 0 54px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#fff;
  color:var(--home-red);
  font-size:25px;
}

.home-stats-panel strong{
  display:block;
  font-size:26px;
  font-weight:1000;
}

.home-stats-panel small,
.home-stats-panel em{
  display:block;
  margin-top:3px;
  font-style:normal;
  font-size:12px;
  opacity:.82;
}

.home-section{
  padding:86px 0;
}

.home-section-heading{
  max-width:720px;
  margin:0 auto 46px;
  text-align:center;
}

.home-section-heading > span,
.home-section-kicker{
  display:block;
  margin-bottom:10px;
  color:var(--home-red);
  font-size:13px;
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.home-section-heading h2,
.home-coverage-copy h2{
  margin:0;
  color:var(--home-navy);
  font-size:clamp(34px,4.8vw,54px);
  line-height:1.05;
  font-weight:1000;
}

.home-section-heading p{
  margin:15px auto 0;
  color:var(--home-muted);
  font-size:17px;
  line-height:1.7;
}

.home-how{
  background:#fff;
}

.home-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.home-steps article{
  position:relative;
  padding:34px 28px;
  border:1px solid var(--home-line);
  border-radius:24px;
  background:#fff;
  text-align:center;
  box-shadow:0 20px 55px rgba(16,42,76,.08);
}

.home-step-number{
  position:absolute;
  top:18px;
  left:18px;
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--home-red);
  color:#fff;
  font-weight:1000;
}

.home-step-icon{
  width:82px;
  height:82px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 22px;
  border-radius:50%;
  background:#f8fafc;
  color:var(--home-red);
  font-size:38px;
  box-shadow:0 12px 30px rgba(16,42,76,.1);
}

.home-steps h3{
  margin:0 0 10px;
  color:var(--home-navy);
  font-size:24px;
}

.home-steps p{
  margin:7px 0;
  color:var(--home-muted);
  line-height:1.65;
}

.home-coverage{
  overflow:hidden;
  background:
    radial-gradient(circle at 90% 20%,rgba(255,255,255,.65),transparent 32%),
    linear-gradient(125deg,#edf7ff,#dceefa);
}

.home-coverage-grid{
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  gap:60px;
  align-items:center;
}

.home-coverage-copy h2 span{
  color:var(--home-red);
}

.home-coverage-copy > p{
  color:#40536c;
  font-size:17px;
  line-height:1.8;
}

.home-coverage-links{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin:26px 0;
}

.home-coverage-links a{
  padding:9px 13px;
  border:1px solid #cfdde9;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:var(--home-navy);
  font-size:13px;
  font-weight:850;
  text-decoration:none;
}

.home-map-card{
  position:relative;
  min-height:630px;
  padding:25px;
  border:1px solid rgba(255,255,255,.8);
  border-radius:32px;
  background:rgba(255,255,255,.68);
  box-shadow:0 28px 80px rgba(16,42,76,.14);
  backdrop-filter:blur(10px);
}

.home-map-title{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding-bottom:16px;
  border-bottom:1px solid rgba(16,42,76,.1);
  color:var(--home-navy);
}

.home-map-title strong{
  font-size:20px;
}

.home-map-title span{
  color:var(--home-red);
  font-weight:900;
}

.lebanon-map{
  width:100%;
  max-height:490px;
  margin:12px auto;
}

.map-marker circle{
  fill:var(--home-red);
  stroke:#fff;
  stroke-width:5;
}

.map-marker text{
  fill:#fff;
  text-anchor:middle;
  font-size:16px;
  font-weight:1000;
}

.home-map-legend{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
}

.home-map-legend span{
  display:flex;
  align-items:center;
  gap:8px;
  color:#52637a;
  font-size:12px;
  font-weight:800;
}

.home-map-legend i{
  width:22px;
  height:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--home-red);
  color:#fff;
  font-style:normal;
  font-size:11px;
}

.home-values{
  background:#fff;
}

.home-values-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}

.home-values-grid article{
  padding:28px 19px;
  border:1px solid var(--home-line);
  border-radius:20px;
  text-align:center;
  background:#fff;
}

.home-values-grid span{
  display:block;
  margin-bottom:12px;
  color:var(--home-red);
  font-size:34px;
}

.home-values-grid h3{
  margin:0 0 8px;
  color:var(--home-navy);
}

.home-values-grid p{
  margin:0;
  color:var(--home-muted);
  font-size:13px;
  line-height:1.55;
}

.home-leadership{
  padding:58px 0;
  background:#f8fafc;
}

.home-leadership-grid{
  display:grid;
  grid-template-columns:170px 1fr 1fr;
  gap:35px;
  align-items:center;
}

.home-leadership-logo{
  width:150px;
  height:150px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:34px;
  background:#fff;
  box-shadow:0 18px 45px rgba(16,42,76,.12);
}

.home-leadership-logo img{
  width:120px;
  height:120px;
  object-fit:contain;
}

.home-leadership-grid > div:nth-child(2) > span{
  color:var(--home-red);
  font-weight:900;
}

.home-leadership-grid h2{
  margin:8px 0 5px;
  color:var(--home-navy);
  font-size:32px;
}

.home-leadership-grid h3{
  margin:0;
  color:#56677d;
  font-size:16px;
}

.home-leadership-grid p{
  color:#526278;
  line-height:1.7;
}

.home-dedication-card{
  padding:28px;
  border-radius:24px;
  background:linear-gradient(135deg,var(--home-red),var(--home-red-dark));
  color:#fff;
  box-shadow:0 20px 50px rgba(215,25,50,.2);
}

.home-dedication-card span{
  display:block;
  opacity:.8;
}

.home-dedication-card strong{
  display:block;
  margin:7px 0 12px;
  font-size:22px;
}

.home-dedication-card p{
  margin:0;
  color:#fff;
}

.home-cta{
  padding:44px 0;
  background:
    linear-gradient(100deg,rgba(168,8,31,.98),rgba(221,24,50,.96)),
    var(--home-red);
  color:#fff;
}

.home-cta-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.home-cta span{
  font-size:19px;
  font-weight:900;
}

.home-cta h2{
  margin:7px 0 5px;
  font-size:34px;
}

.home-cta p{
  margin:0;
  opacity:.85;
}

.home-supporters{
  background:#fff;
}

.home-supporters-grid{
  margin-top:10px;
}

.home-footer{
  background:var(--home-navy);
  color:#fff;
}

.home-footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.1fr;
  gap:34px;
  padding:55px 0;
}

.home-footer-brand img{
  width:55px;
  height:55px;
  object-fit:contain;
  border-radius:14px;
  background:#fff;
  padding:4px;
}

.home-footer-brand > div{
  display:inline-flex;
  flex-direction:column;
  margin-left:10px;
  vertical-align:top;
}

.home-footer-brand strong{
  font-size:18px;
}

.home-footer-brand span{
  margin-top:4px;
  color:#ff8091;
  font-weight:900;
}

.home-footer p,
.home-footer a{
  color:rgba(255,255,255,.72);
  font-size:13px;
  line-height:1.7;
  text-decoration:none;
}

.home-footer h3{
  margin:0 0 14px;
  font-size:15px;
}

.home-footer-grid > div:not(:first-child){
  display:flex;
  flex-direction:column;
  gap:7px;
}

.home-footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
}

.home-footer-bottom .home-container{
  min-height:62px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:rgba(255,255,255,.62);
  font-size:12px;
}

@media(max-width:980px){
  .home-nav-links{
    position:absolute;
    top:76px;
    left:16px;
    right:16px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:18px;
    border:1px solid var(--home-line);
    border-radius:20px;
    background:#fff;
    box-shadow:0 20px 50px rgba(16,42,76,.17);
  }

  .home-nav-links.is-open{
    display:flex;
  }

  .home-menu-button{
    display:block;
  }

  .home-hero-grid,
  .home-coverage-grid{
    grid-template-columns:1fr;
  }

  .home-hero-copy{
    text-align:center;
  }

  .home-eyebrow,
  .home-hero-actions,
  .home-hero-trust{
    justify-content:center;
  }

  .home-hero-text{
    margin-inline:auto;
  }

  .home-hero-visual{
    min-height:390px;
  }

  .home-stats-panel{
    grid-template-columns:repeat(2,1fr);
    border-radius:24px 24px 0 0;
  }

  .home-stats-panel article:nth-child(2){
    border-right:0;
  }

  .home-steps{
    grid-template-columns:1fr;
  }

  .home-values-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .home-leadership-grid{
    grid-template-columns:150px 1fr;
  }

  .home-dedication-card{
    grid-column:1 / -1;
  }

  .home-footer-grid{
    grid-template-columns:1.4fr 1fr 1fr;
  }

  .home-footer-grid > div:last-child{
    grid-column:1 / -1;
  }
}

@media(max-width:640px){
  .home-container{
    width:min(100% - 24px,1180px);
  }

  .home-nav{
    min-height:68px;
    padding:9px 13px;
  }

  .home-brand img{
    width:44px;
    height:44px;
  }

  .home-brand strong{
    font-size:15px;
  }

  .home-hero{
    padding-top:46px;
  }

  .home-hero-grid{
    gap:18px;
    min-height:auto;
  }

  .home-hero h1{
    font-size:45px;
  }

  .home-hero-ar{
    font-size:25px;
  }

  .home-hero-text{
    font-size:16px;
  }

  .home-hero-actions{
    flex-direction:column;
  }

  .home-btn{
    width:100%;
  }

  .home-hero-visual{
    min-height:340px;
  }

  .home-flag-card{
    width:220px;
    height:132px;
  }

  .home-drop{
    width:190px;
    height:245px;
  }

  .home-drop img{
    width:110px;
    height:110px;
  }

  .home-hero-badge{
    right:0;
    bottom:25px;
  }

  .home-stats-panel{
    grid-template-columns:1fr;
    border-radius:20px 20px 0 0;
  }

  .home-stats-panel article{
    min-height:100px;
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.16);
  }

  .home-section{
    padding:62px 0;
  }

  .home-map-card{
    min-height:560px;
    padding:18px;
  }

  .home-map-title{
    flex-direction:column;
    align-items:flex-start;
  }

  .home-values-grid{
    grid-template-columns:1fr;
  }

  .home-leadership-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .home-leadership-logo{
    margin:auto;
  }

  .home-cta-grid{
    flex-direction:column;
    text-align:center;
  }

  .home-footer-grid{
    grid-template-columns:1fr;
  }

  .home-footer-grid > div:last-child{
    grid-column:auto;
  }

  .home-footer-bottom .home-container{
    flex-direction:column;
    justify-content:center;
    padding:18px 0;
    text-align:center;
  }
}


/* =========================================================
   HOMEPAGE V5 — BUSINESS / DESIGN / LEBANON
   ========================================================= */
.home-v5{
  --v5-navy:#102d52;
  --v5-navy-2:#183f6f;
  --v5-red:#d71932;
  --v5-red-dark:#aa1027;
  --v5-gold:#efc65b;
  --v5-text:#17233a;
  --v5-muted:#63758d;
  --v5-line:#dfe7ef;
  --v5-soft:#f5f9fc;
  margin:0;
  background:#fff;
  color:var(--v5-text);
  font-family:Inter,Arial,"Segoe UI",Tahoma,sans-serif;
}

.home-v5 *{
  box-sizing:border-box;
}

.v5-shell{
  width:min(1180px,calc(100% - 40px));
  margin-inline:auto;
}

.v5-nav{
  position:sticky;
  top:0;
  z-index:1200;
  min-height:76px;
  display:flex;
  align-items:center;
  gap:26px;
  padding:12px max(24px,calc((100% - 1180px)/2));
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(16,45,82,.08);
  box-shadow:0 10px 30px rgba(16,45,82,.06);
  backdrop-filter:blur(14px);
}

.v5-brand{
  display:flex;
  align-items:center;
  gap:11px;
  color:var(--v5-navy);
  text-decoration:none;
}

.v5-brand img{
  width:50px;
  height:50px;
  object-fit:contain;
  border-radius:14px;
  background:#fff;
}

.v5-brand span{
  display:flex;
  flex-direction:column;
}

.v5-brand strong{
  font-size:18px;
  font-weight:1000;
}

.v5-brand small{
  margin-top:3px;
  color:var(--v5-red);
  font-size:15px;
  font-weight:950;
}

.v5-nav-links{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:22px;
}

.v5-nav-links a{
  color:var(--v5-navy);
  font-size:14px;
  font-weight:850;
  text-decoration:none;
}

.v5-nav-links a:hover{
  color:var(--v5-red);
}

.v5-nav-cta{
  padding:13px 18px;
  border-radius:999px;
  background:var(--v5-red);
  color:#fff !important;
  box-shadow:0 12px 26px rgba(215,25,50,.22);
}

.v5-menu{
  display:none;
  margin-left:auto;
  border:0;
  background:transparent;
  color:var(--v5-navy);
  font-size:28px;
}

.v5-hero{
  position:relative;
  overflow:hidden;
  padding:72px 0 0;
  background:
    linear-gradient(110deg,rgba(255,255,255,.97) 0%,rgba(244,250,255,.9) 48%,rgba(220,238,251,.72) 100%);
}

.v5-hero-sky{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 78% 16%,rgba(255,255,255,.95),transparent 31%),
    radial-gradient(circle at 18% 12%,rgba(255,246,238,.75),transparent 28%);
}

.v5-mountain{
  position:absolute;
  bottom:0;
  width:58%;
  height:45%;
  background:linear-gradient(145deg,rgba(16,45,82,.16),rgba(16,45,82,.03));
  clip-path:polygon(0 100%,18% 58%,32% 76%,46% 32%,60% 67%,74% 18%,88% 58%,100% 100%);
}

.v5-mountain-one{
  right:-4%;
  opacity:.85;
}

.v5-mountain-two{
  right:20%;
  bottom:-6%;
  opacity:.35;
  transform:scale(.9);
}

.v5-hero-grid{
  position:relative;
  z-index:3;
  min-height:520px;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:50px;
  align-items:center;
}

.v5-eyebrow{
  display:flex;
  align-items:center;
  gap:11px;
  margin-bottom:19px;
  color:var(--v5-red-dark);
  font-size:13px;
  font-weight:950;
  letter-spacing:.11em;
  text-transform:uppercase;
}

.v5-flag-small{
  width:34px;
  height:28px;
  display:grid;
  grid-template-rows:8px 12px 8px;
  overflow:hidden;
  border-radius:4px;
  box-shadow:0 3px 9px rgba(0,0,0,.12);
}

.v5-flag-small i{
  background:var(--v5-red);
}

.v5-flag-small b{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  font-size:9px;
}

.v5-hero h1{
  max-width:690px;
  margin:0;
  color:var(--v5-navy);
  font-size:clamp(48px,6.3vw,79px);
  line-height:.98;
  letter-spacing:-.055em;
  font-weight:1000;
}

.v5-hero h1 span{
  display:block;
  color:var(--v5-red);
}

.v5-hero-ar{
  margin:24px 0 0;
  color:var(--v5-navy);
  font-size:clamp(24px,3vw,36px);
  font-weight:1000;
}

.v5-hero-description{
  max-width:650px;
  margin:19px 0 0;
  color:#40536d;
  font-size:18px;
  line-height:1.75;
}

.v5-actions{
  display:flex;
  flex-wrap:wrap;
  gap:13px;
  margin-top:29px;
}

.v5-btn{
  min-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:14px 22px;
  border:1px solid transparent;
  border-radius:999px;
  font-size:15px;
  font-weight:950;
  text-decoration:none;
  transition:.2s ease;
}

.v5-btn:hover{
  transform:translateY(-2px);
}

.v5-btn-primary{
  background:var(--v5-red);
  color:#fff;
  box-shadow:0 14px 31px rgba(215,25,50,.25);
}

.v5-btn-secondary,
.v5-btn-light{
  background:#fff;
  color:var(--v5-navy);
  border-color:#d9e3ec;
  box-shadow:0 12px 28px rgba(16,45,82,.11);
}

.v5-trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:17px;
  margin-top:23px;
  color:#53657c;
  font-size:13px;
  font-weight:850;
}

.v5-hero-visual{
  position:relative;
  min-height:450px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.v5-lebanon-flag{
  position:absolute;
  top:28px;
  right:0;
  width:300px;
  height:180px;
  overflow:hidden;
  border-radius:22px;
  transform:rotate(4deg);
  box-shadow:0 30px 75px rgba(16,45,82,.22);
}

.v5-lebanon-flag > div:first-child,
.v5-lebanon-flag > div:last-child{
  height:25%;
  background:var(--v5-red);
}

.v5-lebanon-flag > div:nth-child(2){
  height:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  font-size:66px;
}

.v5-drop-card{
  position:relative;
  z-index:3;
  width:255px;
  height:325px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:58px;
  border-radius:54% 54% 60% 60% / 68% 68% 38% 38%;
  transform:rotate(45deg);
  background:linear-gradient(145deg,#ff344d,#aa0b22);
  box-shadow:
    inset 17px 20px 28px rgba(255,255,255,.22),
    0 35px 85px rgba(169,10,35,.3);
}

.v5-drop-shine{
  position:absolute;
  top:25px;
  right:40px;
  width:48px;
  height:114px;
  border-radius:50%;
  background:rgba(255,255,255,.27);
}

.v5-drop-card img{
  width:142px;
  height:142px;
  object-fit:contain;
  padding:13px;
  border-radius:28px;
  transform:rotate(-45deg);
  background:#fff;
  box-shadow:0 19px 42px rgba(0,0,0,.2);
}

.v5-all-lebanon{
  position:absolute;
  z-index:4;
  right:4px;
  bottom:54px;
  display:flex;
  flex-direction:column;
  padding:15px 19px;
  border-radius:17px;
  background:rgba(16,45,82,.95);
  color:#fff;
  box-shadow:0 18px 45px rgba(16,45,82,.24);
}

.v5-all-lebanon strong{
  font-size:17px;
}

.v5-all-lebanon span{
  margin-top:3px;
  font-size:14px;
}

.v5-stats{
  position:relative;
  z-index:10;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  overflow:hidden;
  border-radius:25px 25px 0 0;
  background:linear-gradient(110deg,var(--v5-navy),var(--v5-navy-2));
  color:#fff;
  box-shadow:0 -4px 34px rgba(16,45,82,.15);
}

.v5-stats article{
  min-height:124px;
  display:flex;
  align-items:center;
  gap:14px;
  padding:23px 24px;
  border-right:1px solid rgba(255,255,255,.15);
}

.v5-stats article:last-child{
  border-right:0;
}

.v5-stats article > span{
  width:54px;
  height:54px;
  flex:0 0 54px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#fff;
  color:var(--v5-red);
  font-size:25px;
}

.v5-stats strong{
  display:block;
  font-size:26px;
  font-weight:1000;
}

.v5-stats small,
.v5-stats em{
  display:block;
  margin-top:3px;
  font-size:12px;
  font-style:normal;
  opacity:.84;
}

.v5-section{
  padding:84px 0;
}

.v5-heading{
  max-width:750px;
  margin:0 auto 44px;
  text-align:center;
}

.v5-heading > span,
.v5-kicker{
  display:block;
  margin-bottom:10px;
  color:var(--v5-red);
  font-size:13px;
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.v5-heading h2,
.v5-coverage-copy h2{
  margin:0;
  color:var(--v5-navy);
  font-size:clamp(34px,4.6vw,53px);
  line-height:1.05;
  font-weight:1000;
}

.v5-heading p{
  margin:14px auto 0;
  color:var(--v5-muted);
  font-size:17px;
  line-height:1.7;
}

.v5-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.v5-steps article{
  position:relative;
  padding:34px 27px;
  border:1px solid var(--v5-line);
  border-radius:24px;
  background:#fff;
  text-align:center;
  box-shadow:0 20px 55px rgba(16,45,82,.08);
}

.v5-steps article > b{
  position:absolute;
  top:17px;
  left:17px;
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--v5-red);
  color:#fff;
}

.v5-steps article > div{
  width:82px;
  height:82px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
  border-radius:50%;
  background:#f7fafc;
  font-size:36px;
  box-shadow:0 12px 31px rgba(16,45,82,.1);
}

.v5-steps h3{
  margin:0 0 9px;
  color:var(--v5-navy);
  font-size:24px;
}

.v5-steps p{
  margin:6px 0;
  color:var(--v5-muted);
  line-height:1.6;
}

.v5-coverage{
  overflow:hidden;
  background:
    radial-gradient(circle at 85% 17%,rgba(255,255,255,.72),transparent 30%),
    linear-gradient(130deg,#edf7ff,#dceefa);
}

.v5-coverage-grid{
  display:grid;
  grid-template-columns:.84fr 1.16fr;
  gap:55px;
  align-items:center;
}

.v5-coverage-copy h2 span{
  color:var(--v5-red);
}

.v5-coverage-copy > p{
  color:#40536d;
  font-size:17px;
  line-height:1.78;
}

.v5-region-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin:25px 0;
}

.v5-region-buttons a{
  padding:9px 13px;
  border:1px solid #cbdbe8;
  border-radius:999px;
  background:rgba(255,255,255,.75);
  color:var(--v5-navy);
  font-size:13px;
  font-weight:850;
  text-decoration:none;
}

.v5-map-panel{
  padding:25px;
  border:1px solid rgba(255,255,255,.86);
  border-radius:30px;
  background:rgba(255,255,255,.74);
  box-shadow:0 30px 80px rgba(16,45,82,.14);
  backdrop-filter:blur(10px);
}

.v5-map-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  padding-bottom:17px;
  border-bottom:1px solid rgba(16,45,82,.1);
}

.v5-map-head > div:first-child{
  display:flex;
  flex-direction:column;
}

.v5-map-head strong{
  color:var(--v5-navy);
  font-size:20px;
}

.v5-map-head span{
  margin-top:4px;
  color:var(--v5-red);
  font-size:13px;
  font-weight:850;
}

.v5-map-total{
  width:74px;
  height:74px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border-radius:20px;
  background:var(--v5-navy);
  color:#fff;
}

.v5-map-total strong{
  color:#fff;
  font-size:25px;
}

.v5-map-total span{
  color:rgba(255,255,255,.72);
  font-size:10px;
}

.v5-map-layout{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:24px;
  align-items:center;
  padding-top:18px;
}

.v5-lebanon-map{
  width:100%;
  max-height:560px;
}

.v5-map-pin circle{
  fill:var(--v5-red);
  stroke:#fff;
  stroke-width:5;
}

.v5-map-pin text{
  fill:#fff;
  text-anchor:middle;
  font-size:15px;
  font-weight:1000;
}

.v5-region-list{
  display:grid;
  gap:9px;
}

.v5-region-list a{
  display:flex;
  align-items:center;
  gap:11px;
  min-height:55px;
  padding:9px 12px;
  border:1px solid var(--v5-line);
  border-radius:15px;
  background:#fff;
  color:var(--v5-navy);
  text-decoration:none;
  box-shadow:0 8px 21px rgba(16,45,82,.06);
}

.v5-region-list a:hover{
  transform:translateX(3px);
  border-color:#efb7c1;
}

.v5-region-list i{
  width:30px;
  height:30px;
  flex:0 0 30px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--v5-red);
  color:#fff;
  font-style:normal;
  font-weight:950;
}

.v5-region-list span{
  display:flex;
  flex-direction:column;
  font-size:13px;
  font-weight:900;
}

.v5-region-list small{
  margin-top:2px;
  color:var(--v5-muted);
  font-size:11px;
}

.v5-value-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:15px;
}

.v5-value-grid article{
  padding:27px 18px;
  border:1px solid var(--v5-line);
  border-radius:20px;
  background:#fff;
  text-align:center;
}

.v5-value-grid span{
  display:block;
  margin-bottom:12px;
  color:var(--v5-red);
  font-size:33px;
}

.v5-value-grid h3{
  margin:0 0 8px;
  color:var(--v5-navy);
}

.v5-value-grid p{
  margin:0;
  color:var(--v5-muted);
  font-size:13px;
  line-height:1.55;
}

.v5-leadership{
  padding:58px 0;
  background:#f8fafc;
}

.v5-leadership-grid{
  display:grid;
  grid-template-columns:165px 1fr 1fr;
  gap:34px;
  align-items:center;
}

.v5-leadership-logo{
  width:150px;
  height:150px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:32px;
  background:#fff;
  box-shadow:0 18px 45px rgba(16,45,82,.12);
}

.v5-leadership-logo img{
  width:118px;
  height:118px;
  object-fit:contain;
}

.v5-leadership-copy > span{
  color:var(--v5-red);
  font-weight:900;
}

.v5-leadership-copy h2{
  margin:8px 0 5px;
  color:var(--v5-navy);
  font-size:32px;
}

.v5-leadership-copy h3{
  margin:0;
  color:#56677d;
  font-size:16px;
}

.v5-leadership-copy p{
  color:#526278;
  line-height:1.7;
}

.v5-dedication{
  padding:27px;
  border-radius:24px;
  background:linear-gradient(135deg,var(--v5-red),var(--v5-red-dark));
  color:#fff;
  box-shadow:0 20px 50px rgba(215,25,50,.2);
}

.v5-dedication span{
  display:block;
  opacity:.8;
}

.v5-dedication strong{
  display:block;
  margin:7px 0 11px;
  font-size:21px;
}

.v5-dedication p{
  margin:0;
  line-height:1.65;
}

.v5-cta{
  padding:42px 0;
  background:linear-gradient(100deg,#aa0e28,#df1c38);
  color:#fff;
}

.v5-cta-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}

.v5-cta span{
  font-size:18px;
  font-weight:900;
}

.v5-cta h2{
  margin:7px 0 0;
  font-size:34px;
}

.v5-supporters{
  background:#fff;
}

.v5-supporters-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.home-supporter-card{
  min-height:155px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:18px;
  border:1px solid var(--v5-line);
  border-radius:20px;
  background:#fff;
  color:var(--v5-navy);
  text-decoration:none;
  box-shadow:0 12px 34px rgba(16,45,82,.07);
  transition:.2s ease;
}

.home-supporter-card:hover{
  transform:translateY(-4px);
  border-color:#efb8c1;
  box-shadow:0 18px 42px rgba(16,45,82,.12);
}

.home-supporter-card img{
  max-width:100%;
  width:auto;
  height:82px;
  object-fit:contain;
}

.home-supporter-name{
  text-align:center;
  font-size:13px;
  font-weight:900;
}

.home-supporter-fallback{
  width:68px;
  height:68px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:20px;
  background:linear-gradient(135deg,#f9d9de,#fff);
  color:var(--v5-red);
  font-size:28px;
  font-weight:1000;
}

.home-supporters-loading,
.home-supporters-empty{
  grid-column:1 / -1;
  min-height:140px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:25px;
  border:1px dashed #ccd8e3;
  border-radius:20px;
  background:#f8fafc;
  color:var(--v5-muted);
  text-align:center;
}

.v5-footer{
  background:var(--v5-navy);
  color:#fff;
}

.v5-footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.1fr;
  gap:32px;
  padding:54px 0;
}

.v5-footer-brand{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.v5-footer-brand img{
  width:56px;
  height:56px;
  object-fit:contain;
  padding:4px;
  border-radius:14px;
  background:#fff;
}

.v5-footer-brand strong{
  margin-top:10px;
  font-size:18px;
}

.v5-footer-brand span{
  margin-top:3px;
  color:#ff8191;
  font-weight:900;
}

.v5-footer p,
.v5-footer a{
  color:rgba(255,255,255,.72);
  font-size:13px;
  line-height:1.7;
  text-decoration:none;
}

.v5-footer h3{
  margin:0 0 14px;
  font-size:15px;
}

.v5-footer-grid > div:not(:first-child){
  display:flex;
  flex-direction:column;
  gap:7px;
}

.v5-footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
}

.v5-footer-bottom .v5-shell{
  min-height:60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:rgba(255,255,255,.62);
  font-size:12px;
}

@media(max-width:980px){
  .v5-nav-links{
    position:absolute;
    top:76px;
    left:16px;
    right:16px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:18px;
    border:1px solid var(--v5-line);
    border-radius:20px;
    background:#fff;
    box-shadow:0 20px 50px rgba(16,45,82,.17);
  }

  .v5-nav-links.is-open{
    display:flex;
  }

  .v5-menu{
    display:block;
  }

  .v5-hero-grid,
  .v5-coverage-grid{
    grid-template-columns:1fr;
  }

  .v5-hero-copy{
    text-align:center;
  }

  .v5-eyebrow,
  .v5-actions,
  .v5-trust-row{
    justify-content:center;
  }

  .v5-hero-description{
    margin-inline:auto;
  }

  .v5-stats{
    grid-template-columns:repeat(2,1fr);
  }

  .v5-stats article:nth-child(2){
    border-right:0;
  }

  .v5-steps{
    grid-template-columns:1fr;
  }

  .v5-value-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .v5-leadership-grid{
    grid-template-columns:150px 1fr;
  }

  .v5-dedication{
    grid-column:1 / -1;
  }

  .v5-supporters-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .v5-footer-grid{
    grid-template-columns:1.4fr 1fr 1fr;
  }

  .v5-footer-grid > div:last-child{
    grid-column:1 / -1;
  }
}

@media(max-width:680px){
  .v5-shell{
    width:min(100% - 24px,1180px);
  }

  .v5-nav{
    min-height:68px;
    padding:9px 13px;
  }

  .v5-brand img{
    width:44px;
    height:44px;
  }

  .v5-brand strong{
    font-size:15px;
  }

  .v5-hero{
    padding-top:45px;
  }

  .v5-hero h1{
    font-size:44px;
  }

  .v5-hero-ar{
    font-size:25px;
  }

  .v5-actions{
    flex-direction:column;
  }

  .v5-btn{
    width:100%;
  }

  .v5-hero-visual{
    min-height:350px;
  }

  .v5-lebanon-flag{
    width:220px;
    height:132px;
  }

  .v5-drop-card{
    width:190px;
    height:244px;
  }

  .v5-drop-card img{
    width:108px;
    height:108px;
  }

  .v5-all-lebanon{
    right:0;
    bottom:26px;
  }

  .v5-stats{
    grid-template-columns:1fr;
  }

  .v5-stats article{
    min-height:98px;
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.15);
  }

  .v5-section{
    padding:60px 0;
  }

  .v5-map-layout{
    grid-template-columns:1fr;
  }

  .v5-lebanon-map{
    max-height:500px;
  }

  .v5-region-list{
    grid-template-columns:1fr 1fr;
  }

  .v5-region-list a{
    min-height:70px;
  }

  .v5-value-grid{
    grid-template-columns:1fr;
  }

  .v5-leadership-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .v5-leadership-logo{
    margin:auto;
  }

  .v5-cta-grid{
    flex-direction:column;
    text-align:center;
  }

  .v5-supporters-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .v5-footer-grid{
    grid-template-columns:1fr;
  }

  .v5-footer-grid > div:last-child{
    grid-column:auto;
  }

  .v5-footer-bottom .v5-shell{
    flex-direction:column;
    justify-content:center;
    padding:17px 0;
    text-align:center;
  }
}


/* =========================================================
   HOMEPAGE V6 — REAL MAP + FIREBASE SUPPORTERS NEWSBAR
   ========================================================= */
.home-v6{
  --v6-navy:#102d52;
  --v6-navy2:#193f6d;
  --v6-red:#d71932;
  --v6-red2:#a90e26;
  --v6-text:#17243a;
  --v6-muted:#63758c;
  --v6-line:#dfe7ef;
  margin:0;
  color:var(--v6-text);
  background:#fff;
  font-family:Inter,Arial,"Segoe UI",Tahoma,sans-serif;
}

.home-v6 *{box-sizing:border-box}

.v6-shell{
  width:min(1180px,calc(100% - 40px));
  margin-inline:auto;
}

.v6-nav{
  position:sticky;
  top:0;
  z-index:1200;
  min-height:76px;
  display:flex;
  align-items:center;
  gap:25px;
  padding:12px max(24px,calc((100% - 1180px)/2));
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(16,45,82,.08);
  box-shadow:0 10px 30px rgba(16,45,82,.06);
  backdrop-filter:blur(14px);
}

.v6-brand{
  display:flex;
  align-items:center;
  gap:11px;
  color:var(--v6-navy);
  text-decoration:none;
}

.v6-brand img{
  width:50px;
  height:50px;
  object-fit:contain;
  border-radius:14px;
}

.v6-brand span{display:flex;flex-direction:column}
.v6-brand strong{font-size:18px;font-weight:1000}
.v6-brand small{margin-top:3px;color:var(--v6-red);font-size:15px;font-weight:950}

.v6-nav-links{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:22px;
}

.v6-nav-links a{
  color:var(--v6-navy);
  font-size:14px;
  font-weight:850;
  text-decoration:none;
}

.v6-nav-links a:hover{color:var(--v6-red)}

.v6-nav-cta{
  padding:13px 18px;
  border-radius:999px;
  background:var(--v6-red);
  color:#fff!important;
  box-shadow:0 12px 26px rgba(215,25,50,.22);
}

.v6-menu{
  display:none;
  margin-left:auto;
  border:0;
  background:transparent;
  color:var(--v6-navy);
  font-size:28px;
}

.v6-hero{
  position:relative;
  overflow:hidden;
  padding:72px 0 0;
  background:linear-gradient(110deg,#fff 0%,#edf7ff 55%,#dceefb 100%);
}

.v6-hero-light{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 77% 16%,rgba(255,255,255,.96),transparent 30%),
    radial-gradient(circle at 16% 10%,rgba(255,244,237,.72),transparent 27%);
}

.v6-mountains{
  position:absolute;
  right:-2%;
  bottom:0;
  width:68%;
  height:49%;
  opacity:.22;
  background:linear-gradient(145deg,var(--v6-navy),transparent);
  clip-path:polygon(0 100%,15% 58%,29% 76%,43% 31%,58% 68%,73% 17%,88% 59%,100% 100%);
}

.v6-hero-grid{
  position:relative;
  z-index:2;
  min-height:520px;
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:48px;
  align-items:center;
}

.v6-eyebrow{
  display:flex;
  align-items:center;
  gap:11px;
  margin-bottom:19px;
  color:var(--v6-red2);
  font-size:13px;
  font-weight:950;
  letter-spacing:.11em;
  text-transform:uppercase;
}

.v6-mini-flag{
  width:34px;
  height:28px;
  display:grid;
  grid-template-rows:8px 12px 8px;
  overflow:hidden;
  border-radius:4px;
  box-shadow:0 3px 9px rgba(0,0,0,.12);
}

.v6-mini-flag i{background:var(--v6-red)}
.v6-mini-flag b{display:flex;align-items:center;justify-content:center;background:#fff;font-size:9px}

.v6-hero h1{
  margin:0;
  max-width:690px;
  color:var(--v6-navy);
  font-size:clamp(48px,6.3vw,79px);
  line-height:.98;
  letter-spacing:-.055em;
  font-weight:1000;
}

.v6-hero h1 span{display:block;color:var(--v6-red)}

.v6-hero-ar{
  margin:24px 0 0;
  color:var(--v6-navy);
  font-size:clamp(24px,3vw,36px);
  font-weight:1000;
}

.v6-hero-description{
  max-width:650px;
  margin:19px 0 0;
  color:#40536d;
  font-size:18px;
  line-height:1.75;
}

.v6-actions{display:flex;flex-wrap:wrap;gap:13px;margin-top:29px}

.v6-btn{
  min-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:14px 22px;
  border:1px solid transparent;
  border-radius:999px;
  font-size:15px;
  font-weight:950;
  text-decoration:none;
  transition:.2s ease;
}

.v6-btn:hover{transform:translateY(-2px)}
.v6-btn-primary{background:var(--v6-red);color:#fff;box-shadow:0 14px 31px rgba(215,25,50,.25)}
.v6-btn-white{background:#fff;color:var(--v6-navy);border-color:#d9e3ec;box-shadow:0 12px 28px rgba(16,45,82,.11)}

.v6-trust{display:flex;flex-wrap:wrap;gap:17px;margin-top:23px;color:#53657c;font-size:13px;font-weight:850}

.v6-hero-visual{position:relative;min-height:450px;display:flex;align-items:center;justify-content:center}

.v6-large-flag{
  position:absolute;
  top:27px;
  right:0;
  width:300px;
  height:180px;
  overflow:hidden;
  border-radius:22px;
  transform:rotate(4deg);
  box-shadow:0 30px 75px rgba(16,45,82,.22);
}

.v6-large-flag>div:first-child,.v6-large-flag>div:last-child{height:25%;background:var(--v6-red)}
.v6-large-flag>div:nth-child(2){height:50%;display:flex;align-items:center;justify-content:center;background:#fff;font-size:66px}

.v6-blood-drop{
  position:relative;
  z-index:3;
  width:255px;
  height:325px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:58px;
  border-radius:54% 54% 60% 60%/68% 68% 38% 38%;
  transform:rotate(45deg);
  background:linear-gradient(145deg,#ff344d,#aa0b22);
  box-shadow:inset 17px 20px 28px rgba(255,255,255,.22),0 35px 85px rgba(169,10,35,.3);
}

.v6-drop-shine{
  position:absolute;
  top:25px;
  right:40px;
  width:48px;
  height:114px;
  border-radius:50%;
  background:rgba(255,255,255,.27);
}

.v6-blood-drop img{
  width:142px;
  height:142px;
  object-fit:contain;
  padding:13px;
  border-radius:28px;
  transform:rotate(-45deg);
  background:#fff;
  box-shadow:0 19px 42px rgba(0,0,0,.2);
}

.v6-lebanon-badge{
  position:absolute;
  z-index:4;
  right:4px;
  bottom:54px;
  display:flex;
  flex-direction:column;
  padding:15px 19px;
  border-radius:17px;
  background:rgba(16,45,82,.95);
  color:#fff;
  box-shadow:0 18px 45px rgba(16,45,82,.24);
}

.v6-lebanon-badge strong{font-size:17px}
.v6-lebanon-badge span{margin-top:3px;font-size:14px}

.v6-stats{
  position:relative;
  z-index:10;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  overflow:hidden;
  border-radius:25px 25px 0 0;
  background:linear-gradient(110deg,var(--v6-navy),var(--v6-navy2));
  color:#fff;
  box-shadow:0 -4px 34px rgba(16,45,82,.15);
}

.v6-stats article{
  min-height:124px;
  display:flex;
  align-items:center;
  gap:14px;
  padding:23px 24px;
  border-right:1px solid rgba(255,255,255,.15);
}

.v6-stats article:last-child{border-right:0}

.v6-stats article>span{
  width:54px;
  height:54px;
  flex:0 0 54px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#fff;
  color:var(--v6-red);
  font-size:25px;
}

.v6-stats strong{display:block;font-size:26px;font-weight:1000}
.v6-stats small,.v6-stats em{display:block;margin-top:3px;font-size:12px;font-style:normal;opacity:.84}

.v6-section{padding:84px 0}

.v6-heading{
  max-width:750px;
  margin:0 auto 44px;
  text-align:center;
}

.v6-heading>span,.v6-kicker{
  display:block;
  margin-bottom:10px;
  color:var(--v6-red);
  font-size:13px;
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.v6-heading h2,.v6-coverage-copy h2{
  margin:0;
  color:var(--v6-navy);
  font-size:clamp(34px,4.6vw,53px);
  line-height:1.05;
  font-weight:1000;
}

.v6-heading p{margin:14px auto 0;color:var(--v6-muted);font-size:17px;line-height:1.7}

.v6-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.v6-steps article{position:relative;padding:34px 27px;border:1px solid var(--v6-line);border-radius:24px;background:#fff;text-align:center;box-shadow:0 20px 55px rgba(16,45,82,.08)}
.v6-steps article>b{position:absolute;top:17px;left:17px;width:34px;height:34px;display:flex;align-items:center;justify-content:center;border-radius:50%;background:var(--v6-red);color:#fff}
.v6-steps article>div{width:82px;height:82px;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;border-radius:50%;background:#f7fafc;font-size:36px;box-shadow:0 12px 31px rgba(16,45,82,.1)}
.v6-steps h3{margin:0 0 9px;color:var(--v6-navy);font-size:24px}
.v6-steps p{margin:6px 0;color:var(--v6-muted);line-height:1.6}

.v6-coverage{
  overflow:hidden;
  background:radial-gradient(circle at 86% 17%,rgba(255,255,255,.74),transparent 30%),linear-gradient(130deg,#edf7ff,#dceefa);
}

.v6-coverage-grid{display:grid;grid-template-columns:.82fr 1.18fr;gap:55px;align-items:center}
.v6-coverage-copy h2 span{color:var(--v6-red)}
.v6-coverage-copy>p{color:#40536d;font-size:17px;line-height:1.78}

.v6-region-buttons{display:flex;flex-wrap:wrap;gap:9px;margin:25px 0}
.v6-region-buttons a{padding:9px 13px;border:1px solid #cbdbe8;border-radius:999px;background:rgba(255,255,255,.78);color:var(--v6-navy);font-size:13px;font-weight:850;text-decoration:none}

.v6-map-card{
  padding:25px;
  border:1px solid rgba(255,255,255,.9);
  border-radius:31px;
  background:rgba(255,255,255,.84);
  box-shadow:0 30px 85px rgba(16,45,82,.16);
  backdrop-filter:blur(12px);
}

.v6-map-card-head{display:flex;align-items:center;justify-content:space-between;gap:16px;padding-bottom:18px;border-bottom:1px solid rgba(16,45,82,.1)}
.v6-map-card-head>div:first-child{display:flex;flex-direction:column}
.v6-map-card-head strong{color:var(--v6-navy);font-size:22px}
.v6-map-card-head span{margin-top:4px;color:var(--v6-red);font-size:14px;font-weight:850}

.v6-map-count{
  width:82px;
  height:80px;
  flex:0 0 82px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border-radius:21px;
  background:linear-gradient(145deg,var(--v6-navy),var(--v6-navy2));
  color:#fff;
}

.v6-map-count strong{color:#fff;font-size:28px;line-height:1}
.v6-map-count span{color:rgba(255,255,255,.75);font-size:10px}

.v6-map-stage{
  position:relative;
  width:min(100%,600px);
  min-height:610px;
  margin:20px auto 10px;
  overflow:hidden;
  border:1px solid rgba(16,45,82,.08);
  border-radius:27px;
  background:radial-gradient(circle at 50% 45%,rgba(215,25,50,.08),transparent 42%),linear-gradient(160deg,#fbfdff,#edf5fb);
}

.v6-lebanon-map-image{
  position:absolute;
  left:50%;
  top:50%;
  width:54%;
  max-height:86%;
  object-fit:contain;
  transform:translate(-50%,-50%);
  filter:drop-shadow(0 21px 25px rgba(16,45,82,.18));
}

.v6-map-pin{
  position:absolute;
  z-index:4;
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--v6-navy);
  text-decoration:none;
  transition:.2s ease;
}

.v6-map-pin:hover{transform:scale(1.06)}

.v6-map-pin i{
  width:31px;
  height:31px;
  flex:0 0 31px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:4px solid #fff;
  border-radius:50% 50% 50% 0;
  transform:rotate(-45deg);
  background:var(--v6-red);
  color:#fff;
  font-style:normal;
  font-size:12px;
  font-weight:1000;
  box-shadow:0 7px 17px rgba(215,25,50,.3);
}

.v6-map-pin i::first-letter{transform:rotate(45deg)}

.v6-map-pin span{
  display:flex;
  flex-direction:column;
  padding:7px 10px;
  border:1px solid rgba(16,45,82,.09);
  border-radius:12px;
  background:rgba(255,255,255,.94);
  font-size:12px;
  font-weight:950;
  box-shadow:0 8px 20px rgba(16,45,82,.08);
}

.v6-map-pin small{margin-top:1px;color:var(--v6-muted);font-size:10px}

.pin-aakkar{top:9%;left:56%}
.pin-north{top:20%;left:23%}
.pin-beirut{top:39%;left:8%}
.pin-mount{top:47%;left:53%}
.pin-bekaa{top:40%;right:3%}
.pin-baalbek{top:25%;right:1%}
.pin-nabatieh{bottom:20%;left:17%}
.pin-south{bottom:7%;left:49%}

.v6-map-bottom{
  display:flex;
  align-items:center;
  gap:12px;
  padding:15px 17px;
  border-radius:17px;
  background:var(--v6-navy);
  color:#fff;
}

.v6-map-bottom>span{font-size:25px}
.v6-map-bottom>div{display:flex;flex-direction:column}
.v6-map-bottom small{margin-top:4px;opacity:.78}

.v6-value-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:15px}
.v6-value-grid article{padding:27px 18px;border:1px solid var(--v6-line);border-radius:20px;background:#fff;text-align:center}
.v6-value-grid span{display:block;margin-bottom:12px;color:var(--v6-red);font-size:33px}
.v6-value-grid h3{margin:0 0 8px;color:var(--v6-navy)}
.v6-value-grid p{margin:0;color:var(--v6-muted);font-size:13px;line-height:1.55}

.v6-leadership{padding:58px 0;background:#f8fafc}
.v6-leadership-grid{display:grid;grid-template-columns:165px 1fr 1fr;gap:34px;align-items:center}
.v6-leadership-logo{width:150px;height:150px;display:flex;align-items:center;justify-content:center;border-radius:32px;background:#fff;box-shadow:0 18px 45px rgba(16,45,82,.12)}
.v6-leadership-logo img{width:118px;height:118px;object-fit:contain}
.v6-leadership-copy>span{color:var(--v6-red);font-weight:900}
.v6-leadership-copy h2{margin:8px 0 5px;color:var(--v6-navy);font-size:32px}
.v6-leadership-copy h3{margin:0;color:#56677d;font-size:16px}
.v6-leadership-copy p{color:#526278;line-height:1.7}
.v6-dedication{padding:27px;border-radius:24px;background:linear-gradient(135deg,var(--v6-red),var(--v6-red2));color:#fff;box-shadow:0 20px 50px rgba(215,25,50,.2)}
.v6-dedication span{display:block;opacity:.8}
.v6-dedication strong{display:block;margin:7px 0 11px;font-size:21px}
.v6-dedication p{margin:0;line-height:1.65}

.v6-cta{padding:42px 0;background:linear-gradient(100deg,#aa0e28,#df1c38);color:#fff}
.v6-cta-grid{display:flex;align-items:center;justify-content:space-between;gap:25px}
.v6-cta span{font-size:18px;font-weight:900}
.v6-cta h2{margin:7px 0 0;font-size:34px}

.v6-supporters{background:#fff}

.v6-newsbar{
  display:grid;
  grid-template-columns:190px 1fr;
  min-height:152px;
  overflow:hidden;
  border:1px solid var(--v6-line);
  border-radius:24px;
  background:#fff;
  box-shadow:0 18px 50px rgba(16,45,82,.1);
}

.v6-newsbar-label{
  position:relative;
  z-index:4;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:11px;
  padding:22px;
  background:linear-gradient(145deg,var(--v6-navy),var(--v6-navy2));
  color:#fff;
  box-shadow:14px 0 30px rgba(16,45,82,.14);
}

.v6-newsbar-label>span{font-size:30px}
.v6-newsbar-label>div{display:flex;flex-direction:column}
.v6-newsbar-label strong{font-size:18px}
.v6-newsbar-label small{margin-top:3px;opacity:.78}

.v6-newsbar-window{
  position:relative;
  overflow:hidden;
}

.v6-newsbar-window::before,.v6-newsbar-window::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  z-index:3;
  width:70px;
  pointer-events:none;
}

.v6-newsbar-window::before{left:0;background:linear-gradient(90deg,#fff,transparent)}
.v6-newsbar-window::after{right:0;background:linear-gradient(270deg,#fff,transparent)}

.v6-supporters-track{
  min-height:152px;
  display:flex;
  align-items:center;
  gap:18px;
  width:max-content;
  padding:18px;
}

.v6-supporters-track.is-moving{
  animation:v6SupportersMarquee 30s linear infinite;
}

.v6-newsbar-window:hover .v6-supporters-track,
.v6-newsbar-window:focus-within .v6-supporters-track{
  animation-play-state:paused;
}

@keyframes v6SupportersMarquee{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

.v6-supporters-track.is-centered{
  width:100%;
  justify-content:center;
}

.v6-supporter-card{
  width:180px;
  min-height:112px;
  flex:0 0 180px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:13px;
  border:1px solid var(--v6-line);
  border-radius:17px;
  background:#fff;
  color:var(--v6-navy);
  text-decoration:none;
  box-shadow:0 9px 24px rgba(16,45,82,.07);
}

.v6-supporter-image{
  width:145px;
  height:68px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.v6-supporter-image img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

.v6-supporter-name{
  max-width:160px;
  overflow:hidden;
  color:var(--v6-navy);
  font-size:12px;
  font-weight:900;
  text-align:center;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.v6-supporter-fallback{
  width:60px;
  height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:#fff0f2;
  color:var(--v6-red);
  font-size:26px;
  font-weight:1000;
}

.v6-supporters-loading,.v6-supporters-empty{
  width:min(560px,100%);
  min-height:110px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:7px;
  color:var(--v6-muted);
  text-align:center;
}

.v6-footer{background:var(--v6-navy);color:#fff}
.v6-footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.1fr;gap:32px;padding:54px 0}
.v6-footer-brand{display:flex;flex-direction:column;align-items:flex-start}
.v6-footer-brand img{width:56px;height:56px;object-fit:contain;padding:4px;border-radius:14px;background:#fff}
.v6-footer-brand strong{margin-top:10px;font-size:18px}
.v6-footer-brand span{margin-top:3px;color:#ff8191;font-weight:900}
.v6-footer p,.v6-footer a{color:rgba(255,255,255,.72);font-size:13px;line-height:1.7;text-decoration:none}
.v6-footer h3{margin:0 0 14px;font-size:15px}
.v6-footer-grid>div:not(:first-child){display:flex;flex-direction:column;gap:7px}
.v6-footer-bottom{border-top:1px solid rgba(255,255,255,.12)}
.v6-footer-bottom .v6-shell{min-height:60px;display:flex;align-items:center;justify-content:space-between;gap:20px;color:rgba(255,255,255,.62);font-size:12px}

@media(max-width:980px){
  .v6-nav-links{position:absolute;top:76px;left:16px;right:16px;display:none;flex-direction:column;align-items:stretch;padding:18px;border:1px solid var(--v6-line);border-radius:20px;background:#fff;box-shadow:0 20px 50px rgba(16,45,82,.17)}
  .v6-nav-links.is-open{display:flex}
  .v6-menu{display:block}
  .v6-hero-grid,.v6-coverage-grid{grid-template-columns:1fr}
  .v6-hero-copy{text-align:center}
  .v6-eyebrow,.v6-actions,.v6-trust{justify-content:center}
  .v6-hero-description{margin-inline:auto}
  .v6-stats{grid-template-columns:repeat(2,1fr)}
  .v6-stats article:nth-child(2){border-right:0}
  .v6-steps{grid-template-columns:1fr}
  .v6-value-grid{grid-template-columns:repeat(2,1fr)}
  .v6-leadership-grid{grid-template-columns:150px 1fr}
  .v6-dedication{grid-column:1/-1}
  .v6-newsbar{grid-template-columns:150px 1fr}
  .v6-footer-grid{grid-template-columns:1.4fr 1fr 1fr}
  .v6-footer-grid>div:last-child{grid-column:1/-1}
}

@media(max-width:680px){
  .v6-shell{width:min(100% - 24px,1180px)}
  .v6-nav{min-height:68px;padding:9px 13px}
  .v6-brand img{width:44px;height:44px}
  .v6-brand strong{font-size:15px}
  .v6-hero{padding-top:45px}
  .v6-hero h1{font-size:44px}
  .v6-hero-ar{font-size:25px}
  .v6-actions{flex-direction:column}
  .v6-btn{width:100%}
  .v6-hero-visual{min-height:350px}
  .v6-large-flag{width:220px;height:132px}
  .v6-blood-drop{width:190px;height:244px}
  .v6-blood-drop img{width:108px;height:108px}
  .v6-lebanon-badge{right:0;bottom:26px}
  .v6-stats{grid-template-columns:1fr}
  .v6-stats article{min-height:98px;border-right:0;border-bottom:1px solid rgba(255,255,255,.15)}
  .v6-section{padding:60px 0}
  .v6-map-stage{min-height:640px}
  .v6-lebanon-map-image{width:66%}
  .v6-map-pin span{font-size:10px;padding:6px 8px}
  .pin-aakkar{top:10%;left:48%}
  .pin-north{top:22%;left:4%}
  .pin-beirut{top:39%;left:1%}
  .pin-mount{top:48%;left:51%}
  .pin-bekaa{top:40%;right:1%}
  .pin-baalbek{top:25%;right:1%}
  .pin-nabatieh{bottom:20%;left:2%}
  .pin-south{bottom:7%;left:44%}
  .v6-value-grid{grid-template-columns:1fr}
  .v6-leadership-grid{grid-template-columns:1fr;text-align:center}
  .v6-leadership-logo{margin:auto}
  .v6-cta-grid{flex-direction:column;text-align:center}
  .v6-newsbar{grid-template-columns:1fr}
  .v6-newsbar-label{min-height:82px}
  .v6-supporter-card{width:155px;flex-basis:155px}
  .v6-supporter-image{width:125px}
  .v6-footer-grid{grid-template-columns:1fr}
  .v6-footer-grid>div:last-child{grid-column:auto}
  .v6-footer-bottom .v6-shell{flex-direction:column;justify-content:center;padding:17px 0;text-align:center}
}

@media(prefers-reduced-motion:reduce){
  .v6-supporters-track.is-moving{animation:none}
}


/* =========================================================
   V7 — COMPACT ABOVE-THE-FOLD HERO + SUPPORTERS FALLBACK
   ========================================================= */

.home-v6 .v7-hero-compact{
  min-height:auto;
  padding-top:38px;
  background:
    radial-gradient(circle at 77% 15%,rgba(255,255,255,.98),transparent 28%),
    radial-gradient(circle at 15% 4%,rgba(255,236,232,.56),transparent 25%),
    linear-gradient(112deg,#ffffff 0%,#f3f8fd 47%,#dcecf9 100%);
}

.home-v6 .v7-hero-compact .v6-hero-grid{
  min-height:410px;
  grid-template-columns:1.08fr .92fr;
  gap:40px;
}

.home-v6 .v7-hero-compact .v6-eyebrow{
  margin-bottom:12px;
}

.home-v6 .v7-hero-compact h1{
  font-size:clamp(42px,5.6vw,67px);
  line-height:.98;
}

.home-v6 .v7-hero-compact .v6-hero-ar{
  margin-top:15px;
  font-size:clamp(21px,2.5vw,30px);
}

.home-v6 .v7-hero-compact .v6-hero-description{
  max-width:600px;
  margin-top:12px;
  font-size:16px;
  line-height:1.6;
}

.home-v6 .v7-hero-compact .v6-actions{
  margin-top:20px;
}

.home-v6 .v7-hero-compact .v6-btn{
  min-height:49px;
  padding:12px 20px;
}

.home-v6 .v7-hero-compact .v6-trust{
  margin-top:15px;
}

.home-v6 .v7-hero-compact .v6-hero-visual{
  min-height:360px;
}

.home-v6 .v7-hero-compact .v6-large-flag{
  top:8px;
  width:245px;
  height:147px;
  border-radius:20px;
}

.home-v6 .v7-hero-compact .v6-large-flag>div:nth-child(2){
  font-size:52px;
}

.home-v6 .v7-hero-compact .v6-blood-drop{
  width:205px;
  height:265px;
  margin-top:32px;
}

.home-v6 .v7-hero-compact .v6-blood-drop img{
  width:112px;
  height:112px;
  border-radius:24px;
}

.home-v6 .v7-hero-compact .v6-drop-shine{
  top:20px;
  right:32px;
  width:39px;
  height:91px;
}

.home-v6 .v7-hero-compact .v6-lebanon-badge{
  right:6px;
  bottom:30px;
  padding:12px 16px;
}

.home-v6 .v7-hero-compact .v6-lebanon-badge strong{
  font-size:15px;
}

.home-v6 .v7-hero-compact .v6-stats{
  margin-top:0;
}

.home-v6 .v7-hero-compact + .v6-stats,
.home-v6 .v7-hero-compact .v6-stats{
  transform:none;
}

/* Shorter statistics bar so it remains visible on common laptop screens. */
.home-v6 .v6-stats article{
  min-height:96px;
  padding:17px 21px;
}

.home-v6 .v6-stats article>span{
  width:47px;
  height:47px;
  flex-basis:47px;
  font-size:21px;
}

.home-v6 .v6-stats strong{
  font-size:23px;
}

/* The track contains repeated cards; animate a shorter distance for seamless motion. */
.home-v6 .v6-supporters-track.is-moving{
  animation-duration:36s;
}

@keyframes v6SupportersMarquee{
  from{transform:translate3d(0,0,0)}
  to{transform:translate3d(-25%,0,0)}
}

@media(max-height:820px) and (min-width:981px){
  .home-v6 .v7-hero-compact{
    padding-top:25px;
  }

  .home-v6 .v7-hero-compact .v6-hero-grid{
    min-height:365px;
  }

  .home-v6 .v7-hero-compact h1{
    font-size:clamp(40px,5.2vw,61px);
  }

  .home-v6 .v7-hero-compact .v6-hero-visual{
    min-height:320px;
  }

  .home-v6 .v7-hero-compact .v6-blood-drop{
    width:180px;
    height:232px;
  }

  .home-v6 .v7-hero-compact .v6-blood-drop img{
    width:98px;
    height:98px;
  }

  .home-v6 .v7-hero-compact .v6-large-flag{
    width:215px;
    height:129px;
  }
}

@media(max-width:680px){
  .home-v6 .v7-hero-compact{
    padding-top:30px;
  }

  .home-v6 .v7-hero-compact .v6-hero-grid{
    min-height:auto;
  }

  .home-v6 .v7-hero-compact h1{
    font-size:40px;
  }

  .home-v6 .v7-hero-compact .v6-hero-visual{
    min-height:310px;
  }

  .home-v6 .v7-hero-compact .v6-large-flag{
    width:194px;
    height:116px;
  }

  .home-v6 .v7-hero-compact .v6-blood-drop{
    width:165px;
    height:213px;
  }

  .home-v6 .v7-hero-compact .v6-blood-drop img{
    width:92px;
    height:92px;
  }
}


/* V8 — Firebase contributors image database */
.home-v6 .v6-newsbar-label::after{
  content:"Firebase";
  position:absolute;
  right:10px;
  bottom:8px;
  padding:3px 7px;
  border:1px solid rgba(255,255,255,.24);
  border-radius:999px;
  color:rgba(255,255,255,.72);
  font-size:9px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.home-v6 .v6-supporter-card{
  cursor:default;
}

.home-v6 a.v6-supporter-card{
  cursor:pointer;
}


/* =========================================================
   V9 — SHORTER HERO + NON-BLOCKING CONTRIBUTORS LOADER
   ========================================================= */

.home-v6 .v7-hero-compact{
  padding-top:24px;
}

.home-v6 .v7-hero-compact .v6-hero-grid{
  min-height:330px;
  grid-template-columns:1.1fr .9fr;
}

.home-v6 .v7-hero-compact h1{
  max-width:590px;
  font-size:clamp(38px,5vw,58px);
  line-height:.96;
}

.home-v6 .v7-hero-compact .v6-hero-ar{
  margin-top:11px;
  font-size:clamp(19px,2.2vw,27px);
}

.home-v6 .v7-hero-compact .v6-hero-description{
  margin-top:10px;
  font-size:15px;
}

.home-v6 .v7-hero-compact .v6-actions{
  margin-top:16px;
}

.home-v6 .v7-hero-compact .v6-trust{
  margin-top:11px;
}

.home-v6 .v7-hero-compact .v6-hero-visual{
  min-height:290px;
}

.home-v6 .v7-hero-compact .v6-large-flag{
  width:195px;
  height:117px;
}

.home-v6 .v7-hero-compact .v6-large-flag>div:nth-child(2){
  font-size:40px;
}

.home-v6 .v7-hero-compact .v6-blood-drop{
  width:160px;
  height:210px;
  margin-top:22px;
}

.home-v6 .v7-hero-compact .v6-blood-drop img{
  width:88px;
  height:88px;
  border-radius:19px;
}

.home-v6 .v7-hero-compact .v6-drop-shine{
  width:30px;
  height:70px;
  top:16px;
  right:25px;
}

.home-v6 .v7-hero-compact .v6-lebanon-badge{
  bottom:19px;
  padding:10px 13px;
}

.home-v6 .v7-hero-compact .v6-lebanon-badge strong{
  font-size:13px;
}

.home-v6 .v7-hero-compact .v6-lebanon-badge span{
  font-size:12px;
}

.home-v6 .v6-stats article{
  min-height:84px;
  padding:13px 18px;
}

.home-v6 .v6-stats article>span{
  width:42px;
  height:42px;
  flex-basis:42px;
  font-size:19px;
}

.home-v6 .v6-stats strong{
  font-size:21px;
}

.v9-contributors-error{
  width:min(660px,100%);
  min-height:118px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:7px;
  padding:18px;
  color:var(--v6-muted);
  text-align:center;
}

.v9-contributors-error strong{
  color:var(--v6-navy);
}

.v9-contributors-error button{
  margin-top:4px;
  padding:9px 16px;
  border:0;
  border-radius:999px;
  background:var(--v6-red);
  color:#fff;
  font-family:inherit;
  font-weight:900;
  cursor:pointer;
}

.v9-contributors-error small{
  max-width:600px;
  color:#8995a5;
  font-size:10px;
  overflow-wrap:anywhere;
}

@media(max-width:680px){
  .home-v6 .v7-hero-compact{
    padding-top:22px;
  }

  .home-v6 .v7-hero-compact .v6-hero-grid{
    min-height:auto;
  }

  .home-v6 .v7-hero-compact h1{
    font-size:37px;
  }

  .home-v6 .v7-hero-compact .v6-hero-visual{
    min-height:275px;
  }
}


/* =========================================================
   V10 — TOWNADSRESULTINFO CONTRIBUTORS
   ========================================================= */

.v10-contributor-details{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:2px;
}

.v10-contributor-town{
  max-width:155px;
  overflow:hidden;
  color:#8895a7;
  font-size:10px;
  font-weight:700;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.home-v6 .v6-supporter-card{
  min-height:120px;
}

.home-v6 .v6-supporter-image{
  height:70px;
}


/* Contributor tiers from Admin Panel */
.homepage-contributor-tier{
  display:inline-flex;
  margin-top:3px;
  padding:3px 7px;
  border-radius:999px;
  font-size:9px;
  font-weight:1000;
}

.contributor-tier-gold .homepage-contributor-tier{
  background:#fff1b8;
  color:#876400;
}

.contributor-tier-silver .homepage-contributor-tier{
  background:#e9edf1;
  color:#59616d;
}

.contributor-tier-bronze .homepage-contributor-tier{
  background:#f3dfcf;
  color:#8b491f;
}


/* =========================================================
   ADMIN PANEL CONTRIBUTORS — HOMEPAGE GOLD DISPLAY
   ========================================================= */

.homepage-gold-track{
  min-height:170px;
}

.homepage-gold-contributor-card{
  width:210px;
  min-height:132px;
  flex:0 0 210px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px;
  border:1px solid #eadca3;
  border-radius:20px;
  background:
    linear-gradient(145deg,#ffffff,#fffaf0);
  color:var(--v6-navy);
  text-decoration:none;
  box-shadow:
    0 12px 30px rgba(16,45,82,.07),
    inset 0 3px 0 rgba(211,165,31,.34);
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.homepage-gold-contributor-card:hover{
  transform:translateY(-4px);
  box-shadow:
    0 18px 40px rgba(16,45,82,.12),
    inset 0 3px 0 rgba(211,165,31,.55);
}

.homepage-gold-logo{
  width:165px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border-radius:13px;
  background:#fff;
}

.homepage-gold-logo img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

.homepage-gold-logo-fallback{
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:#fff3c4;
  color:#8b6800;
  font-size:26px;
  font-weight:1000;
}

.homepage-gold-details{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:2px;
  text-align:center;
}

.homepage-gold-details strong{
  max-width:180px;
  overflow:hidden;
  color:var(--v6-navy);
  font-size:13px;
  font-weight:950;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.homepage-gold-details span{
  max-width:180px;
  overflow:hidden;
  color:#768499;
  font-size:11px;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.homepage-gold-badge{
  display:inline-flex;
  margin-top:4px;
  padding:4px 9px;
  border:1px solid #e3c75e;
  border-radius:999px;
  background:#fff2b8;
  color:#846200;
  font-size:9px;
  font-weight:1000;
}

@media(max-width:680px){
  .homepage-gold-contributor-card{
    width:165px;
    flex-basis:165px;
  }

  .homepage-gold-logo{
    width:135px;
    height:66px;
  }
}


/* =========================================================
   V4 FIX — GOLD CONTRIBUTORS DISPLAY
   ========================================================= */

.homepage-gold-static-grid{
  width:100%;
  min-height:170px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:18px;
  padding:18px;
}

.homepage-contributors-error{
  width:min(680px,100%);
  min-height:130px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:7px;
  padding:20px;
  color:#68778d;
  text-align:center;
}

.homepage-contributors-error strong{
  color:#102d52;
}

.homepage-contributors-error button{
  margin-top:5px;
  padding:9px 17px;
  border:0;
  border-radius:999px;
  background:#d71932;
  color:#fff;
  font-family:inherit;
  font-weight:900;
  cursor:pointer;
}

.homepage-contributors-error small{
  color:#8b96a5;
  font-size:10px;
}

.homepage-gold-contributor-card.logo-loaded{
  border-color:#dfc45c;
}

@media(max-width:680px){
  .homepage-gold-static-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .homepage-gold-static-grid
  .homepage-gold-contributor-card{
    width:100%;
    min-width:0;
    flex-basis:auto;
  }
}


/* =========================================================
   V5 — SHOW ACTIVE GOLD CONTRIBUTORS ON HOME
   ========================================================= */

.homepage-gold-static-grid{
  width:100%;
  min-height:190px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:22px;
  padding:22px;
}

.homepage-gold-static-grid
.homepage-gold-contributor-card{
  width:260px;
  min-height:155px;
  flex-basis:260px;
}

.homepage-gold-static-grid
.homepage-gold-logo{
  width:205px;
  height:88px;
}

.homepage-gold-static-grid
.homepage-gold-details strong{
  font-size:15px;
}

@media(max-width:680px){
  .homepage-gold-static-grid{
    grid-template-columns:1fr;
  }

  .homepage-gold-static-grid
  .homepage-gold-contributor-card{
    width:min(100%,280px);
    margin-inline:auto;
  }
}


/* =========================================================
   RELEASE CANDIDATE RC1 — PUBLIC SUPPORTERS SECTION
   ========================================================= */

.v6-supporters .v6-heading > span{
  color:#d71932;
}

.v6-supporters .v6-heading h2{
  letter-spacing:-.02em;
}

.v6-newsbar-label strong{
  font-size:17px;
}

.v6-newsbar-label small{
  font-size:13px;
}

.homepage-gold-badge{
  display:none;
}

.homepage-gold-contributor-card{
  border-color:#e2e8ef;
  background:#fff;
  box-shadow:0 12px 30px rgba(16,45,82,.08);
}

.homepage-gold-contributor-card:hover{
  border-color:#d71932;
  box-shadow:0 18px 42px rgba(16,45,82,.13);
}

.homepage-gold-details strong{
  font-size:14px;
}

.homepage-gold-details span{
  margin-top:2px;
}
