@charset "UTF-8";
/* ==========================================================================
   EquipMachines.com — style-v2.css
   Design system: "Machine Nameplate"
   Companion sheet for Bootstrap 5.3. Loaded AFTER bootstrap.min.css.

   All classes are namespaced .eqm-* so this file can co-exist with the
   legacy style1.css while inner pages are migrated one by one.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand — kept from the existing identity, tightened to two accents */
  --eqm-violet:        #5f05ab;
  --eqm-violet-dark:   #3d0071;
  --eqm-violet-ink:    #24003d;
  --eqm-violet-tint:   #f3ecfb;
  --eqm-signal:        #fcf113;   /* hi-vis yellow — hard hats, machine guarding */
  --eqm-signal-deep:   #d8ce00;

  /* Neutrals — mill-finish steel greys */
  --eqm-ink:           #141019;
  --eqm-ink-soft:      #2a2335;
  --eqm-steel:         #5c6472;
  --eqm-steel-light:   #8b93a1;
  --eqm-mist:          #f4f5f8;
  --eqm-paper:         #ffffff;
  --eqm-line:          #e3e5ec;

  /* Type */
  --eqm-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --eqm-body:    "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --eqm-mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Geometry — sharp, plate-like. Nothing pill-shaped. */
  --eqm-radius: 3px;
  --eqm-shadow-sm: 0 1px 2px rgba(20, 16, 25, .06);
  --eqm-shadow:    0 10px 30px -12px rgba(20, 16, 25, .18);
  --eqm-shadow-lg: 0 24px 60px -20px rgba(20, 16, 25, .28);

  /* Rhythm */
  --eqm-section-y: clamp(3.5rem, 6vw, 6.5rem);
  --eqm-header-h: 92px;
}

/* --------------------------------------------------------------------------
   2. BASE
   -------------------------------------------------------------------------- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--eqm-body);
  font-size: 1.0625rem;   /* 17px — matches the density of the old site (18px) */
  line-height: 1.65;
  color: var(--eqm-ink-soft);
  background: var(--eqm-paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .eqm-display {
  font-family: var(--eqm-display);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.05;
  color: var(--eqm-ink);
  text-wrap: balance;
}

a { color: var(--eqm-violet); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--eqm-violet-dark); }

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

::selection { background: var(--eqm-signal); color: var(--eqm-ink); }

:focus-visible {
  outline: 3px solid var(--eqm-violet);
  outline-offset: 2px;
}

.eqm-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--eqm-signal);
  color: var(--eqm-ink);
  padding: .75rem 1.25rem;
  font-weight: 600;
}
.eqm-skip:focus { left: 0; }

/* --------------------------------------------------------------------------
   3. SIGNATURE ELEMENT — the hazard rule
   A 45° yellow/ink stripe lifted straight off machine-guarding tape and
   factory floor marking. It is the one decorative device on the page; every
   section eyebrow and every band edge uses it, nothing else competes.
   -------------------------------------------------------------------------- */
.eqm-rule {
  display: block;
  width: 68px;
  height: 7px;
  background: repeating-linear-gradient(
    45deg,
    var(--eqm-ink) 0 6px,
    var(--eqm-signal) 6px 12px
  );
}
.eqm-rule--center { margin-inline: auto; }
.eqm-rule--light {
  background: repeating-linear-gradient(
    45deg,
    var(--eqm-violet-ink) 0 6px,
    var(--eqm-signal) 6px 12px
  );
}
.eqm-hazard-edge {
  height: 7px;
  background: repeating-linear-gradient(
    45deg,
    var(--eqm-ink) 0 8px,
    var(--eqm-signal) 8px 16px
  );
}

/* --------------------------------------------------------------------------
   4. TYPE HELPERS
   -------------------------------------------------------------------------- */
.eqm-eyebrow {
  font-family: var(--eqm-mono);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--eqm-violet);
  margin: 0 0 .85rem;
}
.eqm-eyebrow--light { color: var(--eqm-signal); }

