/* ============================================================
   GLOBAL TRACE RECOVERY — Stylesheet
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap");

/* --- Variables --- */
:root {
  --black: #080a0e;
  --dark: #0e1117;
  --card: #13161d;
  --border: #1e2330;
  --border2: #2a3045;
  --gold: #c9a84c;
  --gold-lt: #e8c96e;
  --white: #eef0f4;
  --muted: #7a8099;
  --green: #22c55e;
  --radius: 6px;
  --nav-h: 76px;
  --trans: 0.25s ease;
}

/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  line-height: 1.1;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition:
    background var(--trans),
    transform var(--trans),
    box-shadow var(--trans);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.3);
}
.btn-primary.btn-lg {
  font-size: 1rem;
  padding: 16px 36px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border2);
  cursor: pointer;
  transition:
    border-color var(--trans),
    background var(--trans);
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  color: var(--gold);
}
.btn-ghost.btn-lg {
  font-size: 1rem;
  padding: 15px 34px;
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(8, 10, 14, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
}
.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 32px;
}
.logo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-family: "Syne", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--trans);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-btn {
  margin-left: auto;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 16px 32px 24px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--trans);
}
.mobile-menu a:last-child {
  border-bottom: none;
  margin-top: 16px;
  text-align: center;
}
.mobile-menu a:hover {
  color: var(--white);
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}
.orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #c9a84c, transparent 70%);
  top: -200px;
  right: -200px;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #1a3a5c, transparent 70%);
  bottom: -100px;
  left: -100px;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--gold-lt);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  animation: badge-glow 3s ease-in-out infinite;
}
@keyframes badge-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
  50% {
    box-shadow: 0 0 18px 2px rgba(201, 168, 76, 0.15);
  }
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}
.hero-title {
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 28px;
}
.hero-title em {
  color: var(--gold);
  font-style: normal;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.75;
}
.hero-sub strong {
  color: var(--white);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.stat {
  text-align: left;
  padding: 0 40px 0 0;
}
.stat:first-child {
  padding-left: 0;
}
.stat-num {
  font-family: "Syne", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.stat-suffix {
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin-right: 40px;
}
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scroll-anim 1.8s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* --- TRUST BAR / TICKER --- */
.trust-bar {
  background: var(--gold);
  padding: 13px 0;
  overflow: hidden;
}
.ticker-wrap {
  overflow: hidden;
}
.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  font-family: "Syne", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.5px;
  padding: 0 20px;
}
.ticker-track .dot {
  padding: 0;
  opacity: 0.5;
  font-size: 0.6rem;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* --- SECTIONS --- */
.section {
  padding: 110px 0;
}
.section-dark {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
.section-tag {
  display: inline-block;
  font-family: "Syne", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}
.section-cta {
  text-align: center;
  margin-top: 56px;
}
.text-accent {
  color: var(--gold);
}

/* --- STEPS GRID --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.step-card {
  background: var(--card);
  padding: 44px 32px;
  position: relative;
  transition: background var(--trans);
}
.step-card:hover {
  background: #161a24;
}
.step-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.step-card:hover::after {
  transform: scaleX(1);
}
.step-num {
  font-family: "Syne", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(201, 168, 76, 0.1);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 12px;
}
.step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* --- SERVICES GRID --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition:
    border-color var(--trans),
    transform var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}
.service-icon-wrap {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 4px 10px;
  border-radius: 100px;
}

/* --- WHY US --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-left .section-tag {
  display: block;
  margin-bottom: 16px;
}
.why-left .section-title {
  margin-bottom: 20px;
  text-align: left;
}
.why-left .section-sub {
  text-align: left;
  margin-bottom: 36px;
}
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  transition: border-color var(--trans);
}
.why-item:hover {
  border-color: var(--gold);
}
.why-icon {
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.why-item p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition:
    border-color var(--trans),
    transform var(--trans);
}
.testi-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.testi-amount {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: "Syne", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
}
.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testi-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--black);
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}
.testi-author span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* --- CTA BANNER --- */
.cta-banner {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}
.cta-text p {
  color: var(--muted);
  font-size: 1rem;
}

/* --- FOOTER --- */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .logo {
  font-size: 1.2rem;
  margin-bottom: 14px;
  display: inline-block;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
  transition:
    border-color var(--trans),
    color var(--trans);
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col h4 {
  font-family: "Syne", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 12px;
  transition: color var(--trans);
}
.footer-col a:hover {
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius);
  padding: 12px 18px;
}
.disclaimer strong {
  color: var(--gold);
}
.copyright {
  font-size: 0.8rem;
  color: var(--muted);
}

/* --- REVEAL ANIMATION --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .nav-links,
  .nav-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-title {
    letter-spacing: -1px;
  }
  .hero-stats {
    gap: 16px;
  }
  .stat-divider {
    display: none;
  }
  .stat {
    padding: 0 20px 0 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #fff;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 14px 22px 14px 18px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  animation: wa-bounce 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45);
}
.whatsapp-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.wa-label {
  white-space: nowrap;
}
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: #25d366;
  z-index: -1;
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}
@keyframes wa-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ============================================================
   HERO IMAGE SECTION
   ============================================================ */
.hero-image-section {
  padding: 0 0 110px;
}
.hero-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  max-height: 560px;
  border: 1px solid var(--border);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}
.hero-img-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.88) saturate(0.9);
  transition:
    transform 0.6s ease,
    filter 0.4s ease;
}
.hero-img-wrap:hover img {
  transform: scale(1.02);
  filter: brightness(0.95) saturate(1);
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 10, 14, 0.72) 0%,
    rgba(8, 10, 14, 0.15) 55%,
    transparent 100%
  );
  display: flex;
  align-items: center;
  padding: 0 60px;
}
.img-overlay-content {
  max-width: 460px;
}
.img-overlay-content h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}
.img-overlay-content h2 span {
  color: var(--gold);
}
.img-overlay-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 28px;
}
.img-badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.img-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-lt);
  font-family: "Syne", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 100px;
}
.img-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

