:root {
  --bg-deep: #080d1a;
  --bg-slate: #0f172a;
  --bg-elevated: #152033;
  --bg-card: rgba(15, 23, 42, 0.75);
  --border-glass: rgba(56, 189, 248, 0.2);
  --text: #e8eef7;
  --text-muted: #94a3b8;
  --teal: #06b6d4;
  --teal-bright: #22d3ee;
  --cyan: #06b6d4;
  --gold: #fbbf24;
  --gold-soft: #f59e0b;
  --green: #34d399;
  --danger: #f87171;
  --gradient-hero: linear-gradient(135deg, #080d1a 0%, #0f172a 40%, #123047 100%);
  --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b, #fbbf24);
  --shadow-glow: 0 20px 50px rgba(6, 182, 212, 0.18);
  --radius: 1.25rem;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --header-offset: 96px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(20, 184, 166, 0.18), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(37, 99, 235, 0.14), transparent 45%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(245, 158, 11, 0.08), transparent 50%),
    var(--bg-deep);
}

h1, h2, h3, h4, h5, .display-font {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

a { color: var(--teal-bright); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; }

.text-muted-custom { color: var(--text-muted) !important; }
.text-teal { color: var(--teal-bright) !important; }
.text-cyan { color: var(--cyan) !important; }
.text-gold { color: var(--gold) !important; }

/* Top alert */
.top-alert {
  background: linear-gradient(90deg, #0b3d3a, #123047 50%, #1e3a5f);
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #d1fae5;
  padding: 0.55rem 0;
  text-align: center;
}

.top-alert .ein { color: var(--gold); }

/* Navbar */
.site-navbar {
  background: rgba(9, 13, 22, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
  padding: 0.65rem 0;
}

.site-navbar.scrolled {
  background: rgba(9, 13, 22, 0.92);
  border-bottom-color: var(--border-glass);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.2;
}

.navbar-brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(45, 212, 191, 0.35);
}

.brand-sub {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-link {
  color: #cbd5e1 !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.5rem 0.85rem !important;
  border-radius: 999px;
}

.nav-link:hover,
.nav-link.active {
  color: #fff !important;
  background: rgba(20, 184, 166, 0.12);
}

.btn-donate-nav {
  background: var(--gradient-gold) !important;
  color: #0f172a !important;
  font-weight: 800 !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 0.55rem 1.15rem !important;
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.25);
}

.btn-donate-nav:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.offcanvas {
  background: var(--bg-slate);
  color: var(--text);
  border-left: 1px solid var(--border-glass);
}

.offcanvas .nav-link { margin-bottom: 0.25rem; }

/* Buttons */
.btn-primary-glow {
  background: var(--gradient-accent);
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  box-shadow: var(--shadow-glow);
  transition: transform .2s ease, filter .2s ease;
}

.btn-primary-glow:hover {
  color: #fff;
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.btn-outline-glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  backdrop-filter: blur(8px);
  transition: background .2s ease, transform .2s ease;
}

.btn-outline-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gradient-gold);
  border: none;
  color: #0f172a;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
}

.btn-gold:hover {
  color: #0f172a;
  filter: brightness(1.06);
}

/* Glass cards */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.35);
  box-shadow: 0 24px 50px rgba(20, 184, 166, 0.15);
}

.glass-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.25), rgba(37, 99, 235, 0.2));
  color: var(--teal-bright);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.metric-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.3);
  color: var(--teal-bright);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-top: 1rem;
}

/* Sections */
.section { padding: 5rem 0; }
.section-tight { padding: 3.5rem 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--teal-bright);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.page-hero {
  padding: calc(var(--header-offset) + 3rem) 0 3.5rem;
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.2), transparent 70%);
  pointer-events: none;
}

.breadcrumb-dark .breadcrumb-item,
.breadcrumb-dark .breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-dark .breadcrumb-item.active { color: var(--gold); }

/* Homepage hero */
.hero-home {
  position: relative;
  min-height: calc(100vh - 42px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-offset) + 1rem) 0 4rem;
  overflow: hidden;
}

.hero-home .hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(9, 13, 22, 0.88) 0%, rgba(15, 23, 42, 0.72) 45%, rgba(9, 13, 22, 0.85) 100%),
    url("../images/hero-community.jpg") center / cover no-repeat;
  z-index: 0;
}

.hero-home .container { position: relative; z-index: 1; }

.hero-home h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  max-width: 16ch;
}

.floating-badge {
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(45, 212, 191, 0.35);
  border-radius: 1.25rem;
  padding: 1.15rem 1.35rem;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-glow);
  max-width: 280px;
  animation: floatY 4.5s ease-in-out infinite;
}

