/*
Theme Name: Electrosteam
Theme URI: https://www.electrosteam.com
Author: GDD
Description: Custom theme for Electro-Steam Generator Corp.
Version: 1.0.0
License: Proprietary
Text Domain: electrosteam
*/

/* =========================================
   CSS CUSTOM PROPERTIES
========================================= */
:root {
  --navy         : #1b4c72;
  --navy-dark    : #0e2d47;
  --navy-deep    : #091c2e;
  --red          : #be2226;
  --red-bright   : #d42d31;
  --white        : #ffffff;
  --off-white    : #f4f7fa;
  --gray-light   : #e8edf2;
  --gray-mid     : #8a9aaa;
  --gray-text    : #4a5563;
  --black        : #0a0f14;
  --font-display : 'Big Shoulders Display', sans-serif;
  --font-body    : 'Source Sans 3', sans-serif;
  --max-width    : 1346px;
}

/* =========================================
   RESET & BASE
========================================= */
*, *::before, *::after {
  box-sizing : border-box;
  margin     : 0;
  padding    : 0;
}

html {
  scroll-behavior : smooth;
}

body {
  font-family            : var(--font-body);
  color                  : var(--gray-text);
  background             : var(--white);
  line-height            : 1.6;
  -webkit-font-smoothing : antialiased;
}

a {
  text-decoration : none;
  color           : #1a6ed3;
}

a:hover {
  text-decoration : underline;
}

/* Suppress underline on hover for UI chrome — component color rules handle their own colors */
.top-bar a:hover,
.site-header a:hover,
.site-footer a:hover,
.btn:hover,
a.tradeshow-item:hover,
.advantage-learn:hover,
.product-card:hover,
.product-card-link:hover,
.resource-card:hover {
  text-decoration : none;
}

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

ul {
  list-style : none;
}

/* =========================================
   SCROLL REVEAL
========================================= */
[data-reveal] {
  opacity    : 0;
  transform  : translateY(20px);
  transition : opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].visible {
  opacity   : 1;
  transform : translateY(0);
}

/* =========================================
   BUTTONS
========================================= */
.btn {
  display         : inline-flex;
  align-items     : center;
  justify-content : center;
  font-family     : var(--font-body);
  font-weight     : 600;
  border-radius   : 3px;
  cursor          : pointer;
  transition      : background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  border          : 2px solid transparent;
  white-space     : nowrap;
  text-decoration : none;
}

.btn-red {
  background   : var(--red);
  color        : var(--white);
  border-color : var(--red);
  padding      : 12px 26px;
  font-size    : 0.98rem;
}

.btn-red:hover {
  background   : var(--red-bright);
  border-color : var(--red-bright);
  transform    : translateY(-1px);
  box-shadow   : 0 4px 16px rgba(190, 34, 38, 0.35);
}

.btn-outline-white {
  background   : transparent;
  color        : var(--white);
  border-color : rgba(255, 255, 255, 0.5);
  padding      : 12px 26px;
  font-size    : 0.98rem;
}

.btn-outline-white:hover {
  border-color : var(--white);
  background   : rgba(255, 255, 255, 0.1);
}

.btn-outline-navy {
  background   : transparent;
  color        : var(--navy-dark);
  border-color : var(--navy-dark);
  padding      : 12px 26px;
  font-size    : 0.98rem;
}

.btn-outline-navy:hover {
  background : var(--navy-dark);
  color      : var(--white);
}

/* =========================================
   TOP BAR
========================================= */
.top-bar {
  background  : var(--navy-deep);
  height      : 36px;
  display     : flex;
  align-items : center;
}

.top-bar-inner {
  max-width       : var(--max-width);
  margin          : 0 auto;
  padding         : 0 24px;
  width           : 100%;
  display         : flex;
  align-items     : center;
  justify-content : space-between;
}

.top-bar-left {
  display     : flex;
  align-items : center;
  gap         : 20px;
}

.top-bar-left a {
  font-family : var(--font-body);
  font-size   : 14px;
  color       : rgba(255, 255, 255, 0.72);
  display     : flex;
  align-items : center;
  gap         : 6px;
  transition  : color 0.2s;
}

.top-bar-left a:hover {
  color : var(--white);
}

.top-bar-left a svg {
  flex-shrink : 0;
}

.top-bar-left a i[class^="icon-"] {
  font-size   : 0.875rem;
  line-height : 1;
  flex-shrink : 0;
}

.top-bar-right {
  display     : flex;
  align-items : center;
  gap         : 8px;
}

.top-bar-right span {
  font-family : var(--font-body);
  font-size   : 14px;
  color       : rgba(255, 255, 255, 0.72);
}

/* =========================================
   STICKY HEADER / NAV
========================================= */
.site-header {
  position   : sticky;
  top        : 0;
  z-index    : 1000;
  background : var(--white);
  box-shadow : 0 2px 12px rgba(0, 0, 0, 0.10);
}

.site-header-inner {
  max-width       : var(--max-width);
  margin          : 0 auto;
  padding         : 0 24px;
  height          : 72px;
  display         : flex;
  align-items     : center;
  justify-content : space-between;
  gap             : 24px;
}

.site-logo img {
  height  : 48px;
  width   : auto;
  display : block;
}

.site-nav {
  display     : flex;
  align-items : center;
  gap         : 4px;
}

.nav-item {
  position : relative;
}

.nav-link {
  font-family   : var(--font-body);
  font-size     : 1rem;
  font-weight   : 600;
  color         : var(--navy-dark);
  padding       : 8px 14px;
  border-radius : 3px;
  display       : flex;
  align-items   : center;
  gap           : 4px;
  transition    : background 0.2s, color 0.2s;
  cursor        : pointer;
  white-space   : nowrap;
}

.nav-link:hover {
  background : var(--off-white);
  color      : var(--navy);
}

.nav-link svg {
  flex-shrink : 0;
  opacity     : 0.6;
}

.nav-dropdown {
  position       : absolute;
  top            : 100%;
  left           : 0;
  background     : var(--white);
  border         : 1px solid var(--gray-light);
  border-top     : 3px solid var(--red);
  border-radius  : 0 0 4px 4px;
  box-shadow     : 0 8px 32px rgba(0, 0, 0, 0.12);
  min-width      : 250px;
  padding        : 6px 0 8px;
  opacity        : 0;
  pointer-events : none;
  transform      : translateY(-8px);
  transition     : opacity 0.2s, transform 0.2s;
  z-index        : 100;
}

.nav-item:hover .nav-dropdown {
  opacity        : 1;
  pointer-events : auto;
  transform      : translateY(0);
}

.nav-dropdown a {
  display     : block;
  padding     : 6px 20px;
  font-family : var(--font-body);
  font-size   : 0.95rem;
  color       : var(--gray-text);
  transition  : background 0.15s, color 0.15s;
}

.nav-dropdown a:hover {
  background : var(--off-white);
  color      : var(--red);
}

/* Level-3 flyout */
.nav-sub-item {
  position : relative;
}

.nav-sub-item > a {
  display         : flex;
  justify-content : space-between;
  align-items     : center;
  gap             : 8px;
}

.nav-sub-item > a svg {
  flex-shrink : 0;
  opacity     : 0.45;
}

.nav-sub-dropdown {
  position       : absolute;
  top            : -6px;
  left           : 100%;
  background     : var(--white);
  border         : 1px solid var(--gray-light);
  border-top     : 3px solid var(--red);
  border-radius  : 0 0 4px 4px;
  box-shadow     : 0 8px 32px rgba(0, 0, 0, 0.12);
  min-width      : 250px;
  padding        : 6px 0 8px;
  opacity        : 0;
  pointer-events : none;
  z-index        : 101;
  transition     : opacity 0.18s;
}

.nav-sub-item:hover .nav-sub-dropdown,
.nav-sub-item:focus-within .nav-sub-dropdown {
  opacity        : 1;
  pointer-events : auto;
}

.nav-dropdown-divider {
  height     : 1px;
  background : var(--gray-light);
  margin     : 6px 12px;
}

/* ---- Mega menu (Products) ---- */
.nav-mega {
  display  : flex;
  width    : 520px;
  padding  : 6px 0 10px;
  gap      : 0;
}

.mega-col {
  flex           : 1;
  display        : flex;
  flex-direction : column;
  border-right   : 1px solid var(--gray-light);
}

.mega-col:last-child {
  border-right : none;
}

/* Section headings — same size/typeface as other dropdown items, bold + separator */
.mega-col-heading,
.mega-col-heading-text {
  display        : block;
  font-family    : var(--font-body) !important;
  font-size      : 0.95rem !important;
  font-weight    : 600 !important;
  color          : var(--navy-dark) !important;
  padding        : 6px 20px 7px !important;
  margin-top     : 6px;
  background     : none !important;
  border-bottom  : 1px solid var(--gray-light);
  text-transform : none !important;
  letter-spacing : 0 !important;
}

.mega-col > .mega-col-heading:first-child,
.mega-col > .mega-col-heading-text:first-child {
  margin-top : 0;
}

.mega-col-heading:hover {
  color      : var(--red) !important;
  background : var(--off-white) !important;
}

/* L3 items — same typeface, slightly smaller */
a.mega-item {
  display     : block;
  font-family : var(--font-body);
  font-size   : 0.84rem;
  color       : var(--gray-text);
  padding     : 6px 20px;
  transition  : background 0.15s, color 0.15s;
}

a.mega-item:hover {
  background : var(--off-white);
  color      : var(--red);
}

.nav-right {
  display     : flex;
  align-items : center;
  gap         : 14px;
  flex-shrink : 0;
}

.nav-phone {
  font-family : var(--font-body);
  font-size   : 0.98rem;
  font-weight : 600;
  color       : var(--navy-dark);
  white-space : nowrap;
}

.nav-phone:hover {
  color : var(--red);
}

.hamburger-btn {
  display         : none;
  flex-direction  : column;
  justify-content : center;
  align-items     : center;
  gap             : 5px;
  width           : 40px;
  height          : 40px;
  background      : none;
  border          : none;
  cursor          : pointer;
  padding         : 0;
}

.hamburger-btn span {
  display       : block;
  width         : 22px;
  height        : 2px;
  background    : var(--navy-dark);
  border-radius : 2px;
  transition    : all 0.3s;
}

.mobile-nav {
  display    : none;
  background : var(--white);
  border-top : 1px solid var(--gray-light);
  padding    : 16px 0;
}

.mobile-nav.open {
  display : block;
}

.mobile-nav a {
  display       : block;
  padding       : 10px 24px;
  font-family   : var(--font-body);
  font-size     : 1rem;
  font-weight   : 600;
  color         : var(--navy-dark);
  border-bottom : 1px solid var(--gray-light);
}

.mobile-nav a:last-child {
  border-bottom : none;
}

.mobile-nav a:hover {
  background : var(--off-white);
}

.mobile-nav-sub {
  padding-left : 40px;
  font-weight  : 400 !important;
  color        : var(--gray-text) !important;
  font-size    : 0.95rem !important;
}

.mobile-nav-sub2 {
  padding-left : 60px;
  font-weight  : 400 !important;
  color        : var(--gray-mid) !important;
  font-size    : 0.88rem !important;
}