/* ============================================================
   MOBILE RESPONSIVE — Full overhaul
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cta-inner {
    gap: 32px;
  }
  .img-overlay-content {
    max-width: 360px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 72px 0;
  }

  /* Nav */
  .nav-links,
  .nav-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: calc(var(--nav-h) + 40px) 0 60px;
  }
  .hero-title {
    font-size: clamp(2.6rem, 11vw, 4rem);
    letter-spacing: -1px;
  }
  .hero-sub {
    font-size: 1rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 20px 0;
    flex-wrap: wrap;
  }
  .stat {
    padding: 0;
    min-width: 45%;
  }
  .stat-divider {
    display: none;
  }
  .scroll-hint {
    display: none;
  }

  /* Hero image */
  .hero-img-wrap img {
    height: 340px;
  }
  .hero-img-overlay {
    padding: 0 24px;
    background: linear-gradient(
      to top,
      rgba(8, 10, 14, 0.9) 0%,
      rgba(8, 10, 14, 0.3) 60%,
      transparent 100%
    );
    align-items: flex-end;
    padding-bottom: 28px;
  }
  .img-overlay-content {
    max-width: 100%;
  }
  .img-overlay-content h2 {
    font-size: 1.5rem;
  }
  .img-overlay-content p {
    font-size: 0.88rem;
    margin-bottom: 16px;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-card {
    padding: 32px 24px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Why */
  .why-left .section-title {
    font-size: 2rem;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-text h2 {
    font-size: 1.5rem;
  }
  .cta-inner .btn-primary {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand p {
    max-width: 100%;
  }

  /* WhatsApp */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 13px 18px 13px 15px;
    font-size: 0.82rem;
  }
  .wa-label {
    display: none;
  }
  .whatsapp-float {
    border-radius: 50%;
    width: 58px;
    height: 58px;
    padding: 0;
    justify-content: center;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .stat {
    min-width: 100%;
  }
  .testi-amount {
    position: static;
    margin-bottom: 10px;
  }
}
/* ============================================================
   TRUST & CREDENTIALS BAR
   ============================================================ */
.trust-creds {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.creds-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.creds-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  transition: transform var(--trans);
}
.cred-item:hover {
  transform: translateY(-2px);
}
.cred-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.cred-item strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.cred-item span {
  font-size: 0.75rem;
  color: var(--muted);
}
.cred-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   LIVE RECOVERY FEED
   ============================================================ */
.live-feed-section {
  background: var(--black);
}

.live-feed-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
}
.live-feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--dark);
}
.lf-live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Syne", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.5px;
}
.lf-count {
  font-size: 0.8rem;
  color: var(--muted);
}
.live-feed-list {
  max-height: 420px;
  overflow-y: auto;
}
.live-feed-list::-webkit-scrollbar {
  width: 4px;
}
.live-feed-list::-webkit-scrollbar-track {
  background: var(--card);
}
.live-feed-list::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 4px;
}

