/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  padding: 150px 0 86px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 10% 0%, #552022 0, transparent 36%),
              linear-gradient(135deg, #14110f 0%, #211817 55%, #0e0c0b 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(15px);
  opacity: 0.45;
  pointer-events: none;
}
.hero-orb-one { width:340px;height:340px;background:var(--red);right:-120px;top:120px; }
.hero-orb-two { width:260px;height:260px;background:var(--white);left:-120px;bottom:-130px;opacity:0.05; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  color: var(--white);
  max-width: 820px;
  margin: 0 0 24px;
}

.hero-text {
  max-width: 600px;
  color: rgba(255,255,255,0.7);
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0 0 34px;
}

.hero-actions { display:flex;flex-wrap:wrap;gap:13px; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 44px;
  max-width: 640px;
}
.trust-row div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
}
.trust-row strong { display:block;font-size:1.6rem;line-height:1;color:var(--white);font-family:var(--font-heading); }
.trust-row span { font-size:0.75rem;color:rgba(255,255,255,0.55);font-weight:900;text-transform:uppercase;letter-spacing:0.06em; }

/* Campaign card */
.hero-card { position: relative; }

.campaign-card {
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 40px 100px rgba(0,0,0,0.32);
  backdrop-filter: blur(18px);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
  margin-bottom: 22px;
}
.card-topline-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 8px rgba(52,211,153,0.12);
}

.campaign-card h2 {
  font-size: 2rem;
  color: var(--white);
  margin: 0 0 8px;
}
.campaign-card p { color: rgba(255,255,255,0.6); margin: 0; font-size: 0.92rem; }

.map-visual {
  height: 260px;
  margin: 22px 0;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.09);
}
.map-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, #000, transparent 80%);
}
.map-visual svg {
  position: absolute;
  inset: 12%; width: 76%; height: 76%;
  fill: none;
  stroke: var(--red-light);
  stroke-width: 5;
  stroke-linecap: round;
  filter: drop-shadow(0 10px 16px rgba(139,0,0,0.35));
  stroke-dasharray: 720;
  stroke-dashoffset: 720;
  animation: draw-route 2s 0.4s forwards cubic-bezier(0.22,1,0.36,1);
}
@keyframes draw-route { to { stroke-dashoffset: 0; } }

.map-pin {
  position: absolute; z-index: 2;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--red-2);
  box-shadow: 0 0 0 9px rgba(178,13,24,0.22);
}
.map-pin-a { left: 17%; top: 64%; }
.map-pin-b { left: 53%; top: 42%; }
.map-pin-c { right: 16%; top: 58%; }

.campaign-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}
.campaign-stat {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
}
.campaign-stat span { display:block;color:rgba(255,255,255,0.5);font-size:0.72rem;font-weight:900;text-transform:uppercase;letter-spacing:0.05em; }
.campaign-stat strong { font-size:1.25rem;color:var(--white); }

.floating-note {
  position: absolute;
  left: -28px; bottom: 34px;
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

/* ===== LOGO STRIP ===== */
.logo-strip {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.strip-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: auto;
}
.strip-inner span { font-size:0.8rem;letter-spacing:0.12em;text-transform:uppercase;font-weight:900;white-space:nowrap; }
.strip-inner span:first-child { color:var(--white); }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

/* ===== PROCESS (split layout) ===== */
.process-section { background: var(--paper-2); }

.split-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.sticky-copy { position: sticky; top: 130px; }
.sticky-copy h2 { color: var(--ink); margin: 0 0 18px; }
.sticky-copy p { color: var(--muted); }
.sticky-copy ul {
  margin: 28px 0 0; padding: 0; list-style: none;
  display: grid; gap: 12px;
}
.sticky-copy li {
  padding-left: 28px; position: relative;
  font-weight: 800; font-size: 0.95rem; color: var(--ink);
}
.sticky-copy li::before { content:'✓';position:absolute;left:0;color:var(--red);font-weight:900; }

.timeline { display: grid; gap: 16px; }

/* ===== COVERAGE ===== */
.coverage-section { background: linear-gradient(180deg, var(--paper), var(--white)); }

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.coverage-panel {
  border-radius: var(--radius);
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.coverage-panel h2 { margin: 0 0 16px; }
.coverage-panel p { color: var(--muted); margin-bottom: 28px; }
.coverage-panel ul { margin:0;padding:0;list-style:none;display:grid;gap:12px; }
.coverage-panel li { padding-left:28px;position:relative;font-weight:800;font-size:0.95rem; }
.coverage-panel li::before { content:'✓';position:absolute;left:0;color:var(--red);font-weight:900; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

/* ===== BLOG ===== */
.blog-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:20px; }
.blog-section-header {
  display:flex;align-items:flex-end;justify-content:space-between;
  margin-bottom:44px;
}

/* ===== MAP SECTION ===== */
.map-section { padding-bottom: 0; }
.map-section-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-info-panel { background:var(--ink);color:var(--white);padding:52px 40px; }
.map-info-panel h3 { color:var(--white);margin-bottom:28px;font-size:1.5rem; }
.map-contact-list { display:flex;flex-direction:column;gap:18px;margin-bottom:32px; }
.map-contact-item { display:flex;gap:14px;align-items:flex-start; }
.map-contact-item svg { color:var(--red-light);flex-shrink:0;margin-top:2px; }
.map-contact-item-content { font-size:0.88rem;color:rgba(255,255,255,0.65);line-height:1.55; }
.map-contact-item-label { display:block;font-size:0.68rem;text-transform:uppercase;letter-spacing:0.1em;color:rgba(255,255,255,0.3);margin-bottom:3px;font-weight:900; }
.map-contact-item-value { color:rgba(255,255,255,0.88);font-weight:600; }
.map-embed { min-height:420px; }
.map-embed iframe { width:100%;height:100%;display:block;border:none; }