/* =========================================
   HERO — Split Panel
========================================= */
.hero {
  min-height            : 700px;
  display               : grid;
  grid-template-columns : 1fr 1fr;
  background            : var(--navy-deep);
}

.hero-left {
  background      : var(--navy-deep);
  position        : relative;
  display         : flex;
  flex-direction  : column;
  justify-content : center;
  padding-top     : 72px;
  padding-bottom  : 72px;
  padding-right   : 56px;
  padding-left    : max(24px, calc((100vw - var(--max-width)) / 2));
}

.hero-eyebrow {
  display       : flex;
  align-items   : center;
  gap           : 12px;
  margin-bottom : 20px;
}

.hero-eyebrow-bar {
  width       : 32px;
  height      : 2px;
  background  : var(--red);
  flex-shrink : 0;
}

.hero-eyebrow-text {
  font-family    : var(--font-body);
  font-size      : 0.78rem;
  text-transform : uppercase;
  letter-spacing : 0.2em;
  color          : rgba(255, 255, 255, 0.5);
}

.hero-h1 {
  font-family    : var(--font-display);
  font-size      : clamp(1.7rem, 2.8vw, 4rem);
  font-weight    : 800;
  text-transform : uppercase;
  color          : var(--white);
  line-height    : 1;
  margin-bottom  : 24px;
  letter-spacing : 0.01em;
}

.hero-h1 .hero-red {
  color      : var(--red);
  font-style : normal;
}

.hero-rule {
  width         : 48px;
  height        : 3px;
  background    : var(--red);
  margin-bottom : 24px;
}

.hero-sub {
  font-family   : var(--font-body);
  font-size     : 1rem;
  color         : rgba(255, 255, 255, 0.72);
  line-height   : 1.75;
  margin-bottom : 36px;
  max-width     : 460px;
}

.hero-ctas {
  display   : flex;
  gap       : 14px;
  flex-wrap : wrap;
}

.hero-facts {
  display     : none;
  flex-wrap   : wrap;
  gap         : 6px 20px;
  margin-top  : 32px;
  padding-top : 24px;
  border-top  : 1px solid rgba(255, 255, 255, 0.1);
}

.hero-fact {
  font-family    : var(--font-body);
  font-size      : 0.85rem;
  color          : rgba(255, 255, 255, 0.48);
  letter-spacing : 0.06em;
  display        : flex;
  align-items    : center;
  gap            : 7px;
}

.hero-fact::before {
  content       : '';
  display       : block;
  width         : 4px;
  height        : 4px;
  border-radius : 50%;
  background    : var(--red);
  flex-shrink   : 0;
}

.hero-right {
  position : relative;
  overflow : hidden;
}

.hero-img-fill {
  position        : absolute;
  inset           : 0;
  width           : 100%;
  height          : 100%;
  object-fit      : cover;
  object-position : center 20%;
}

.hero-right::before {
  content    : '';
  position   : absolute;
  top        : 0;
  left       : 0;
  bottom     : 0;
  width      : 80px;
  background : var(--navy-deep);
  clip-path  : polygon(0 0, 100% 0, 0 100%);
  z-index    : 2;
}

.hero-right::after {
  content    : '';
  position   : absolute;
  top        : 0;
  right      : 0;
  bottom     : 0;
  width      : 5px;
  background : var(--red);
  z-index    : 2;
}

.hero-img-overlay {
  position   : absolute;
  inset      : 0;
  background : linear-gradient(to bottom, rgba(9, 28, 46, 0.08) 0%, rgba(9, 28, 46, 0.42) 100%);
  z-index    : 1;
}

.hero-float-card {
  position                : absolute;
  bottom                  : 30px;
  left                    : 75px;
  z-index                 : 3;
  background              : rgba(9, 28, 46, 0.88);
  backdrop-filter         : blur(12px);
  -webkit-backdrop-filter : blur(12px);
  border-left             : 3px solid var(--red);
  padding                 : 18px 22px;
  border-radius           : 2px;
  max-width               : 400px;
}

.float-card-eyebrow {
  font-family    : var(--font-body);
  font-size      : 1rem;
  text-transform : uppercase;
  letter-spacing : 0.16em;
  color          : var(--red);
  margin-bottom  : 6px;
}

.float-card-title {
  font-family    : var(--font-display);
  font-size      : 1.4rem;
  font-weight    : 700;
  text-transform : uppercase;
  color          : var(--white);
  line-height    : 1.15;
  margin-bottom  : 5px;
}

.float-card-sub {
  font-family : var(--font-body);
  font-size   : 0.84rem;
  color       : rgba(255, 255, 255, 0.55);
  display     : none;
}

/* =========================================
   TRADE SHOW MARQUEE BAR
========================================= */
.tradeshow-bar {
  background  : var(--navy-dark);
  height      : 44px;
  display     : flex;
  align-items : center;
  overflow    : hidden;
  border-top  : 2px solid var(--red);
}

.tradeshow-label {
  flex-shrink    : 0;
  font-family    : var(--font-body);
  font-size      : 1rem;
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.14em;
  color          : var(--red);
  padding        : 0 16px 0 24px;
  white-space    : nowrap;
  border-right   : 1px solid rgba(255, 255, 255, 0.1);
  height         : 100%;
  display        : flex;
  align-items    : center;
}