.hero-metric-panel {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 1.5rem;
  padding: 1.5rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(6, 182, 212, 0.16);
  max-width: 420px;
  margin-left: auto;
}

.metric-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(8, 13, 26, 0.55);
  border: 1px solid rgba(56, 189, 248, 0.15);
  margin-bottom: 0.75rem;
}

.metric-pill:last-child { margin-bottom: 0; }

.metric-pill .label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.metric-pill .value {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
}

.metric-pill .value.live {
  color: var(--teal-bright);
}

.metric-pill .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.badge-role {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-bright);
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.leadership-card .role-box {
  background: rgba(8, 13, 26, 0.55);
  border: 1px solid rgba(56, 189, 248, 0.12);
  border-radius: 0.85rem;
  padding: 0.85rem;
}

.leadership-card .role-box strong {
  display: block;
  color: #fff;
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
}

.executive-highlight {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
}

@media (max-width: 767.98px) {
  .executive-highlight {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .executive-highlight .profile-avatar { margin-inline: auto; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-badge .stat-num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}

/* Impact counters */
.impact-band {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(9, 13, 22, 0.95));
  border-block: 1px solid var(--border-glass);
}

.counter-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.counter-item i {
  font-size: 1.6rem;
  color: var(--teal-bright);
  margin-bottom: 0.75rem;
}

.counter-item .num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

/* Transparency bars */
.alloc-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin: 0.5rem 0 1.25rem;
}

.alloc-bar > span {
  display: block;
  height: 100%;
  border-radius: 999px;
}

.alloc-programs { width: 88%; background: linear-gradient(90deg, #14b8a6, #22d3ee); }
.alloc-admin { width: 8%; background: linear-gradient(90deg, #64748b, #94a3b8); }
.alloc-fund { width: 4%; background: linear-gradient(90deg, #f59e0b, #fbbf24); }

/* Story cards */
.story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
}

.story-card .card-body { padding: 1.35rem; }

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.2);
  color: #93c5fd;
  margin-right: 0.35rem;
}

.tag-teal { background: rgba(20, 184, 166, 0.18); color: var(--teal-bright); }
.tag-gold { background: rgba(251, 191, 36, 0.18); color: var(--gold); }

/* CTA banner */
.cta-banner {
  background: var(--gradient-accent);
  border-radius: 1.5rem;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta-banner .content { position: relative; z-index: 1; }

/* Profile cards */
.profile-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
  border: 3px solid rgba(255, 255, 255, 0.15);
}

/* Step workflow */
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}

/* Donation */
.amount-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: #fff;
  border-radius: 0.85rem;
  padding: 0.9rem 0.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  width: 100%;
  transition: all .2s ease;
}

.amount-btn:hover,
.amount-btn.active {
  background: rgba(20, 184, 166, 0.2);
  border-color: var(--teal-bright);
  color: var(--teal-bright);
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.25);
}

.freq-toggle .btn {
  border-radius: 999px;
  font-weight: 700;
  border-color: var(--border-glass);
  color: var(--text-muted);
}

.freq-toggle .btn.active {
  background: var(--gradient-accent);
  border-color: transparent;
  color: #fff;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  font-size: 0.88rem;
  font-weight: 600;
}

.trust-badge i { color: var(--green); font-size: 1.2rem; }

/* Forms */
.form-control,
.form-select {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--border-glass);
  color: #fff;
  border-radius: 0.75rem;
  padding: 0.8rem 1rem;
}

.form-control:focus,
.form-select:focus {
  background: rgba(15, 23, 42, 0.95);
  border-color: var(--teal);
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.2);
}