.lf-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
  transition: background var(--trans);
  animation: lf-slide-in 0.4s ease both;
}
@keyframes lf-slide-in {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.lf-item:hover {
  background: rgba(255, 255, 255, 0.02);
}
.lf-item:last-child {
  border-bottom: none;
}
.lf-flag {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.lf-body {
  flex: 1;
  min-width: 0;
}
.lf-body strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lf-body span {
  font-size: 0.8rem;
  color: var(--muted);
}
.lf-amount {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--green);
  white-space: nowrap;
  flex-shrink: 0;
}
.lf-time {
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 80px;
  text-align: right;
}

/* ============================================================
   CASE RESULTS TRACKER
   ============================================================ */
.case-tracker-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.ct-header {
  padding: 28px 28px 0;
  margin-bottom: 20px;
}
.ct-header h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.ct-header p {
  font-size: 0.88rem;
  color: var(--muted);
}
.ct-filters {
  display: flex;
  gap: 12px;
  padding: 0 28px 20px;
  flex-wrap: wrap;
}
.ct-filter {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  padding: 9px 14px;
  outline: none;
  cursor: pointer;
  transition: border-color var(--trans);
  appearance: none;
}
.ct-filter:focus {
  border-color: var(--gold);
}
.ct-table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--border);
}
.ct-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.ct-table thead tr {
  background: var(--dark);
}
.ct-table th {
  padding: 14px 20px;
  text-align: left;
  font-family: "Syne", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.ct-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  white-space: nowrap;
}
.ct-table tbody tr {
  transition: background var(--trans);
}
.ct-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}
.ct-table tbody tr:last-child td {
  border-bottom: none;
}
.ct-ref {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  color: var(--white) !important;
}
.ct-amount-lost {
  color: var(--white) !important;
  font-weight: 600;
}
.ct-recovered {
  color: var(--green) !important;
  font-weight: 700;
}
.ct-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.ct-badge.full {
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.ct-badge.partial {
  background: rgba(245, 158, 11, 0.1);
  color: var(--amber, #f59e0b);
  border: 1px solid rgba(245, 158, 11, 0.25);
}
.ct-no-results {
  text-align: center;
  padding: 40px;
  color: var(--muted);
  font-size: 0.9rem;
}
.ct-note {
  padding: 14px 28px;
  font-size: 0.78rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: var(--dark);
}

/* ============================================================
   MEDIA / IN THE NEWS
   ============================================================ */
.media-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.media-logo-item {
  padding: 18px 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition:
    border-color var(--trans),
    transform var(--trans);
  cursor: default;
}
.media-logo-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.media-name {
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: -0.3px;
  transition: color var(--trans);
}
.media-logo-item:hover .media-name {
  color: var(--white);
}
.media-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mq-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color var(--trans);
  position: relative;
}
.mq-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: "Syne", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
}
.mq-card:hover {
  border-color: var(--gold);
}
.mq-quote {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 20px;
}
.mq-source {
  font-family: "Syne", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
}

/* ============================================================
   SCAM AWARENESS HUB
   ============================================================ */
.scam-hub {
  background: var(--black);
}
.scam-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.scam-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition:
    border-color var(--trans),
    transform var(--trans);
  display: flex;
  flex-direction: column;
}
.scam-card:hover {
  border-color: rgba(232, 41, 42, 0.4);
  transform: translateY(-4px);
}
.scam-alert {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232, 41, 42, 0.1);
  border: 1px solid rgba(232, 41, 42, 0.25);
  color: #ff6b6b;
  font-family: "Syne", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
  width: fit-content;
}
.scam-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.scam-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.scam-card > p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.scam-signs {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 20px;
}
.sign-label {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.scam-signs ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.scam-signs li {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.scam-signs li::before {
  content: "▸";
  color: #ff6b6b;
  flex-shrink: 0;
  font-size: 0.7rem;
  margin-top: 2px;
}
.scam-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Syne", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition:
    color var(--trans),
    gap var(--trans);
  margin-top: auto;
}
.scam-cta:hover {
  color: var(--gold-lt);
  gap: 10px;
}

/* ============================================================
   WHATSAPP POP-UP
   ============================================================ */
.wa-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9000;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 100px 32px 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.wa-popup-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.wa-popup {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 28px 24px;
  max-width: 340px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(20px);
  transition: transform 0.35s ease;
  position: relative;
}
.wa-popup-overlay.visible .wa-popup {
  transform: translateY(0);
}
.wa-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--trans);
}
.wa-popup-close:hover {
  color: var(--white);
}
.wa-popup-avatar {
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 14px;
  position: relative;
}
.wa-popup-avatar::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: var(--green);
  border: 2px solid var(--dark);
  border-radius: 50%;
}
.wa-popup strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.wa-popup p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.wa-popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25d366;
  color: #fff;
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--trans);
}
.wa-popup-btn:hover {
  background: #1ebe5d;
}
.wa-popup-dismiss {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--muted);
  cursor: pointer;
  transition: color var(--trans);
}
.wa-popup-dismiss:hover {
  color: var(--white);
}