.eqm-title {
  font-size: clamp(2.35rem, 4.8vw, 4.1rem);
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.eqm-title--sm { font-size: clamp(1.95rem, 3.3vw, 2.95rem); }

.eqm-lede {
  font-size: 1.15rem;
  color: var(--eqm-steel);
  max-width: 62ch;
  margin: 0;
}
.eqm-lede--light { color: rgba(255, 255, 255, .82); }

.eqm-section { padding: var(--eqm-section-y) 0; }
.eqm-section--mist { background: var(--eqm-mist); }

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.eqm-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--eqm-body);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border: 2px solid transparent;
  border-radius: var(--eqm-radius);
  cursor: pointer;
  transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.eqm-btn:active { transform: translateY(1px); }
.eqm-btn svg { width: 16px; height: 16px; flex: none; }

.eqm-btn--solid { background: var(--eqm-violet); color: #fff; }
.eqm-btn--solid:hover { background: var(--eqm-violet-dark); color: #fff; }

.eqm-btn--signal { background: var(--eqm-signal); color: var(--eqm-ink); }
.eqm-btn--signal:hover { background: #fff; color: var(--eqm-ink); }

.eqm-btn--ghost {
  background: transparent;
  color: var(--eqm-ink);
  border-color: var(--eqm-ink);
}
.eqm-btn--ghost:hover { background: var(--eqm-ink); color: #fff; }

.eqm-btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}
.eqm-btn--ghost-light:hover { background: #fff; color: var(--eqm-violet); }

/* --------------------------------------------------------------------------
   6. HEADER
   -------------------------------------------------------------------------- */
.eqm-topbar {
  background: var(--eqm-ink);
  color: rgba(255, 255, 255, .74);
  font-size: .875rem;
  padding: .5rem 0;
}
.eqm-topbar a { color: rgba(255, 255, 255, .74); }
.eqm-topbar a:hover { color: var(--eqm-signal); }
.eqm-topbar__note {
  font-family: var(--eqm-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .75rem;
}

.eqm-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--eqm-violet);
  transition: box-shadow .25s ease, background .25s ease;
}
.eqm-header.is-stuck {
  background: var(--eqm-violet-dark);
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, .55);
}
.eqm-header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--eqm-header-h);
}

.eqm-logo {
  flex: none;
  display: flex;
  align-items: center;
  background: #fff;
  padding: .55rem .95rem;
  border-radius: var(--eqm-radius);
  margin: .55rem 0;
}
.eqm-logo img { max-height: 52px; width: auto; display: block; }