.tradeshow-scroll-wrap {
  flex               : 1;
  overflow           : hidden;
  mask-image         : linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image : linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.tradeshow-track {
  display     : flex;
  animation   : marquee-scroll 52s linear infinite;
  white-space : nowrap;
}

.tradeshow-bar:hover .tradeshow-track {
  animation-play-state : paused;
}

@keyframes marquee-scroll {
  from {
    transform : translateX(0);
  }
  to {
    transform : translateX(-50%);
  }
}

.tradeshow-item {
  display         : inline-flex;
  align-items     : center;
  gap             : 8px;
  padding         : 0 36px;
  font-family     : var(--font-body);
  font-size       : 1.1rem;
  color           : rgba(255, 255, 255, 0.72);
  text-decoration : none;
}

a.tradeshow-item:hover {
  color : rgba(255, 255, 255, 0.95);
}

.tradeshow-item strong {
  color       : rgba(255, 255, 255, 0.95);
  font-weight : 600;
}

.tradeshow-item::after {
  content     : '·';
  color       : rgba(255, 255, 255, 0.25);
  font-size   : 1rem;
  margin-left : 8px;
}

/* =========================================
   SECTION SHARED STYLES
========================================= */
.section-eyebrow {
  font-family    : var(--font-body);
  font-size      : 1rem;
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.2em;
  color          : var(--red);
  margin-bottom  : 10px;
  display        : flex;
  align-items    : center;
  gap            : 8px;
}

.section-eyebrow::before {
  content     : '';
  display     : block;
  width       : 24px;
  height      : 2px;
  background  : var(--red);
  flex-shrink : 0;
}

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

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

/* =========================================
   PRODUCTS SECTION
========================================= */
.products-section {
  background : #f5f2ee;
  padding    : 80px 24px;
}

.products-inner {
  max-width : var(--max-width);
  margin    : 0 auto;
}

.products-header {
  display         : flex;
  align-items     : flex-end;
  justify-content : space-between;
  gap             : 32px;
  margin-bottom   : 48px;
}

.products-header-left {
  flex : 1;
}

.products-h2 {
  font-family    : var(--font-display);
  font-size      : clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight    : 800;
  text-transform : uppercase;
  color          : var(--navy-dark);
  line-height    : 1.0;
  margin-bottom  : 14px;
  letter-spacing : 0.01em;
}

.products-h2 em {
  color      : var(--red);
  font-style : normal;
}

.products-desc {
  font-family : var(--font-body);
  font-size   : 1rem;
  color       : var(--gray-text);
  line-height : 1.68;
  max-width   : 52em;
}

.products-grid {
  display               : grid;
  grid-template-columns : 1.55fr 1fr 1fr;
  grid-template-rows    : auto auto;
  gap                   : 20px;
}

.product-card {
  background     : var(--white);
  border-radius  : 4px;
  overflow       : hidden;
  display        : flex;
  flex-direction : column;
  box-shadow     : 0 2px 12px rgba(0, 0, 0, 0.06);
  transition     : box-shadow 0.3s, transform 0.3s;
}

.product-card:hover {
  box-shadow : 0 8px 32px rgba(0, 0, 0, 0.13);
  transform  : translateY(-3px);
}

.product-card-feature {
  grid-row : 1 / 3;
}

.product-card-img {
  width        : 100%;
  aspect-ratio : 16 / 9;
  object-fit   : cover;
  display      : block;
}

.product-card-feature .product-card-img {
  aspect-ratio : unset;
  height       : 75%;
}

.product-card-body {
  padding        : 22px 24px 24px;
  flex           : 1;
  display        : flex;
  flex-direction : column;
}

.product-card-cat {
  font-family    : var(--font-body);
  font-size      : 0.76rem;
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.14em;
  color          : var(--red);
  margin-bottom  : 7px;
}

.product-card-title {
  font-family    : var(--font-display);
  font-size      : 1.3rem;
  font-weight    : 700;
  color          : var(--navy-dark);
  text-transform : uppercase;
  line-height    : 1.1;
  margin-bottom  : 10px;
  letter-spacing : 0.01em;
}

.product-card-feature .product-card-title {
  font-size : 1.7rem;
}

.product-card-text {
  font-family   : var(--font-body);
  font-size     : 0.98rem;
  color         : var(--gray-text);
  line-height   : 1.65;
  flex          : 1;
  margin-bottom : 18px;
}

.product-card-link {
  display        : inline-flex;
  align-items    : center;
  gap            : 6px;
  font-family    : var(--font-body);
  font-size      : 0.92rem;
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.08em;
  color          : var(--red);
  transition     : gap 0.2s;
}

.product-card-link:hover {
  gap : 10px;
}

.product-card-link svg {
  flex-shrink : 0;
}

.product-card-badge {
  display        : inline-block;
  font-family    : var(--font-body);
  font-size      : 0.73rem;
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.14em;
  background     : var(--red);
  color          : var(--white);
  padding        : 3px 10px;
  border-radius  : 2px;
  margin-bottom  : 10px;
  align-self     : flex-start;
}

/* =========================================
   ALL-ELECTRIC ADVANTAGE
========================================= */
.advantage-section {
  background : var(--navy-deep);
  padding    : 80px 24px;
}

.advantage-inner {
  max-width : var(--max-width);
  margin    : 0 auto;
}

.advantage-grid {
  display               : grid;
  grid-template-columns : 1fr 1.4fr;
  gap                   : 80px;
  align-items           : start;
}

.advantage-left-eyebrow {
  font-family    : var(--font-body);
  font-size      : 1rem;
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.2em;
  color          : var(--red);
  margin-bottom  : 10px;
  display        : flex;
  align-items    : center;
  gap            : 8px;
}

.advantage-left-eyebrow::before {
  content     : '';
  display     : block;
  width       : 24px;
  height      : 2px;
  background  : var(--red);
  flex-shrink : 0;
}

.advantage-h2 {
  font-family    : var(--font-display);
  font-size      : clamp(2rem, 3.2vw, 3rem);
  font-weight    : 800;
  text-transform : uppercase;
  color          : var(--white);
  line-height    : 1.0;
  margin-bottom  : 20px;
  letter-spacing : 0.01em;
}

.advantage-rule {
  width         : 48px;
  height        : 3px;
  background    : var(--red);
  margin-bottom : 24px;
}

.advantage-body {
  font-family   : var(--font-body);
  font-size     : 1rem;
  color         : rgba(255, 255, 255, 0.65);
  line-height   : 1.75;
  margin-bottom : 28px;
}

.advantage-learn {
  font-family    : var(--font-body);
  font-size      : 0.92rem;
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.1em;
  color          : var(--red);
  display        : inline-flex;
  align-items    : center;
  gap            : 6px;
  transition     : gap 0.2s;
}

.advantage-learn:hover {
  gap : 10px;
}

.advantage-list {
  display        : flex;
  flex-direction : column;
}

.advantage-item {
  display               : grid;
  grid-template-columns : 48px 1fr;
  gap                   : 20px;
  padding               : 28px 0;
  border-bottom         : 1px solid rgba(255, 255, 255, 0.08);
  align-items           : start;
}

.advantage-item:first-child {
  border-top : 1px solid rgba(255, 255, 255, 0.08);
}

.advantage-num {
  font-family    : var(--font-display);
  font-size      : 1rem;
  font-weight    : 700;
  color          : var(--red);
  letter-spacing : 0.08em;
  padding-top    : 3px;
}

.advantage-title {
  font-family    : var(--font-display);
  font-size      : 1.15rem;
  font-weight    : 700;
  text-transform : uppercase;
  color          : var(--white);
  margin-bottom  : 8px;
  letter-spacing : 0.01em;
}

.advantage-body-item {
  font-family : var(--font-body);
  font-size   : 0.98rem;
  color       : rgba(255, 255, 255, 0.55);
  line-height : 1.65;
}

/* =========================================
   RESOURCES SECTION
========================================= */
.resources-section {
  background : var(--off-white);
  padding    : 80px 24px;
}

.resources-inner {
  max-width : var(--max-width);
  margin    : 0 auto;
}

.resources-header {
  text-align    : center;
  margin-bottom : 48px;
}

.resources-h2 {
  font-family    : var(--font-display);
  font-size      : clamp(2rem, 3.2vw, 2.8rem);
  font-weight    : 800;
  text-transform : uppercase;
  color          : var(--navy-dark);
  margin-bottom  : 10px;
  letter-spacing : 0.01em;
}

.resources-sub {
  font-family : var(--font-body);
  font-size   : 1rem;
  color       : var(--gray-text);
  max-width   : 500px;
  margin      : 0 auto;
}

.resources-grid {
  display               : grid;
  grid-template-columns : repeat(3, 1fr);
  gap                   : 24px;
}

.resource-card {
  background     : var(--white);
  border-radius  : 4px;
  overflow       : hidden;
  box-shadow     : 0 2px 12px rgba(0, 0, 0, 0.07);
  transition     : box-shadow 0.3s, transform 0.3s;
  display        : flex;
  flex-direction : column;
}

.resource-card:hover {
  box-shadow : 0 8px 28px rgba(0, 0, 0, 0.12);
  transform  : translateY(-3px);
}

.resource-card-img-zone {
  background      : linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  height          : 200px;
  display         : flex;
  align-items     : center;
  justify-content : center;
  padding         : 24px;
  overflow        : hidden;
}

.resource-card-img-zone img {
  max-height : 160px;
  max-width  : 100%;
  object-fit : contain;
  display    : block;
  filter     : drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
  transition : transform 0.3s;
}

.resource-card:hover .resource-card-img-zone img {
  transform : scale(1.04);
}

.resource-card-body {
  padding        : 24px;
  flex           : 1;
  display        : flex;
  flex-direction : column;
}

.resource-card-tag {
  font-family    : var(--font-body);
  font-size      : 0.76rem;
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.14em;
  color          : var(--red);
  margin-bottom  : 8px;
}

.resource-card-title {
  font-family    : var(--font-display);
  font-size      : 1.15rem;
  font-weight    : 700;
  text-transform : uppercase;
  color          : var(--navy-dark);
  line-height    : 1.15;
  margin-bottom  : 10px;
  flex           : 1;
  letter-spacing : 0.01em;
}

.resource-card-desc {
  font-size   : 0.95rem;
  color       : var(--gray-text);
  line-height : 1.6;
}

.resource-card-link {
  display        : inline-flex;
  align-items    : center;
  gap            : 6px;
  font-family    : var(--font-body);
  font-size      : 0.92rem;
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.08em;
  color          : var(--navy);
  margin-top     : 14px;
  transition     : color 0.2s, gap 0.2s;
}

.resource-card-link:hover {
  color : var(--red);
  gap   : 10px;
}

/* =========================================
   TESTIMONIALS
========================================= */
.testimonials-section {
  background : var(--white);
  padding    : 64px 24px;
}

.testimonials-inner {
  max-width : var(--max-width);
  margin    : 0 auto;
}

.testimonials-header {
  text-align    : center;
  margin-bottom : 36px;
}

.testimonials-h2 {
  font-family    : var(--font-display);
  font-size      : clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight    : 800;
  text-transform : uppercase;
  color          : var(--navy-dark);
  letter-spacing : 0.01em;
}

.testimonials-grid {
  display               : grid;
  grid-template-columns : 1fr 1fr;
  gap                   : 20px;
}

.testimonial-card {
  background    : var(--off-white);
  border-left   : 3px solid var(--navy);
  padding       : 24px 28px;
  border-radius : 3px;
  transition    : box-shadow 0.25s;
}

.testimonial-card:hover {
  box-shadow : 0 6px 24px rgba(0, 0, 0, 0.09);
}

.testimonial-logo {
  height          : 36px;
  object-fit      : contain;
  object-position : left;
  margin-bottom   : 16px;
  filter          : grayscale(100%);
  opacity         : 0.65;
  transition      : filter 0.3s, opacity 0.3s;
  display         : block;
}

.testimonial-card:hover .testimonial-logo {
  filter  : grayscale(0%);
  opacity : 1;
}

.testimonial-text {
  font-family   : var(--font-body);
  font-size     : 0.98rem;
  font-style    : italic;
  color         : var(--gray-text);
  line-height   : 1.65;
  margin-bottom : 16px;
}

.testimonial-divider {
  width         : 28px;
  height        : 2px;
  background    : var(--red);
  margin-bottom : 12px;
}

.testimonial-name {
  font-family    : var(--font-display);
  font-size      : 1rem;
  font-weight    : 700;
  color          : var(--navy-dark);
  text-transform : uppercase;
  letter-spacing : 0.04em;
}

.testimonial-role {
  font-family : var(--font-body);
  font-size   : 0.87rem;
  color       : var(--gray-mid);
  margin-top  : 2px;
}

/* =========================================
   CONTACT
========================================= */
.contact-section {
  background : var(--off-white);
  padding    : 80px 24px;
  border-top : 1px solid var(--gray-light);
}

.contact-inner {
  max-width             : var(--max-width);
  margin                : 0 auto;
  display               : grid;
  grid-template-columns : 1fr 1fr;
  gap                   : 64px;
  align-items           : start;
}

.contact-eyebrow {
  display       : flex;
  align-items   : center;
  gap           : 10px;
  margin-bottom : 16px;
}

.contact-eyebrow::before {
  content     : '';
  display     : block;
  width       : 28px;
  height      : 2px;
  background  : var(--red);
  flex-shrink : 0;
}

.contact-eyebrow-text {
  font-family    : var(--font-body);
  font-size      : 1rem;
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.22em;
  color          : var(--red);
}

.contact-h2 {
  font-family    : var(--font-display);
  font-size      : clamp(2rem, 3.2vw, 3rem);
  font-weight    : 800;
  text-transform : uppercase;
  color          : var(--navy-dark);
  line-height    : 1.0;
  margin-bottom  : 16px;
  letter-spacing : 0.01em;
}

.contact-p {
  font-family   : var(--font-body);
  font-size     : 1rem;
  color         : var(--gray-text);
  line-height   : 1.72;
  max-width     : 440px;
  margin-bottom : 32px;
}

.contact-btn-row {
  display   : flex;
  gap       : 12px;
  flex-wrap : wrap;
}

.contact-card {
  background    : var(--white);
  border        : 1px solid var(--gray-light);
  border-radius : 4px;
  padding       : 36px;
  box-shadow    : 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-card-title {
  font-family    : var(--font-body);
  font-size      : 0.9rem;
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.14em;
  color          : var(--gray-mid);
  margin-bottom  : 20px;
  border-bottom  : 1px solid var(--gray-light);
  padding-bottom : 12px;
}

.contact-detail {
  display       : flex;
  gap           : 16px;
  align-items   : flex-start;
  margin-bottom : 16px;
}

.contact-detail:last-child {
  margin-bottom : 0;
}

.contact-detail-icon {
  width           : 36px;
  height          : 36px;
  flex-shrink     : 0;
  background      : var(--navy);
  border-radius   : 50%;
  display         : flex;
  align-items     : center;
  justify-content : center;
  color           : var(--white);
  margin-top      : 2px;
}

.contact-detail-label {
  font-family    : var(--font-body);
  font-size      : 0.76rem;
  text-transform : uppercase;
  letter-spacing : 0.1em;
  color          : var(--gray-mid);
  margin-bottom  : 2px;
}

.contact-detail-value {
  font-family : var(--font-body);
  font-size   : 1rem;
  font-weight : 600;
  color       : var(--navy-dark);
}

.contact-detail-value a {
  color      : var(--navy-dark);
  transition : color 0.2s;
}

.contact-detail-value a:hover {
  color : var(--red);
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
  background : var(--navy-dark);
  border-top : 4px solid var(--red);
  padding    : 60px 24px 0;
  color      : rgba(255, 255, 255, 0.7);
}

.footer-inner {
  max-width             : var(--max-width);
  margin                : 0 auto;
  display               : grid;
  grid-template-columns : 1.4fr 1fr 1fr 1fr;
  gap                   : 48px;
  padding-bottom        : 48px;
}

.footer-logo {
  height        : 44px;
  width         : auto;
  margin-bottom : 16px;
  filter        : brightness(0) invert(1);
}

.footer-tagline {
  font-family   : var(--font-body);
  font-size     : 0.95rem;
  line-height   : 1.65;
  color         : rgba(255, 255, 255, 0.6);
  margin-bottom : 16px;
}

.footer-address {
  font-family   : var(--font-body);
  font-size     : 0.92rem;
  color         : rgba(255, 255, 255, 0.5);
  line-height   : 1.7;
  margin-bottom : 20px;
}

.footer-social {
  display : flex;
  gap     : 10px;
}

.footer-social a {
  width           : 36px;
  height          : 36px;
  background      : rgba(255, 255, 255, 0.08);
  border-radius   : 50%;
  display         : flex;
  align-items     : center;
  justify-content : center;
  color           : rgba(255, 255, 255, 0.6);
  transition      : background 0.2s, color 0.2s;
}

.footer-social a:hover {
  background : var(--red);
  color      : var(--white);
}

.footer-col-title {
  font-family    : var(--font-body);
  font-size      : 0.81rem;
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.16em;
  color          : rgba(255, 255, 255, 0.4);
  margin-bottom  : 16px;
  padding-bottom : 10px;
  border-bottom  : 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
  display        : flex;
  flex-direction : column;
  gap            : 8px;
}

.footer-links a {
  font-family : var(--font-body);
  font-size   : 0.95rem;
  color       : rgba(255, 255, 255, 0.6);
  transition  : color 0.2s;
}

.footer-links a:hover {
  color : var(--white);
}

.footer-contact-item {
  display        : flex;
  flex-direction : column;
  gap            : 2px;
  margin-bottom  : 12px;
}

.footer-contact-item:last-child {
  margin-bottom : 0;
}

.footer-contact-label {
  font-family    : var(--font-body);
  font-size      : 0.73rem;
  text-transform : uppercase;
  letter-spacing : 0.12em;
  color          : rgba(255, 255, 255, 0.35);
}

.footer-contact-value {
  font-family : var(--font-body);
  font-size   : 0.98rem;
  color       : rgba(255, 255, 255, 0.72);
}

.footer-contact-value a {
  color      : rgba(255, 255, 255, 0.72);
  transition : color 0.2s;
}

.footer-contact-value a:hover {
  color : var(--white);
}

.footer-bottom {
  border-top      : 1px solid rgba(255, 255, 255, 0.08);
  padding         : 18px 0;
  display         : flex;
  align-items     : center;
  justify-content : space-between;
  gap             : 16px;
}

.footer-copyright {
  font-family : var(--font-body);
  font-size   : 0.87rem;
  color       : rgba(255, 255, 255, 0.35);
}

.footer-legal {
  display : flex;
  gap     : 20px;
}

.footer-legal a {
  font-family : var(--font-body);
  font-size   : 0.87rem;
  color       : rgba(255, 255, 255, 0.35);
  transition  : color 0.2s;
}

.footer-legal a:hover {
  color : rgba(255, 255, 255, 0.7);
}

/* =========================================
   ABOUT PAGE
========================================= */

/* Hero */
.about-hero {
  background : var(--navy-deep);
  overflow   : hidden;
}

.page-hero-inner {
  max-width             : var(--max-width);
  margin                : 0 auto;
  display               : grid;
  grid-template-columns : 1fr 1fr;
  min-height            : 520px;
}

.page-hero-content {
  padding         : 80px max(24px, calc((100vw - var(--max-width)) / 2 + 24px)) 80px max(24px, calc((100vw - var(--max-width)) / 2));
  display         : flex;
  flex-direction  : column;
  justify-content : center;
  gap             : 0;
  padding-right   : 56px;
  padding-left    : max(24px, calc((100vw - var(--max-width)) / 2));
}

.page-hero-h1 {
  font-family    : var(--font-display);
  font-size      : clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight    : 800;
  text-transform : uppercase;
  color          : var(--white);
  line-height    : 1.0;
  margin         : 14px 0 20px;
  letter-spacing : 0.01em;
}

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

.page-hero-sub {
  font-family   : var(--font-body);
  font-size     : 1rem;
  color         : rgba(255, 255, 255, 0.72);
  line-height   : 1.75;
  max-width     : 480px;
  margin-bottom : 32px;
}

.page-hero-ctas {
  display   : flex;
  gap       : 14px;
  flex-wrap : wrap;
}

.page-hero-img-wrap {
  position : relative;
  overflow : hidden;
}

.page-hero-img {
  position        : absolute;
  inset           : 0;
  width           : 100%;
  height          : 100%;
  object-fit      : cover;
  object-position : center;
  display         : block;
}

.page-hero-img-overlay {
  position   : absolute;
  inset      : 0;
  background : linear-gradient(to bottom, rgba(9, 28, 46, 0.08) 0%, rgba(9, 28, 46, 0.45) 100%);
  z-index    : 1;
}

.page-hero-img-wrap::before {
  content    : '';
  position   : absolute;
  top        : 0;
  left       : 0;
  bottom     : 0;
  width      : 80px;
  background : var(--navy-deep);
  clip-path  : polygon(0 0, 100% 0, 0 100%);
  z-index    : 2;
}

/* Breadcrumb */
.breadcrumb-bar {
  background    : var(--white);
  border-bottom : 1px solid var(--gray-light);
  padding       : 10px 24px;
}

.breadcrumb-inner {
  max-width : var(--max-width);
  margin    : 0 auto;
}

.breadcrumb {
  list-style  : none;
  padding     : 0;
  margin      : 0;
  display     : flex;
  align-items : center;
  gap         : 6px;
  font-family : var(--font-body);
  font-size   : 0.81rem;
  color       : var(--gray-mid);
}

.breadcrumb li + li::before {
  content      : '/';
  color        : var(--gray-light);
  margin-right : 6px;
}

.breadcrumb a {
  color      : var(--gray-mid);
  transition : color 0.2s;
}

.breadcrumb a:hover {
  color : var(--red);
}

.breadcrumb [aria-current='page'] {
  color       : var(--navy-dark);
  font-weight : 600;
}

/* Page heading bar */
.page-heading-bar {
  background    : var(--navy-deep);
  border-bottom : 3px solid var(--red);
  padding       : 52px 24px 48px;
}

.page-heading-inner {
  max-width : var(--max-width);
  margin    : 0 auto;
}

.page-heading-eyebrow {
  font-family    : var(--font-body);
  font-size      : 0.78rem;
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.2em;
  color          : var(--red);
  margin-bottom  : 12px;
  display        : flex;
  align-items    : center;
  gap            : 10px;
}

.page-heading-eyebrow::before {
  content     : '';
  display     : block;
  width       : 28px;
  height      : 2px;
  background  : var(--red);
  flex-shrink : 0;
}

.page-heading-h1 {
  font-family    : var(--font-display);
  font-size      : clamp(2.4rem, 4vw, 4.2rem);
  font-weight    : 800;
  /*text-transform : uppercase;*/
  color          : var(--white);
  line-height    : 1.15;
  letter-spacing : 0.01em;
}

.page-heading-h1 em {
  color      : var(--red);
  font-style : normal;
}

/* Story + Advantages */
.about-content-section {
  background : var(--white);
  padding    : 72px 24px;
}

.about-content-inner {
  max-width             : var(--max-width);
  margin                : 0 auto;
  display               : grid;
  grid-template-columns : 1.5fr 1fr;
  gap                   : 80px;
  align-items           : start;
}

.about-story-h2 {
  font-family    : var(--font-display);
  font-size      : clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight    : 800;
  text-transform : uppercase;
  color          : var(--navy-dark);
  line-height    : 1.05;
  margin         : 10px 0 0;
  letter-spacing : 0.01em;
}

.about-story-rule {
  width      : 48px;
  height     : 3px;
  background : var(--red);
  margin     : 22px 0 26px;
}

.about-story p {
  font-family   : var(--font-body);
  font-size     : 1rem;
  color         : var(--gray-text);
  line-height   : 1.78;
  margin-bottom : 18px;
}

.about-story p:last-of-type {
  margin-bottom : 0;
}

.about-made-in-usa {
  max-width : 300px;
  margin    : 0 auto 72px;
}

.about-advantages-header {
  margin-bottom : 28px;
}

.about-advantages-h2 {
  font-family    : var(--font-display);
  font-size      : clamp(1.5rem, 2.2vw, 26px);
  font-weight    : 800;
  text-transform : uppercase;
  color          : var(--navy-dark);
  line-height    : 1.05;
  margin-top     : 10px;
  letter-spacing : 0.01em;
}

.about-adv-list {
  list-style    : none;
  padding       : 0;
  margin        : 0;
  border        : 1px solid var(--gray-light);
  border-radius : 4px;
  overflow      : hidden;
}

.about-adv-item {
  display       : flex;
  align-items   : flex-start;
  gap           : 14px;
  padding       : 16px 22px;
  font-family   : var(--font-body);
  font-size     : 0.95rem;
  color         : var(--gray-text);
  line-height   : 1.5;
  border-bottom : 1px solid var(--gray-light);
}

.about-adv-item:last-child {
  border-bottom : none;
}

.about-adv-item:nth-child(odd) {
  background : var(--off-white);
}

.about-adv-icon {
  flex-shrink     : 0;
  width           : 26px;
  height          : 26px;
  background      : var(--red);
  border-radius   : 50%;
  display         : flex;
  align-items     : center;
  justify-content : center;
  color           : var(--white);
  margin-top      : 1px;
}

/* Bottom panels — resource + contact */
.about-panels-wrap {
  margin : 72px auto;
}

.about-panels-container {
  max-width   : var(--max-width);
  margin      : 0 auto;
  display     : flex;
  gap         : 36px;
  align-items : stretch;
}

.about-panel {
  flex    : 1;
  padding : 56px 48px;
}

.about-panel-resource {
  background : linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  display    : flow-root;
}

.about-panel-contact {
  background  : var(--off-white);
  border-left : 1px solid var(--gray-light);
}

.about-panel-h2 {
  font-family    : var(--font-display);
  font-size      : clamp(1.3rem, 2vw, 1.875rem);
  font-weight    : 800;
  text-transform : uppercase;
  line-height    : 1.1;
  letter-spacing : 0.01em;
}

.about-panel-resource .about-panel-h2 {
  color  : var(--white);
  margin : 10px 0 14px;
}

.about-panel-contact .about-panel-h2 {
  color  : var(--navy-dark);
  margin : 14px 0 18px;
}

.about-ebook-img-link {
  float         : right;
  margin-left   : 24px;
  margin-bottom : 16px;
}

.about-ebook-img {
  display    : block;
  max-width  : 120px;
  height     : auto;
  filter     : drop-shadow(0 12px 28px rgba(0, 0, 0, 0.5));
  transition : transform 0.3s;
}

.about-ebook-img:hover {
  transform : translateY(-4px);
}

.about-ebook-sub {
  font-family   : var(--font-body);
  font-size     : 1rem;
  color         : rgba(255, 255, 255, 0.65);
  line-height   : 1.72;
  margin-bottom : 24px;
}

/* =========================================
   CONTACT PAGE
========================================= */
.contact-section {
  background : var(--white);
  padding    : 72px 24px 64px;
}

.contact-section-inner {
  max-width : var(--max-width);
  margin    : 0 auto;
}

.contact-intro {
  text-align    : center;
  margin-bottom : 60px;
}

.contact-main-heading {
  font-family    : var(--font-display);
  font-size      : clamp(1.9rem, 3.2vw, 2.8rem);
  color          : var(--navy-dark);
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.02em;
  margin-bottom  : 14px;
}

.contact-main-sub {
  font-size   : 1.08rem;
  color       : var(--gray-text);
  max-width   : 640px;
  margin      : 0 auto;
  line-height : 1.72;
}

.contact-grid {
  display               : grid;
  grid-template-columns : 1fr 2.2fr;
  gap                   : 48px;
  align-items           : start;
}

.contact-detail-list {
  display        : flex;
  flex-direction : column;
  gap            : 28px;
}

.contact-detail-item {
  display     : flex;
  gap         : 16px;
  align-items : flex-start;
}

/* b2b-font icon base */
.icon {
  display         : inline-flex;
  align-items     : center;
  justify-content : center;
  width           : 44px;
  height          : 44px;
  border-radius   : 50%;
  background      : var(--off-white);
  flex-shrink     : 0;
  color           : var(--navy);
  font-size       : 1.25rem;
  line-height     : 1;
}

.contact-detail-icon {
  width            : 44px;
  height           : 44px;
  border-radius    : 50%;
  background       : var(--off-white);
  display          : flex;
  align-items      : center;
  justify-content  : center;
  flex-shrink      : 0;
  color            : var(--navy);
  font-size        : 1.15rem;
}

.contact-detail-label {
  font-size      : 1rem;
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.09em;
  color          : var(--gray-mid);
  margin-bottom  : 4px;
}

.contact-detail-value {
  font-size   : 1rem;
  color       : var(--gray-text);
  line-height : 1.65;
}

.contact-detail-value a {
  color       : var(--navy-dark);
  font-weight : 600;
}

.contact-detail-value a:hover {
  color : var(--red);
}

.contact-cta-card {
  background    : var(--navy-dark);
  border-radius : 8px;
  padding       : 36px 32px;
  margin-bottom : 20px;
}

.contact-cta-eyebrow {
  font-size      : 1rem;
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.11em;
  color          : rgba(255,255,255,0.45);
  margin-bottom  : 10px;
}

.contact-cta-h3 {
  font-family    : var(--font-display);
  font-size      : 1.55rem;
  font-weight    : 700;
  color          : var(--white);
  text-transform : uppercase;
  letter-spacing : 0.02em;
  margin-bottom  : 14px;
}

.contact-cta-p {
  font-size     : 1rem;
  color         : rgba(255,255,255,0.72);
  margin-bottom : 24px;
  line-height   : 1.65;
}

.contact-division-card {
  background    : var(--off-white);
  border-radius : 8px;
  padding       : 24px 28px;
  border-left   : 4px solid var(--red);
  margin-top    : 32px;
}

/* Form column */
.contact-form-card {
  background    : var(--white);
  border        : 1px solid var(--gray-light);
  border-top    : 4px solid var(--red);
  border-radius : 4px;
  padding       : 36px 36px 28px;
  box-shadow    : 0 4px 24px rgba(0,0,0,0.07);
}

.contact-form-card-eyebrow {
  font-size      : 1rem;
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.1em;
  color          : var(--red);
  margin-bottom  : 8px;
}

.contact-form-card-h3 {
  font-family    : var(--font-display);
  font-size      : 1.75rem;
  font-weight    : 700;
  color          : var(--navy-dark);
  text-transform : uppercase;
  letter-spacing : 0.02em;
  margin-bottom  : 10px;
}

.contact-form-card-sub {
  font-size     : 1rem;
  color         : var(--gray-mid);
  margin-bottom : 24px;
  line-height   : 1.6;
  padding-bottom: 20px;
  border-bottom : 1px solid var(--gray-light);
}

/* Contact form */
.contact-form {
  display        : flex;
  flex-direction : column;
  gap            : 0;
}

.cf-row {
  margin-bottom : 16px;
}

.cf-row-2 {
  display               : grid;
  grid-template-columns : 1fr 1fr;
  gap                   : 14px;
}

.cf-field {
  display        : flex;
  flex-direction : column;
  gap            : 5px;
}

.cf-field label {
  font-size      : 1rem;
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.07em;
  color          : var(--gray-mid);
}

.cf-req {
  color : var(--red);
}

.cf-optional {
  font-weight    : 400;
  text-transform : none;
  letter-spacing : 0;
  font-size      : 1rem;
  color          : var(--gray-mid);
  opacity        : 0.7;
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  width         : 100%;
  padding       : 10px 13px;
  border        : 1px solid var(--gray-light);
  border-radius : 3px;
  font-family   : var(--font-body);
  font-size     : 1rem;
  color         : var(--gray-text);
  background    : var(--off-white);
  transition    : border-color 0.2s, background 0.2s;
  appearance    : none;
  -webkit-appearance : none;
}

.cf-field select {
  background-image    : url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a9aaa' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat   : no-repeat;
  background-position : right 12px center;
  padding-right       : 36px;
  cursor              : pointer;
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  outline      : none;
  border-color : var(--navy);
  background   : var(--white);
}

.cf-field input:invalid:not(:placeholder-shown),
.cf-field textarea:invalid:not(:placeholder-shown) {
  border-color : var(--red);
}

.cf-field textarea {
  resize      : vertical;
  min-height  : 110px;
  line-height : 1.55;
}

.cf-submit {
  width     : 100%;
  font-size : 1rem;
  padding   : 14px 28px;
}

.contact-form-success {
  display     : flex;
  align-items : flex-start;
  gap         : 14px;
  background  : #edf7ed;
  border      : 1px solid #a3d9a5;
  border-radius : 4px;
  padding     : 20px 22px;
  font-size   : 1rem;
  color       : #2d5e2f;
  line-height : 1.6;
}

.contact-form-success i {
  font-size   : 1.4rem;
  color       : #3a7d3c;
  flex-shrink : 0;
  margin-top  : 2px;
}

.contact-form-success a {
  color : #2d5e2f;
  font-weight : 600;
}

.contact-form-errors {
  background    : #fdf0f0;
  border        : 1px solid #f0b8b8;
  border-radius : 4px;
  padding       : 14px 18px;
  margin-bottom : 18px;
  font-size     : 1rem;
  color         : var(--red);
}

.contact-form-errors p {
  margin : 0;
}

.contact-form-errors p + p {
  margin-top : 4px;
}

@media (max-width: 560px) {
  .cf-row-2 {
    grid-template-columns : 1fr;
  }
}

.contact-division-label {
  font-size      : 1rem;
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.09em;
  color          : var(--gray-mid);
  margin-bottom  : 6px;
}

.contact-division-name {
  font-size     : 1rem;
  font-weight   : 700;
  color         : var(--navy-dark);
  margin-bottom : 8px;
}

.contact-division-phone {
  font-size   : 1.1rem;
  font-weight : 600;
}

.contact-division-phone a {
  color : var(--red);
}

.contact-division-phone a:hover {
  color : var(--red-bright);
}

/* Full-width map */
.contact-map-wrap {
  width    : 100%;
  height   : 460px;
  overflow : hidden;
  display  : block;
}

.contact-map-wrap iframe {
  width   : 100%;
  height  : 100%;
  border  : none;
  display : block;
  filter  : grayscale(15%);
}

/* Advantages strip */
.contact-advantages {
  background : var(--navy-deep);
  padding    : 60px 24px;
}

.contact-advantages-inner {
  max-width : var(--max-width);
  margin    : 0 auto;
}

.contact-advantages-heading {
  font-family    : var(--font-display);
  font-size      : 1rem;
  font-weight    : 700;
  color          : rgba(255,255,255,0.45);
  text-transform : uppercase;
  letter-spacing : 0.12em;
  text-align     : center;
  margin-bottom  : 40px;
}

.contact-advantages-grid {
  display               : grid;
  grid-template-columns : repeat(4, 1fr);
  gap                   : 32px;
}

.contact-advantage-item {
  text-align : center;
}

.contact-advantage-icon {
  width            : 56px;
  height           : 56px;
  border-radius    : 50%;
  background       : rgba(255,255,255,0.07);
  border           : 1px solid rgba(255,255,255,0.1);
  display          : flex;
  align-items      : center;
  justify-content  : center;
  margin           : 0 auto 16px;
  color            : var(--red);
  font-size        : 1.5rem;
  line-height      : 1;
}

.contact-advantage-title {
  font-size     : 1rem;
  font-weight   : 700;
  color         : var(--white);
  margin-bottom : 6px;
}

.contact-advantage-desc {
  font-size   : 1rem;
  color       : rgba(255,255,255,0.55);
  line-height : 1.55;
}

@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns : 1fr;
    gap                   : 40px;
  }
  .contact-form-card {
    padding : 28px 24px 20px;
  }
  .contact-advantages-grid {
    grid-template-columns : repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .contact-advantages-grid {
    grid-template-columns : 1fr;
  }
  .contact-map-wrap {
    height : 320px;
  }
}

/* =========================================
   INNER PAGE (generic page.php template)
========================================= */
.inner-page-section {
  background : var(--white);
  padding    : 64px 24px;
}

.inner-page-inner {
  max-width : var(--max-width);
  margin    : 0 auto;
}

/* Prose typography within the_content() */
.inner-prose p {
  font-size     : 1rem;
  color         : var(--gray-text);
  line-height   : 1.78;
  margin-bottom : 20px;
}

.inner-prose p:last-child { margin-bottom: 0; }

.inner-prose h2 {
  font-family    : var(--font-body);
  font-size      : clamp(1.25rem, 2vw, 1.6rem);
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.04em;
  color          : var(--navy-dark);
  margin         : 40px 0 16px;
}

.inner-prose h2:first-child { margin-top: 0; }

.inner-prose h3 {
  font-family    : var(--font-body);
  font-size      : 1.15rem;
  font-weight    : 700;
  color          : var(--navy-dark);
  margin         : 28px 0 12px;
}

.inner-prose h3:first-child { margin-top: 0; }

.inner-prose ul,
.inner-prose ol {
  margin        : 0 0 20px 24px;
  padding       : 0;
  list-style    : disc;
}

.inner-prose ol { list-style: decimal; }

.inner-prose li {
  font-size     : 1rem;
  color         : var(--gray-text);
  line-height   : 1.7;
  margin-bottom : 8px;
}

.inner-prose strong { color: var(--navy-dark); font-weight: 700; }

/* Inner page table */
.inner-prose table {
  width           : 100%;
  border-collapse : collapse;
  margin          : 24px 0 32px;
  font-size       : 0.95rem;
}

.inner-prose th {
  background     : var(--navy-dark);
  color          : var(--white);
  font-weight    : 600;
  text-align     : left;
  padding        : 12px 16px;
  font-size      : 1rem;
  text-transform : uppercase;
  letter-spacing : 0.04em;
}

.inner-prose td {
  padding       : 12px 16px;
  border-bottom : 1px solid var(--gray-light);
  color         : var(--gray-text);
  vertical-align: top;
}

.inner-prose tr:last-child td { border-bottom: none; }

.inner-prose tr:nth-child(even) td { background: var(--off-white); }

/* Food service (and similar) product tables */

.fss-product-img-cell {
  width      : 120px;
  text-align : center;
  vertical-align : middle !important;
}

.fss-product-img-cell img {
  max-width  : 100px;
  height     : auto;
  display    : block;
  margin     : 0 auto;
}

.inner-prose .fss-product-table td { vertical-align: middle; }

.inner-prose .fss-product-table a {
  color           : var(--red);
  text-decoration : none;
  white-space     : nowrap;
}

.inner-prose .fss-product-table a:hover { text-decoration: underline; }

/* Divider above a section within inner-prose */
.inner-prose .prose-section-divider {
  border     : none;
  border-top : 2px solid var(--gray-light);
  margin     : 40px 0;
}

/* FAQ styles within inner-prose */
.inner-faq-list { margin: 0; padding: 0; list-style: none; }

.inner-faq-item {
  border-bottom : 1px solid var(--gray-light);
  padding       : 24px 0;
}

.inner-faq-item:first-child { padding-top: 0; }

.inner-faq-q {
  font-family  : var(--font-body);
  font-size    : 1.05rem;
  font-weight  : 700;
  color        : var(--navy-dark);
  margin-bottom: 10px;
}

.inner-faq-a {
  font-size  : 1rem;
  color      : var(--gray-text);
  line-height: 1.72;
}

/* Trade show table */
.tradeshow-table { width: 100%; border-collapse: collapse; }

.tradeshow-table th {
  background     : var(--navy-dark);
  color          : var(--white);
  font-size      : 0.82rem;
  text-transform : uppercase;
  letter-spacing : 0.04em;
  font-weight    : 600;
  padding        : 12px 16px;
  text-align     : left;
}

.tradeshow-table td {
  padding       : 14px 16px;
  border-bottom : 1px solid var(--gray-light);
  font-size     : 1rem;
  color         : var(--gray-text);
  vertical-align: top;
}

.tradeshow-table tr:last-child td { border-bottom: none; }

.tradeshow-table .tradeshow-event { font-weight: 600; color: var(--navy-dark); }

/* Power source table */
.power-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }

