/*
|--------------------------------------------------------------------------
| ELECTROMAT — PREMIUM UI SYSTEM
|--------------------------------------------------------------------------
| Drop-in replacement for assets/css/style.css
| Keeps the existing PHP class names intact while changing the visual
| representation to a clean, premium industrial/corporate UI.
|
| Brand:
|   Electromat Blue : #211A78
|   Safety Red      : #D92D27
|   Ink             : #12162B
|   Surface         : #F5F7FC
|--------------------------------------------------------------------------
*/

:root {
  --brand-700: #211A78;
  --brand-600: #2D268E;
  --brand-500: #211A78;
  --brand-400: #5A56B5;
  --brand-300: #C9C7EA;
  --brand-200: #DFDDF4;
  --brand-100: #F0EFFA;

  --amber-600: #B8201D;
  --amber-500: #D92D27;
  --amber-100: #FCE9E8;

  --ink-950: #080B22;
  --ink-900: #10143A;
  --ink-800: #171C4B;
  --ink-700: #252B5D;
  --ink-600: #3A4174;

  --paper: #FFFFFF;
  --surface: #FFFFFF;
  --surface-alt: #F5F7FC;
  --surface-blue: #F2F4FC;

  --line: #E3E6EF;
  --line-strong: #CCD1DE;

  --text-primary: #15182C;
  --text-muted: #667085;
  --text-light: #8B93A7;
  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: #B8C0DA;

  --success: #16845B;
  --danger: #C62828;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Consolas', monospace;

  --container: 1240px;
  --header-h: 82px;

  --radius-xs: 6px;
  --radius-sm: 9px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --shadow-xs: 0 1px 2px rgba(16, 20, 58, .04);
  --shadow-sm: 0 8px 28px rgba(19, 25, 65, .07);
  --shadow-md: 0 18px 50px rgba(19, 25, 65, .11);
  --shadow-lg: 0 28px 80px rgba(10, 14, 50, .16);
  --shadow-blue: 0 16px 38px rgba(33, 26, 120, .18);
}

/* ==========================================================================
   RESET / BASE
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection {
  background: var(--brand-700);
  color: #fff;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0 0 1em;
  color: var(--text-muted);
}

strong,
b {
  color: var(--text-primary);
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 .55em;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  /* letter-spacing: -.025em; */
}

h1 {
  font-size: clamp(2.15rem, 4vw, 4.25rem);
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
}

h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
}

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

.skip-link {
  position: fixed;
  left: -999px;
  top: 0;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--ink-950);
  color: #fff;
  border-radius: 0 0 10px 0;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid rgba(217, 45, 39, .28);
  outline-offset: 3px;
}

/* ==========================================================================
   TYPE / SECTION HEADINGS
   ========================================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--brand-700);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  flex: 0 0 24px;
  background: var(--amber-500);
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head>h2 {
  max-width: 760px;
}

.section-head>p:last-child {
  max-width: 720px;
  margin-top: 14px;
  font-size: 1rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .eyebrow::before {
  display: none;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background .22s ease,
    border-color .22s ease,
    color .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--amber-500);
  color: #fff;
  box-shadow: 0 10px 24px rgba(217, 45, 39, .18);
}

.btn--primary:hover {
  background: var(--amber-600);
  box-shadow: 0 14px 30px rgba(217, 45, 39, .25);
}

.btn--dark {
  background: var(--brand-700);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.btn--dark:hover {
  background: var(--ink-800);
}

.btn--outline {
  background: #fff;
  border-color: var(--line-strong);
  color: var(--brand-700);
}

.btn--outline:hover {
  border-color: var(--brand-700);
  background: var(--brand-100);
}

.btn--outline-light {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
}

.btn--outline-light:hover {
  background: #fff;
  color: var(--brand-700);
  border-color: #fff;
}

.btn--sm {
  min-height: 40px;
  padding: 9px 16px;
  font-size: .78rem;
}

.btn--block {
  width: 100%;
}

.btn svg {
  flex: none;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(227, 230, 239, .85);
  transition: box-shadow .25s ease, background .25s ease;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 32px rgba(12, 17, 50, .08);
}

.site-header__bar {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.brand__logo {
  width: 190px;
  height: auto;
  display: block;
  object-fit: contain;
}

.brand__type {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__name {
  color: var(--brand-700);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
}

.brand__sub {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: .62rem;
  letter-spacing: .04em;
}

.brand--footer {
  align-items: flex-start;
}

.brand--footer .brand__name {
  color: #fff;
}

.primary-nav {
  margin-left: auto;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}

.primary-nav a {
  position: relative;
  display: block;
  padding: 30px 13px;
  color: #262A43;
  font-size: .84rem;
  font-weight: 600;
  transition: color .2s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--amber-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--brand-700);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand-700);
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-phone svg {
  color: var(--amber-500);
}

.header-cta {
  border-radius: 7px;
  padding-inline: 18px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: var(--brand-700);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   HERO — LIGHT PREMIUM INDUSTRIAL
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 35%, rgba(33, 26, 120, .08), transparent 34%),
    linear-gradient(110deg, #fff 0%, #fff 44%, #F2F5FC 100%);
  color: var(--text-primary);
  padding-top: 62px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 80% 30%, rgba(33, 26, 120, .08), transparent 60%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 52px;
  align-items: center;
  min-height: 570px;
  padding-bottom: 68px;
}

.hero__grid>div:first-child {
  position: relative;
  z-index: 3;
}

.hero__eyebrow {
  color: #5C6380;
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}

.hero__eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--amber-500);
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 22px;
  color: var(--ink-900);
  font-size: clamp(2.7rem, 4.7vw, 4.45rem);
  line-height: .99;
  letter-spacing: -.045em;
}

.hero h1 em {
  font-style: normal;
  color: var(--brand-700);
}

.hero__lead {
  max-width: 590px;
  color: #626B80;
  font-size: .98rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero__actions .btn--outline-light {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--brand-700);
}

.hero__actions .btn--outline-light:hover {
  background: var(--brand-100);
  border-color: var(--brand-700);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 610px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  gap: 0;
}

.hero__stat {
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.hero__stat:first-child {
  padding-left: 0;
}

.hero__stat:last-child {
  border-right: 0;
}

.hero__stat b {
  display: block;
  color: var(--brand-700);
  font-family: var(--font-mono);
  font-size: 1.15rem;
  letter-spacing: -.02em;
}

.hero__stat span {
  display: block;
  margin-top: 5px;
  color: var(--text-muted);
  font-size: .68rem;
  line-height: 1.45;
}

.hero__media {
  position: relative;
  min-width: 0;
  z-index: 2;
}

.hero__media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1.12 / 1;
  overflow: hidden;
  border: 1px solid rgba(33, 26, 120, .11);
  border-radius: 26px;
  background: #E9EDF7;
  box-shadow: var(--shadow-lg);
}

.hero__media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, .12), transparent 45%);
}

.hero__media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.hero__media-frame:hover img {
  transform: scale(1.025);
}

.hero__media-caption {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 12px;
  background: rgba(12, 17, 50, .68);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: .72rem;
  line-height: 1.4;
}

.hero__media-caption b {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero__badge {
  position: absolute;
  z-index: 4;
  top: 22px;
  right: 22px;
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  background: var(--amber-500);
  color: #fff;
  font-family: var(--font-mono);
  font-size: .66rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 14px 30px rgba(217, 45, 39, .22);
  transform: rotate(8deg);
}

.marquee {
  position: relative;
  z-index: 4;
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 54px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee span {
  color: #8B91A4;
  font-family: var(--font-mono);
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.marquee span b {
  color: var(--brand-700);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   PAGE HERO / INNER PAGES
   ========================================================================== */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 56px;
  background:
    radial-gradient(circle at 82% 20%, rgba(90, 86, 181, .25), transparent 30%),
    linear-gradient(135deg, var(--ink-950), var(--brand-700));
  color: #fff;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .025), 0 0 0 140px rgba(255, 255, 255, .018);
}

.page-hero h1 {
  position: relative;
  z-index: 2;
  max-width: 850px;
  color: #fff;
}

.page-hero .eyebrow {
  position: relative;
  z-index: 2;
  color: #BFC6E1;
}

.page-hero__lead {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: #B9C1DB;
  font-size: 1rem;
}

.breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: #AEB6D0;
  font-size: .78rem;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span[aria-current="page"] {
  color: #fff;
}

/* ==========================================================================
   SECTIONS / LAYOUT
   ========================================================================== */

.section {
  padding: 62px 0;
}

.section--tight {
  padding: 64px 0;
}

.section--alt {
  background: var(--surface-alt);
}

.section--dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(90, 86, 181, .16), transparent 32%),
    var(--ink-950);
  color: #fff;
}

.section--dark p {
  color: var(--text-on-dark-muted);
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.section--dark .eyebrow {
  color: #BFC6E1;
}

.section--dark .eyebrow::before {
  background: var(--amber-500);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid--split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
}

.grid--split.reverse {
  grid-template-columns: 1.08fr .92fr;
}

.grid--split.reverse .grid--split__media {
  order: 2;
}

.grid--split__media {
  min-width: 0;
}

.grid--split__media img {
  width: 100%;
  height: 430px;
  max-height: 570px;

  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.section--alt .grid--split__media img {
  border: 1px solid var(--line);
}

/* ==========================================================================
   CARDS / VALUE PROPOSITIONS
   ========================================================================== */

.card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  border-radius: 0 0 0 100%;
  background: linear-gradient(135deg, transparent, rgba(33, 26, 120, .05));
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-300);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 21px;
  border: 1px solid var(--brand-200);
  border-radius: 14px;
  background: var(--brand-100);
  color: var(--brand-700);
}

.card h3 {
  margin-bottom: 9px;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.7;
}

.card--dark {
  border-color: rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .045);
  color: #fff;
}

.card--dark h3 {
  color: #fff;
}

.card--dark p {
  color: var(--text-on-dark-muted);
}