.eqm-nav { margin-left: auto; }
.eqm-nav > ul {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.eqm-nav > ul > li { position: relative; }
.eqm-nav > ul > li > a {
  display: block;
  font-family: var(--eqm-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  padding: 1.75rem .95rem;
  position: relative;
}
.eqm-nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: .9rem;
  right: .9rem;
  bottom: 1.05rem;
  height: 3px;
  background: var(--eqm-signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.eqm-nav > ul > li > a:hover,
.eqm-nav > ul > li.active > a { color: #fff; }
.eqm-nav > ul > li > a:hover::after,
.eqm-nav > ul > li.active > a::after { transform: scaleX(1); }

/* Mega menu — wraps the existing subcategorylist.php output */
.eqm-mega {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 320px;
  background: #fff;
  border-top: 4px solid var(--eqm-signal);
  box-shadow: var(--eqm-shadow-lg);
  padding: 1.25rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.eqm-has-mega:hover > .eqm-mega,
.eqm-has-mega:focus-within > .eqm-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.eqm-mega ul { list-style: none; margin: 0; padding: 0; }
.eqm-mega li a {
  display: block;
  padding: .55rem 1.5rem;
  font-size: .95rem;
  color: var(--eqm-ink-soft);
}
.eqm-mega li a:hover { background: var(--eqm-violet-tint); color: var(--eqm-violet); }

/* Search */
.eqm-search { flex: 0 1 300px; }
.eqm-search .form-control {
  border: 0;
  border-radius: var(--eqm-radius) 0 0 var(--eqm-radius);
  height: 48px;
  font-size: .95rem;
  box-shadow: none;
}
.eqm-search .form-control:focus { box-shadow: inset 0 0 0 2px var(--eqm-signal); }
.eqm-search .eqm-search__btn {
  background: var(--eqm-signal);
  color: var(--eqm-ink);
  border: 0;
  border-radius: 0 var(--eqm-radius) var(--eqm-radius) 0;
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding-inline: 1.1rem;
}
.eqm-search .eqm-search__btn:hover { background: #fff; }

/* Mobile toggle */
.eqm-burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: transparent;
  border-radius: var(--eqm-radius);
  color: #fff;
  align-items: center;
  justify-content: center;
}
.eqm-burger svg { width: 22px; height: 22px; }

/* Offcanvas (mobile nav) */
.eqm-offcanvas { background: var(--eqm-violet-ink); color: #fff; }
.eqm-offcanvas .btn-close { filter: invert(1) grayscale(1) brightness(2); }
.eqm-offcanvas ul { list-style: none; margin: 0; padding: 0; }
.eqm-offcanvas > .offcanvas-body > ul > li { border-bottom: 1px solid rgba(255, 255, 255, .12); }
.eqm-offcanvas a {
  display: block;
  color: #fff;
  padding: .85rem 0;
  font-family: var(--eqm-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.eqm-offcanvas a:hover { color: var(--eqm-signal); }
.eqm-offcanvas .eqm-mega {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: transparent;
  box-shadow: none;
  border: 0;
  padding: 0 0 .75rem .9rem;
}
.eqm-offcanvas .eqm-mega a {
  font-family: var(--eqm-body);
  font-size: .95rem;
  text-transform: none;
  padding: .35rem 0;
  color: rgba(255, 255, 255, .78);
}

@media (max-width: 1199.98px) {
  .eqm-nav, .eqm-search { display: none; }
  .eqm-burger { display: inline-flex; }
  .eqm-header__inner { justify-content: space-between; }
}

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.eqm-hero { position: relative; background: var(--eqm-ink); }
.eqm-hero .carousel-item { position: relative; }
.eqm-hero__media {
  position: relative;
  height: clamp(480px, 70vh, 720px);
  overflow: hidden;
}
.eqm-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.eqm-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(20, 16, 25, .92) 0%,
    rgba(36, 0, 61, .72) 42%,
    rgba(36, 0, 61, .12) 78%
  );
}
.eqm-hero__body {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}
.eqm-hero__inner { max-width: 640px; color: #fff; }
.eqm-hero__inner :is(h1, h2, h3, h4, p) { color: inherit; }
.eqm-hero__inner h1,
.eqm-hero__inner h2 {
  font-size: clamp(2.6rem, 6vw, 5.25rem);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.eqm-hero__inner p { font-size: 1.2rem; color: rgba(255, 255, 255, .85); }
.eqm-hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }

.eqm-hero .carousel-indicators {
  margin-bottom: 1.75rem;
  gap: .4rem;
}
.eqm-hero .carousel-indicators [data-bs-target] {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, .4);
  opacity: 1;
}
.eqm-hero .carousel-indicators .active { background: var(--eqm-signal); }
.eqm-hero .carousel-control-prev,
.eqm-hero .carousel-control-next { width: 6%; opacity: .65; }

/* Spec strip directly under the hero — real sourcing data, not decoration */
.eqm-specstrip {
  background: var(--eqm-ink);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.eqm-specstrip ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.eqm-specstrip li {
  padding: 1.15rem 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .62);
  font-family: var(--eqm-mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eqm-specstrip li:first-child { border-left: 0; }
.eqm-specstrip b {
  display: block;
  font-family: var(--eqm-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--eqm-signal);
  line-height: 1.1;
}
@media (max-width: 767.98px) {
  .eqm-specstrip ul { grid-template-columns: repeat(2, 1fr); }
  .eqm-specstrip li:nth-child(3) { border-left: 0; }
  .eqm-specstrip li:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .08); }
}

/* --------------------------------------------------------------------------
   8. NAMEPLATE CARD — categories & products
   Each card reads like the ID plate riveted to a machine: mono spec code,
   flat plate, one clipped corner.
   -------------------------------------------------------------------------- */
.eqm-plate {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--eqm-line);
  border-radius: var(--eqm-radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.eqm-plate:hover {
  transform: translateY(-4px);
  border-color: var(--eqm-violet);
  box-shadow: var(--eqm-shadow);
}
.eqm-plate__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--eqm-mist);
  overflow: hidden;
}
.eqm-plate__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.25rem;
  transition: transform .45s ease;
}
.eqm-plate:hover .eqm-plate__media img { transform: scale(1.06); }
.eqm-plate__code {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  font-family: var(--eqm-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  color: #fff;
  background: var(--eqm-ink);
  padding: .3rem .6rem;
}
.eqm-plate__body {
  padding: 1.1rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  flex: 1;
}
.eqm-plate__name {
  font-family: var(--eqm-display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--eqm-ink);
  margin: 0;
  text-transform: uppercase;
}
.eqm-plate:hover .eqm-plate__name { color: var(--eqm-violet); }
.eqm-plate__meta {
  margin-top: auto;
  font-family: var(--eqm-mono);
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--eqm-steel-light);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.eqm-plate:hover .eqm-plate__meta { color: var(--eqm-violet); }

/* --------------------------------------------------------------------------
   9. RAIL — scroll-snap slider replacing Owl Carousel (zero JS libraries)
   -------------------------------------------------------------------------- */
.eqm-rail { position: relative; }
.eqm-rail__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(275px, 1fr);
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: .75rem;
  scrollbar-width: thin;
  scrollbar-color: var(--eqm-line) transparent;
}
.eqm-rail__track > * { scroll-snap-align: start; }
.eqm-rail__track::-webkit-scrollbar { height: 4px; }
.eqm-rail__track::-webkit-scrollbar-thumb { background: var(--eqm-line); }
@media (min-width: 992px) {
  .eqm-rail__track { grid-auto-columns: calc((100% - 3.75rem) / 4); }
  .eqm-rail--3 .eqm-rail__track { grid-auto-columns: calc((100% - 2.5rem) / 3); }
}
.eqm-rail__nav { display: flex; gap: .5rem; }
.eqm-rail__btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--eqm-line);
  border-radius: var(--eqm-radius);
  color: var(--eqm-ink);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.eqm-rail__btn:hover { background: var(--eqm-violet); border-color: var(--eqm-violet); color: #fff; }
.eqm-rail__btn svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   10. ABOUT
   -------------------------------------------------------------------------- */
.eqm-about__media {
  position: relative;
  border-radius: var(--eqm-radius);
  overflow: hidden;
}
.eqm-about__media img { width: 100%; display: block; }
.eqm-about__badge {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--eqm-signal);
  color: var(--eqm-ink);
  padding: 1rem 1.4rem;
  font-family: var(--eqm-display);
  text-transform: uppercase;
  line-height: 1.1;
}
.eqm-about__badge b { display: block; font-size: 2.6rem; }
.eqm-about__badge span { font-family: var(--eqm-mono); font-size: .74rem; letter-spacing: .14em; }

.eqm-checks { list-style: none; margin: 1.5rem 0 2rem; padding: 0; display: grid; gap: .6rem; }
.eqm-checks li { display: flex; gap: .7rem; align-items: flex-start; font-size: 1.05rem; }
.eqm-checks svg { width: 18px; height: 18px; flex: none; margin-top: .3rem; color: var(--eqm-violet); }

/* --------------------------------------------------------------------------
   11. WHY CHOOSE US — violet band with hi-vis tiles
   -------------------------------------------------------------------------- */
.eqm-why {
  background:
    radial-gradient(120% 120% at 0% 0%, var(--eqm-violet) 0%, var(--eqm-violet-ink) 70%);
  color: #fff;
  position: relative;
}
.eqm-why .eqm-title { color: #fff; }
.eqm-why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.eqm-why__tile {
  display: block;
  background: var(--eqm-signal);
  color: var(--eqm-ink);
  padding: 1.6rem 1.4rem;
  border-radius: var(--eqm-radius);
  transition: transform .22s ease, background .22s ease;
}
.eqm-why__tile:hover { transform: translateY(-4px); background: #fff; color: var(--eqm-ink); }
.eqm-why__tile img { width: 44px; height: 44px; object-fit: contain; margin-bottom: .9rem; }
.eqm-why__tile span {
  display: block;
  font-family: var(--eqm-display);
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
}
@media (max-width: 575.98px) { .eqm-why__grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   12. SEO BLOCK 1 — Industries we serve (internal link hub)
   -------------------------------------------------------------------------- */
.eqm-industry {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.15rem;
  background: #fff;
  border: 1px solid var(--eqm-line);
  border-left: 4px solid var(--eqm-violet);
  border-radius: var(--eqm-radius);
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease, border-left-color .2s ease;
}
.eqm-industry:hover {
  transform: translateX(3px);
  border-left-color: var(--eqm-signal);
  box-shadow: var(--eqm-shadow-sm);
}
.eqm-industry__no {
  font-family: var(--eqm-mono);
  font-size: .76rem;
  color: var(--eqm-steel-light);
  letter-spacing: .1em;
}
.eqm-industry strong {
  display: block;
  font-family: var(--eqm-display);
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--eqm-ink);
  line-height: 1.2;
}
.eqm-industry small { color: var(--eqm-steel); font-size: .92rem; line-height: 1.45; display: block; margin-top: .15rem; }

/* --------------------------------------------------------------------------
   13. SEO BLOCK 2 — Export markets
   -------------------------------------------------------------------------- */
.eqm-markets { background: var(--eqm-ink); color: rgba(255, 255, 255, .8); }
.eqm-markets .eqm-title { color: #fff; }
.eqm-market-list { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 0; padding: 0; }
.eqm-market-list a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .9rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--eqm-radius);
  color: rgba(255, 255, 255, .8);
  font-size: .95rem;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.eqm-market-list a:hover {
  background: var(--eqm-signal);
  border-color: var(--eqm-signal);
  color: var(--eqm-ink);
}
.eqm-market-list a::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--eqm-signal);
  flex: none;
}
.eqm-market-list a:hover::before { background: var(--eqm-ink); }

/* --------------------------------------------------------------------------
   14. SEO BLOCK 3 — Sourcing process
   -------------------------------------------------------------------------- */
.eqm-step {
  position: relative;
  height: 100%;
  padding: 1.75rem 1.4rem;
  background: #fff;
  border: 1px solid var(--eqm-line);
  border-radius: var(--eqm-radius);
}
.eqm-step__no {
  font-family: var(--eqm-mono);
  font-size: .78rem;
  letter-spacing: .16em;
  color: var(--eqm-violet);
  display: block;
  margin-bottom: .8rem;
}
.eqm-step h3 { font-size: 1.55rem; text-transform: uppercase; margin-bottom: .5rem; }
.eqm-step p { font-size: 1rem; color: var(--eqm-steel); margin: 0; }
.eqm-step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 4px;
  background: var(--eqm-signal);
}

/* --------------------------------------------------------------------------
   15. SEO BLOCK 4 — FAQ (native details/summary, no JS)
   -------------------------------------------------------------------------- */
.eqm-faq { border-top: 1px solid var(--eqm-line); }
.eqm-faq__item { border-bottom: 1px solid var(--eqm-line); }
.eqm-faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem 0;
  font-family: var(--eqm-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--eqm-ink);
  text-transform: uppercase;
  line-height: 1.25;
}
.eqm-faq__item summary::-webkit-details-marker { display: none; }
.eqm-faq__item summary::after {
  content: "+";
  font-family: var(--eqm-mono);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--eqm-violet);
  flex: none;
  transition: transform .2s ease;
}
.eqm-faq__item[open] summary::after { content: "–"; }
.eqm-faq__item[open] summary { color: var(--eqm-violet); }
.eqm-faq__item p { padding: 0 0 1.25rem; margin: 0; max-width: 78ch; color: var(--eqm-steel); }

