/* ABT Solutions — enterprise theme
 * Palette: deep indigo + electric cyan + amber accents
 */
:root {
  --ink-950: #05080f;
  --ink-900: #0a0f1e;
  --ink-800: #111827;
  --ink-700: #1e293b;
  --ink-600: #334155;
  --cyan-600: #0891b2;
  --cyan-500: #06b6d4;
  --cyan-400: #22d3ee;
  --cyan-300: #67e8f9;
  --cyan-soft: rgba(6, 182, 212, 0.12);
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --red-600: #dc2626;
  --red-500: #ef4444;
  --text: #0f172a;
  --muted: #64748b;
  --muted-light: #94a3b8;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --surface-tint: #f1f5f9;
  --max: 1200px;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow: 0 10px 30px -12px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(6, 182, 212, 0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 8, 15, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.brand-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-400));
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #05080f;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.03em;
}
.brand-text {
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.02rem;
}
.brand-text small {
  display: block;
  font-weight: 400;
  font-size: 0.68rem;
  color: #64748b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links > a {
  color: #cbd5e1;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 8px 0;
  position: relative;
}
.nav-links > a:hover { color: #fff; }
.nav-links > a.active { color: #fff; }
.nav-links > a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan-500);
  border-radius: 2px;
}

.has-dropdown { position: relative; }
.dropdown-toggle::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
}
.dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 8px;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.4;
  transition: background 0.15s, color 0.15s;
}
.dropdown a:hover { background: rgba(6, 182, 212, 0.12); color: #fff; }
.dropdown a strong { display: block; color: #fff; font-weight: 600; margin-bottom: 2px; }
.dropdown a span { color: #64748b; font-size: 0.82rem; display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  font-family: inherit;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--cyan-500); color: #fff; }
.btn-primary:hover { background: var(--cyan-600); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }
.btn-alert {
  background: var(--red-600);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.6);
  animation: pulse 2.4s ease-in-out infinite;
}
.btn-alert:hover { background: #b91c1c; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
}
.btn-dark { background: var(--ink-900); color: #fff; }
.btn-dark:hover { background: var(--ink-800); }
.btn-lg { padding: 14px 26px; font-size: 1rem; }

@media (max-width: 900px) {
  .nav-links { gap: 14px; }
  .nav-links > a:not(.btn) { display: none; }
  .nav-links .btn { padding: 9px 16px; font-size: 0.85rem; }
}

/* ---- HERO / PAGE HEADER ---- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(6, 182, 212, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(34, 211, 238, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--ink-950) 0%, var(--ink-900) 100%);
  color: #fff;
  padding: 110px 0 130px;
  overflow: hidden;
}
.hero::before {
  content: "";
  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: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
}
.hero-content { position: relative; max-width: 860px; }

.page-header {
  position: relative;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(6, 182, 212, 0.14) 0%, transparent 60%),
    linear-gradient(180deg, var(--ink-950) 0%, var(--ink-900) 100%);
  color: #fff;
  padding: 80px 0 90px;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.page-header .container { position: relative; }

.eyebrow-white {
  color: var(--cyan-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  margin-bottom: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: var(--cyan-300);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(6, 182, 212, 0.25);
}
.tag-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan-400);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 22px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--cyan-400), #a5f3fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  font-size: 1.18rem;
  color: #cbd5e1;
  max-width: 660px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 16px;
  max-width: 800px;
}
.page-header p.lead {
  font-size: 1.08rem;
  color: #94a3b8;
  max-width: 680px;
}

/* ---- STATS ---- */
.stats {
  background: var(--ink-800);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: "Inter", sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--cyan-400);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  color: #94a3b8;
  font-size: 0.88rem;
  margin-top: 8px;
  font-weight: 500;
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .stat:last-child { border-bottom: none; }
}

/* ---- SECTIONS ---- */
section { padding: 92px 0; }
section.alt { background: var(--surface-alt); }
section.dark { background: var(--ink-900); color: #fff; }
section.dark h1, section.dark h2, section.dark h3 { color: #fff; }

.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.eyebrow {
  color: var(--cyan-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  margin-bottom: 16px;
}
.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ---- CARDS / GRID ---- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-500);
  box-shadow: var(--shadow);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: var(--cyan-soft);
  color: var(--cyan-600);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan-600);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 16px;
  transition: gap 0.2s;
}
.card-link:hover { gap: 10px; color: var(--cyan-500); }

/* ---- PROCESS / STEPS ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-500), var(--cyan-400), var(--cyan-500));
  opacity: 0.3;
  z-index: 0;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px 18px;
  border-radius: 12px;
  text-align: center;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink-900);
  color: var(--cyan-400);
  font-weight: 700;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  margin: -48px auto 18px;
  border: 4px solid var(--surface-alt);
  position: relative;
  z-index: 1;
}
section:not(.alt) .step-num { border-color: var(--surface); }
.step h4 { font-size: 1rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.86rem; line-height: 1.5; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
}
@media (max-width: 500px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---- SPLIT / FEATURE ROW ---- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1fr 1.05fr; }
.split.reverse > div:first-child { order: 2; }
@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse > div:first-child { order: 0; }
}
.split h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); margin-bottom: 18px; }
.split p.lead { color: var(--muted); font-size: 1.02rem; margin-bottom: 24px; }

.checks { display: grid; gap: 14px; }
.check { display: flex; gap: 12px; align-items: flex-start; }
.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cyan-500);
  color: #fff;
  display: grid;
  place-items: center;
  margin-top: 3px;
}
.check strong { display: block; font-weight: 600; margin-bottom: 2px; }
.check span { color: var(--muted); font-size: 0.93rem; line-height: 1.55; }

.visual-dark {
  background: linear-gradient(135deg, var(--ink-800), var(--ink-700));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.visual-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
.visual-dark > * { position: relative; }
.visual-dark h3 { color: #fff; font-size: 1.3rem; margin-bottom: 16px; }
.visual-dark ul { list-style: none; display: grid; gap: 10px; }
.visual-dark li { display: flex; gap: 10px; align-items: center; color: #cbd5e1; font-size: 0.96rem; }
.visual-dark li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--cyan-400);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(6, 182, 212, 0.22) 0%, transparent 50%),
    linear-gradient(135deg, var(--ink-900), var(--ink-800));
  color: #fff;
  padding: 72px 48px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.cta-banner p { color: #cbd5e1; max-width: 580px; margin: 0 auto 30px; font-size: 1.04rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- TEAM / FOUNDERS ---- */
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 800px) { .founders { grid-template-columns: 1fr; } }
.founder {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: var(--radius-lg);
}
.founder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-400));
  color: #05080f;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.founder h3 { font-size: 1.25rem; margin-bottom: 4px; }