.card--dark .card__icon {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

/* ==========================================================================
   STAT STRIP
   ========================================================================== */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.stat-strip__item {
  position: relative;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}

.stat-strip__item:last-child {
  border-right: 0;
}

.stat-strip__item b {
  display: block;
  margin-bottom: 5px;
  color: var(--brand-700);
  font-family: var(--font-mono);
  font-size: 1.7rem;
}

.stat-strip__item span {
  color: var(--text-muted);
  font-size: .78rem;
}

/* ==========================================================================
   SPEC / COMPARISON
   ========================================================================== */

.spec-plate {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.spec-plate__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink-900);
  color: #fff;
}

.spec-plate__head div {
  padding: 22px 26px;
  color: #fff;
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 700;
}

.spec-plate__head div:first-child {
  background: var(--brand-700);
}

.spec-plate__head span {
  display: block;
  margin-top: 5px;
  opacity: .72;
  font-family: var(--font-mono);
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .04em;
}

.compare-row {
  display: grid;
  grid-template-columns: 34px 1fr 34px 1fr;
  border-top: 1px solid var(--line);
}

.compare-row:first-of-type {
  border-top: 0;
}

.compare-row>div {
  padding: 16px 18px;
  font-size: .84rem;
  line-height: 1.6;
}

.compare-row__num {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18px !important;
  color: #9399AA;
  font-family: var(--font-mono);
  font-size: .7rem !important;
}

.compare-row__good {
  border-right: 1px solid var(--line);
  background: #F4F4FB;
  color: var(--ink-900);
}

.compare-row__bad {
  color: var(--text-muted);
  background: #fff;
}

.compare-row__good::before {
  content: "✓ ";
  color: var(--success);
  font-weight: 800;
}

.compare-row__bad::before {
  content: "× ";
  color: var(--amber-500);
  font-weight: 800;
}

/* ==========================================================================
   TABLES
   ========================================================================== */

.data-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
}

table.data-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: .9rem;
}

table.data-table caption {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 700;
  text-align: left;
}

table.data-table th,
table.data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

table.data-table thead th {
  background: var(--surface-alt);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

table.data-table tbody tr:last-child td {
  border-bottom: 0;
}

table.data-table td.num,
table.data-table th.num {
  font-family: var(--font-mono);
}

table.data-table tbody tr:hover {
  background: var(--brand-100);
}

/* ==========================================================================
   STEPS
   ========================================================================== */

.step-list {
  display: grid;
  gap: 22px;
}

.step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 17px;
}

.step__num {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-700);
  color: #fff;
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(33, 26, 120, .18);
}

.step h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.step p {
  margin-bottom: 0;
  font-size: .9rem;
}

/* ==========================================================================
   TIMELINE / GALLERY / TESTIMONIAL
   ========================================================================== */

.exhib-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 2.4rem;
}

.exhib-tabs a {
  padding: 10px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 700;
}

.exhib-tabs a:hover {
  border-color: var(--brand-700);
  color: var(--brand-700);
}

.exhib-tabs a[aria-current="page"] {
  border-color: var(--brand-700);
  background: var(--brand-700);
  color: #fff;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.photo-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-alt);
}

.photo-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 11, 34, .18));
  pointer-events: none;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.photo-grid a:hover img {
  transform: scale(1.06);
}

.testimonial {
  position: relative;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.testimonial::before {
  content: "“";
  position: absolute;
  top: 12px;
  right: 24px;
  color: var(--brand-100);
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
}

.testimonial p {
  position: relative;
  z-index: 1;
  max-width: 60ch;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 550;
  line-height: 1.55;
}

.testimonial cite {
  display: block;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: .78rem;
  font-style: normal;
}

.testimonial cite b {
  display: block;
  margin-bottom: 2px;
  color: var(--text-primary);
  font-size: .88rem;
}

/* ==========================================================================
   CLIENT STRIP
   ========================================================================== */

.client-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.client-strip span {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  color: #B8C0D8;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .03em;
}

.section--dark .client-strip span:hover {
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
}

/* ==========================================================================
   PRODUCT CARDS
   ========================================================================== */

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-300);
  box-shadow: var(--shadow-md);
}

.product-card__media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--surface-alt);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.035);
}

.product-card__body {
  padding: 25px;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  overflow: hidden;
  padding: 52px 58px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, .13), transparent 30%),
    linear-gradient(120deg, var(--brand-700), var(--ink-800));
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.cta-banner::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, .025), 0 0 0 110px rgba(255, 255, 255, .018);
}

.cta-banner>* {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: #fff;
}

.cta-banner p {
  max-width: 55ch;
  margin-bottom: 0;
  color: #C6CDE2;
}

.cta-banner .btn--dark {
  background: var(--amber-500);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.cta-banner .btn--dark:hover {
  background: var(--amber-600);
}

/* ==========================================================================
   FORMS
   ========================================================================== */

.form-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  margin-bottom: 7px;
  color: var(--text-primary);
  font-size: .78rem;
  font-weight: 700;
}

.form-row .req {
  color: var(--amber-500);
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: #fff;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: .9rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #A1A8B7;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: 0;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(33, 26, 120, .08);
}

.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.captcha-row img {
  border: 1px solid var(--line-strong);
  border-radius: 7px;
}

.captcha-refresh {
  padding: 0;
  border: 0;
  background: none;
  color: var(--brand-700);
  font-size: .75rem;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.form-note {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: .75rem;
}

.form-alert {
  margin-bottom: 18px;
  padding: 13px 16px;
  border-radius: 9px;
  font-size: .82rem;
}

.form-alert--error {
  border: 1px solid #F3C9C7;
  background: #FFF4F3;
  color: #8A1C19;
}

.form-alert--success {
  border: 1px solid var(--brand-200);
  background: var(--brand-100);
  color: var(--brand-700);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact-info-list {
  display: grid;
  gap: 20px;
  margin-top: 1.7rem;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-list .ico {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-200);
  border-radius: 12px;
  background: var(--brand-100);
  color: var(--brand-700);
}

.contact-info-list b {
  display: block;
  margin-bottom: 2px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-info-list span,
.contact-info-list a {
  color: var(--text-primary);
  font-size: .92rem;
}

.contact-info-list a:hover {
  color: var(--brand-700);
}

.map-frame {
  overflow: hidden;
  margin-top: 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

/* ==========================================================================
   SIDEBAR / PROSE / PILLS
   ========================================================================== */

.prose {
  max-width: 790px;
}

.prose p {
  font-size: .98rem;
  line-height: 1.85;
}

.prose h2 {
  margin-top: 1.6em;
}

.prose ul {
  padding-left: 1.25em;
  margin-bottom: 1em;
  list-style: disc;
}

.prose ul li {
  margin-bottom: .5em;
  color: var(--text-muted);
}

.sidebar-links {
  position: sticky;
  top: calc(var(--header-h) + 22px);
}

.sidebar-links__card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.sidebar-links__card h3 {
  margin-bottom: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: .67rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sidebar-links__card ul {
  display: grid;
  gap: 3px;
}

.sidebar-links__card a {
  display: block;
  padding: 10px 11px;
  border-radius: 9px;
  color: var(--text-primary);
  font-size: .83rem;
  font-weight: 600;
}

.sidebar-links__card a:hover {
  background: var(--brand-100);
  color: var(--brand-700);
}

.sidebar-links__card a[aria-current="page"] {
  background: var(--brand-700);
  color: #fff;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 52px;
  align-items: start;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.pill-list li {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--text-muted);
  font-size: .76rem;
  font-weight: 600;
}

.hazard-divider {
  width: 120px;
  height: 5px;
  margin: 0 0 2rem;
  border-radius: 999px;
  background: repeating-linear-gradient(135deg,
      var(--amber-500) 0 14px,
      var(--ink-900) 14px 28px);
  opacity: .9;
}

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  overflow: hidden;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-alt);
}

.logo-strip img {
  width: auto;
  max-height: 170px;
  border-radius: 12px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  background:
    radial-gradient(circle at 85% 0%, rgba(90, 86, 181, .16), transparent 30%),
    var(--ink-950);
  color: var(--text-on-dark-muted);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber-500), var(--brand-700), var(--amber-500));
}

.site-footer__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 42px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.footer-col__title {
  margin-bottom: 15px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 9px;
}

.footer-col a {
  color: #AEB6D0;
  font-size: .8rem;
  transition: color .2s ease, transform .2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col__text {
  max-width: 39ch;
  margin: 17px 0;
  color: #9FA8C2;
  font-size: .8rem;
  line-height: 1.75;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.footer-badges li {
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  color: #AEB6D0;
  font-family: var(--font-mono);
  font-size: .58rem;
}

.footer-address {
  color: #AEB6D0;
  font-size: .8rem;
  font-style: normal;
  line-height: 1.8;
}

.footer-address a {
  color: #C5CCDF;
}

.footer-address a:hover {
  color: #fff;
}

.footer-cta {
  margin-top: 18px;
}

.site-footer .btn--outline-light {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .04);
}

.site-footer .btn--outline-light:hover {
  border-color: #fff;
  background: #fff;
  color: var(--brand-700);
}

.site-footer__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0;
  color: #707A99;
  font-size: .68rem;
}

.site-footer__bottom p {
  margin: 0;
  color: inherit;
}

.site-footer__credit {
  color: #8189A4 !important;
}

/* ==========================================================================
   ERROR
   ========================================================================== */

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 24px;
  text-align: center;
}

.error-page .eyebrow {
  justify-content: center;
}

.error-page .eyebrow::before {
  display: none;
}

/* ==========================================================================
   REVEAL / MOTION
   ========================================================================== */

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .65s ease,
    transform .65s cubic-bezier(.2, .75, .25, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   RESPONSIVE — 1080
   ========================================================================== */

@media (max-width: 1080px) {
  :root {
    --header-h: 74px;
  }

  .container {
    padding-inline: 20px;
  }

  .primary-nav a {
    padding-inline: 9px;
  }

  .header-phone {
    display: none;
  }

  .hero__grid {
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 5.2vw, 3.65rem);
  }

  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-strip__item:nth-child(2) {
    border-right: 0;
  }

  .site-footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .site-footer__grid>.footer-col:last-child {
    grid-column: 2 / -1;
  }

  .split-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-links {
    position: static;
    order: -1;
  }
}

/* ==========================================================================
   RESPONSIVE — 900
   ========================================================================== */