/* SEO copy block */
.eqm-copyblock h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); text-transform: uppercase; margin-bottom: .85rem; }
.eqm-copyblock h3 { font-size: 1.5rem; text-transform: uppercase; margin: 1.75rem 0 .6rem; }
.eqm-copyblock p { color: var(--eqm-steel); }

/* --------------------------------------------------------------------------
   16. BLOG
   -------------------------------------------------------------------------- */
.eqm-post {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--eqm-line);
  border-radius: var(--eqm-radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.eqm-post:hover { transform: translateY(-4px); box-shadow: var(--eqm-shadow); }
.eqm-post__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--eqm-mist); }
.eqm-post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.eqm-post:hover .eqm-post__media img { transform: scale(1.05); }
.eqm-post__date {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--eqm-signal);
  color: var(--eqm-ink);
  font-family: var(--eqm-mono);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .7rem;
}
.eqm-post__body { padding: 1.15rem 1.25rem 1.4rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.eqm-post__title {
  font-family: var(--eqm-display);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.22;
  color: var(--eqm-ink);
  margin: 0;
}
.eqm-post:hover .eqm-post__title { color: var(--eqm-violet); }
.eqm-post__more {
  margin-top: auto;
  font-family: var(--eqm-mono);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--eqm-violet);
}