/* ============================================================
   RESPONSIVE — New Sections
   ============================================================ */
@media (max-width: 1024px) {
  .media-quotes {
    grid-template-columns: 1fr;
  }
  .scam-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .creds-grid {
    gap: 16px;
  }
  .cred-item {
    padding: 0 16px;
  }
}

@media (max-width: 768px) {
  .creds-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0 8px;
  }
  .cred-divider {
    display: none;
  }
  .scam-grid {
    grid-template-columns: 1fr;
  }
  .media-logos {
    gap: 10px;
  }
  .media-logo-item {
    padding: 14px 20px;
  }
  .lf-item {
    padding: 14px 20px;
    gap: 12px;
  }
  .lf-time {
    display: none;
  }
  .ct-filters {
    padding: 0 16px 16px;
  }
  .ct-header {
    padding: 20px 16px 0;
  }
  .ct-note {
    padding: 12px 16px;
  }
  .wa-popup-overlay {
    padding: 0 16px 100px;
    align-items: flex-end;
    justify-content: center;
  }
  .wa-popup {
    max-width: 100%;
  }
}
/* ============================================================
   VIDEO TESTIMONIALS
   ============================================================ */
.video-testi-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.video-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color var(--trans),
    transform var(--trans);
}
.video-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}
.video-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    filter 0.3s ease;
  filter: brightness(0.75);
}
.video-card:hover .video-thumb img {
  transform: scale(1.06);
  filter: brightness(0.6);
}
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition:
    background var(--trans),
    transform var(--trans);
}
.video-card:hover .play-btn {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
}
.video-duration {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 3px;
}
.video-recovered {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(34, 197, 94, 0.9);
  color: #fff;
  font-family: "Syne", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.video-info {
  padding: 20px 18px;
}
.video-info .stars {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.video-info p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}
.video-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.video-author strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}
.video-author span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Video Modal */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.video-modal {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 100%;
  max-width: 640px;
  padding: 32px;
  position: relative;
  text-align: center;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.video-modal-overlay.open .video-modal {
  transform: scale(1);
}
.video-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color var(--trans);
}
.video-modal-close:hover {
  color: var(--white);
}
.video-modal-placeholder {
  background: var(--black);
  border-radius: 8px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  border: 1px solid var(--border);
  margin: 20px 0;
}
.video-modal-placeholder span {
  font-size: 3rem;
}
.video-modal-placeholder p {
  font-size: 0.9rem;
}
.video-modal h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.video-modal p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ============================================================
   WORLD MAP
   ============================================================ */