.power-table th {
  background     : var(--navy-dark);
  color          : var(--white);
  font-size      : 0.78rem;
  text-transform : uppercase;
  letter-spacing : 0.04em;
  font-weight    : 600;
  padding        : 10px 12px;
  text-align     : center;
}

.power-table th:first-child { text-align: left; }

.power-table td {
  padding       : 10px 12px;
  border-bottom : 1px solid var(--gray-light);
  text-align    : center;
  color         : var(--gray-text);
}

.power-table td:first-child { text-align: left; font-weight: 600; color: var(--navy-dark); }

.power-table tr:last-child td { border-bottom: none; }

.power-table tr:nth-child(even) td { background: var(--off-white); }

/* =========================================
   PRODUCT PAGE
========================================= */
.product-overview-section {
  padding: 64px 24px;
  background: var(--white);
}
.product-overview-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 32px;
  align-items: start;
}
.product-main-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  display: block;
}
.product-asme-text {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 10px;
}
.product-asme-link {
  display: block;
  margin-bottom: 24px;
}

/* Compact downloads (below image) */
.product-downloads-compact {
  border-top: 1px solid var(--gray-light);
  padding-top: 16px;
  margin-top: 16px;
}
.product-downloads-compact-h4 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy-dark);
  margin-bottom: 12px;
}
.product-downloads-compact-list { display: flex; flex-direction: column; gap: 8px; }
.product-downloads-compact-list li { list-style: none; }
.product-download-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  background: var(--white);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy-dark) !important;
  line-height: 1.35;
  transition: background 0.15s, border-color 0.15s;
  text-decoration: none !important;
}
.product-download-btn:hover {
  background: var(--off-white);
  border-color: var(--navy);
  text-decoration: none !important;
}
.product-download-pdf-icon {
  flex-shrink: 0;
  width: 21px;
  height: auto;
  display: block;
}
.product-meta-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-feature-card {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  padding: 28px 32px;
}
.product-feature-h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy-dark);
  margin: 20px 0 12px;
}
.product-feature-h3--section {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-light);
}
.product-feature-sub {
  font-size: 0.78em;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gray-mid);
}
.product-feature-list { display: flex; flex-direction: column; gap: 10px; }
.product-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--gray-text);
}
.product-feature-list--plain .product-feature-item {
  display: list-item;
  list-style: disc;
  margin-left: 20px;
}
.product-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--navy);
  color: var(--white);
}