.form-control::placeholder { color: #64748b; }
.form-label { font-weight: 600; color: #e2e8f0; }
.form-check-input:checked {
  background-color: var(--teal);
  border-color: var(--teal);
}

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* Accordion */
.accordion-dark .accordion-item {
  background: transparent;
  border: 1px solid var(--border-glass);
  border-radius: 0.85rem !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-dark .accordion-button {
  background: rgba(21, 32, 51, 0.8);
  color: #fff;
  font-weight: 700;
  box-shadow: none;
}

.accordion-dark .accordion-button:not(.collapsed) {
  background: rgba(20, 184, 166, 0.12);
  color: var(--teal-bright);
}

.accordion-dark .accordion-button::after { filter: invert(1); }
.accordion-dark .accordion-body {
  background: rgba(9, 13, 22, 0.6);
  color: var(--text-muted);
}

/* Article */
.article-full {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.article-full > img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.article-full .body { padding: 2rem; }
.share-btns .btn {
  border-radius: 999px;
  border-color: var(--border-glass);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.share-btns .btn:hover {
  border-color: var(--teal);
  color: var(--teal-bright);
}

/* Quote */
.testimonial {
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
}

.testimonial .quote {
  font-size: 1.05rem;
  font-style: italic;
  color: #e2e8f0;
}

/* Map */
.map-embed {
  border: 0;
  border-radius: 1rem;
  width: 100%;
  height: 320px;
  filter: grayscale(0.3) contrast(1.05);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  max-width: 520px;
  margin-inline: auto;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid var(--border-glass);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  display: none;
}

.cookie-banner.show { display: block; }

/* Toast */
.toast-container { z-index: 1090; }

/* Footer — advanced agency */
.site-footer {
  position: relative;
  background:
    radial-gradient(ellipse 60% 40% at 0% 0%, rgba(20, 184, 166, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 35% at 100% 10%, rgba(37, 99, 235, 0.12), transparent 50%),
    linear-gradient(180deg, #0a101c 0%, #05070d 100%);
  border-top: none;
  padding: 0 0 1.75rem;
  color: var(--text-muted);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #14b8a6 20%, #22d3ee 50%, #2563eb 80%, transparent);
  z-index: 2;
}

.footer-wave {
  display: block;
  width: 100%;
  height: 56px;
  color: #090d16;
  margin-top: -1px;
}

.footer-newsletter {
  position: relative;
  z-index: 1;
  margin: -0.5rem 0 2.5rem;
  padding: 1.75rem 1.75rem;
  border-radius: 1.35rem;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.16), rgba(37, 99, 235, 0.14));
  border: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.footer-newsletter h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.footer-newsletter p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.footer-newsletter .form-control {
  background: rgba(9, 13, 22, 0.65);
  border-color: rgba(148, 163, 184, 0.25);
}

.footer-newsletter .input-group {
  max-width: 420px;
}

.footer-main {
  position: relative;
  z-index: 1;
  padding-top: 0.5rem;
}

.footer-brand-lockup {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.footer-brand-lockup img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(45, 212, 191, 0.35);
  box-shadow: 0 0 24px rgba(20, 184, 166, 0.25);
  flex-shrink: 0;
}

.footer-brand-lockup .name {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: 0.2rem;
}

.footer-brand-lockup .tag {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-bright);
  font-weight: 700;
}

.site-footer h5 {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  position: relative;
  padding-bottom: 0.65rem;
}

.site-footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient-accent);
}

.site-footer a {
  color: #94a3b8;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.site-footer a:hover { color: var(--teal-bright); }

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.55rem; }

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
}

.footer-links a i {
  font-size: 0.65rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .2s ease, transform .2s ease;
  color: var(--teal-bright);
}

.footer-links a:hover i {
  opacity: 1;
  transform: translateX(0);
}

.footer-meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.footer-meta-row span {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-meta-row i {
  color: var(--teal-bright);
  margin-top: 0.2rem;
  width: 1rem;
  text-align: center;
}

.footer-meta-row strong { color: var(--gold); }

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #cbd5e1 !important;
  font-size: 0.95rem;
  transition: all .22s ease;
}

.social-btn:hover {
  color: #0f172a !important;
  background: var(--gradient-accent);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(20, 184, 166, 0.3);
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.footer-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.14);
  font-size: 0.78rem;
  font-weight: 700;
  color: #cbd5e1;
}

.footer-trust-item i { color: var(--green); }

.footer-urgent-card {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 1.1rem;
  padding: 1.15rem;
  height: 100%;
}

.footer-urgent-card p { font-size: 0.88rem; }

.footer-legal {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  margin-top: 2.25rem;
  padding-top: 1.35rem;
  font-size: 0.86rem;
}

.footer-legal strong { color: var(--gold); }

.footer-legal-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.back-to-top {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(20, 184, 166, 0.12);
  color: var(--teal-bright);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .2s ease;
  flex-shrink: 0;
}

.back-to-top:hover {
  background: var(--gradient-accent);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(20, 184, 166, 0.28);
}

/* Utilities */
.irs-thumb {
  border-radius: 1rem;
  border: 1px solid var(--border-glass);
  max-height: 520px;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 991.98px) {
  .hero-home { min-height: auto; padding-top: calc(var(--header-offset) + 1.5rem); }
  .floating-badge { margin-top: 2rem; max-width: 100%; animation: none; }
  .article-full > img { height: 220px; }
  .footer-newsletter { margin-top: 0; padding: 1.35rem; }
  .footer-newsletter .input-group { max-width: none; }
  .footer-legal-inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .floating-badge { animation: none; }
  .glass-card { transition: none; }
}
