.intro-strip { background: var(--light-bg); border-bottom: 1px solid var(--border); padding: 28px 24px; }
.intro-strip-inner { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; }
.intro-stat { display: flex; align-items: center; gap: 12px; }
.intro-stat-num { font-size: 28px; font-weight: 800; color: var(--orange); letter-spacing: -0.03em; }
.intro-stat-label { font-size: 13px; color: var(--muted); line-height: 1.4; }
.section-header { margin-bottom: 36px; }
.section-eyebrow { display: inline-block; background: rgba(249,115,22,0.1); color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 10px; border-radius: 4px; margin-bottom: 10px; }
.section-header h2 { font-size: clamp(22px, 4vw, 32px); font-weight: 800; letter-spacing: -0.02em; color: var(--black); margin-bottom: 8px; }
.section-header p { font-size: 15px; color: var(--muted); max-width: 580px; line-height: 1.6; }
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.svc-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s, border-color .2s; }
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.08); border-color: var(--orange); }
.svc-img { aspect-ratio: 16/9; background-size: cover; background-position: center top; }
.svc-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.svc-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); }
.svc-title { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; color: var(--black); }
.svc-desc { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
.svc-features { list-style: none; margin-top: 4px; display: flex; flex-direction: column; gap: 6px; }
.svc-features li { font-size: 13px; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; }
.svc-features li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.svc-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--orange); margin-top: 8px; }
.svc-arrow .a { width: 24px; height: 24px; background: var(--orange); color: #fff; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }
.emergency-banner { background: #0d1f12; border: 1px solid #1a3a22; border-radius: 16px; padding: 32px; display: flex; flex-direction: column; gap: 20px; margin: 0 24px 48px; max-width: 1200px; }
.emergency-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(74,222,128,0.12); color: var(--brand-accent-light); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 12px; border-radius: 20px; width: fit-content; }
.emergency-dot { width: 7px; height: 7px; background: var(--brand-accent-light); border-radius: 50%; animation: pulse 2s ease infinite; }
.emergency-banner h2 { font-size: clamp(22px, 4vw, 30px); font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.emergency-banner p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.6; max-width: 500px; }
.emergency-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-emergency { background: var(--orange); color: #fff; padding: 14px 26px; border-radius: 100px; font-weight: 700; text-decoration: none; font-size: 15px; }
.btn-emergency:hover { background: var(--orange-dark); }
.btn-emergency-outline { border: 1.5px solid rgba(255,255,255,0.3); color: #fff; padding: 14px 26px; border-radius: 100px; font-weight: 600; text-decoration: none; font-size: 15px; }
.btn-emergency-outline:hover { border-color: #fff; }
.cta-section-inner { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.3); color: #fff; padding: 14px 26px; border-radius: 100px; font-weight: 600; text-decoration: none; font-size: 15px; }
.btn-outline:hover { border-color: #fff; }
@media (min-width: 640px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .emergency-banner { flex-direction: row; align-items: center; justify-content: space-between; margin: 0 auto 48px; }
}
@media (min-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .cta-section-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