/* Models table */
.product-models-section {
  padding: 64px 24px;
  background: var(--off-white);
  border-top: 1px solid var(--gray-light);
}
.product-models-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.product-section-h2 {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy-dark);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}
.product-section-h2--light { color: var(--white); }
.product-table-wrap {
  overflow-x: auto;
  border-radius: 4px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.product-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.93rem;
}
.product-table th {
  background: var(--navy-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 14px 20px;
  text-align: left;
  white-space: nowrap;
}
.product-table td {
  padding: 15px 20px;
  color: var(--gray-text);
  border-bottom: 1px solid var(--gray-light);
  vertical-align: middle;
  line-height: 1.4;
}
.product-table tbody tr:last-child td { border-bottom: none; }
.product-table tbody tr:hover { background: var(--off-white); }
.product-quote-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--red) !important;
  white-space: nowrap;
}
.product-quote-link:hover { text-decoration: underline; }

/* Downloads */
.product-downloads-section {
  padding: 64px 24px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
}
.product-downloads-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.product-downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product-download-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  padding: 22px 24px;
  color: var(--white) !important;
  text-decoration: none !important;
  transition: background 0.2s, border-color 0.2s;
}
.product-download-card:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.3);
  text-decoration: none !important;
}
.product-download-icon { flex-shrink: 0; color: var(--red); }
.product-download-label {
  flex: 1;
  font-weight: 600;
  font-size: 0.93rem;
  line-height: 1.4;
}
.product-download-badge {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  padding: 2px 6px;
}