.map-section {
  background: var(--dark);
}
.map-wrap {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 48px;
  min-height: 420px;
}
.map-container {
  width: 100%;
  padding: 32px;
}
.map-container svg {
  width: 100%;
  height: auto;
  display: block;
}
.map-legend {
  position: absolute;
  bottom: 20px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(14, 17, 23, 0.85);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
}
.ml-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
}
.ml-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ml-dot.active {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.6);
}
.ml-dot.covered {
  background: rgba(201, 168, 76, 0.25);
  border: 1px solid rgba(201, 168, 76, 0.4);
}
.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
  z-index: 10;
  transition: transform var(--trans);
}
.map-pin:hover {
  transform: translate(-50%, -100%) scale(1.3);
}
.map-pin-dot {
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.4);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.6);
  animation: pin-pulse 2s ease-in-out infinite;
  position: relative;
}
.map-pin-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.2);
  animation: pin-ring 2s ease-in-out infinite;
}
@keyframes pin-pulse {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(201, 168, 76, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.9);
  }
}
@keyframes pin-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
.map-tooltip {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 8px 14px;
  white-space: nowrap;
  font-size: 0.78rem;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  color: var(--white);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.map-pin:hover .map-tooltip {
  opacity: 1;
}
.map-stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.ms-item {
  background: var(--card);
  padding: 32px 20px;
  text-align: center;
  transition: background var(--trans);
}
.ms-item:hover {
  background: #161a24;
}
.ms-num {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}
.ms-label {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ============================================================
   RECOVERY ESTIMATOR
   ============================================================ */
.estimator-section {
  background: var(--black);
}
.estimator-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.estimator-trust {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.et-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}
.et-item span:first-child {
  font-size: 1.2rem;
}
.estimator-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 44px 40px;
  min-height: 380px;
}
.est-step {
  display: none;
}
.est-step.active {
  display: block;
}
.est-step-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.est-progress {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 28px;
  overflow: hidden;
}
.est-progress-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.4s ease;
}
.est-step h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.est-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.est-opt {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 13px 14px;
  cursor: pointer;
  text-align: left;
  transition:
    border-color var(--trans),
    background var(--trans),
    color var(--trans);
}
.est-opt:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  color: var(--gold);
}
.est-opt.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
}
.est-result-wrap {
  text-align: center;
}
.est-result-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}
.est-result-wrap h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.est-result-score {
  font-family: "Syne", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.est-result-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.est-result-summary {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  text-align: left;
}
.est-restart {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.82rem;
  cursor: pointer;
  margin-top: 16px;
  text-decoration: underline;
  transition: color var(--trans);
}
.est-restart:hover {
  color: var(--white);
}

/* ============================================================
   BLOG / RESOURCES
   ============================================================ */
.blog-section {
  background: var(--dark);
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color var(--trans),
    transform var(--trans);
}
.blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.blog-img {
  position: relative;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.blog-img-sm img {
  height: 140px;
}
.blog-card:hover .blog-img img {
  transform: scale(1.04);
}
.blog-tag-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--black);
  font-family: "Syne", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
}
.blog-body {
  padding: 24px 22px;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.blog-category {
  font-family: "Syne", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--gold);
  text-transform: uppercase;
}
.blog-read {
  font-size: 0.75rem;
  color: var(--muted);
}
.blog-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-featured .blog-body h3 {
  font-size: 1.25rem;
}
.blog-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.blog-link {
  font-family: "Syne", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition:
    color var(--trans),
    letter-spacing var(--trans);
}
.blog-link:hover {
  color: var(--gold-lt);
  letter-spacing: 0.3px;
}
.blog-cards-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-cards-side .blog-card {
  display: grid;
  grid-template-columns: 140px 1fr;
}
.blog-cards-side .blog-img-sm img {
  height: 100%;
  min-height: 130px;
}

/* ============================================================
   URGENCY TIMELINE BANNER
   ============================================================ */
.urgency-sticky {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 150;
  background: linear-gradient(90deg, #1a0a0a, #2a0e0e);
  border-bottom: 1px solid rgba(232, 41, 42, 0.3);
  padding: 12px 0;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.urgency-sticky.show {
  transform: translateY(0);
}
.urgency-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.urgency-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.urgency-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.urgency-text strong {
  font-family: "Syne", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}
.urgency-text span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
.urgency-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.urgency-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8292a;
  color: #fff;
  font-family: "Syne", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--trans);
  white-space: nowrap;
}
.urgency-cta:hover {
  background: #ff3b3c;
}
.urgency-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  cursor: pointer;
  transition: color var(--trans);
  flex-shrink: 0;
}
.urgency-close:hover {
  color: #fff;
}

/* ============================================================
   RESPONSIVE — New Sections
   ============================================================ */
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .map-stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .estimator-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-cards-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
  .map-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .estimator-card {
    padding: 28px 22px;
  }
  .est-options {
    grid-template-columns: 1fr;
  }
  .blog-cards-side {
    grid-template-columns: 1fr;
  }
  .blog-cards-side .blog-card {
    grid-template-columns: 1fr;
  }
  .blog-cards-side .blog-img-sm img {
    height: 160px;
  }
  .urgency-sticky-inner {
    flex-wrap: wrap;
    gap: 10px;
  }
  .urgency-text span {
    display: none;
  }
  .urgency-left {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .map-stats-row {
    grid-template-columns: 1fr 1fr;
  }
}