.founder .role { color: var(--cyan-600); font-weight: 600; font-size: 0.92rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.founder p { color: var(--muted); font-size: 0.96rem; margin-bottom: 14px; }
.founder blockquote {
  margin-top: 20px;
  padding: 16px 20px;
  border-left: 3px solid var(--cyan-500);
  background: var(--surface-alt);
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  color: var(--text);
  font-style: italic;
}

/* ---- BLOG LIST ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.post {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.post:hover { border-color: var(--cyan-500); transform: translateY(-3px); box-shadow: var(--shadow); }
.post-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.82rem;
  color: var(--muted);
}
.post-tag {
  background: var(--cyan-soft);
  color: var(--cyan-600);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.72rem;
}
.post h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.3; }
.post p { color: var(--muted); font-size: 0.93rem; flex: 1; margin-bottom: 16px; }

/* ---- CONTACT ---- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
}
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 14px; }
.contact-info p.lead { color: var(--muted); margin-bottom: 32px; font-size: 1.02rem; }
.contact-list { display: grid; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--cyan-soft);
  color: var(--cyan-600);
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.contact-item strong { display: block; font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
.contact-item a, .contact-item span { color: var(--text); font-weight: 500; font-size: 1rem; }
.contact-item a:hover { color: var(--cyan-600); }

.resource-list {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.resource-list h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 14px; font-weight: 600; }
.resource-list ul { list-style: none; display: grid; gap: 8px; }
.resource-list a { color: var(--cyan-600); font-size: 0.92rem; font-weight: 500; }
.resource-list a:hover { text-decoration: underline; }

form.form {
  background: var(--surface);
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  gap: 16px;
}
.field { display: grid; gap: 6px; }
.field.half-row { grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .field.half-row { grid-template-columns: 1fr; } }
.field.half-row > div { display: grid; gap: 6px; }
.field label { font-size: 0.85rem; font-weight: 600; }
.field label .req { color: var(--red-500); }
.field input, .field textarea, .field select {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px var(--cyan-soft);
}
.field textarea { resize: vertical; min-height: 130px; }
form.form button { justify-self: start; }
.form-error, .form-success {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
}
.form-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.form-success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }

/* ---- EMERGENCY / ATTACKED ---- */
.emergency {
  background: linear-gradient(135deg, #450a0a 0%, #7f1d1d 100%);
  padding: 110px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.emergency::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(239, 68, 68, 0.3) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 80%, rgba(248, 113, 113, 0.2) 0%, transparent 45%);
}
.emergency .container { position: relative; z-index: 1; }
.emergency .tag {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.4);
}
.emergency .tag-dot { background: #ef4444; box-shadow: 0 0 12px #ef4444; }
.emergency h1 { color: #fff; }
.emergency-phone {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  color: var(--red-600);
  padding: 18px 28px;
  border-radius: 14px;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 24px 0;
  letter-spacing: -0.02em;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.4);
}
.emergency-phone:hover { transform: translateY(-2px); }
.emergency-phone svg { color: var(--red-600); }

/* ---- PAGE-SPECIFIC: what to do now list ---- */
.action-list {
  display: grid;
  gap: 14px;
  counter-reset: action;
}
.action-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px 22px 70px;
  position: relative;
}
.action-item::before {
  counter-increment: action;
  content: counter(action);
  position: absolute;
  left: 20px;
  top: 22px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cyan-500);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.action-item h4 { font-size: 1rem; margin-bottom: 4px; }
.action-item p { color: var(--muted); font-size: 0.92rem; }

/* ---- FOOTER ---- */
footer {
  background: var(--ink-950);
  color: #94a3b8;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
footer h4 {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
footer ul { list-style: none; display: grid; gap: 10px; }
footer a { transition: color 0.15s; }
footer a:hover { color: var(--cyan-400); }
footer p { font-size: 0.92rem; line-height: 1.7; max-width: 380px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #64748b;
}

/* ---- UTIL ---- */
.mt-0 { margin-top: 0 !important; }
.mt-6 { margin-top: 48px; }
.text-center { text-align: center; }
.bullet-list { list-style: none; display: grid; gap: 10px; }
.bullet-list li { padding-left: 22px; position: relative; color: var(--muted); }
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--cyan-500);
  border-radius: 2px;
}