/* =========================================
   EAG PRODUCT ITEM PAGE
========================================= */
.eag-item-inner {
  max-width : var(--max-width);
  margin    : 0 auto;
  display   : grid;
  grid-template-columns : 1fr 380px;
  gap       : 48px;
  align-items: start;
}

.eag-item-number {
  font-family    : var(--font-body);
  font-size      : 0.85rem;
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.08em;
  color          : var(--gray-mid);
  margin-bottom  : 20px;
}

.eag-item-spec-h2 {
  font-family    : var(--font-body);
  font-size      : 1rem;
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.06em;
  color          : var(--navy-dark);
  margin         : 28px 0 12px;
}

.eag-item-spec-h2:first-of-type { margin-top: 0; }

.eag-spec-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }

.eag-spec-table th,
.eag-spec-table td {
  padding       : 9px 14px;
  border-bottom : 1px solid var(--gray-light);
  line-height   : 1.4;
}

.eag-spec-table th {
  background  : var(--off-white);
  font-weight : 600;
  color       : var(--navy-dark);
  text-align  : left;
  width       : 55%;
}

.eag-spec-table td { color: var(--gray-text); }

.eag-spec-table tr:last-child th,
.eag-spec-table tr:last-child td { border-bottom: none; }

/* Amperage table — header-only columns */
.eag-spec-table thead th {
  background  : var(--navy-dark);
  color       : var(--white);
  font-size   : 0.78rem;
  width       : auto;
  text-align  : center;
}

.eag-spec-table thead + tbody td {
  text-align  : center;
  font-weight : 600;
  color       : var(--navy-dark);
  width       : auto;
}

/* =========================================
   RESPONSIVE — 1024px
========================================= */
@media (max-width : 1024px) {
  .hero {
    grid-template-columns : 1fr;
    min-height            : auto;
  }
  
  .hero-right {
    height     : 50vw;
    min-height : 320px;
  }
  
  .hero-left {
    padding-right : 40px;
  }
  
  .hero-right::before {
    width : 60px;
  }
  
  .products-grid {
    grid-template-columns : 1fr 1fr;
  }
  
  .product-card-feature {
    grid-column : 1 / 3;
    grid-row    : auto;
  }
  
  .product-card-feature .product-card-img {
    height : 220px;
  }
  
  .advantage-grid {
    grid-template-columns : 1fr;
    gap                   : 48px;
  }
  
  .footer-inner {
    grid-template-columns : 1fr 1fr;
  }
  
  .contact-inner {
    gap : 40px;
  }
  
  .page-hero-inner {
    grid-template-columns : 1fr;
  }
  
  .page-hero-img-wrap {
    height     : 50vw;
    min-height : 280px;
  }
  
  .page-hero-content {
    padding-right : 24px;
  }
  
  .about-content-inner {
    grid-template-columns : 1fr;
    gap                   : 48px;
  }
  
  .about-stat {
    padding : 24px 28px;
  }
  
  .about-panels-container {
    flex-direction : column;
    gap            : 0;
  }
  
  .about-panel {
    padding : 48px 32px;
  }
  
  .about-ebook-img-link {
    margin-left : 20px;
  }

  .product-overview-inner { grid-template-columns: 1fr; gap: 32px; }
  .eag-item-inner { grid-template-columns: 1fr; gap: 32px; }
  .product-downloads-grid { grid-template-columns: 1fr; }
  .product-downloads-compact { border-top: none; padding-top: 0; margin-top: 20px; }
}

/* =========================================
   RESPONSIVE — 1100px (mega menu shrink)
========================================= */
@media (max-width : 1100px) {
  .nav-mega {
    width : 440px;
  }
}

/* =========================================
   RESPONSIVE — 768px
========================================= */
@media (max-width : 768px) {
  .top-bar-left {
    display : none;
  }
  
  .site-nav {
    display : none;
  }
  
  .hamburger-btn {
    display : flex;
  }
  
  .hero-right {
    height     : 55vw;
    min-height : 260px;
  }
  
  .hero-left {
    padding-top    : 56px;
    padding-bottom : 56px;
    padding-right  : 24px;
  }
  
  .products-grid {
    grid-template-columns : 1fr;
  }
  
  .product-card-feature {
    grid-column : auto;
  }
  
  .product-card-feature .product-card-img {
    height : 200px;
  }
  
  .products-header {
    flex-direction : column;
    align-items    : flex-start;
    gap            : 16px;
  }
  
  .resources-grid {
    grid-template-columns : 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns : 1fr;
  }
  
  .contact-inner {
    grid-template-columns : 1fr;
    gap                   : 40px;
  }
  
  .footer-inner {
    grid-template-columns : 1fr;
    gap                   : 32px;
  }
  
  .footer-bottom {
    flex-direction : column;
    text-align     : center;
  }
  
  .about-ebook-img {
    max-width : 100px;
  }
  
}

/* =========================================
   RESPONSIVE — 480px
========================================= */
@media (max-width : 480px) {
  .hero-ctas {
    flex-direction : column;
  }
  
  .hero-ctas .btn {
    width           : 100%;
    justify-content : center;
  }
  
  .contact-btn-row {
    flex-direction : column;
  }
  
  .contact-btn-row .btn {
    width           : 100%;
    justify-content : center;
  }
  
  .hero-facts {
    gap : 6px 12px;
  }

  /* Product table — stack as cards on mobile */
  .product-table thead { display: none; }
  .product-table td {
    display: block;
    padding: 8px 16px;
    border-bottom: none;
  }
  .product-table td::before {
    content: attr(data-label) ": ";
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--navy-dark);
    display: block;
    margin-bottom: 2px;
  }
  .product-table tbody tr {
    display: block;
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    margin-bottom: 12px;
    padding: 8px 0;
    background: var(--white);
  }
  .product-table tbody tr:hover { background: var(--off-white); }
  .product-table-wrap { box-shadow: none; }
}