@media (max-width: 900px) {
  :root {
    --header-h: 70px;
  }

  .site-header__bar {
    gap: 12px;
  }

  .brand__logo {
    width: 160px;
  }

  .site-header__actions {
    gap: 8px;
  }

  .header-cta {
    min-height: 38px;
    padding: 8px 13px;
    font-size: .72rem;
  }

  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;

    left: 0;
    z-index: 999;
    margin: 0;
    padding: 20px 24px 40px;
    overflow-y: auto;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: 0 30px 60px rgba(8, 11, 34, .12);
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .primary-nav a {
    padding: 14px 15px;
    border-radius: 10px;
    font-size: .98rem;
  }

  .primary-nav a::after {
    left: 15px;
    right: auto;
    bottom: 9px;
    width: 22px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 38px;
    padding-bottom: 48px;
  }

  .hero__media {
    order: -1;
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .hero__media-frame {
    aspect-ratio: 16 / 10;
  }

  .hero__grid>div:first-child {
    order: 2;
  }

  .hero h1 {
    max-width: 760px;
  }

  .hero__lead {
    max-width: 680px;
  }

  .hero__stats {
    max-width: 700px;
  }

  .grid--split,
  .grid--split.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .grid--split.reverse .grid--split__media {
    order: 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__grid>.footer-col:last-child {
    grid-column: auto;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .compare-row {
    grid-template-columns: 28px 1fr;
  }

  .compare-row>div:nth-child(3) {
    display: none;
  }

  .compare-row__bad {
    grid-column: 1 / -1;
    border-top: 1px dashed var(--line);
    background: var(--surface-alt);
  }

  .spec-plate__head {
    grid-template-columns: 1fr;
  }

  .spec-plate__head div:nth-child(2) {
    display: none;
  }

  .cta-banner {
    padding: 40px;
  }

  .form-row--split {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   RESPONSIVE — 640
   ========================================================================== */

@media (max-width: 640px) {
  .container {
    padding-inline: 16px;
  }

  .section {
    padding: 68px 0;
  }

  .section--tight {
    padding: 50px 0;
  }

  .brand__logo {
    width: 142px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 26px;
  }

  .hero__grid {
    gap: 28px;
    padding-bottom: 34px;
  }

  .hero__media-frame {
    aspect-ratio: 1 / .82;
    border-radius: 18px;
  }

  .hero__badge {
    top: 13px;
    right: 13px;
    width: 68px;
    height: 68px;
    font-size: .57rem;
    border-width: 3px;
  }

  .hero__media-caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 12px;
    font-size: .62rem;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
    letter-spacing: -.04em;
  }

  .hero__lead {
    font-size: .88rem;
    line-height: 1.7;
  }

  .hero__actions {
    gap: 9px;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .hero__stat,
  .hero__stat:first-child {
    padding: 0 0 13px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero__stat:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .marquee__track {
    gap: 34px;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .stat-strip__item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-strip__item:last-child {
    border-bottom: 0;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section-head>p:last-child {
    font-size: .9rem;
  }

  .cta-banner {
    align-items: flex-start;
    padding: 32px 24px;
    flex-direction: column;
  }

  .cta-banner .btn {
    width: 100%;
  }

  .form-card {
    padding: 24px 18px;
  }

  .site-footer {
    padding-top: 55px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer__grid>.footer-col:last-child {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 56px 0 42px;
  }

  .page-hero h1 {
    font-size: 2.35rem;
  }

  .compare-row>div {
    padding: 13px 12px;
    font-size: .78rem;
  }

  .spec-plate__head div {
    padding: 17px 18px;
  }
}

/* ==========================================================================
   RESPONSIVE — 420
   ========================================================================== */

@media (max-width: 420px) {
  .brand__logo {
    width: 128px;
  }

  .nav-toggle {
    width: 39px;
    height: 39px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__media-frame {
    aspect-ratio: 1 / .9;
  }

  .hero h1 {
    font-size: 2.05rem;
  }

  .btn {
    width: 100%;
  }

  .section-head h2 {
    font-size: 1.85rem;
  }

  .site-footer__bottom {
    font-size: .62rem;
  }
}

/* ============================================================
   ELECTROMAT — EDITORIAL INDUSTRIAL HERO
   Designed as a bespoke corporate/manufacturing interface
   ============================================================ */

.x-hero {
  --navy: #071A52;
  --blue: #132F8A;
  --red: #D92727;
  --red-dark: #bd2020;
  --ink: #101A31;
  --muted: #697389;
  --line: #dfe3ea;
  --paper: #f7f8fa;

  position: relative;
  overflow: hidden;

  background: #f7f8fa;
  color: var(--ink);
}


/* ============================================================
   TECHNICAL BACKGROUND
   ============================================================ */

.x-hero__technical-grid {
  position: absolute;
  z-index: 0;

  right: 0;
  top: 0;

  width: 53%;
  height: 100%;

  opacity: .38;

  background-image:
    linear-gradient(90deg,
      transparent 49.5%,
      rgba(7, 26, 82, .055) 50%,
      transparent 50.5%),
    linear-gradient(transparent 49.5%,
      rgba(7, 26, 82, .055) 50%,
      transparent 50.5%);

  background-size: 80px 80px;

  mask-image: linear-gradient(90deg,
      transparent 0%,
      black 35%,
      black 100%);

  pointer-events: none;
}


/* ============================================================
   TOP MICRO BAR
   ============================================================ */

.x-hero__topline {
  position: relative;
  z-index: 4;

  border-bottom: 1px solid rgba(7, 26, 82, .09);

  background: rgba(255, 255, 255, .72);
}


.x-hero__topline-inner {
  min-height: 36px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #778196;

  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  font-weight: 600;

  letter-spacing: .14em;
}


/* ============================================================
   MAIN HERO
   ============================================================ */

.x-hero__main {
  position: relative;
  z-index: 2;

  min-height: 630px;

  display: grid;
  grid-template-columns: 47% 57%;

  align-items: center;
}


/* ============================================================
   LEFT COPY
   ============================================================ */

.x-hero__copy {
  position: relative;
  z-index: 5;

  padding: 80px 35px 80px 0;
}


.x-hero__eyebrow {
  display: flex;
  align-items: center;

  gap: 9px;

  margin-bottom: 24px;

  color: #5f6980;

  font-family: "IBM Plex Mono", monospace;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: .1em;
}


.x-hero__eyebrow-mark {
  width: 30px;
  height: 2px;

  background: var(--red);
}


.x-hero__dot {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: #a8afbd;
}


/* ============================================================
   TITLE
   ============================================================ */

.x-hero__title {
  max-width: 700px;
  margin: 0;

  color: var(--navy);

  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.35rem, 5vw, 4.25rem); /* matches global h1 used on every inner page */
  line-height: .96;

  font-weight: 700;
  letter-spacing: -.055em;
}

.x-hero__title span {
  display: block;

  color: var(--blue);
  font-size: 35px;
  letter-spacing: 0px;
  margin-top: 12px;
  position: relative;
}



/* Standard reference */
.x-hero__title em {
  display: block;

  margin-top: 18px;
  color: var(--blue);
  /* 
  font-family: "IBM Plex Mono", monospace; */
  font-size: clamp(39px, 1.15vw, 18px);
  line-height: 1.4;

  font-style: normal;
  font-weight: 600;

  letter-spacing: .02em;
}

/* Small technical accent */
/* .x-hero__title em::before {
  content: "";

  display: inline-block;

  width: 34px;
  height: 2px;

  margin-right: 12px;

  vertical-align: middle;

  background: var(--blue);
} */


/* Tablet */
@media (max-width: 900px) {

  .x-hero__title {
    max-width: 620px;

    font-size: clamp(2.35rem, 5vw, 4.25rem); /* same scale as global h1 at this breakpoint */
  }

  .x-hero__title em {
    margin-top: 15px;
  }

}


/* Mobile */
@media (max-width: 600px) {

  .x-hero__title {
    max-width: 100%;

    font-size: 2.35rem; /* matches .page-hero h1 on every inner page at this breakpoint */
    line-height: .98;
    letter-spacing: -.045em;
  }

  .x-hero__title em {
    margin-top: 14px;

    font-size: 12px;
    letter-spacing: .015em;
  }

  .x-hero__title em::before {
    width: 24px;
    margin-right: 8px;
  }

}

/* 
.x-hero__title span::after {
  content: "";

  position: absolute;

  left: 4px;
  bottom: -9px;

  width: 82px;
  height: 4px;

  background: var(--red);
} */


/* ============================================================
   LEAD
   ============================================================ */

.x-hero__lead {
  max-width: 500px;

  margin: 36px 0 0;

  color: var(--muted);

  font-size: 15px;
  line-height: 1.75;
}


/* ============================================================
   ACTIONS
   ============================================================ */

.x-hero__buttons {
  display: flex;
  align-items: center;

  gap: 24px;

  margin-top: 34px;
}


.x-btn {
  display: inline-flex;
  align-items: center;

  text-decoration: none;

  font-size: 13px;
  font-weight: 700;

  transition:
    transform .25s ease,
    color .25s ease,
    background .25s ease;
}


.x-btn--red {
  min-height: 50px;

  padding: 0 20px;

  gap: 18px;

  color: #fff;

  background: var(--red);

  border-radius: 4px;

  box-shadow: 0 10px 25px rgba(217, 39, 39, .16);
}


.x-btn--red:hover {
  color: #fff;

  background: var(--red-dark);

  transform: translateY(-2px);
}


.x-btn--red svg {
  width: 18px;
  height: 18px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.7;

  transition: transform .25s ease;
}


.x-btn--red:hover svg {
  transform: translateX(4px);
}


.x-btn--text {
  gap: 10px;

  color: var(--navy);
}


.x-btn--text:hover {
  color: var(--red);
}


.x-btn__circle {
  width: 35px;
  height: 35px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #cfd5df;

  border-radius: 50%;
}


.x-btn__circle svg {
  width: 15px;
  height: 15px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.6;
}


/* ============================================================
   FACTS
   ============================================================ */

.x-hero__facts {
  display: flex;

  margin-top: 55px;

  border-top: 1px solid var(--line);
}


.x-fact {
  position: relative;

  display: flex;
  align-items: flex-start;

  gap: 12px;

  padding: 21px 30px 0 0;

  min-width: 145px;
}


.x-fact:not(:first-child) {
  padding-left: 25px;
}


.x-fact:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 21px;
  right: 0;

  width: 1px;
  height: 38px;

  background: var(--line);
}


.x-fact strong {
  color: var(--navy);

  font-family: "Space Grotesk", sans-serif;

  font-size: 25px;
  line-height: 1;

  white-space: nowrap;
}


.x-fact strong span {
  color: var(--red);

  font-size: 14px;
}


.x-fact small {
  color: #7a8395;

  font-size: 11px;
  line-height: 1.45;

  text-transform: uppercase;
  letter-spacing: .04em;
}


/* ============================================================
   RIGHT VISUAL
   ============================================================ */

.x-hero__visual {
  position: relative;

  height: 630px;

  display: flex;
  align-items: center;
  justify-content: center;
}


/* vertical boundary */

.x-hero__visual::before {
  content: "";

  position: absolute;

  left: 0;
  top: 12%;

  width: 1px;
  height: 76%;

  background: rgba(7, 26, 82, .10);
}


/* ============================================================
   PRODUCT IMAGE
   ============================================================ */

.x-hero__image-wrap {
  position: relative;
  z-index: 2;

  width: 94%;
  max-width: 690px;

  transform: translate(3%, 2%);
}


.x-hero__image-wrap::before {
  content: "";

  position: absolute;

  left: 7%;
  right: 3%;
  bottom: 3%;

  height: 38%;

  background: rgba(7, 26, 82, .10);

  filter: blur(35px);

  transform: skewX(-12deg);

  z-index: -1;
}


.x-hero__image {
  width: 100%;
  height: auto;

  display: block;

  object-fit: contain;

  mix-blend-mode: multiply;

  filter:
    contrast(1.04) saturate(.92);

  animation: electromatProduct 7s ease-in-out infinite;
}


@keyframes electromatProduct {

  0%,
  100% {
    transform: translateY(0) rotate(-.5deg);
  }

  50% {
    transform: translateY(-8px) rotate(.2deg);
  }

}


/* ============================================================
   SIDE TECHNICAL LABEL
   ============================================================ */

.x-hero__side-label {
  position: absolute;

  right: 8px;
  top: 170px;

  display: flex;
  align-items: center;

  gap: 12px;

  color: #788297;

  font-family: "IBM Plex Mono", monospace;

  font-size: 7px;
  line-height: 1.5;

  letter-spacing: .12em;

  writing-mode: vertical-rl;

  transform: rotate(180deg);
}


.x-hero__side-label span {
  color: var(--red);

  font-size: 11px;
  font-weight: 600;
}


.x-hero__side-label i {
  width: 1px;
  height: 35px;

  background: #b9bfca;
}


/* ============================================================
   CERTIFICATION
   ============================================================ */

.x-hero__cert {
  position: absolute;

  z-index: 5;

  top: 82px;
  left: 12px;

  width: 112px;
  height: 112px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #fff;

  background: var(--red);

  border-radius: 50%;

  box-shadow:
    0 12px 30px rgba(217, 39, 39, .23);

  transform: rotate(2deg);

  /* animation: certFloat 5s ease-in-out infinite; */
}


@keyframes certFloat {

  0%,
  100% {
    transform: rotate(8deg) translateY(0);
  }

  50% {
    transform: rotate(5deg) translateY(-6px);
  }

}


.x-hero__cert::before {
  content: "";

  position: absolute;

  inset: 7px;

  border: 1px dashed rgba(255, 255, 255, .65);

  border-radius: 50%;
}


.x-hero__cert-small {
  font-size: 11px;
  font-weight: 800;
}


.x-hero__cert strong {
  margin: 2px 0;

  font-family: "Space Grotesk", sans-serif;

  font-size: 19px;
}


.x-hero__cert-line {
  width: 25px;
  height: 1px;

  background: rgba(255, 255, 255, .65);
}


.x-hero__cert small {
  margin-top: 4px;

  font-size: 6px;

  letter-spacing: .16em;
}


/* ============================================================
   CAPTION
   ============================================================ */

.x-hero__caption {
  position: absolute;

  left: 35px;
  bottom: -1px;

  z-index: 5;

  display: flex;
  align-items: center;

  gap: 13px;

  padding: 12px 16px 12px 10px;

  background: rgba(255, 255, 255, .9);

  border-left: 3px solid var(--red);

  box-shadow: 0 12px 35px rgba(7, 26, 82, .08);

  backdrop-filter: blur(8px);
}


.x-hero__caption-number {
  color: var(--red);

  font-family: "IBM Plex Mono", monospace;

  font-size: 10px;
  font-weight: 600;
}


.x-hero__caption div {
  display: flex;
  flex-direction: column;

  gap: 3px;
}


.x-hero__caption small {
  color: #8992a2;

  font-family: "IBM Plex Mono", monospace;

  font-size: 11px;

  letter-spacing: .12em;
}


.x-hero__caption strong {
  color: var(--navy);

  font-size: 25px;
}


/* ============================================================
   MEASUREMENT LINE
   ============================================================ */

.x-hero__measurement {
  position: absolute;

  bottom: 44px;
  right: 60px;

  display: flex;
  align-items: center;

  gap: 9px;

  color: #8992a3;

  font-family: "IBM Plex Mono", monospace;

  font-size: 6px;

  letter-spacing: .15em;
}


.x-hero__measurement span {
  width: 25px;
  height: 1px;

  background: #aeb5c1;
}


/* ============================================================
   BOTTOM STRIP
   ============================================================ */

.x-hero__bottom {
  position: relative;
  z-index: 5;

  background: var(--navy);

  border-top: 3px solid var(--red);
}


.x-hero__bottom-inner {
  min-height: 83px;

  display: flex;
  align-items: center;

  gap: 105px;
}


.x-hero__bottom-intro {
  min-width: 225px;

  display: flex;
  flex-direction: column;

  gap: 4px;
}


.x-hero__bottom-intro span {
  color: rgba(255, 255, 255, .42);

  font-family: "IBM Plex Mono", monospace;

  font-size: 11px;

  letter-spacing: .15em;
}


.x-hero__bottom-intro strong {
  color: #fff;

  font-size: 13px;

  letter-spacing: .02em;
}


.x-hero__applications {
  flex: 1;

  display: flex;
  align-items: center;

  gap: 17px;

  color: rgba(255, 255, 255, .74);

  font-family: "IBM Plex Mono", monospace;

  font-size: 13px;
}


.x-hero__applications i {
  width: 3px;
  height: 3px;

  flex-shrink: 0;

  border-radius: 50%;

  background: var(--red);
}


.x-hero__explore {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: #fff;

  font-size: 13px;
  font-weight: 700;

  text-decoration: none;

  white-space: nowrap;
}


.x-hero__explore svg {
  width: 24px;
  height: 23px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.6;

  transition: transform .2s ease;
}


.x-hero__explore:hover {
  color: #fff;
}


.x-hero__explore:hover svg {
  transform: translateX(4px);
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1050px) {

  .x-hero__main {
    grid-template-columns: 48% 52%;
  }

  .x-hero__title {
    font-size: 58px;
  }

  .x-hero__copy {
    padding-right: 20px;
  }

  .x-hero__cert {
    right: 35px;
  }

  .x-hero__caption {
    left: 15px;
  }

  .x-hero__applications {
    gap: 10px;
  }

  .x-hero__applications span {
    font-size: 7px;
  }

}


/* ============================================================
   MOBILE / TABLET
   ============================================================ */

@media (max-width: 800px) {

  .x-hero__topline-inner {
    padding: 0 20px;
  }

  .x-hero__main {
    grid-template-columns: 1fr;

    padding-top: 20px;
  }

  .x-hero__copy {
    padding: 55px 20px 30px;
  }

  .x-hero__title {
    max-width: 650px;

    font-size: clamp(48px, 9vw, 66px);
  }

  .x-hero__lead {
    max-width: 620px;
  }

  .x-hero__visual {
    height: 480px;
  }

  .x-hero__visual::before {
    display: none;
  }

  .x-hero__image-wrap {
    width: 90%;

    transform: none;
  }

  .x-hero__cert {
    top: 45px;
    right: 8%;
  }

  .x-hero__caption {
    left: 8%;
    bottom: 50px;
  }

  .x-hero__side-label {
    right: 2%;
  }

  .x-hero__bottom-inner {
    padding: 22px 20px;

    flex-wrap: wrap;
  }

  .x-hero__applications {
    order: 3;

    width: 100%;

    flex-wrap: wrap;
  }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 520px) {

  .x-hero__topline-inner {
    min-height: 30px;

    font-size: 6px;
  }

  .x-hero__topline-inner span:last-child {
    display: none;
  }

  .x-hero__copy {
    padding: 42px 18px 25px;
  }

  .x-hero__eyebrow {
    font-size: 8px;
  }

  .x-hero__title {
    font-size: 44px;
  }

  .x-hero__title span::after {
    width: 55px;
    height: 3px;
  }

  .x-hero__lead {
    margin-top: 28px;

    font-size: 13px;
  }

  .x-hero__buttons {
    align-items: flex-start;
    flex-direction: column;

    gap: 17px;

    margin-top: 27px;
  }

  .x-btn--red {
    width: auto;
  }

  .x-hero__facts {
    margin-top: 38px;
  }

  .x-fact {
    min-width: 0;

    flex: 1;

    gap: 6px;

    padding-right: 12px;
  }

  .x-fact:not(:first-child) {
    padding-left: 12px;
  }

  .x-fact strong {
    font-size: 20px;
  }

  .x-fact small {
    font-size: 6px;
  }

  .x-hero__visual {
    height: 350px;
  }

  .x-hero__image-wrap {
    width: 105%;
  }

  .x-hero__cert {
    width: 82px;
    height: 82px;

    top: 25px;
    right: 7%;
  }

  .x-hero__cert strong {
    font-size: 15px;
  }

  .x-hero__caption {
    left: 15px;
    bottom: 30px;

    padding: 9px 12px;
  }

  .x-hero__side-label,
  .x-hero__measurement {
    display: none;
  }

  .x-hero__bottom-inner {
    display: block;

    padding: 23px 18px;
  }

  .x-hero__applications {
    margin-top: 17px;

    gap: 9px 13px;
  }

  .x-hero__explore {
    margin-top: 18px;
  }

}

/* ============================================================
   WHY ELECTROMAT
   Uses the existing site typography scale
   ============================================================ */

.why-electromat {
  position: relative;
  padding: 60px 0;
  background: var(--paper);
  overflow: hidden;
}


/* subtle technical line on right */

.why-electromat::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 28%;
  height: 100%;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      transparent,
      rgba(119, 119, 77, .035));
}


/* ============================================================
   HEADER
   ============================================================ */

.why-electromat__head {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: 1.35fr .8fr;

  gap: 56px;

  align-items: end;

  max-width: 1080px;

  margin-bottom: 42px;
}


.why-electromat__heading h2 {
  max-width: 680px;

  margin-bottom: 0;
}


.why-electromat__description {
  padding-left: 28px;

  border-left: 1px solid var(--line);
}


.why-electromat__description p {
  margin-bottom: 16px;

  font-size: .92rem;
  line-height: 1.7;
}


.why-electromat__link {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: var(--brand-700);

  font-size: .86rem;

  font-weight: 600;
}


.why-electromat__link svg {
  width: 16px;
  height: 16px;

  transition: transform .2s ease;
}


.why-electromat__link:hover {
  color: var(--brand-500);
}


.why-electromat__link:hover svg {
  transform: translateX(4px);
}


/* ============================================================
   FEATURES
   ============================================================ */

.why-electromat__features {
  position: relative;
  z-index: 1;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--line);

  border-left: 1px solid var(--line);
}


/* ============================================================
   FEATURE
   ============================================================ */

.why-feature {
  position: relative;

  min-height: 245px;

  padding: 26px 24px 22px;

  background: var(--surface);

  border-right: 1px solid var(--line);

  border-bottom: 1px solid var(--line);

  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}


.why-feature:hover {
  z-index: 2;

  transform: translateY(-3px);

  border-color: var(--brand-300);

  box-shadow: var(--shadow-sm);
}


/* ============================================================
   FEATURE HEADER
   ============================================================ */

.why-feature__header {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 30px;
}


.why-feature__number {
  color: var(--text-muted);

  font-family: var(--font-mono);

  font-size: .68rem;

  letter-spacing: .06em;
}


.why-feature__icon {
  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 10px;

  background: var(--brand-100);

  color: var(--brand-700);

  transition:
    background .2s ease,
    color .2s ease;
}


.why-feature:hover .why-feature__icon {
  background: var(--brand-700);

  color: #fff;
}


.why-feature__icon svg {
  width: 20px;
  height: 20px;

  stroke: currentColor;

  fill: none;

  stroke-linecap: round;

  stroke-linejoin: round;
}


/* ============================================================
   FEATURE CONTENT
   ============================================================ */

.why-feature h3 {
  margin-bottom: .5em;

  font-size: 1.08rem;
}


.why-feature p {
  margin-bottom: 0;

  max-width: 30ch;

  font-size: .92rem;

  line-height: 1.65;
}


/* ============================================================
   FEATURE FOOTER
   ============================================================ */

.why-feature__footer {
  position: absolute;

  left: 24px;
  right: 24px;

  bottom: 20px;

  padding-top: 12px;

  border-top: 1px solid var(--line);
}


.why-feature__footer span {
  color: var(--text-muted);

  font-family: var(--font-mono);

  font-size: .62rem;

  text-transform: uppercase;

  letter-spacing: .08em;
}


.why-feature__footer span::before {
  content: '';

  display: inline-block;

  width: 14px;
  height: 1px;

  margin-right: 7px;

  vertical-align: middle;

  background: var(--brand-500);
}


/* ============================================================
   APPLICATION BAR
   ============================================================ */

.why-electromat__applications {
  position: relative;
  z-index: 1;

  display: flex;

  align-items: center;

  gap: 30px;

  min-height: 74px;

  padding: 18px 24px;

  background: var(--ink-900);

  color: var(--text-on-dark);

  border-radius: 0 0 var(--radius-md) var(--radius-md);
}


.why-electromat__applications-title {
  min-width: 185px;

  display: flex;

  flex-direction: column;

  gap: 3px;
}


.why-electromat__applications-title span {
  color: var(--text-on-dark-muted);

  font-family: var(--font-mono);

  font-size: .62rem;

  letter-spacing: .1em;
}


.why-electromat__applications-title strong {
  color: #fff;

  font-size: .78rem;

  font-weight: 600;
}


.why-electromat__applications-list {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 11px;

  color: var(--text-on-dark-muted);

  font-size: .76rem;
}


.why-electromat__applications-list i {
  width: 3px;
  height: 3px;

  flex: 0 0 3px;

  border-radius: 50%;

  background: var(--brand-400);
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 900px) {

  .why-electromat__head {
    grid-template-columns: 1fr;

    gap: 24px;
  }

  .why-electromat__description {
    padding-left: 0;

    padding-top: 20px;

    border-left: none;

    border-top: 1px solid var(--line);
  }

  .why-electromat__features {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-feature:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .why-feature:nth-child(3),
  .why-feature:nth-child(4) {
    border-top: 0;
  }

  .why-electromat__applications {
    align-items: flex-start;

    flex-direction: column;

    gap: 12px;
  }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 600px) {

  .why-electromat {
    padding: 60px 0;
  }

  .why-electromat__head {
    margin-bottom: 32px;
  }

  .why-electromat__heading h2 {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }

  .why-electromat__features {
    grid-template-columns: 1fr;
  }

  .why-feature {
    min-height: 225px;

    padding: 24px 22px 20px;
  }

  .why-feature__footer {
    left: 22px;
    right: 22px;
  }

  .why-electromat__applications {
    padding: 20px;
  }

  .why-electromat__applications-list {
    gap: 9px;
  }

}

/* ============================================================
   ELECTROMAT — STANDARDS COMPARISON
   ============================================================ */

/* ============================================================
   ELECTROMAT — PREMIUM STANDARDS COMPARISON
   Industrial / Electrical / Technical UI
   ============================================================ */

.standards-compare {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: 110px 0 100px;

  background: #070e1c;
  color: #fff;
}


/* ============================================================
   BACKGROUND IMAGE
   ============================================================ */

.standards-compare__bg {
  position: absolute;
  inset: -2%;

  z-index: -3;

  background-image:
    url("https://www.panel.com.tr/en/images/Substation-Protection-and-Control-Panels/Substation-Protection-and-Control-Panels-03.jpg");

  background-size: cover;
  background-position: center;

  opacity: .32;

  filter:
    saturate(.65) contrast(1.05);

  transform: scale(1.04);
}


/* ============================================================
   IMAGE OVERLAY
   ============================================================ */

.standards-compare__overlay {
  position: absolute;
  inset: 0;

  z-index: -2;

  background:
    linear-gradient(90deg,
      rgba(5, 12, 26, .96) 0%,
      rgba(5, 12, 26, .88) 27%,
      rgba(5, 12, 26, .67) 57%,
      rgba(5, 12, 26, .78) 100%);

  pointer-events: none;
}


/* ============================================================
   TECHNICAL GRID
   ============================================================ */

.standards-compare::after {
  content: "";

  position: absolute;
  inset: 0;

  z-index: -1;

  pointer-events: none;

  opacity: .09;

  background-image:
    linear-gradient(rgba(255, 255, 255, .14) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(255, 255, 255, .14) 1px,
      transparent 1px);

  background-size: 70px 70px;

  mask-image:
    linear-gradient(to bottom,
      transparent,
      #000 15%,
      #000 85%,
      transparent);
}


/* ============================================================
   CONTAINER
   ============================================================ */

.standards-compare__container {
  position: relative;
  z-index: 2;
}


/* ============================================================
   INTRO
   ============================================================ */

.standards-compare__intro {
  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr) minmax(280px, .65fr);

  gap: 80px;

  align-items: end;

  margin-bottom: 48px;
}


.standards-compare__intro .eyebrow {
  margin-bottom: 14px;

  color: var(--brand-300);

  font-family: var(--font-mono);

  font-size: .68rem;

  font-weight: 600;

  letter-spacing: .13em;

  text-transform: uppercase;
}


.standards-compare__intro h2 {
  max-width: 760px;

  margin: 0;

  color: #fff;

  font-size: clamp(2.35rem,
      4.3vw,
      4rem);

  line-height: 1.04;

  letter-spacing: -.045em;
}


/* ============================================================
   INTRO COPY
   ============================================================ */

.standards-compare__intro-copy {
  position: relative;

  padding-left: 25px;

  border-left: 1px solid rgba(255, 255, 255, .22);
}


.standards-compare__intro-copy::before {
  content: "";

  position: absolute;

  left: -1px;
  top: 0;

  width: 2px;
  height: 48px;

  background: var(--brand-400);
}


.standards-compare__intro-copy p {
  max-width: 390px;

  margin: 0 0 17px;

  color: rgba(255, 255, 255, .62);

  font-size: .88rem;

  line-height: 1.75;
}


.standards-compare__ref {
  display: inline-flex;
  align-items: center;

  color: rgba(255, 255, 255, .34);

  font-family: var(--font-mono);

  font-size: .59rem;

  letter-spacing: .12em;
}


/* ============================================================
   COMPARISON PANEL
   ============================================================ */

.standards-compare__panel {
  position: relative;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, .17);

  background:
    linear-gradient(135deg,
      rgba(10, 20, 38, .90),
      rgba(6, 13, 27, .78));

  box-shadow:
    0 35px 100px rgba(0, 0, 0, .45),
    inset 0 1px 0 rgba(255, 255, 255, .07);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}


/* top accent */

.standards-compare__panel::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 2px;

  background:
    linear-gradient(90deg,
      var(--brand-500) 0%,
      var(--brand-400) 50%,
      rgba(255, 255, 255, .12) 50%,
      rgba(255, 255, 255, .12) 100%);

  z-index: 10;
}


/* subtle technical shine */

.standards-compare__panel::after {
  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  right: -220px;
  top: -260px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(195, 248, 66, .08),
      transparent 65%);

  pointer-events: none;
}


/* ============================================================
   TABLE HEADER
   ============================================================ */

.standards-compare__header {
  position: relative;

  display: grid;

  grid-template-columns: 1fr 1fr;

  min-height: 102px;

  background: rgba(2, 8, 20, .55);

  border-bottom: 1px solid rgba(255, 255, 255, .13);
}


/* vertical center divider */

.standards-compare__header::after {
  content: "";

  position: absolute;

  left: 50%;
  top: 20px;
  bottom: 20px;

  width: 1px;

  background:
    linear-gradient(to bottom,
      transparent,
      rgba(255, 255, 255, .18),
      transparent);

  pointer-events: none;
}


/* ============================================================
   HEADER LABEL
   ============================================================ */

.standards-compare__header-label {
  position: relative;

  display: flex;

  align-items: center;

  gap: 18px;

  padding: 22px 30px;

  border-right: 1px solid rgba(255, 255, 255, .06);
}


.standards-compare__header-label:last-child {
  border-right: 0;
}


/* Electromat header */

.standards-compare__header-label:first-child {
  background:
    linear-gradient(100deg,
      rgba(195, 248, 66, .075),
      transparent 72%);
}


/* traditional */

.standards-compare__header-label--old {
  background:
    linear-gradient(100deg,
      transparent,
      rgba(255, 255, 255, .025));
}


/* ============================================================
   HEADER INDEX
   ============================================================ */

.standards-compare__index {
  width: 38px;
  height: 38px;

  flex: 0 0 38px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(195, 248, 66, .42);

  border-radius: 50%;

  background: rgba(195, 248, 66, .07);

  color: var(--brand-300);

  font-family: var(--font-mono);

  font-size: .66rem;

  font-weight: 600;

  box-shadow:
    0 0 0 5px rgba(195, 248, 66, .025);
}


.standards-compare__header-label--old .standards-compare__index {
  border-color: rgba(255, 255, 255, .18);

  background: rgba(255, 255, 255, .035);

  color: rgba(255, 255, 255, .52);

  box-shadow: none;
}


/* ============================================================
   HEADER TEXT
   ============================================================ */

.standards-compare__header-label strong {
  display: block;

  margin-bottom: 6px;

  color: #fff;

  font-size: .76rem;

  font-weight: 700;

  letter-spacing: .055em;
}


.standards-compare__header-label small {
  display: block;

  color: rgba(255, 255, 255, .40);

  font-family: var(--font-mono);

  font-size: .58rem;

  letter-spacing: .09em;
}


/* ============================================================
   ROW
   ============================================================ */

.standards-compare__row {
  position: relative;

  display: grid;

  grid-template-columns:
    58px minmax(0, 1fr) minmax(0, 1fr);

  min-height: 70px;

  border-bottom: 1px solid rgba(255, 255, 255, .075);

  transition:
    background .22s ease,
    border-color .22s ease,
    transform .22s ease;
}


.standards-compare__row:last-child {
  border-bottom: 0;
}


/* ============================================================
   ROW HOVER
   ============================================================ */

.standards-compare__row:hover {
  background:
    linear-gradient(90deg,
      rgba(195, 248, 66, .045),
      rgba(255, 255, 255, .025),
      rgba(255, 255, 255, .035));

  border-bottom-color: rgba(195, 248, 66, .15);
}


/* ============================================================
   NUMBER COLUMN
   ============================================================ */

.standards-compare__row-number {
  position: relative;

  display: flex;

  align-items: center;
  justify-content: center;

  color: rgba(255, 255, 255, .28);

  font-family: var(--font-mono);

  font-size: .58rem;

  letter-spacing: .06em;

  border-right: 1px solid rgba(255, 255, 255, .09);
}


/* hover indicator */

.standards-compare__row-number::before {
  content: "";

  position: absolute;

  left: 0;
  top: 50%;

  width: 2px;
  height: 0;

  background: var(--brand-400);

  transform:
    translateY(-50%);

  transition: height .2s ease;
}


.standards-compare__row:hover .standards-compare__row-number::before {
  height: 22px;
}


/* ============================================================
   CELLS
   ============================================================ */

.standards-compare__cell {
  display: flex;

  align-items: center;

  gap: 13px;

  min-width: 0;

  padding: 16px 25px;

  color: rgba(255, 255, 255, .78);

  font-size: .79rem;

  line-height: 1.6;
}


/* Electromat */

.standards-compare__cell--good {
  border-right: 1px solid rgba(255, 255, 255, .09);

  background:
    linear-gradient(90deg,
      rgba(195, 248, 66, .018),
      transparent);
}


/* Traditional */

.standards-compare__cell--bad {
  color: rgba(255, 255, 255, .42);

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .012));
}


