/* ===== Liquid Recovery — Modern Rebuild ===== */
:root {
  --color-bg: #ffffff;
  --color-surface: #f7faf8;
  --color-surface-2: #edf5f0;
  --color-ink: #0e211a;
  --color-ink-soft: #3a4a44;
  --color-muted: #6b7a73;
  --color-line: #e2eae5;
  --color-primary: #66c49a;
  --color-primary-dark: #43a377;
  --color-primary-soft: #e9f9f0;
  --color-accent: #86efac;
  --color-accent-dark: #4ade80;
  --color-warn: #f59e0b;
  --shadow-sm: 0 1px 2px rgba(14, 33, 26, 0.06);
  --shadow-md: 0 10px 30px rgba(14, 33, 26, 0.08);
  --shadow-lg: 0 20px 60px rgba(14, 33, 26, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; height: auto; }

a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

h1 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

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

/* ===== Top Bar ===== */
.topbar {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  padding: 10px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255, 255, 255, 0.9); }
.topbar a:hover { color: #fff; }
.topbar-info { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 6px; }

/* ===== Header ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--color-line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { max-height: 56px; width: auto; }

.nav {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav a {
  color: var(--color-ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav a:hover,
.nav a.active {
  color: var(--color-primary);
  background: var(--color-primary-soft);
}

.nav-cta {
  background: var(--color-primary);
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--color-primary-dark) !important; }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--color-ink);
}
.menu-toggle svg { width: 28px; height: 28px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.6); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: #fff; }
.btn-ghost { background: var(--color-surface-2); color: var(--color-ink); }
.btn-ghost:hover { background: var(--color-primary-soft); color: var(--color-primary-dark); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #226044 0%, #66c49a 55%, #86efac 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-1.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.34;
  mix-blend-mode: screen;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(134, 239, 172, 0.2), transparent 60%);
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.hero-eyebrow .dot { width: 8px; height: 8px; background: #a5ecc0; border-radius: 50%; box-shadow: 0 0 12px #a5ecc0; }
.hero h1 { color: #000; margin-bottom: 20px; max-width: 820px; }
.hero h1 span { color: #000; }
.hero p.lede {
  font-size: clamp(1.125rem, 1.5vw, 1.35rem);
  color: #000;
  max-width: 680px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .btn-primary:hover { background: #000; color: #fff; }
.hero .btn-outline:hover { border-color: #000; color: #000; background: rgba(255, 255, 255, 0.1); }

.hero-stats {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-number {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #000;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label { color: #000; font-size: 0.95rem; margin-top: 8px; }

/* ===== Page Header (for non-home pages) ===== */
.page-header {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #226044 0%, #66c49a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(134, 239, 172, 0.25), transparent 60%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: #fff; margin-bottom: 12px; }
.breadcrumb {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.9); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 8px; color: rgba(255, 255, 255, 0.4); }
.page-header p { max-width: 720px; color: rgba(255, 255, 255, 0.85); font-size: 1.125rem; }

/* ===== Section ===== */
section { padding: 80px 0; }
.section-alt { background: var(--color-surface); }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow {
  display: inline-block;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--color-muted); font-size: 1.125rem; }

/* ===== Cards / Features ===== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
}
a.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-soft);
}
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--color-muted); }

/* ===== Feature List ===== */
.feature-list { list-style: none; display: grid; gap: 14px; }
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--color-ink-soft);
}
.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2366c49a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* ===== Split (image + content) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split-content h2 { margin-bottom: 20px; }
.split-content p { color: var(--color-muted); margin-bottom: 16px; font-size: 1.05rem; }

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 32px 24px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -18px;
  left: 24px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
}
.step h3 { margin: 8px 0 10px; font-size: 1.15rem; }
.step p { color: var(--color-muted); font-size: 0.95rem; }