/* =========================================
   ARTICLE + SIDEBAR LAYOUT
========================================= */
.article-with-sidebar {
  display               : grid;
  grid-template-columns : 1fr 300px;
  gap                   : 56px;
  align-items           : start;
}

/* Float image right within article prose */
.article-img-right {
  float         : right;
  margin        : 0 0 24px 32px;
  border-radius : 4px;
  max-width     : 440px;
  /*width         : 100%;*/
  height        : auto;
}

/* YouTube embed */
.article-video-wrap {
  margin    : 36px 0;
  text-align: center;
}

.article-video-wrap iframe {
  max-width : 560px;
  width     : 100%;
  height    : auto;
  aspect-ratio : 16 / 9;
}

/* eBook CTA block */
.article-ebook-cta {
  background    : var(--off-white);
  border        : 1px solid var(--gray-light);
  border-radius : 6px;
  padding       : 32px;
  margin        : 36px 0;
  text-align    : center;
  display       : flex;
  flex-direction: column;
  align-items   : center;
  gap           : 16px;
}

.article-ebook-cta-label {
  font-weight : 700;
  color       : var(--navy-dark);
  font-size   : 1rem;
  margin      : 0;
}

.article-ebook-cover {
  max-width     : 200px;
  height        : auto;
  border-radius : 4px;
  box-shadow    : 0 4px 16px rgba(0,0,0,0.14);
}

/* Sidebar */
.article-sidebar {
  display        : flex;
  flex-direction : column;
  gap            : 24px;
  position       : sticky;
  top            : 100px;
}

.sidebar-cta-widget {
  background      : var(--navy-dark);
  color           : var(--white);
  border-radius   : 6px;
  padding         : 28px 24px;
  text-align      : center;
  background-image: url('https://www.electrosteam.com/wp-content/uploads/blueprint-hero-1.webp');
  background-size : cover;
  background-position: center;
  position        : relative;
  overflow        : hidden;
}

.sidebar-cta-widget::before {
  content    : '';
  position   : absolute;
  inset      : 0;
  background : rgba(9, 28, 46, 0.82);
}

.sidebar-cta-widget > * { position: relative; z-index: 1; }

.sidebar-cta-title {
  font-family    : var(--font-display);
  font-size      : 1.4rem;
  font-weight    : 800;
  letter-spacing : 0.04em;
  text-transform : uppercase;
  color          : var(--white);
  margin-bottom  : 10px;
}

.sidebar-cta-desc {
  font-size     : 1rem;
  color         : rgba(255,255,255,0.8);
  margin-bottom : 20px;
  line-height   : 1.5;
}

.sidebar-ebook-widget {
  background    : var(--white);
  border        : 1px solid var(--gray-light);
  border-radius : 6px;
  padding       : 24px;
  text-align    : center;
  display       : flex;
  flex-direction: column;
  align-items   : center;
  gap           : 14px;
}

.sidebar-ebook-img {
  width         : 100%;
  max-width     : 180px;
  height        : auto;
  border-radius : 3px;
  box-shadow    : 0 4px 12px rgba(0,0,0,0.12);
}

.sidebar-ebook-title {
  font-size   : 1rem;
  font-weight : 600;
  color       : var(--navy-dark);
  line-height : 1.45;
}

/* Links inside inner-prose */
.inner-prose a:not(.btn) {
  color           : var(--red);
  text-decoration : none;
}

.inner-prose a:not(.btn):hover {
  text-decoration : underline;
}

@media (max-width: 1024px) {
  .article-with-sidebar {
    grid-template-columns : 1fr 260px;
    gap                   : 36px;
  }
}

@media (max-width: 768px) {
  .article-with-sidebar {
    grid-template-columns : 1fr;
  }

  .article-sidebar {
    position : static;
  }

  .article-img-right {
    float     : none;
    display   : block;
    margin    : 0 auto 24px;
    max-width : 100%;
  }
}

/* Check-list with b2b-font icon-check-circle bullets */
.check-list {
  list-style : none;
  padding    : 0;
  margin     : 0 0 24px;
}

.check-list li {
  display     : flex;
  align-items : flex-start;
  gap         : 10px;
  padding     : 5px 0;
  line-height : 1.5;
}

.check-list li::before {
  content     : "\5a";
  font-family : "b2b-font";
  font-size   : 1.1rem;
  color       : var(--red);
  flex-shrink : 0;
  margin-top  : 1px;
}

/* Power source table */
.power-table-wrap {
  overflow-x : auto;
  margin     : 24px 0 12px;
}

.power-source-table {
  width            : 100%;
  border-collapse  : collapse;
  font-size        : 0.88rem;
}

.power-source-table th,
.power-source-table td {
  padding      : 7px 12px;
  text-align   : center;
  border-bottom: 1px solid var(--gray-light);
}

.power-source-table thead th {
  background    : var(--navy-dark);
  color         : #fff;
  font-weight   : 600;
  white-space   : nowrap;
}

.power-source-table .volt-label {
  font-weight : 700;
  color       : var(--navy-dark);
  text-align  : left;
  white-space : nowrap;
}

.power-source-table tbody tr:nth-child(even) {
  background : var(--off-white);
}

.power-source-table tbody tr:hover {
  background : #f0f4f8;
}

/* FAQ page */
.faq-list {
  display        : flex;
  flex-direction : column;
  gap            : 20px;
}

.faq-card {
  border        : 1px solid var(--gray-light);
  border-radius : 6px;
  overflow      : hidden;
  box-shadow    : 0 2px 8px rgba(0,0,0,0.06);
}

.faq-q,
.faq-a {
  display : flex;
  gap     : 16px;
  padding : 18px 24px;
}

.faq-q {
  background  : var(--navy-dark);
  align-items : center;
}

.faq-a {
  background  : #fff;
  align-items : flex-start;
  border-top  : 1px solid var(--gray-light);
}

.faq-label {
  display         : flex;
  align-items     : center;
  justify-content : center;
  width           : 32px;
  height          : 32px;
  border-radius   : 50%;
  font-family     : var(--font-heading);
  font-size       : 0.9rem;
  font-weight     : 700;
  flex-shrink     : 0;
  line-height     : 1;
}

.faq-label-q {
  background : var(--red);
  color      : #fff;
}

.faq-label-a {
  background : var(--off-white);
  color      : var(--navy-dark);
  border     : 2px solid var(--gray-light);
  margin-top : 2px;
}

.faq-question-text {
  margin      : 0;
  font-family : var(--font-heading);
  font-size   : 1.05rem;
  font-weight : 700;
  color       : #fff;
  line-height : 1.4;
}

.faq-answer-text {
  flex      : 1;
  font-size : 0.95rem;
  color     : var(--gray-text);
}

.faq-answer-text p {
  margin : 0 0 12px;
}

.faq-answer-text p:last-child {
  margin-bottom : 0;
}

/* Pillar / long-form page layout */
.pillar-page-wrap {
  background : #fff;
}

.pillar-page-inner {
  max-width   : var(--max-width);
  margin      : 0 auto;
  padding     : 56px 40px 80px;
  display     : grid;
  grid-template-columns : 210px 1fr;
  gap         : 56px;
  align-items : start;
}

/* Sidebar nav */
.pillar-sidebar {
  position   : sticky;
  top        : 124px;
  align-self : start;
}

.pillar-nav-label {
  font-family    : var(--font-heading);
  font-size      : 0.9rem;
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.1em;
  color          : var(--navy-dark);
  margin         : 0 0 10px 14px;
}

.pillar-nav-list {
  list-style   : none;
  padding      : 0;
  margin       : 0;
  border-left  : 2px solid var(--gray-light);
}

.pillar-nav-list li {
  margin : 0;
}

.pillar-nav-link {
  display        : block;
  padding        : 7px 14px;
  font-size      : 1rem;
  color          : var(--gray-text);
  text-decoration: none;
  border-left    : 2px solid transparent;
  margin-left    : -2px;
  line-height    : 1.4;
  transition     : color 0.15s, border-color 0.15s;
}

.pillar-nav-link:hover {
  color            : var(--red);
  border-left-color: var(--red);
}

.pillar-nav-link.active {
  color            : var(--red);
  border-left-color: var(--red);
  font-weight      : 600;
}

/* Pillar content sections */
.pillar-intro {
  margin-bottom : 40px;
}

.pillar-section {
  padding-top   : 40px;
  margin-bottom : 8px;
  border-top    : 1px solid var(--gray-light);
  scroll-margin-top : 130px;
}

.pillar-section h2 {
  margin-bottom : 20px;
}

/* Numbered parameter cards */
.steam-params {
  display               : grid;
  grid-template-columns : 1fr 1fr;
  gap                   : 14px;
  margin                : 24px 0 28px;
}

.steam-param-card {
  border        : 1px solid var(--gray-light);
  border-radius : 6px;
  padding       : 20px 20px 18px;
  background    : var(--off-white);
  position      : relative;
  overflow      : hidden;
}

.steam-param-num {
  position    : absolute;
  top         : 10px;
  right       : 14px;
  font-family : var(--font-heading);
  font-size   : 2.4rem;
  font-weight : 800;
  color       : var(--red);
  opacity     : 0.12;
  line-height : 1;
}

.steam-param-title {
  font-family   : var(--font-heading);
  font-size     : 0.95rem;
  font-weight   : 700;
  color         : var(--navy-dark);
  margin        : 0 0 8px;
}

.steam-param-text {
  font-size   : 0.88rem;
  color       : var(--gray-text);
  line-height : 1.55;
  margin      : 0;
}

/* Generator type cards */
.generator-type-cards {
  display               : grid;
  grid-template-columns : 1fr 1fr;
  gap                   : 14px;
  margin                : 20px 0 24px;
}

.generator-type-card {
  border        : 1px solid var(--gray-light);
  border-top    : 3px solid var(--navy-dark);
  border-radius : 0 0 6px 6px;
  padding       : 20px;
  background    : #fff;
}

.generator-type-card strong {
  display       : block;
  font-family   : var(--font-heading);
  font-size     : 0.97rem;
  color         : var(--navy-dark);
  margin-bottom : 8px;
}

.generator-type-card p {
  font-size   : 0.88rem;
  color       : var(--gray-text);
  line-height : 1.55;
  margin      : 0;
}

/* Pillar bullet list */
.pillar-bullet-list {
  list-style : none;
  padding    : 0;
  margin     : 12px 0 20px;
}

.pillar-bullet-list li {
  display     : flex;
  align-items : flex-start;
  gap         : 10px;
  padding     : 5px 0;
  font-size   : 0.95rem;
  color       : var(--gray-text);
  line-height : 1.5;
}

.pillar-bullet-list li::before {
  content       : '';
  width         : 8px;
  height        : 8px;
  border-radius : 50%;
  background    : var(--red);
  flex-shrink   : 0;
  margin-top    : 7px;
}

/* Pillar CTA section */
.pillar-cta-section {
  background    : var(--off-white);
  border-radius : 8px;
  padding       : 36px 40px 32px !important;
  border-top    : 3px solid var(--red) !important;
  margin-top    : 0;
}