/* ============================================================
   CELL TEXT
   ============================================================ */

.standards-compare__cell>span:last-child {
  display: block;

  max-width: 560px;
}


/* ============================================================
   STATUS ICON
   ============================================================ */

.standards-compare__status {
  width: 24px;
  height: 24px;

  flex: 0 0 24px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;
}


/* good */

.standards-compare__cell--good .standards-compare__status {
  border: 1px solid rgba(195, 248, 66, .38);

  background: rgba(195, 248, 66, .075);

  color: var(--brand-300);
}


/* bad */

.standards-compare__cell--bad .standards-compare__status {
  border: 1px solid rgba(255, 255, 255, .11);

  background: rgba(255, 255, 255, .035);

  color: rgba(255, 255, 255, .32);
}


.standards-compare__status svg {
  width: 12px;
  height: 12px;
}


/* ============================================================
   BOTTOM INFORMATION BAR
   ============================================================ */

.standards-compare__bottom {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 35px;

  margin-top: 25px;

  padding: 21px 24px;

  border: 1px solid rgba(255, 255, 255, .13);

  background:
    linear-gradient(100deg,
      rgba(7, 15, 30, .78),
      rgba(7, 15, 30, .48));

  box-shadow:
    0 18px 50px rgba(0, 0, 0, .22);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}