/* ===== CTA Band ===== */
.cta-band {
  background: linear-gradient(135deg, #66c49a 0%, #86efac 100%);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255, 255, 255, 0.9); max-width: 600px; margin: 0 auto 28px; font-size: 1.125rem; }
.cta-band .btn-primary { background: #fff; color: var(--color-primary-dark); }
.cta-band .btn-primary:hover { background: #f0fdf6; color: var(--color-primary-dark); }

/* ===== Solvent Tabs/Groups ===== */
.solvent-group {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 20px;
}
.solvent-group h3 {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.solvent-group h3::before {
  content: '';
  width: 6px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 3px;
}
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-block;
  padding: 7px 14px;
  background: var(--color-surface-2);
  color: var(--color-ink-soft);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}
.chip:hover { background: var(--color-primary-soft); color: var(--color-primary-dark); }

/* ===== States / Industries Grid ===== */
.tag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.tag-item {
  background: #fff;
  border: 1px solid var(--color-line);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-ink);
  font-weight: 500;
}
.tag-item svg { width: 18px; height: 18px; color: var(--color-primary); flex-shrink: 0; }

/* ===== Team Grid ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); border-color: var(--color-primary-soft); }
.team-card .name { font-weight: 700; font-size: 1.1rem; color: var(--color-ink); margin-bottom: 4px; }
.team-card .role { color: var(--color-primary); font-size: 0.9rem; font-weight: 500; margin-bottom: 16px; }
.team-card .contact-line { display: flex; align-items: center; gap: 8px; color: var(--color-muted); font-size: 0.9rem; }

/* ===== Contact form ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
.info-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.info-row { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--color-line); }
.info-row:last-child { border-bottom: 0; }
.info-row .icon {
  width: 42px;
  height: 42px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-row .icon svg { width: 20px; height: 20px; }
.info-row .label { color: var(--color-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.info-row .value { color: var(--color-ink); font-weight: 600; font-size: 1.05rem; }
.info-row .value a { color: var(--color-ink); }
.info-row .value a:hover { color: var(--color-primary); }

.form-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.form-group .req { color: #dc2626; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-ink);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-soft);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.form-alert {
  display: none;
  padding: 14px 18px;
  background: #f0fdf6;
  border: 1px solid #d7f7e3;
  color: #065f46;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.form-alert.show { display: block; }

/* ===== Footer ===== */
.site-footer {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-grid h4 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; }
.footer-grid a:hover { color: #fff; }
.footer-brand img { max-height: 60px; background: #fff; padding: 10px; border-radius: var(--radius-sm); margin-bottom: 16px; }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; max-width: 360px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--color-primary); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.875rem;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--color-line);
    box-shadow: var(--shadow-md);
    gap: 2px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-cta { text-align: center; margin-top: 8px; }
  section { padding: 60px 0; }
  .hero { padding: 80px 0 60px; }
  .hero-stats { margin-top: 48px; padding-top: 32px; }
  .info-card, .form-card { padding: 28px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-info { font-size: 0.8rem; gap: 12px; }
}

/* ===== Interactive US Map ===== */
.map-wrap {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f0fbf4 100%);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.map-wrap::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(134, 239, 172, 0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.map-wrap::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(102, 196, 154, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
#us-map { width: 100%; height: auto; display: block; position: relative; z-index: 1; }

#us-map path.state {
  fill: #e8efeb;
  stroke: #ffffff;
  stroke-width: 1.2;
  transition: fill 260ms ease, transform 260ms cubic-bezier(0.4, 0, 0.2, 1), filter 260ms ease;
  cursor: default;
  transform-origin: center;
  transform-box: fill-box;
}
#us-map path.state.served {
  fill: url(#served-gradient);
  cursor: pointer;
  filter: drop-shadow(0 2px 4px rgba(102, 196, 154, 0.25));
}
#us-map path.state.served:hover {
  fill: url(#served-gradient-hover);
  transform: translateY(-3px) scale(1.02);
  filter: drop-shadow(0 10px 20px rgba(102, 196, 154, 0.45));
  stroke: #ffffff;
  stroke-width: 1.5;
}
#us-map path.state:not(.served):hover {
  fill: #dde5e0;
  stroke: var(--color-primary);
  stroke-width: 1.5;
}

.map-tooltip {
  position: absolute;
  pointer-events: none;
  background: #0e211a;
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translate(-50%, -120%);
  transition: opacity 180ms ease;
  white-space: nowrap;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.map-tooltip.show { opacity: 1; }
.map-tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #0e211a;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.map-tooltip .state-name { font-weight: 700; font-size: 0.95rem; }
.map-tooltip .state-status { display: flex; align-items: center; gap: 6px; margin-top: 2px; font-size: 0.8rem; }
.map-tooltip .state-status.yes { color: #d7f7e3; }
.map-tooltip .state-status.no { color: #fcd34d; }

.map-legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--color-ink-soft);
}
.map-legend .legend-item { display: flex; align-items: center; gap: 8px; }
.map-legend .swatch {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.map-legend .swatch.served { background: linear-gradient(135deg, #86efac, #66c49a); }
.map-legend .swatch.unserved { background: #e8efeb; }

@media (max-width: 768px) {
  .map-wrap { padding: 16px; }
  .map-legend { gap: 16px; font-size: 0.85rem; }
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.fade-in {
  animation: fadeIn 0.6s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ===== Home card-icon animations (ported from index.html) ===== */
.card-icon { background: transparent; width: 60px; height: 60px; margin-bottom: 18px; overflow: visible; }
  .card-icon svg { width: 56px; height: 56px; }
  .card-icon [class^="a-"] { transform-box: fill-box; transform-origin: center; }
  @keyframes a-spin { to { transform: rotate(360deg); } }
  @keyframes a-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3.5px); } }
  @keyframes a-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.1); } }
  @keyframes a-blink { 0%,100% { opacity: .3; } 50% { opacity: 1; } }
  .a-spin { animation: a-spin 4s linear infinite; }
  .a-spin-f { animation: a-spin 1.6s linear infinite; }
  .a-bob { animation: a-bob 2.2s ease-in-out infinite; }
  .a-pulse { animation: a-pulse 2.2s ease-in-out infinite; }
  .a-blink { animation: a-blink 1.8s ease-in-out infinite; }
  @media (prefers-reduced-motion: reduce) { .card-icon [class^="a-"] { animation: none !important; } }

/* ===== Industries illustration styles (ported from industries-served.html) ===== */
.ind-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(186px, 1fr)); gap: 18px; margin-top: 8px; }
  .ind-card { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-md); padding: 22px 16px 18px; text-align: center; box-shadow: var(--shadow-sm); }
  .ind-ill { width: 62px; height: 62px; display: block; margin: 0 auto 12px; overflow: visible; }
  .ind-name { font-weight: 700; font-size: .98rem; color: var(--color-ink); line-height: 1.2; }
  .ind-sub { font-size: .76rem; color: var(--color-muted); margin-top: 5px; line-height: 1.3; }

  /* animation primitives */
  .ind-ill [class^="a-"] { transform-box: fill-box; transform-origin: center; }
  @keyframes a-spin { to { transform: rotate(360deg); } }
  @keyframes a-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3.5px); } }
  @keyframes a-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.14); } }
  @keyframes a-sway { 0%,100% { transform: rotate(-7deg); } 50% { transform: rotate(7deg); } }
  @keyframes a-rise { 0% { transform: translateY(5px); opacity: 0; } 40% { opacity: 1; } 100% { transform: translateY(-10px); opacity: 0; } }
  @keyframes a-drip { 0% { transform: translateY(-2px); opacity: 0; } 25% { opacity: 1; } 100% { transform: translateY(12px); opacity: 0; } }
  @keyframes a-blink { 0%,100% { opacity: .22; } 50% { opacity: 1; } }
  @keyframes a-fly { 0% { transform: translate(-5px,2px); } 50% { transform: translate(5px,-2px); } 100% { transform: translate(-5px,2px); } }
  @keyframes a-shimmer { 0% { transform: translateX(-22px); opacity: 0; } 50% { opacity: .85; } 100% { transform: translateX(22px); opacity: 0; } }
  @keyframes a-rock { 0%,100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }
  @keyframes a-wobble { 0%,100% { transform: scale(1,1); } 50% { transform: scale(1.06,.92); } }
  @keyframes a-door { 0%,100% { transform: scaleX(1); } 50% { transform: scaleX(.25); } }

  .a-spin { animation: a-spin 3.2s linear infinite; }
  .a-spin-f { animation: a-spin 1.5s linear infinite; }
  .a-bob { animation: a-bob 2.2s ease-in-out infinite; }
  .a-pulse { animation: a-pulse 2s ease-in-out infinite; }
  .a-sway { animation: a-sway 2.6s ease-in-out infinite; }
  .a-rise { animation: a-rise 2.4s ease-in-out infinite; }
  .a-rise2 { animation: a-rise 2.4s ease-in-out .8s infinite; }
  .a-rise3 { animation: a-rise 2.4s ease-in-out 1.6s infinite; }
  .a-drip { animation: a-drip 2.6s ease-in infinite; }
  .a-blink { animation: a-blink 1.6s ease-in-out infinite; }
  .a-blink2 { animation: a-blink 1.6s ease-in-out .5s infinite; }
  .a-blink3 { animation: a-blink 1.6s ease-in-out 1s infinite; }
  .a-fly { animation: a-fly 3s ease-in-out infinite; }
  .a-shimmer { animation: a-shimmer 3s ease-in-out infinite; }
  .a-rock { animation: a-rock 2.4s ease-in-out infinite; }
  .a-wobble { animation: a-wobble 2s ease-in-out infinite; }
  .a-door { animation: a-door 3.2s ease-in-out infinite; }

  .ind-ill [class^="a-"] { animation: none !important; }