.pillar-cta-section h2 {
  color : var(--navy-dark);
}

/* Responsive pillar layout */
@media (max-width: 900px) {
  .pillar-page-inner {
    grid-template-columns : 1fr;
    padding               : 40px 24px 60px;
  }

  .pillar-sidebar {
    position : static;
    border   : 1px solid var(--gray-light);
    border-radius : 6px;
    padding  : 16px 20px;
  }

  .pillar-nav-label {
    margin-left : 0;
  }

  .steam-params,
  .generator-type-cards {
    grid-template-columns : 1fr;
  }
}

/* Technical Information page */
.tech-section-intro {
  color        : var(--gray-text);
  margin-bottom: 20px;
}

.tech-def-list {
  margin: 0 0 16px;
}

.tech-def-item {
  padding: 18px 0;
}

.tech-hr {
  border     : none;
  border-top : 1px solid var(--gray-light);
  margin     : 0;
}

.tech-def-term {
  font-family   : var(--font-heading);
  font-size     : 0.95rem;
  font-weight   : 700;
  color         : var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin        : 0 0 4px;
}

.tech-def-ref {
  font-size     : 0.78rem;
  color         : var(--red);
  font-weight   : 400;
  margin        : 0 0 6px;
  font-style: italic;
  letter-spacing: 0.04em;
}

.tech-def-body {
  font-size   : 0.88rem;
  color       : var(--gray-text);
  line-height : 1.55;
  margin      : 0;
}

.tech-ref-list {
  display        : flex;
  flex-direction : column;
  gap            : 16px;
  margin-top     : 20px;
}

.tech-ref-card {
  border        : 1px solid var(--gray-light);
  border-radius : 6px;
  overflow      : hidden;
}

.tech-ref-header {
  display     : flex;
  align-items : center;
  gap         : 16px;
  padding     : 16px 22px;
  background  : var(--navy-dark);
}

.tech-ref-badge {
  display         : flex;
  align-items     : center;
  justify-content : center;
  width           : 32px;
  height          : 32px;
  border-radius   : 50%;
  background      : var(--red);
  color           : #fff;
  font-family     : var(--font-heading);
  font-size       : 0.82rem;
  font-weight     : 700;
  flex-shrink     : 0;
}

.tech-ref-title {
  font-family   : var(--font-heading);
  font-size     : 1rem;
  font-weight   : 700;
  color         : var(--navy-dark);
  margin        : 0 0 10px;
  line-height   : 1.4;
}

.tech-ref-body {
  padding   : 20px 22px;
  font-size : 0.92rem;
  color     : var(--gray-text);
}

.tech-ref-body p {
  margin : 0 0 12px;
}

.tech-ref-body p:last-child {
  margin-bottom : 0;
}

.tech-ref-code {
  font-size      : 0.78rem;
  font-weight    : 700;
  color          : var(--red);
  text-transform : uppercase;
  letter-spacing : 0.04em;
  margin-bottom  : 8px !important;
}

.tech-ref-quote {
  border-left  : 3px solid var(--red);
  margin       : 0 0 14px;
  padding      : 10px 16px;
  background   : var(--off-white);
  border-radius: 0 4px 4px 0;
  font-style   : italic;
  font-size    : 0.9rem;
  line-height  : 1.6;
  color        : var(--navy-dark);
}

/* Trade Shows page */
.tradeshow-grid {
  display               : grid;
  grid-template-columns : repeat(2, 1fr);
  gap                   : 20px;
  margin                : 24px 0;
}

.tradeshow-card {
  border        : 1px solid var(--gray-light);
  border-radius : 8px;
  overflow      : hidden;
  display       : flex;
  flex-direction: column;
}

.tradeshow-card-logo {
  display         : flex;
  align-items     : center;
  justify-content : center;
  padding         : 24px 24px 20px;
  background      : #fff;
  border-bottom   : 1px solid var(--gray-light);
  min-height      : 90px;
}

.tradeshow-card-logo img {
  max-height : 60px;
  max-width  : 200px;
  width      : auto;
  height     : auto;
  object-fit : contain;
}

.tradeshow-card-body {
  padding     : 18px 20px 20px;
  background  : var(--off-white);
  flex        : 1;
  display     : flex;
  flex-direction : column;
  gap         : 6px;
}

.tradeshow-card-name {
  font-family : var(--font-heading);
  font-size   : 1rem;
  font-weight : 700;
  color       : var(--navy-dark);
  margin      : 0;
}

.tradeshow-card-venue {
  font-size   : 0.88rem;
  color       : var(--gray-text);
  margin      : 0;
}

.tradeshow-card-city {
  font-size   : 0.88rem;
  font-weight : 600;
  color       : var(--navy-dark);
  margin      : 0;
}

.tradeshow-card-meta {
  display     : flex;
  align-items : center;
  gap         : 12px;
  margin-top  : 8px;
  flex-wrap   : wrap;
}

.tradeshow-card-date {
  font-size   : 0.84rem;
  font-weight : 600;
  color       : var(--red);
  display     : flex;
  align-items : center;
  gap         : 5px;
}

.tradeshow-card-booth {
  font-size      : 0.82rem;
  background     : var(--navy-dark);
  color          : #fff;
  padding        : 3px 10px;
  border-radius  : 20px;
  font-weight    : 600;
  text-decoration: none;
}

.tradeshow-card-booth:hover {
  background : var(--red);
  color      : #fff;
}

.tradeshow-row-logo {
  margin-bottom : 8px;
}

.tradeshow-row-logo img {
  max-height : 36px;
  max-width  : 160px;
  width      : auto;
  height     : auto;
  object-fit : contain;
  display    : block;
}

.tradeshow-city {
  font-size  : 0.84rem;
  color      : var(--gray-text);
}

@media (max-width: 700px) {
  .tradeshow-table {
    font-size: 0.85rem;
  }
}

/* Careers page */
.careers-who-we-are {
  position            : relative;
  background-image    : url('https://www.electrosteam.com/wp-content/uploads/who-we-are-blueprint.jpg');
  background-size     : cover;
  background-position : center;
  padding             : 64px 0;
}

.careers-who-we-are::before {
  content    : '';
  position   : absolute;
  inset      : 0;
  background : rgba(10, 22, 48, 0.80);
}

.careers-who-we-are-inner {
  position   : relative;
  max-width  : var(--max-width);
  margin     : 0 auto;
  padding    : 0 40px;
  text-align : center;
}

.careers-wwm-heading {
  font-family    : var(--font-heading);
  font-size      : 2rem;
  font-weight    : 800;
  color          : #fff;
  margin         : 0 0 14px;
  text-transform : uppercase;
  letter-spacing : 0.04em;
}

.careers-wwm-desc {
  color      : rgba(255,255,255,0.80);
  font-size  : 1rem;
  max-width  : 680px;
  margin     : 0 auto 40px;
  line-height: 1.65;
}

.careers-wwm-grid {
  display               : grid;
  grid-template-columns : repeat(4, 1fr);
  gap                   : 16px;
  margin-top            : 10px;
}

.careers-wwm-item a {
  display        : flex;
  flex-direction : column;
  align-items    : center;
  gap            : 12px;
  padding        : 24px 16px 20px;
  border         : 1px solid rgba(255,255,255,0.15);
  border-radius  : 8px;
  background     : rgba(255,255,255,0.06);
  text-decoration: none;
  transition     : background 0.2s, border-color 0.2s;
}

.careers-wwm-item a:hover {
  background   : rgba(255,255,255,0.12);
  border-color : rgba(255,255,255,0.30);
}

.careers-wwm-ico img {
  width  : 52px;
  height : 52px;
  filter : brightness(0) invert(1);
}

.careers-wwm-title {
  font-family : var(--font-heading);
  font-size   : 0.82rem;
  font-weight : 700;
  color       : rgba(255,255,255,0.88);
  text-align  : center;
  line-height : 1.35;
}

/* Open positions section */
.careers-positions-section {
  background : #fff;
  padding    : 64px 0 56px;
}

.careers-positions-inner {
  max-width : var(--max-width);
  margin    : 0 auto;
}

.careers-section-heading {
  font-family    : var(--font-heading);
  font-size      : 1.6rem;
  font-weight    : 800;
  color          : var(--navy-dark);
  margin         : 0 0 8px;
}

.careers-section-desc {
  color      : var(--gray-text);
  font-size  : 1rem;
  margin     : 0 0 28px;
}

.careers-positions-table {
  width           : 100%;
  border-collapse : collapse;
  border-top      : 3px solid var(--red);
  font-size       : 0.92rem;
}

.careers-positions-table thead th {
  background     : var(--navy-dark);
  color          : #fff;
  font-family    : var(--font-heading);
  font-size      : 0.8rem;
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.06em;
  padding        : 10px 16px;
  text-align     : left;
  white-space    : nowrap;
}

.careers-positions-table tbody tr {
  border-bottom : 1px solid var(--gray-light);
}

.careers-positions-table tbody tr:hover {
  background : var(--off-white);
}

.careers-positions-table td {
  padding        : 18px 16px;
  vertical-align : top;
}

.careers-pos-title {
  font-family : var(--font-heading);
  font-size   : 1rem;
  font-weight : 700;
  color       : var(--navy-dark);
  margin      : 0 0 4px;
}

.careers-pos-company {
  font-size   : 0.78rem;
  font-weight : 600;
  color       : var(--red);
  text-transform : uppercase;
  letter-spacing : 0.04em;
  margin      : 0;
}

.careers-pos-desc {
  color      : var(--gray-text);
  font-size  : 0.88rem;
  line-height: 1.5;
  margin     : 0;
}

.careers-pos-type {
  font-size  : 0.82rem;
  color      : var(--gray-text);
  white-space: nowrap;
}

/* Careers apply banner */
.careers-apply-banner {
  background : var(--navy-dark);
  padding    : 56px 0;
  text-align : center;
}

.careers-apply-banner-inner {
  max-width : var(--max-width);
  margin    : 0 auto;
  padding   : 0 40px;
}

.careers-apply-eyebrow {
  font-family    : var(--font-heading);
  font-size      : 0.72rem;
  font-weight    : 700;
  text-transform : uppercase;
  letter-spacing : 0.12em;
  color          : var(--red);
  margin         : 0 0 12px;
}

.careers-apply-heading {
  font-family : var(--font-heading);
  font-size   : 2rem;
  font-weight : 800;
  color       : #fff;
  margin      : 0 0 14px;
  line-height : 1.25;
}

.careers-apply-sub {
  color      : rgba(255,255,255,0.72);
  font-size  : 1rem;
  max-width  : 560px;
  margin     : 0 auto 28px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .careers-wwm-grid {
    grid-template-columns : repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .careers-wwm-grid {
    grid-template-columns : 1fr 1fr;
  }

  .careers-positions-table thead {
    display : none;
  }

  .careers-positions-table td {
    display    : block;
    padding    : 8px 16px;
  }

  .careers-positions-table tr {
    display       : block;
    padding       : 16px 0;
    border-bottom : 2px solid var(--gray-light);
  }
}