/* ============================================================
   BOTTOM NOTE
   ============================================================ */

.standards-compare__bottom-note {
  display: flex;

  align-items: center;

  gap: 14px;
}


.standards-compare__bottom-mark {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(195, 248, 66, .32);

  background: rgba(195, 248, 66, .055);

  color: var(--brand-300);

  font-family: var(--font-mono);

  font-size: .67rem;

  font-weight: 600;
}


.standards-compare__bottom-note strong {
  display: block;

  margin-bottom: 4px;

  color: #fff;

  font-size: .78rem;

  font-weight: 700;
}


.standards-compare__bottom-note p {
  max-width: 650px;

  margin: 0;

  color: rgba(255, 255, 255, .43);

  font-size: .68rem;

  line-height: 1.55;
}


/* ============================================================
   BUTTON
   ============================================================ */

.standards-compare__bottom .btn {
  flex: 0 0 auto;

  white-space: nowrap;
}


.standards-compare__bottom .btn span {
  display: inline-block;

  margin-left: 8px;

  transition:
    transform .2s ease;
}


.standards-compare__bottom .btn:hover span {
  transform: translateX(5px);
}


/* ============================================================
   LARGE TABLET
   ============================================================ */

@media (max-width: 1000px) {

  .standards-compare {
    padding: 90px 0 80px;
  }


  .standards-compare__intro {
    grid-template-columns: 1fr;

    gap: 25px;

    margin-bottom: 38px;
  }


  .standards-compare__intro-copy {
    max-width: 560px;

    padding-left: 20px;
  }


  .standards-compare__cell {
    padding: 15px 19px;

    font-size: .76rem;
  }

}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 780px) {

  .standards-compare__header {
    grid-template-columns: 1fr;
  }


  .standards-compare__header::after {
    display: none;
  }


  .standards-compare__header-label {
    min-height: 78px;

    padding: 18px 22px;

    border-right: 0;

    border-bottom: 1px solid rgba(255, 255, 255, .09);
  }


  .standards-compare__header-label:last-child {
    border-bottom: 0;
  }


  .standards-compare__row {
    grid-template-columns:
      44px minmax(0, 1fr) minmax(0, 1fr);
  }


  .standards-compare__cell {
    padding: 14px 15px;

    gap: 9px;

    font-size: .73rem;
  }


  .standards-compare__status {
    width: 21px;
    height: 21px;

    flex-basis: 21px;
  }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 600px) {

  .standards-compare {
    padding: 70px 0 65px;
  }


  .standards-compare__bg {
    opacity: .24;

    background-position:
      60% center;
  }


  .standards-compare__overlay {
    background:
      linear-gradient(180deg,
        rgba(5, 12, 26, .95),
        rgba(5, 12, 26, .88));
  }


  .standards-compare__intro {
    gap: 20px;

    margin-bottom: 30px;
  }


  .standards-compare__intro h2 {
    font-size:
      clamp(2rem,
        9vw,
        2.8rem);

    line-height: 1.06;
  }


  .standards-compare__intro-copy {
    padding-left: 17px;
  }


  .standards-compare__intro-copy p {
    font-size: .82rem;
  }


  /* panel */

  .standards-compare__panel {
    background:
      rgba(5, 12, 26, .90);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }


  /* header */

  .standards-compare__header {
    display: block;
  }


  .standards-compare__header-label {
    min-height: 70px;

    padding: 15px 17px;

    gap: 13px;
  }


  .standards-compare__index {
    width: 32px;
    height: 32px;

    flex-basis: 32px;
  }


  .standards-compare__header-label strong {
    font-size: .68rem;
  }


  .standards-compare__header-label small {
    font-size: .54rem;
  }


  /* rows become cards */

  .standards-compare__row {
    display: block;

    min-height: 0;

    padding: 15px 17px 17px;
  }


  .standards-compare__row-number {
    display: block;

    height: auto;

    margin-bottom: 7px;

    padding: 0;

    border-right: 0;

    text-align: left;
  }


  .standards-compare__row-number::before {
    display: none;
  }


  .standards-compare__cell {
    align-items: flex-start;

    padding: 10px 0;

    font-size: .76rem;

    line-height: 1.55;
  }


  .standards-compare__cell--good {
    padding-bottom: 14px;

    border-right: 0;

    border-bottom: 1px dashed rgba(255, 255, 255, .12);
  }


  .standards-compare__cell--bad {
    padding-top: 14px;
  }


  .standards-compare__status {
    margin-top: 1px;
  }


  /* bottom */

  .standards-compare__bottom {
    align-items: stretch;

    flex-direction: column;

    gap: 18px;

    margin-top: 18px;

    padding: 17px;
  }


  .standards-compare__bottom-note {
    align-items: flex-start;
  }


  .standards-compare__bottom-mark {
    width: 38px;
    height: 38px;

    flex-basis: 38px;
  }


  .standards-compare__bottom-note p {
    font-size: .66rem;
  }


  .standards-compare__bottom .btn {
    width: 100%;

    justify-content: center;
  }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 400px) {

  .standards-compare {
    padding: 58px 0;
  }


  .standards-compare__intro h2 {
    font-size: 1.85rem;
  }


  .standards-compare__header-label {
    padding: 14px;
  }


  .standards-compare__row {
    padding-left: 14px;
    padding-right: 14px;
  }


  .standards-compare__cell {
    font-size: .72rem;
  }

}