/* --------------------------------------------------------------------------
   17. CTA BAND
   -------------------------------------------------------------------------- */
.eqm-cta {
  background: var(--eqm-signal);
  color: var(--eqm-ink);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.eqm-cta .eqm-title { color: var(--eqm-ink); margin-bottom: .5rem; }
.eqm-cta p { color: rgba(20, 16, 25, .78); margin: 0; }

/* --------------------------------------------------------------------------
   18. FOOTER
   -------------------------------------------------------------------------- */
.eqm-footer { background: var(--eqm-violet-ink); color: rgba(255, 255, 255, .72); padding: clamp(3rem, 5vw, 4.5rem) 0 0; }
.eqm-footer a { color: rgba(255, 255, 255, .72); }
.eqm-footer a:hover { color: var(--eqm-signal); }
.eqm-footer__title {
  font-family: var(--eqm-mono);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--eqm-signal);
  margin-bottom: 1.1rem;
}
.eqm-footer ul { list-style: none; margin: 0; padding: 0; }
.eqm-footer__links li { margin-bottom: .5rem; font-size: .95rem; }
.eqm-footer__cats { columns: 2; column-gap: 1.5rem; }
.eqm-footer__cats li { margin-bottom: .5rem; font-size: .95rem; break-inside: avoid; }
@media (max-width: 575.98px) { .eqm-footer__cats { columns: 1; } }
.eqm-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--eqm-radius);
  margin-right: .5rem;
}
.eqm-footer__social:hover { background: var(--eqm-signal); border-color: var(--eqm-signal); }
.eqm-footer__social svg { width: 18px; height: 18px; fill: currentColor; }
.eqm-footer__social:hover svg { fill: var(--eqm-ink); }
.eqm-footer__bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 1.4rem 0;
  font-size: .88rem;
}
.eqm-footer__bottom img { max-height: 46px; width: auto; }