/* ============================================================
   FOOTER BRAND LOGO
   ============================================================ */

.brand--footer {
  display: inline-flex;
  align-items: center;

  width: fit-content;

  text-decoration: none;
}


.brand__logo--footer {
  display: block;

  width: 185px;
  max-width: 100%;
  height: auto;

  object-fit: contain;

  /* logo ko footer ke dark background par clean rakhe */
  filter: none;

  transition:
    opacity .25s ease,
    transform .25s ease;
}


.brand--footer:hover .brand__logo--footer {
  opacity: .92;
  transform: translateY(-1px);
}


/* =========================================================
   ELECTROMAT — CLIENT TRUST SECTION
   Premium / Minimal / Corporate
========================================================= */

.client-trust-section {
  position: relative;
  overflow: hidden;

  padding: 72px 0 76px;

  background: #ffffff;

  border-top: 1px solid rgba(11, 16, 38, 0.06);
}


/* =========================================================
   CONTAINER
========================================================= */

.client-trust__container {
  position: relative;
  z-index: 2;
}


/* =========================================================
   HEADING
========================================================= */

.client-trust__heading {
  max-width: 720px;
  margin: 0 auto 42px;

  text-align: center;
}

.client-trust__eyebrow {
  margin: 0 0 10px;

  color: var(--brand-700);

  font-family: var(--font-mono);

  font-size: 0.68rem;
  font-weight: 600;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.client-trust__heading h2 {
  margin: 0;

  color: var(--ink-900);

  font-size: clamp(1.8rem, 3vw, 2.55rem);

  font-weight: 700;

  line-height: 1.15;

  letter-spacing: -0.035em;
}


/* =========================================================
   SMALL ACCENT
========================================================= */

.client-trust__heading::after {
  content: "";

  display: block;

  width: 42px;
  height: 3px;

  margin: 18px auto 0;

  background: var(--brand-700);

  border-radius: 10px;
}


/* =========================================================
   SLIDER WRAPPER
========================================================= */

.client-trust__slider {
  position: relative;

  width: 100%;

  overflow: hidden;

  padding: 12px 0 18px;
}


/* =========================================================
   SIDE FADE
========================================================= */

.client-trust__slider::before,
.client-trust__slider::after {
  content: "";

  position: absolute;

  top: 0;
  bottom: 0;

  width: 150px;

  z-index: 3;

  pointer-events: none;
}

.client-trust__slider::before {
  left: 0;

  background: linear-gradient(90deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%);
}

.client-trust__slider::after {
  right: 0;

  background: linear-gradient(270deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%);
}


/* =========================================================
   MOVING TRACK
========================================================= */

.client-trust__track {
  display: flex;

  align-items: center;

  width: max-content;

  gap: 18px;

  animation: clientLogoScroll 34s linear infinite;

  will-change: transform;
}


/* =========================================================
   LOGO ITEM
========================================================= */

.client-trust__logo {
  width: fit-content;
  height: 94px;

  flex: 0 0 190px;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 8px 8px;

  background: #ffffff;

  border: 1px solid rgba(11, 16, 38, 0.08);

  border-radius: 10px;

  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}


/* =========================================================
   LOGO IMAGE
========================================================= */

.client-trust__logo img {
  display: block;

  max-width: 100%;
  max-height: 100px;

  width: auto;
  height: auto;

  object-fit: contain;

  /* filter:
    grayscale(100%) contrast(.82) opacity(.68); */

  transition:
    filter .3s ease,
    opacity .3s ease,
    transform .3s ease;
}


/* =========================================================
   HOVER
========================================================= */

.client-trust__logo:hover {
  transform: translateY(-3px);

  border-color: rgba(20, 34, 110, 0.18);

  box-shadow:
    0 14px 35px rgba(11, 16, 38, 0.08);
}

.client-trust__logo:hover img {
  filter:
    grayscale(0%) contrast(1) opacity(1);

  transform: scale(1.04);
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes clientLogoScroll {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }

}


/* =========================================================
   PAUSE ON HOVER
========================================================= */

.client-trust__slider:hover .client-trust__track {
  animation-play-state: paused;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .client-trust-section {
    padding: 62px 0 66px;
  }

  .client-trust__heading {
    margin-bottom: 32px;
  }

  .client-trust__logo {
    width: 165px;
    height: 84px;

    flex-basis: 165px;

    padding: 16px 22px;
  }

  .client-trust__logo img {
    max-height: 45px;
  }

  .client-trust__track {
    gap: 14px;

    animation-duration: 30s;
  }

  .client-trust__slider::before,
  .client-trust__slider::after {
    width: 90px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .client-trust-section {
    padding: 52px 0 56px;
  }

  .client-trust__heading {
    margin-bottom: 26px;
  }

  .client-trust__eyebrow {
    font-size: 0.62rem;
  }

  .client-trust__heading h2 {
    font-size: 1.7rem;

    letter-spacing: -0.025em;
  }

  .client-trust__heading::after {
    margin-top: 14px;

    width: 34px;
    height: 2px;
  }

  .client-trust__logo {
    width: 145px;
    height: 76px;

    flex-basis: 145px;

    padding: 14px 18px;

    border-radius: 8px;
  }

  .client-trust__logo img {
    max-height: 40px;
  }

  .client-trust__track {
    gap: 12px;

    animation-duration: 26s;
  }

  .client-trust__slider::before,
  .client-trust__slider::after {
    width: 55px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .client-trust__track {
    animation: none;
  }

}


/* ============================================================
   ELECTROMAT — CLIENT NETWORK
   Premium industrial / corporate representation
   ============================================================ */

.client-network {
  position: relative;
  overflow: hidden;
  padding: 60px 0 60px;
  background: var(--surface, #f5f6f8);
  color: var(--ink-900);
}


/* ============================================================
   AMBIENT BACKGROUND
   ============================================================ */

.client-network__glow {
  position: absolute;
  width: 620px;
  height: 620px;
  top: -280px;
  right: -180px;
  border-radius: 50%;
  pointer-events: none;

  background:
    radial-gradient(circle,
      rgba(90, 86, 181, .09) 0%,
      rgba(90, 86, 181, .035) 42%,
      transparent 72%);
}


/* subtle technical line */

.client-network::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;

  background-image:
    linear-gradient(90deg,
      rgba(18, 25, 43, .035) 1px,
      transparent 1px),
    linear-gradient(rgba(18, 25, 43, .035) 1px,
      transparent 1px);

  background-size: 80px 80px;
}


.client-network__container {
  position: relative;
  z-index: 2;
}


/* ============================================================
   HEADER
   ============================================================ */

.client-network__header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 80px;
  align-items: end;

  margin-bottom: 58px;
}


.client-network__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 18px;

  color: var(--brand-700, #5a56b5);

  font-family: var(--font-mono, "IBM Plex Mono", monospace);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}


.client-network__kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}


.client-network__heading h2 {
  max-width: 780px;

  margin: 0;

  font-size: clamp(2.4rem, 4.5vw, 4.35rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 600;
}


.client-network__heading h2 span {
  position: relative;
  display: inline-block;

  color: var(--brand-700, #5a56b5);
}


.client-network__heading h2 span::after {
  content: "";
  position: absolute;

  left: 0;
  right: 0;
  bottom: -5px;

  height: 2px;

  background: currentColor;
  opacity: .35;
}


.client-network__intro {
  padding-left: 30px;
  border-left: 1px solid rgba(18, 25, 43, .15);
}


.client-network__intro p {
  max-width: 390px;

  margin: 0 0 28px;

  color: var(--text-muted, #687080);

  font-size: .95rem;
  line-height: 1.75;
}


.client-network__rule {
  display: flex;
  align-items: center;
  gap: 12px;
}


.client-network__rule span {
  width: 42px;
  height: 1px;
  background: var(--ink-900);
  opacity: .35;
}


.client-network__rule small {
  color: var(--text-muted, #687080);

  font-family: var(--font-mono, monospace);
  font-size: .61rem;
  letter-spacing: .12em;
}


/* ============================================================
   CLIENT PANELS
   ============================================================ */

.client-network__panels {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1px;

  background: rgba(18, 25, 43, .16);

  border: 1px solid rgba(18, 25, 43, .16);
}


/* ============================================================
   PANEL
   ============================================================ */

.client-panel {
  position: relative;
  min-height: 410px;

  display: flex;
  flex-direction: column;

  padding: 28px 30px 25px;

  background: rgba(255, 255, 255, .94);

  transition:
    transform .35s cubic-bezier(.2, .7, .2, 1),
    background .35s ease,
    box-shadow .35s ease;
}


.client-panel:hover {
  z-index: 3;

  transform: translateY(-8px);

  background: #fff;

  box-shadow:
    0 24px 55px rgba(18, 25, 43, .13);
}


/* first panel */

.client-panel--primary {
  background:
    linear-gradient(145deg,
      rgba(90, 86, 181, .09),
      rgba(255, 255, 255, .97) 45%);
}


/* ============================================================
   PANEL TOP
   ============================================================ */

.client-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 22px;

  border-bottom: 1px solid rgba(18, 25, 43, .11);
}


.client-panel__number {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  border: 1px solid rgba(18, 25, 43, .16);

  color: var(--ink-900);

  font-family: var(--font-mono, monospace);
  font-size: .64rem;
}


.client-panel--primary .client-panel__number {
  background: var(--brand-700, #5a56b5);
  border-color: var(--brand-700, #5a56b5);
  color: #fff;
}


.client-panel__type {
  color: #7b8190;

  font-family: var(--font-mono, monospace);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .12em;
}


/* ============================================================
   BODY
   ============================================================ */

.client-panel__body {
  flex: 1;

  padding-top: 35px;
}


.client-panel__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 26px;
}


.client-panel h3 {
  margin: 0;

  color: var(--ink-900);

  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 600;
}


.client-panel__arrow {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 34px;

  border: 1px solid rgba(18, 25, 43, .13);
  border-radius: 50%;

  color: #6e7480;

  font-size: 1rem;

  transition:
    transform .3s ease,
    background .3s ease,
    color .3s ease;
}


.client-panel:hover .client-panel__arrow {
  transform: translate(3px, -3px);

  background: var(--brand-700, #5a56b5);
  border-color: var(--brand-700, #5a56b5);

  color: #fff;
}


.client-panel p {
  max-width: 480px;

  margin: 0;

  color: #697180;

  font-size: .82rem;
  line-height: 1.75;
}


/* ============================================================
   PANEL FOOTER
   ============================================================ */

.client-panel__footer {
  display: flex;
  align-items: center;
  gap: 13px;

  padding-top: 23px;

  color: #7b8190;

  font-family: var(--font-mono, monospace);
  font-size: .57rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}


.client-panel__line {
  width: 35px;
  height: 1px;

  background: currentColor;
  opacity: .5;
}


/* ============================================================
   BOTTOM STATEMENT
   ============================================================ */

.client-network__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;

  margin-top: 38px;
}


.client-network__statement {
  display: flex;
  align-items: center;
  gap: 16px;
}


.client-network__statement-mark {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 42px;

  border: 1px solid rgba(18, 25, 43, .17);

  color: var(--brand-700, #5a56b5);

  font-family: var(--font-mono, monospace);
  font-size: .8rem;
  font-weight: 600;
}


.client-network__statement strong {
  display: block;

  margin-bottom: 4px;

  color: var(--ink-900);

  font-size: .78rem;
  font-weight: 600;
}


.client-network__statement span:not(.client-network__statement-mark) {
  display: block;

  color: var(--text-muted, #687080);

  font-size: .72rem;
}


/* ============================================================
   CTA
   ============================================================ */

.client-network__cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;

  min-height: 48px;
  padding: 0 8px 0 20px;

  border: 1px solid rgba(18, 25, 43, .18);

  color: var(--ink-900);

  text-decoration: none;

  font-size: .76rem;
  font-weight: 600;

  transition:
    background .25s ease,
    border-color .25s ease,
    color .25s ease;
}


.client-network__cta:hover {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: #fff;
}


.client-network__cta-icon {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--brand-700, #5a56b5);

  color: #fff;

  font-size: 1rem;

  transition: transform .25s ease;
}


.client-network__cta:hover .client-network__cta-icon {
  transform: translateX(3px);
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 950px) {

  .client-network {
    padding: 85px 0;
  }

  .client-network__header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .client-network__intro {
    padding-left: 0;
    padding-top: 24px;

    border-left: 0;
    border-top: 1px solid rgba(18, 25, 43, .15);
  }

  .client-network__intro p {
    max-width: 600px;
  }

  .client-network__panels {
    grid-template-columns: 1fr 1fr;
  }

  .client-panel--primary {
    grid-column: 1 / -1;
  }

  .client-panel {
    min-height: 380px;
  }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 650px) {

  .client-network {
    padding: 68px 0;
  }

  .client-network__header {
    margin-bottom: 38px;
  }

  .client-network__heading h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .client-network__panels {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .client-panel--primary {
    grid-column: auto;
  }

  .client-panel {
    min-height: auto;
    padding: 23px 21px 22px;
  }

  .client-panel__body {
    padding-top: 27px;
  }

  .client-panel h3 {
    font-size: 1.55rem;
  }

  .client-panel p {
    font-size: .8rem;
  }

  .client-network__bottom {
    align-items: stretch;
    flex-direction: column;
    gap: 25px;
  }

  .client-network__cta {
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
  }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

  .client-panel,
  .client-panel__arrow,
  .client-network__cta,
  .client-network__cta-icon {
    transition: none;
  }
}
/* ==========================================================================
   STANDARDS COMPARISON — extracted from index.php inline block
   ========================================================================== */
    /* ==========================================================================
   LIGHT INDUSTRIAL STANDARDS COMPARISON SECTION
   ========================================================================== */

    .std-compare-light {
      background-color: #f8fafc;
      color: #0f172a;
      padding: 4rem 0;
      border-top: 1px solid #e2e8f0;
      border-bottom: 1px solid #e2e8f0;
    }

    /* Header Elements */
    .std-compare-light__intro {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-bottom: 3rem;
    }

    @media (min-width: 992px) {
      .std-compare-light__intro {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: flex-end;
      }
    }

    .std-compare-light__badge {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      color: #15803d;
      background-color: #dcfce7;
      padding: 0.35rem 0.8rem;
      border-radius: 4px;
      margin-bottom: 1rem;
    }

    .std-compare-light__title {
      font-size: clamp(2rem, 3.5vw, 2.75rem);
      font-weight: 800;
      line-height: 1.15;
      color: #0f172a;
      margin: 0;
      letter-spacing: -0.02em;
    }

    .std-compare-light__title span {
      display: block;
      color: #64748b;
      font-weight: 400;
    }

    .std-compare-light__intro-aside {
      padding-left: 1.5rem;
      border-left: 3px solid #0284c7;
    }

    .std-compare-light__intro-aside p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #334155;
      margin: 0 0 0.75rem 0;
    }

    .std-compare-light__ref-tag {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: #94a3b8;
    }

    /* Card Wrapper */
    .std-compare-light__card {
      background: #ffffff;
      border: 1px solid #cbd5e1;
      border-radius: 12px;
      box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    /* Table Header */
    .std-compare-light__table-head {
      display: grid;
      grid-template-columns: 1fr;
      background: #f1f5f9;
      border-bottom: 1px solid #cbd5e1;
    }

    @media (min-width: 768px) {
      .std-compare-light__table-head {
        grid-template-columns: 60px 1fr 1fr;
      }
    }

    .std-compare-light__col-num {
      display: none;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: #94a3b8;
      border-right: 1px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .std-compare-light__col-num {
        display: flex;
      }
    }

    .std-compare-light__head-col {
      padding: 1.5rem;
    }

    .std-compare-light__head-col--winner {
      background-color: #f0fdf4;
    }

    .std-compare-light__head-col--outdated {
      background-color: #fef2f2;
    }

    @media (min-width: 768px) {
      .std-compare-light__head-col--winner {
        border-right: 1px solid #e2e8f0;
      }
    }

    .std-compare-light__winner-tag {
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      color: #15803d;
      margin-bottom: 0.4rem;
    }

    .std-compare-light__outdated-tag {
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      color: #b91c1c;
      margin-bottom: 0.4rem;
    }

    .std-compare-light__head-content {
      display: flex;
      align-items: center;
      gap: 0.85rem;
    }

    .std-compare-light__index-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 6px;
      font-weight: 800;
      font-size: 0.9rem;
    }

    .std-compare-light__index-badge--green {
      background-color: #16a34a;
      color: #ffffff;
    }

    .std-compare-light__index-badge--red {
      background-color: #dc2626;
      color: #ffffff;
    }

    .std-compare-light__head-content h3 {
      font-size: 0.95rem;
      font-weight: 800;
      color: #0f172a;
      margin: 0;
    }

    .std-compare-light__head-content small {
      display: block;
      font-size: 0.75rem;
      font-weight: 600;
      color: #64748b;
      margin-top: 0.15rem;
    }

    /* Rows Body */
    .std-compare-light__row {
      display: grid;
      grid-template-columns: 1fr;
      border-bottom: 1px solid #e2e8f0;
      transition: background-color 0.15 ease;
    }

    .std-compare-light__row:hover {
      background-color: #f8fafc;
    }

    .std-compare-light__row:last-child {
      border-bottom: none;
    }

    @media (min-width: 768px) {
      .std-compare-light__row {
        grid-template-columns: 60px 1fr 1fr;
      }
    }

    .std-compare-light__row-idx {
      display: none;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: 700;
      color: #94a3b8;
      background-color: #fafafa;
      border-right: 1px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .std-compare-light__row-idx {
        display: flex;
      }
    }

    .std-compare-light__cell {
      padding: 1.25rem 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    @media (min-width: 768px) {
      .std-compare-light__cell--good {
        border-right: 1px solid #e2e8f0;
      }
    }

    .std-compare-light__cell-tag {
      display: block;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
      .std-compare-light__cell-tag {
        display: none;
      }
    }

    .std-compare-light__cell-tag--good {
      color: #16a34a;
    }

    .std-compare-light__cell-tag--bad {
      color: #dc2626;
    }

    .std-compare-light__cell-inner {
      display: flex;
      align-items: flex-start;
      gap: 0.85rem;
    }

    .std-compare-light__icon {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 0.1rem;
    }

    .std-compare-light__icon--check {
      background-color: #dcfce7;
      color: #15803d;
    }

    .std-compare-light__icon--cross {
      background-color: #fee2e2;
      color: #b91c1c;
    }

    .std-compare-light__text {
      font-size: 0.9rem;
      line-height: 1.55;
      color: #334155;
    }

    .std-compare-light__cell--good .std-compare-light__text {
      font-weight: 600;
      color: #0f172a;
    }

    /* Footer CTA Strip */
    .std-compare-light__bottom {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    @media (min-width: 768px) {
      .std-compare-light__bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
      }
    }

    .std-compare-light__summary {
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }

    .std-compare-light__mark {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      background-color: #0f172a;
      color: #ffffff;
      border-radius: 8px;
      font-size: 1.2rem;
      font-weight: 800;
    }

    .std-compare-light__summary strong {
      display: block;
      font-size: 0.95rem;
      color: #0f172a;
    }

    .std-compare-light__summary p {
      font-size: 0.85rem;
      color: #64748b;
      margin: 0.2rem 0 0 0;
    }

    .std-compare-light__btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.85rem 1.6rem;
      background-color: #0284c7;
      color: #ffffff;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.2s ease;
      white-space: nowrap;
    }

    .std-compare-light__btn:hover {
      background-color: #0369a1;