/* --------------------------------------------------------------------------
   19. FLOATING SUPPORT
   -------------------------------------------------------------------------- */
.eqm-fab { position: fixed; right: 18px; bottom: 18px; z-index: 1040; display: grid; gap: .55rem; }
.eqm-fab a {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: var(--eqm-shadow);
  transition: transform .2s ease;
}
.eqm-fab a:hover { transform: scale(1.08); color: #fff; }
.eqm-fab svg { width: 22px; height: 22px; fill: currentColor; }
.eqm-fab__call { background: #1e9cf0; }
.eqm-fab__wa   { background: #25d366; }
.eqm-fab__mail { background: var(--eqm-violet); }
.eqm-fab__top  { background: var(--eqm-ink); opacity: 0; pointer-events: none; }
.eqm-fab__top.is-visible { opacity: 1; pointer-events: auto; }

/* --------------------------------------------------------------------------
   20. SCROLL REVEAL + MOTION PREFERENCES
   -------------------------------------------------------------------------- */
.eqm-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.eqm-reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .eqm-reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   21. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .eqm-header, .eqm-fab, .eqm-topbar, .eqm-rail__nav, .eqm-hero { display: none !important; }
  body { color: #000; }
}

/* --------------------------------------------------------------------------
   22. HERO FIXES + BANNER CONTENT FROM THE DATABASE
   The slide caption in tbl_banner.brief carries its own markup — .btitle,
   .bsubtitle, .bbtn — which used to be styled by style1.css. That sheet no
   longer loads on the home page, so those classes are re-styled here in the
   new type system. Without this the caption renders at body size.
   -------------------------------------------------------------------------- */

/* The caption layer covered the whole slide and swallowed clicks on the
   prev/next controls. Let clicks pass through everywhere except the caption. */
.eqm-hero__body { pointer-events: none; }
.eqm-hero__inner { pointer-events: auto; }
.eqm-hero .carousel-indicators,
.eqm-hero .carousel-control-prev,
.eqm-hero .carousel-control-next { z-index: 5; }

.eqm-hero .carousel-control-prev,
.eqm-hero .carousel-control-next {
  width: 72px;
  opacity: 1;
  pointer-events: auto;
}
.eqm-hero .carousel-control-prev-icon,
.eqm-hero .carousel-control-next-icon {
  width: 46px;
  height: 46px;
  padding: 13px;
  background-color: rgba(20, 16, 25, .55);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background-size: 18px 18px;
  transition: background-color .2s ease, border-color .2s ease;
}
.eqm-hero .carousel-control-prev:hover .carousel-control-prev-icon,
.eqm-hero .carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--eqm-violet);
  border-color: var(--eqm-violet);
}

/* Banner caption (database content) */
.eqm-hero__inner .btitle {
  font-family: var(--eqm-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 6.2vw, 5.5rem);
  line-height: .95;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .92);
  margin-bottom: .06em;
}
.eqm-hero__inner .bsubtitle {
  font-family: var(--eqm-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5.2vw, 4.6rem);
  line-height: .95;
  color: #fff;
  margin-bottom: .2em;
}
.eqm-hero__inner > span,
.eqm-hero__inner p span {
  font-family: var(--eqm-body);
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .85);
  display: inline-block;
}
.eqm-hero__inner .bbtn {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.75rem;
}
.eqm-hero__inner .bbtn a,
.eqm-hero__inner .site-btn,
.eqm-hero__inner .site-btn1,
.eqm-hero__inner .site-btn2 {
  display: inline-flex;
  align-items: center;
  font-family: var(--eqm-body);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border: 2px solid var(--eqm-signal);
  border-radius: var(--eqm-radius);
  background: var(--eqm-signal);
  color: var(--eqm-ink);
  margin: 0;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.eqm-hero__inner .bbtn a:hover,
.eqm-hero__inner .site-btn:hover,
.eqm-hero__inner .site-btn2:hover {
  background: #fff;
  border-color: #fff;
  color: var(--eqm-ink);
}
/* Second button on each slide reads as the quieter option */
.eqm-hero__inner .bbtn a:nth-child(2) {
  background: transparent;
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
}
.eqm-hero__inner .bbtn a:nth-child(2):hover {
  background: #fff;
  border-color: #fff;
  color: var(--eqm-violet);
}

@media (max-width: 575.98px) {
  .eqm-hero .carousel-control-prev,
  .eqm-hero .carousel-control-next { width: 48px; }
  .eqm-hero .carousel-control-prev-icon,
  .eqm-hero .carousel-control-next-icon { width: 38px; height: 38px; padding: 10px; }
}
