/* ============================================================
   СУРАПЛАСТИК — MAIN STYLESHEET
   Design system + component styles
   Desktop-first · No frameworks · No icons
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
  --navy:          #273975;
  --navy-dark:     #1b2a5a;
  --navy-mid:      #344b8c;
  --navy-tint:     #edf1f9;
  --accent:        #ff2b06;
  --accent-hover:  #d92405;
  --border:        #d4d8e0;
  --border-mid:    #b8bdc9;
  --white:         #ffffff;
  --off-white:     #f7f8fa;
  --bg-section:    #f2f4f7;
  --text-primary:  #1a1f2e;
  --text-secondary:#4a5168;
  --text-muted:    #7e8599;
  --text-invert:   #ffffff;

  --font-heading: 'PT Serif', Georgia, serif;
  --font-body:    'PT Sans', Arial, sans-serif;

  --t-xs:   11px;
  --t-sm:   13px;
  --t-base: 15px;
  --t-md:   17px;
  --t-lg:   20px;
  --t-xl:   24px;
  --t-2xl:  30px;
  --t-3xl:  38px;
  --t-4xl:  48px;

  --w-regular: 400;
  --w-bold:    700;

  --s1:  4px;
  --s2:  8px;
  --s3:  12px;
  --s4:  16px;
  --s5:  20px;
  --s6:  24px;
  --s8:  32px;
  --s10: 40px;
  --s12: 48px;
  --s16: 64px;
  --s20: 80px;
  --s24: 96px;

  --max-w:     1280px;
  --max-w-mid: 960px;
  --max-w-sm:  720px;

  --radius:    3px;
  --radius-md: 6px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 3px 10px rgba(0,0,0,0.10);
  --shadow-lg: 0 6px 24px rgba(0,0,0,0.10);
  --transition: 180ms ease;
}

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

html { font-size: 15px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-size: var(--t-base);
  font-weight: var(--w-regular);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--navy-mid); text-decoration: underline; }

ul, ol { list-style: none; }

button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ============================================================
   3. LAYOUT
   ============================================================ */
.container     { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--s8); }
.container--mid { max-width: var(--max-w-mid); margin: 0 auto; padding: 0 var(--s8); }

.section     { padding: var(--s20) 0; }
.section--sm { padding: var(--s12) 0; }
.section--lg { padding: var(--s24) 0; }

.grid-2       { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s8); }
.grid-3       { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--s8); }
.grid-4       { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: var(--s6); }
.grid-sidebar { display: grid; grid-template-columns: 1fr 340px; gap: var(--s12); align-items: start; }
.grid-2 > *, .grid-3 > *, .grid-4 > *, .grid-sidebar > * { min-width: 0; }

.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-end     { display: flex; align-items: center; justify-content: flex-end; gap: var(--s4); }

/* Skip-to-content link — visually hidden until keyboard focus */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: var(--w-bold);
  text-decoration: none;
  border-radius: 0 0 6px 0;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--accent);
  outline-offset: -3px;
  color: var(--white);
  text-decoration: none;
}

/* Main landmark — no outline when programmatically focused via skip-link */
main:focus { outline: none; }

/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */
h1, .h1 { font-family: var(--font-heading); font-size: var(--t-4xl); font-weight: var(--w-bold); line-height: 1.15; color: var(--text-primary); letter-spacing: -0.01em; }
h2, .h2 { font-family: var(--font-heading); font-size: var(--t-3xl); font-weight: var(--w-bold); line-height: 1.2;  color: var(--text-primary); }
h3, .h3 { font-family: var(--font-heading); font-size: var(--t-2xl); font-weight: var(--w-bold); line-height: 1.25; color: var(--text-primary); }
h4, .h4 { font-family: var(--font-heading); font-size: var(--t-xl);  font-weight: var(--w-bold); line-height: 1.3;  color: var(--text-primary); }
h5, .h5 { font-family: var(--font-body);    font-size: var(--t-md);  font-weight: var(--w-bold); line-height: 1.4;  color: var(--text-primary); }
h6, .h6 { font-family: var(--font-body);    font-size: var(--t-base);font-weight: var(--w-bold); color: var(--text-primary); text-transform: uppercase; letter-spacing: 0.06em; }

.lead    { font-size: var(--t-lg); line-height: 1.7; color: var(--text-secondary); }
.body-sm { font-size: var(--t-sm); line-height: 1.6; }
.caption { font-size: var(--t-xs); color: var(--text-muted); line-height: 1.5; }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--t-xs);
  font-weight: var(--w-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s4);
}

.text-accent  { color: var(--accent); }
.text-navy    { color: var(--navy); }
.text-muted   { color: var(--text-muted); }
.text-invert  { color: var(--text-invert); }
.text-center  { text-align: center; }

/* ============================================================
   5. DIVIDERS
   ============================================================ */
hr, .divider { height: 1px; background: var(--border); border: none; margin: var(--s8) 0; }
.divider--sm { margin: var(--s4) 0; }
.divider--lg { margin: var(--s12) 0; }

.rule { display: block; width: 40px; height: 2px; background: var(--navy); margin: var(--s4) 0 var(--s6); }
.rule--accent { background: var(--accent); }
.rule--center { margin-left: auto; margin-right: auto; }

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: var(--w-bold);
  font-size: var(--t-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn--lg   { padding: 14px 32px; font-size: var(--t-base); }
.btn--md   { padding: 11px 24px; }
.btn--sm   { padding: 8px 16px; font-size: var(--t-xs); }
.btn--full { width: 100%; display: block; text-align: center; }

.btn--primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); color: var(--white); text-decoration: none; }

.btn--action { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn--action:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--white); text-decoration: none; }

.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); text-decoration: none; }

.btn--outline-invert { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn--outline-invert:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); text-decoration: none; }

.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); text-decoration: none; }

.btn--link { background: none; border: none; color: var(--navy); padding: 0; font-size: var(--t-sm); text-transform: none; letter-spacing: 0; font-weight: var(--w-bold); text-decoration: underline; }
.btn--link:hover { color: var(--accent); }

/* ============================================================
   7. HEADER
   ============================================================ */
.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 3px solid var(--navy-dark);
}

.header-topbar {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 6px 0;
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}
.site-header a   { color: var(--white); text-decoration: none; }
.site-header a:hover { color: rgba(255,255,255,0.8); text-decoration: none; }
.header-topbar a { color: rgba(255,255,255,0.65); }
.header-topbar a:hover { color: var(--white); }
.header-topbar a:hover { color: rgba(255,255,255,0.85); }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s8);
  padding: 16px 0;
}

.site-logo { display: flex; align-items: center; gap: var(--s4); flex-shrink: 0; text-decoration: none; }
.site-logo__img { width: 160px; height: 48px; object-fit: contain; flex-shrink: 0; }
.site-logo__text { border-left: 1px solid rgba(255,255,255,0.2); padding-left: var(--s4); }
.site-logo__name { font-family: var(--font-heading); font-size: var(--t-lg); font-weight: var(--w-bold); color: var(--white); line-height: 1.1; display: block; }
.site-logo__sub  { font-size: var(--t-xs); color: rgba(255,255,255,0.45); letter-spacing: 0.05em; display: block; margin-top: 3px; }

/* Desktop nav */
.main-nav { display: flex; align-items: center; gap: 2px; }
.nav-item  { position: relative; }
.nav-link  {
  display: block;
  padding: 8px 14px;
  font-size: var(--t-sm);
  font-weight: var(--w-bold);
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--white); text-decoration: none; }
.nav-link.active { border-bottom: 2px solid rgba(255,255,255,0.6); }

/* Dropdown */
.nav-item--has-dropdown > .nav-link::after {
  content: ' ▾';
  font-size: 0.7em;
  opacity: 0.7;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--navy);
  box-shadow: var(--shadow-md);
  z-index: 100;
  display: none;
  padding-top: 0;
}
/* Invisible bridge fills the gap so hover doesn't break */
.nav-item--has-dropdown > .nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown.open  .nav-dropdown { display: block; }
.dropdown-link {
  display: block;
  padding: 10px 16px;
  font-size: var(--t-sm);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  text-decoration: none;
}
.site-header .dropdown-link,
.nav-dropdown .dropdown-link { color: var(--text-primary); }
.dropdown-link:last-child { border-bottom: none; }
.dropdown-link:hover,
.site-header .dropdown-link:hover { background: var(--off-white); color: var(--navy); text-decoration: none; }

.header-right { display: flex; align-items: center; gap: var(--s6); flex-shrink: 0; }
.header-phone { color: var(--white); font-family: var(--font-body); font-weight: var(--w-bold); font-size: var(--t-md); letter-spacing: 0.01em; text-decoration: none; }
.header-phone:hover { color: rgba(255,255,255,0.8); text-decoration: none; }

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-hamburger__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all 200ms ease;
}
.nav-hamburger.is-open .nav-hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open .nav-hamburger__bar:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open .nav-hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer — floats over page content */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 198;
  background: var(--navy-dark);
  border-top: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  padding: var(--s4) 0 var(--s6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
}
.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-nav__link {
  display: block;
  padding: 11px var(--s8);
  font-size: var(--t-base);
  font-weight: var(--w-bold);
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav__link:hover, .mobile-nav__link.active { color: var(--white); text-decoration: none; }
.mobile-nav__link--sub { padding-left: calc(var(--s8) + var(--s4)); font-weight: var(--w-regular); font-size: var(--t-sm); color: rgba(255,255,255,0.6); }
.mobile-nav__link--sub:hover { color: var(--white); }

.mobile-nav__group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 11px var(--s8);
  font-size: var(--t-base);
  font-weight: var(--w-bold);
  color: rgba(255,255,255,0.8);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
}
.mobile-nav__group-toggle::after { content: '▾'; font-size: 0.8em; opacity: 0.6; transition: transform 200ms ease; }
.mobile-nav__group.is-open .mobile-nav__group-toggle::after { transform: rotate(180deg); }
.mobile-nav__group-toggle:hover { color: var(--white); }
.mobile-nav__sub { display: none; }
.mobile-nav__group.is-open .mobile-nav__sub { display: block; }

.mobile-nav__cta {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  padding: var(--s5) var(--s8) 0;
}

/* ============================================================
   8. HERO — shared image treatment
   ============================================================ */

/* Shared image style used by both .hero__media and .page-hero__media */
.hero__media,
.page-hero__media { position: relative; display: flex; align-items: center; }

.hero__media img,
.page-hero__media img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.hero__media::after,
.page-hero__media::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 16px;
  right: 16px;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 3px 3px;
}

/* ── Homepage hero ───────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1b2a5a 0%, #273975 40%, #344b8c 100%);
  border-bottom: 3px solid var(--accent);
  overflow: hidden;
}

/* Woven crosshatch texture overlay — evokes PP fabric */
.hero__weave {
  position: absolute; inset: 0; z-index: 0; opacity: 0.04; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 14px, rgba(255,255,255,0.5) 14px, rgba(255,255,255,0.5) 15px),
    repeating-linear-gradient(90deg, transparent, transparent 14px, rgba(255,255,255,0.5) 14px, rgba(255,255,255,0.5) 15px);
}

/* Diagonal accent stripe */
.hero__diagonal {
  position: absolute; top: -60%; right: -10%; z-index: 0; pointer-events: none;
  width: 420px; height: 200%;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(255,43,6,0) 100%);
  opacity: 0.06;
  transform: rotate(-18deg);
}

.hero__inner {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--s24) 0 var(--s16);
  max-width: 780px;
  margin: 0 auto;
}

.hero__content {
  display: flex; flex-direction: column; align-items: center;
}

.hero__eyebrow {
  font-size: var(--t-xs); font-weight: var(--w-bold); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: var(--s5);
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(255,43,6,0.3);
  border-radius: 2px;
  background: rgba(255,43,6,0.06);
}

.hero__title {
  font-family: var(--font-heading); font-size: 52px; font-weight: var(--w-bold);
  line-height: 1.1; color: var(--white); margin-bottom: var(--s6);
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: var(--t-lg); color: rgba(255,255,255,0.6); line-height: 1.75;
  margin-bottom: var(--s10); max-width: 600px;
}

.hero__actions { display: flex; gap: var(--s5); align-items: center; flex-wrap: wrap; justify-content: center; }
.hero__contact { display: inline-flex; align-items: center; gap: var(--s4); flex: 0 0 auto; }
.hero__divider { width: 1px; height: 36px; background: rgba(255,255,255,0.18); }
.hero__phone { display: flex; flex-direction: column; min-width: max-content; text-align: left; }
.hero__phone-label  { font-size: var(--t-xs); color: rgba(255,255,255,0.4); letter-spacing: 0.06em; text-transform: uppercase; display: block; margin-bottom: 3px; }
.hero__phone-number { font-size: var(--t-lg); font-weight: var(--w-bold); color: var(--white); text-decoration: none; }
.hero__phone-number:hover { text-decoration: none; color: rgba(255,255,255,0.8); }

.hero__stats {
  display: flex; gap: var(--s12); margin-top: var(--s12);
  padding-top: var(--s10); border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%; justify-content: center;
}
.hero-stat { text-align: center; }
.hero-stat__num { font-family: var(--font-heading); font-size: var(--t-3xl); font-weight: var(--w-bold); color: var(--white); line-height: 1; display: block; }
.hero-stat__lbl { font-size: var(--t-xs); color: rgba(255,255,255,0.4); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 6px; display: block; }

/* Staggered fade-in animation */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__fade-in {
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero__fade-in:nth-child(1) { animation-delay: 0.1s; }
.hero__fade-in:nth-child(2) { animation-delay: 0.25s; }
.hero__fade-in:nth-child(3) { animation-delay: 0.4s; }
.hero__fade-in:nth-child(4) { animation-delay: 0.55s; }
.hero__stats .hero__fade-in:nth-child(1) { animation-delay: 0.65s; }
.hero__stats .hero__fade-in:nth-child(2) { animation-delay: 0.75s; }
.hero__stats .hero__fade-in:nth-child(3) { animation-delay: 0.85s; }

/* ============================================================
   9. TRUST BAR
   ============================================================ */
.trust-bar { background: var(--off-white); border-bottom: 1px solid var(--border); padding: 14px 0; }
.trust-bar__list { display: flex; align-items: center; justify-content: space-between; gap: var(--s4); flex-wrap: wrap; }
.trust-bar__item { font-size: var(--t-sm); color: var(--text-secondary); font-weight: var(--w-bold); padding-left: 14px; position: relative; }
.trust-bar__item::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 5px; height: 5px; background: var(--navy); border-radius: 50%; }

/* ============================================================
   10. SECTION HEADER
   ============================================================ */
.section-header { margin-bottom: var(--s10); }
.section-header--center { text-align: center; }
.section-header--center .rule { margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: var(--s2); }
.section-header p  { color: var(--text-secondary); max-width: 600px; }
.section-header--center p { margin: 0 auto; }

/* Alias used on industry / hub pages */
.section-head { margin-bottom: var(--s8); }
.section-title { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: var(--navy); margin: var(--s2) 0 0; }

/* ============================================================
   11. CARDS
   ============================================================ */
.card-product { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow var(--transition), border-color var(--transition); display: flex; flex-direction: column; }
.card-product:hover { box-shadow: var(--shadow-md); border-color: var(--border-mid); }
.card-product__img   { width: 100%; height: 220px; object-fit: contain; object-position: center; display: block; background: var(--white); padding: var(--s4); border-bottom: 1px solid var(--border); }
.card-product__body  { padding: var(--s6); display: flex; flex-direction: column; flex: 1; }
.card-product__footer { margin-top: auto; }
.card-product__tag   { font-size: var(--t-xs); font-weight: var(--w-bold); letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: var(--s3); display: block; }
.card-product__title { font-family: var(--font-heading); font-size: var(--t-xl); font-weight: var(--w-bold); color: var(--text-primary); margin-bottom: var(--s3); line-height: 1.25; }
.card-product__desc  { font-size: var(--t-sm); color: var(--text-secondary); line-height: 1.65; margin-bottom: var(--s5); }
.card-product__footer { display: flex; align-items: center; justify-content: space-between; padding-top: var(--s5); border-top: 1px solid var(--border); }
.card-product__price  { font-size: var(--t-sm); color: var(--text-muted); }
.card-product__price strong { display: block; font-family: var(--font-heading); font-size: var(--t-lg); color: var(--navy); font-weight: var(--w-bold); }

.card-industry { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--s6); transition: box-shadow var(--transition), border-color var(--transition); display: flex; flex-direction: column; overflow: hidden; }
.card-industry:hover { box-shadow: var(--shadow-sm); }
.card-industry--link { text-decoration: none; cursor: pointer; }
.card-industry--link:hover { box-shadow: var(--shadow-md); border-color: var(--navy-mid); text-decoration: none; }
.card-industry--link:hover .card-industry__title { color: var(--navy); }
.card-industry--link:hover .card-industry__img img { transform: scale(1.04); }
.card-industry__img { display: block; margin: calc(var(--s6) * -1) calc(var(--s6) * -1) var(--s5); aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--radius-md) var(--radius-md) 0 0; background: var(--bg-section); }
.card-industry__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--transition); }
.card-industry__title { font-family: var(--font-heading); font-size: var(--t-lg); font-weight: var(--w-bold); color: var(--text-primary); margin-bottom: var(--s3); padding-bottom: var(--s3); border-bottom: 1px solid var(--border); transition: color var(--transition); }
.card-industry__text  { font-size: var(--t-sm); color: var(--text-secondary); line-height: 1.65; flex: 1; }
.card-industry__more  { display: inline-block; margin-top: var(--s4); font-size: var(--t-xs); font-weight: var(--w-bold); color: var(--navy); letter-spacing: 0.04em; }

.card-stat { background: var(--navy); padding: var(--s8) var(--s6); border-radius: var(--radius-md); text-align: center; }
.card-stat__num { font-family: var(--font-heading); font-size: var(--t-4xl); font-weight: var(--w-bold); color: var(--white); line-height: 1; display: block; }
.card-stat__lbl { font-size: var(--t-xs); color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; margin-top: var(--s2); display: block; }

.advantage-item { padding: var(--s5) 0; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 180px 1fr; gap: var(--s6); align-items: baseline; }
.advantage-item:first-child { border-top: 1px solid var(--border); }
.advantage-item__label { font-size: var(--t-sm); font-weight: var(--w-bold); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.advantage-item__value { font-size: var(--t-base); color: var(--text-primary); }

.card-testimonial { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--s8); }
.card-testimonial__quote   { font-family: var(--font-heading); font-size: var(--t-md); color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--s6); font-style: italic; }
.card-testimonial__author  { font-size: var(--t-sm); font-weight: var(--w-bold); color: var(--text-primary); }
.card-testimonial__company { font-size: var(--t-xs); color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   12. TABLES
   ============================================================ */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-md); }
.data-table  { width: 100%; border-collapse: collapse; font-size: var(--t-sm); background: var(--white); }
.data-table thead tr { background: var(--navy); color: var(--white); }
.data-table th { padding: 12px 16px; text-align: left; font-weight: var(--w-bold); font-size: var(--t-xs); letter-spacing: 0.08em; text-transform: uppercase; border-right: 1px solid rgba(255,255,255,0.1); white-space: nowrap; }
.data-table th:last-child { border-right: none; }
.data-table td { padding: 11px 16px; color: var(--text-primary); border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); vertical-align: top; }
.data-table td:last-child { border-right: none; }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:nth-child(even) { background: var(--off-white); }
.data-table tbody tr:hover td { background: var(--navy-tint); }
.td--label { font-weight: var(--w-bold); color: var(--text-primary); white-space: nowrap; }
.td--num   { font-family: var(--font-heading); font-weight: var(--w-bold); color: var(--navy); white-space: nowrap; }

/* ============================================================
   13. FORMS
   ============================================================ */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--s5); }
.form-group:last-of-type { margin-bottom: 0; }

.form-label { font-size: var(--t-sm); font-weight: var(--w-bold); color: var(--text-primary); }
.form-label--req::after { content: ' *'; color: var(--accent); }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: var(--t-sm);
  color: var(--text-primary);
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-input:hover, .form-select:hover, .form-textarea:hover { border-color: #9aa0b0; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 2px rgba(39,57,117,0.10); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); font-size: var(--t-sm); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237e8599' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

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

.form-hint      { font-size: var(--t-xs); color: var(--text-muted); margin-top: 4px; }
.form-error-msg { font-size: var(--t-xs); color: var(--accent); margin-top: 4px; font-weight: var(--w-bold); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6); }

.form-check { display: flex; align-items: flex-start; gap: var(--s3); cursor: pointer; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; border: 1px solid var(--border-mid); border-radius: 2px; background: var(--white); appearance: none; cursor: pointer; flex-shrink: 0; margin-top: 2px; transition: all var(--transition); }
.form-check input[type="checkbox"]:checked { background: var(--navy); border-color: var(--navy); }
.form-check__lbl { font-size: var(--t-sm); color: var(--text-secondary); line-height: 1.5; }

.form-block { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--s10); }
.form-block__header { border-bottom: 1px solid var(--border); padding-bottom: var(--s6); margin-bottom: var(--s8); }
.form-block__title { margin-bottom: var(--s2); }
.form-block__sub   { font-size: var(--t-sm); color: var(--text-muted); }

/* ============================================================
   14. BADGES & CHIPS
   ============================================================ */
.badge { display: inline-block; padding: 3px 10px; border-radius: 2px; font-size: var(--t-xs); font-weight: var(--w-bold); letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; }
.badge--navy   { background: var(--navy-tint); color: var(--navy); }
.badge--accent { background: #ffe5e0; color: var(--accent); }
.badge--green  { background: #e8f5e9; color: #2e7d32; }
.badge--gray   { background: var(--off-white); color: var(--text-muted); border: 1px solid var(--border); }

.spec-chip { display: inline-block; padding: 4px 10px; background: var(--off-white); border: 1px solid var(--border); border-radius: 2px; font-size: var(--t-xs); color: var(--text-secondary); white-space: nowrap; }
.spec-chip b { color: var(--navy); font-weight: var(--w-bold); }

/* Option tags — configurable product options */
.option-tags { display: flex; flex-wrap: nowrap; gap: var(--s2); margin-bottom: var(--s5); overflow: hidden; }
.option-tag { display: inline-flex; align-items: center; gap: 5px; padding: 5px 10px; background: var(--white); border: 1px solid var(--border-mid); border-radius: 20px; font-size: var(--t-xs); color: var(--text-secondary); white-space: nowrap; flex-shrink: 0; }
.option-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--navy-mid); flex-shrink: 0; }

/* Promo banner — featured product strip */
.promo-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: var(--s10);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.promo-banner__img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; display: block; }
.promo-banner__body {
  background: var(--navy);
  padding: var(--s10) var(--s10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s4);
}
.promo-banner__label { font-size: var(--t-xs); font-weight: var(--w-bold); letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.promo-banner__title { font-family: var(--font-heading); font-size: var(--t-2xl); font-weight: var(--w-bold); color: var(--white); line-height: 1.25; }
.promo-banner__desc  { font-size: var(--t-sm); color: rgba(255,255,255,0.7); line-height: 1.6; }
.promo-banner__price { display: flex; align-items: baseline; gap: var(--s3); }
.promo-banner__price-num  { font-family: var(--font-heading); font-size: var(--t-3xl); font-weight: var(--w-bold); color: var(--white); }
.promo-banner__price-note { font-size: var(--t-xs); color: rgba(255,255,255,0.5); }
@media (max-width: 900px) {
  .promo-banner { grid-template-columns: 1fr; }
  .promo-banner__img { min-height: 200px; }
}
@media (max-width: 540px) {
  .promo-banner__body  { padding: var(--s6); }
  .promo-banner__title { font-size: var(--t-xl); }
  .promo-banner__price { flex-direction: column; gap: 2px; align-items: flex-start; }
  .promo-banner__price-num  { font-size: var(--t-2xl); }
  .promo-banner__price-note { font-size: var(--t-xs); }
}

/* ============================================================
   15. BREADCRUMB & PAGINATION
   ============================================================ */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: var(--t-xs); color: var(--text-muted); padding: var(--s3) 0; }
.breadcrumb a { color: var(--text-muted); text-decoration: underline; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb__sep { color: var(--border-mid); }
.breadcrumb__current { color: var(--text-secondary); }

.pagination { display: flex; align-items: center; gap: 4px; }
.page-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); background: var(--white); font-size: var(--t-sm); color: var(--text-secondary); cursor: pointer; border-radius: var(--radius); transition: all var(--transition); font-family: var(--font-body); }
.page-btn:hover, .page-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.page-btn.active { font-weight: var(--w-bold); }

/* ============================================================
   16. NOTICES & BANNERS
   ============================================================ */
.notice { padding: 12px 16px; border-left: 3px solid; font-size: var(--t-sm); border-radius: 0 var(--radius) var(--radius) 0; line-height: 1.6; }
.notice--info    { background: var(--navy-tint); border-color: var(--navy); color: var(--navy-dark); }
.notice--success { background: #f1f8f1; border-color: #388e3c; color: #1b5e20; }
.notice--warn    { background: #fffbf0; border-color: #f57c00; color: #7c3c00; }
.notice--error   { background: #fef5f5; border-color: var(--accent); color: #7f1d1d; }

.promo-strip { background: var(--navy-dark); color: var(--white); padding: var(--s5) 0; border-bottom: 2px solid var(--accent); }
.promo-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s8); }
.promo-strip__label { font-size: var(--t-xs); font-weight: var(--w-bold); letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 3px; }
.promo-strip__text  { font-family: var(--font-heading); font-size: var(--t-xl); font-weight: var(--w-bold); color: var(--white); }
.promo-strip__note  { font-size: var(--t-sm); color: rgba(255,255,255,0.55); margin-top: 2px; }

/* ============================================================
   17. PAGE HERO (inner pages)
   ============================================================ */
/* Base — shared by all inner-page hero variants */
/* ── Page hero — single-column, all variants ────────────── */
.page-hero {
  position: relative;
  background: linear-gradient(160deg, #1b2a5a 0%, #273975 50%, #344b8c 100%);
  border-bottom: 3px solid var(--accent);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.035;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(255,255,255,0.5) 18px, rgba(255,255,255,0.5) 19px),
    repeating-linear-gradient(90deg, transparent, transparent 18px, rgba(255,255,255,0.5) 18px, rgba(255,255,255,0.5) 19px);
}
.page-hero .page-hero__inner {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--s16) 0;
  max-width: 780px;
  margin: 0 auto;
}
.page-hero__content { min-width: 0; }
.page-hero__media { display: none; }

/* ============================================================
   18. PROCESS STEPS
   ============================================================ */
.step-row { display: flex; gap: 0; counter-reset: steps; }
.step-item { flex: 1; padding: var(--s6); border-right: 1px solid var(--border); position: relative; }
.step-item:last-child { border-right: none; }
.step-item::before { counter-increment: steps; content: counter(steps, decimal-leading-zero); display: block; font-family: var(--font-heading); font-size: var(--t-3xl); font-weight: var(--w-bold); color: var(--border); line-height: 1; margin-bottom: var(--s4); }
.step-item__title { font-family: var(--font-heading); font-size: var(--t-lg); font-weight: var(--w-bold); color: var(--text-primary); margin-bottom: var(--s3); }
.step-item__text  { font-size: var(--t-sm); color: var(--text-secondary); line-height: 1.65; }

/* ============================================================
   19. CONTACT BOX
   ============================================================ */
.contact-box { background: var(--navy); color: var(--white); border-radius: var(--radius-md); padding: var(--s8); }
.contact-box__title { font-family: var(--font-heading); font-size: var(--t-xl); font-weight: var(--w-bold); color: var(--white); margin-bottom: var(--s6); padding-bottom: var(--s5); border-bottom: 1px solid rgba(255,255,255,0.12); }
.contact-box__row { margin-bottom: var(--s4); }
.contact-box__lbl { font-size: var(--t-xs); color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 3px; }
.contact-box__val { font-size: var(--t-base); font-weight: var(--w-bold); color: var(--white); }
.contact-box__val a { color: var(--white); text-decoration: none; }
.contact-box__val a:hover { opacity: 0.8; }

/* ============================================================
   20. CTA SECTION
   ============================================================ */
.cta-section { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: var(--s16) 0; text-align: center; }
.cta-section__title   { font-family: var(--font-heading); font-size: var(--t-3xl); font-weight: var(--w-bold); color: var(--text-primary); margin-bottom: var(--s4); }
.cta-section__sub     { font-size: var(--t-md); color: var(--text-secondary); max-width: 520px; margin: 0 auto var(--s8); line-height: 1.65; }
.cta-section__actions { display: flex; gap: var(--s4); justify-content: center; }
.cta-section--bags {
  background: var(--navy);
  border: none;
  position: relative;
  overflow: hidden;
}
.cta-section--bags::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 16px, rgba(255,255,255,0.5) 16px, rgba(255,255,255,0.5) 17px),
    repeating-linear-gradient(90deg, transparent, transparent 16px, rgba(255,255,255,0.5) 16px, rgba(255,255,255,0.5) 17px);
}
.cta-section--bags .cta-section__title {
  color: var(--white);
  position: relative;
}
.cta-section--bags .cta-section__sub {
  color: rgba(255,255,255,0.6);
  position: relative;
}
.cta-section--bags .cta-section__actions {
  position: relative;
}
.cta-section--bags .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  background: transparent;
}
.cta-section--bags .btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ============================================================
   21. FOOTER
   ============================================================ */
/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: #141821; color: rgba(255,255,255,0.5); }

/* Main grid */
.footer-top {
  padding: var(--s12) 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s8);
}
.footer-brand { }
.footer-logo { width: 140px; height: auto; object-fit: contain; margin-bottom: var(--s4); opacity: 0.7; display: block; }
.footer-desc { font-size: var(--t-sm); line-height: 1.7; color: rgba(255,255,255,0.35); margin: 0; }

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s8);
  width: 100%;
}
.footer-col__title {
  font-size: 10px; font-weight: var(--w-bold); letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: var(--s4); display: block;
}
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 0; padding: 0; }
.footer-nav a { font-size: var(--t-sm); color: rgba(255,255,255,0.45); text-decoration: none; transition: color var(--transition); }
.footer-nav a:hover { color: var(--white); }

/* Contact bar */
.footer-contacts-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s6);
  padding: var(--s8) 0; border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-contact-item { font-size: var(--t-sm); color: rgba(255,255,255,0.5); }
.footer-contact-item__label {
  font-size: 10px; font-weight: var(--w-bold); letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.2); display: block; margin-bottom: 4px;
}
.footer-contact-item a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact-item a:hover { color: var(--white); }

/* Bottom bar */
.footer-bottom {
  padding: var(--s5) 0; display: flex; align-items: center; justify-content: space-between;
  font-size: var(--t-xs); color: rgba(255,255,255,0.2); gap: var(--s6);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-bottom a { color: rgba(255,255,255,0.2); text-decoration: none; margin-left: var(--s4); }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }

/* ============================================================
   22. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero__title { font-size: 44px; }
  .page-hero__title { font-size: var(--t-3xl); }
  .footer-contacts-bar { grid-template-columns: repeat(2, 1fr); }
  .site-logo__text { display: none; }
  .nav-link { padding: 8px 10px; }
}

@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .main-nav      { display: none !important; }
  .header-right  { display: none; }
  .mobile-nav    { display: block; }
  .site-header   { overflow: visible; }

  .hero__inner { padding: var(--s16) 0 var(--s10); }
  .hero__stats { gap: var(--s8); }
  .page-hero .page-hero__inner { padding: var(--s10) 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-sidebar    { grid-template-columns: 1fr; }
  .step-row        { flex-wrap: wrap; }
  .step-item       { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hide-mobile    { display: none; }
  .hero__inner    { padding: var(--s12) 0 var(--s8); }
  .hero__title    { font-size: 28px; overflow-wrap: break-word; word-break: break-word; hyphens: auto; }
  .hero__sub      { font-size: var(--t-md); }
  .hero__actions  { flex-direction: column; gap: var(--s4); }
  .hero__contact  { width: 100%; gap: var(--s3); justify-content: center; }
  .hero__divider  { display: none; }
  .hero__stats    { flex-direction: column; gap: var(--s6); align-items: center; }
  .hero__diagonal { display: none; }
  .page-hero .page-hero__inner { padding: var(--s8) 0; }
  .page-hero__title { font-size: 26px; overflow-wrap: break-word; word-break: break-word; }
  .page-hero__sub { font-size: var(--t-md); }
  .page-hero__actions { flex-direction: column; align-items: center; }
  .footer-nav-grid { grid-template-columns: 1fr; gap: var(--s6); }
  .footer-contacts-bar { grid-template-columns: 1fr; gap: var(--s4); }
  .footer-bottom  { flex-direction: column; text-align: center; gap: var(--s3); }
  .footer-bottom a { margin-left: var(--s2); }
  .form-row       { grid-template-columns: 1fr; }
  .advantage-item { grid-template-columns: 1fr; }
  .cta-section__actions { flex-direction: column; align-items: center; }
  .header-topbar .flex-between { flex-direction: column; gap: 4px; text-align: center; }

  /* Prevent any element from causing horizontal scroll */
  h1, h2, h3, h4 { word-break: break-word; }
  .btn { white-space: normal; word-break: break-word; }
  .container { padding: 0 var(--s5); }
  .trust-bar { display: none; }
}

/* ============================================================
   23. FAQ ACCORDION
   ============================================================ */
.faq { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--s5) 0;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--t-base);
  font-weight: var(--w-bold);
  color: var(--text-primary);
  cursor: pointer;
  gap: var(--s6);
  transition: color var(--transition);
}
.faq__q::after { content: '+'; font-size: var(--t-xl); font-weight: 300; color: var(--navy); flex-shrink: 0; transition: transform 200ms ease; line-height: 1; }
.faq__q[aria-expanded="true"] { color: var(--navy); }
.faq__q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq__q:hover { color: var(--navy); }
.faq__a {
  display: none;
  padding: 0 0 var(--s5);
  font-size: var(--t-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
}
.faq__item.is-open .faq__a { display: block; }

/* ============================================================
   24. SCROLL-TO-TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 88px; /* lifted to clear the floating contact pill */
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(39, 57, 117, 0.55);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 250ms ease, transform 250ms ease, visibility 250ms, background 150ms;
  backdrop-filter: blur(4px);
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover { background: rgba(39, 57, 117, 0.85); }

/* ============================================================
   25. BREADCRUMB BAR
   ============================================================ */
.breadcrumb-bar {
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--t-sm);
  color: var(--text-muted);
}
.breadcrumb__link {
  color: var(--navy);
  text-decoration: none;
}
.breadcrumb__link:hover { text-decoration: underline; }
.breadcrumb__sep { color: var(--border-mid); }
.breadcrumb__current { color: var(--text-secondary); }

/* ── Shared page-hero text styles ────────────────────────── */
.page-hero .section-label {
  color: var(--accent);
  letter-spacing: 0.14em;
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(255,43,6,0.25);
  border-radius: 2px;
  background: rgba(255,43,6,0.06);
  margin-bottom: var(--s4);
}
.page-hero__title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: var(--w-bold);
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 var(--s5);
  letter-spacing: -0.01em;
}
.page-hero__sub {
  font-size: var(--t-lg);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: var(--s8);
  max-width: 600px;
}
.page-hero__actions { display: flex; gap: var(--s3); flex-wrap: wrap; justify-content: center; }
.page-hero__actions .btn { white-space: normal; text-align: center; }
.page-hero__actions .btn--outline { color: var(--white); border-color: rgba(255,255,255,0.5); }
.page-hero__actions .btn--outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); }

/* ============================================================
   27. ABOUT PAGE
   ============================================================ */
/* Stats bar */
.about-stats-bar {
  background: var(--navy);
  padding: var(--s8) 0;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
  text-align: center;
}
.about-stat__num {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--t-3xl);
  font-weight: var(--w-bold);
  color: var(--white);
  line-height: 1.1;
}
.about-stat__lbl {
  display: block;
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* Two-column about layout */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--s10);
  align-items: start;
}
.about-text p {
  font-size: var(--t-base);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--s5);
}
.about-values {
  margin-top: var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}
.about-value {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
}
.about-value__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--t-sm);
  font-weight: var(--w-bold);
}
.about-value strong {
  display: block;
  font-size: var(--t-base);
  color: var(--text-primary);
  margin-bottom: 2px;
}
.about-value p {
  font-size: var(--t-sm);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Sidebar cards */
.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}
.about-cta-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: var(--s6);
}
.about-cta-card__title {
  font-family: var(--font-heading);
  font-size: var(--t-lg);
  font-weight: var(--w-bold);
  margin-bottom: var(--s3);
}
.about-cta-card p {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: var(--s5);
}
.about-cta-card__divider {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: var(--s5) 0 var(--s4);
}
.about-cta-card__phone {
  display: block;
  font-size: var(--t-xl);
  font-weight: var(--w-bold);
  color: var(--white);
  text-decoration: none;
  margin-bottom: 4px;
}
.about-cta-card__phone:hover { text-decoration: underline; }
.about-cta-card__hours {
  display: block;
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.6);
}
.about-links-card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: var(--s5) var(--s6);
}
.about-links-card__title {
  font-size: var(--t-sm);
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  margin-bottom: var(--s3);
}
.about-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-links-list li + li { border-top: 1px solid var(--border); }
.about-links-list a {
  display: block;
  padding: 8px 0;
  font-size: var(--t-sm);
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}
.about-links-list a:hover { color: var(--accent); }

/* Capabilities grid */
.card-capability {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: var(--s6);
}
.card-capability__num {
  font-family: var(--font-heading);
  font-size: var(--t-3xl);
  font-weight: var(--w-bold);
  color: var(--border-mid);
  line-height: 1;
  margin-bottom: var(--s3);
  letter-spacing: -0.02em;
}
.card-capability__title {
  font-size: var(--t-base);
  font-weight: var(--w-bold);
  color: var(--text-primary);
  margin-bottom: var(--s2);
}
.card-capability__text {
  font-size: var(--t-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   28a. PRODUCTION GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s4);
  margin-top: var(--s8);
}
.gallery-grid__item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-section);
  margin: 0;
}
.gallery-grid__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s3); }
}

/* ============================================================
   28. CERT CAROUSEL
   ============================================================ */
.cert-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-top: var(--s6);
}
.cert-carousel__track-wrap {
  flex: 1;
  overflow: hidden;
}
.cert-carousel__track {
  display: flex;
  gap: var(--s4);
  transition: transform 350ms ease;
  will-change: transform;
}
.cert-carousel__item {
  flex: 0 0 auto;
  width: 148px;
}
.cert-carousel__link {
  display: block;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.cert-carousel__link:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(39,57,117,0.15);
}
.cert-carousel__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 210 / 297;
  object-fit: cover;
}
.cert-carousel__btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.cert-carousel__btn:hover {
  background: var(--navy-tint);
  border-color: var(--navy);
}
.cert-carousel__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

/* ============================================================
   29. SERVICES PAGE
   ============================================================ */

/* Intro two-col */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--s10);
  align-items: start;
}
.services-intro__text p {
  font-size: var(--t-base);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--s5);
}

/* Quick-links sidebar */
.services-quicklinks {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: var(--s5) var(--s6);
}
.services-quicklinks__title {
  font-size: var(--t-xs);
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  margin-bottom: var(--s3);
  display: block;
}
.services-quicklink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  font-size: var(--t-sm);
  color: var(--navy);
  text-decoration: none;
  border-top: 1px solid var(--border);
  transition: color var(--transition);
}
.services-quicklink:hover { color: var(--accent); text-decoration: none; }
.services-quicklink__arrow { font-size: var(--t-base); opacity: .5; flex-shrink: 0; }

/* Service cards */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.service-card__num {
  font-family: var(--font-heading);
  font-size: var(--t-4xl);
  font-weight: var(--w-bold);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.85;
}
.service-card__title {
  font-family: var(--font-heading);
  font-size: var(--t-lg);
  font-weight: var(--w-bold);
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0;
}
.service-card__text {
  font-size: var(--t-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}
.service-card__list {
  list-style: none;
  padding: 0;
  margin: var(--s2) 0 0;
  border-top: 1px solid var(--border);
  padding-top: var(--s3);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card__list li {
  font-size: var(--t-sm);
  color: var(--text-secondary);
  padding-left: 14px;
  position: relative;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--navy);
  border-radius: 50%;
}

/* Process steps */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: var(--s8);
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s4);
  padding: 0 var(--s4);
}
.process-step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--t-xl);
  font-weight: var(--w-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.process-step__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.process-step__title {
  font-weight: var(--w-bold);
  font-size: var(--t-base);
  color: var(--text-primary);
  margin-bottom: 4px;
}
.process-step__text {
  font-size: var(--t-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.process-step__connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: var(--border);
  margin-top: 25px; /* aligns with center of the circle */
  position: relative;
}
.process-step__connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--border);
}

@media (max-width: 860px) {
  .services-intro { grid-template-columns: 1fr; }
  .services-intro__links { order: 1; }
  .process-steps { flex-direction: column; align-items: stretch; gap: var(--s5); }
  .process-step  { flex-direction: row; text-align: left; align-items: flex-start; }
  .process-step__connector { display: none; }
  .process-step__body { flex: 1; }
}

/* ============================================================
   29. CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--navy);
  padding: var(--s12) 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 16px, rgba(255,255,255,0.5) 16px, rgba(255,255,255,0.5) 17px),
    repeating-linear-gradient(90deg, transparent, transparent 16px, rgba(255,255,255,0.5) 16px, rgba(255,255,255,0.5) 17px);
}
.cta-strip__inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s8);
}
.cta-strip__title {
  font-family: var(--font-heading);
  font-size: var(--t-2xl);
  font-weight: var(--w-bold);
  color: var(--white);
  margin-bottom: var(--s2);
}
.cta-strip__sub {
  font-size: var(--t-base);
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  line-height: 1.6;
  margin: 0;
}
.cta-strip__actions {
  display: flex;
  gap: var(--s3);
  flex-shrink: 0;
  flex-wrap: wrap;
}
.btn--white {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
}
.btn--white:hover {
  background: transparent;
  color: var(--white);
}
.btn--white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--white-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ============================================================
   30. TEAM SLIDER
   ============================================================ */
.team-slider {
  position: relative;
  margin-top: var(--s8);
}
.team-slider__viewport {
  overflow: hidden;
}
.team-slider__track {
  display: flex;
  gap: var(--s6);
  transition: transform 380ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.team-card {
  flex: 0 0 calc((100% - 2 * var(--s6)) / 3);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.team-card:hover {
  box-shadow: 0 6px 24px rgba(39,57,117,0.12);
  transform: translateY(-3px);
}
.team-card__photo-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-section);
}
.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.team-card:hover .team-card__photo { transform: scale(1.04); }
.team-card__body {
  padding: var(--s4) var(--s5) var(--s5);
}
.team-card__name {
  font-weight: var(--w-bold);
  font-size: var(--t-base);
  color: var(--text-primary);
  margin-bottom: 4px;
}
.team-card__role {
  font-size: var(--t-sm);
  color: var(--text-muted);
  line-height: 1.4;
}

/* Slider controls */
.team-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  margin-top: var(--s6);
}
.team-slider__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}
.team-slider__btn:hover   { background: var(--navy-tint); border-color: var(--navy); }
.team-slider__btn:disabled { opacity: 0.3; cursor: default; }

.team-slider__dots {
  display: flex;
  gap: 8px;
}
.team-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-mid);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.team-slider__dot.is-active {
  background: var(--navy);
  transform: scale(1.25);
}

@media (max-width: 900px) {
  .team-card { flex: 0 0 calc((100% - var(--s6)) / 2); }
}
@media (max-width: 520px) {
  .team-card { flex: 0 0 80%; }
}

/* ── Responsive: about page ──────────────────────────────── */
@media (max-width: 960px) {
  .about-layout       { grid-template-columns: 1fr; }
  .about-sidebar      { order: 1; }
  .about-stats        { grid-template-columns: repeat(2, 1fr); }
  .cta-strip__inner   { flex-direction: column; text-align: center; }
  .cta-strip__actions { justify-content: center; }
}
@media (max-width: 600px) {
  .about-stats-bar    { padding: var(--s5) 0; }
  .about-stats        { grid-template-columns: repeat(2, 1fr); gap: var(--s2) var(--s4); }
  .about-stat__num    { font-size: var(--t-2xl); }
  .about-stat__lbl    { font-size: 11px; }
  .cert-carousel__item { width: 110px; }
  .page-hero__title   { font-size: var(--t-2xl); }
}

/* ============================================================
   31. FAQ PAGE
   ============================================================ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--s12);
  align-items: start;
}
.faq-group { margin-bottom: var(--s10); }
.faq-group:last-child { margin-bottom: 0; }
.faq-group__title {
  font-family: var(--font-heading);
  font-size: var(--t-xl);
  font-weight: var(--w-bold);
  color: var(--text-primary);
  margin-bottom: var(--s5);
  padding-bottom: var(--s3);
  border-bottom: 2px solid var(--navy);
}
.faq__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-top: var(--s4);
}
.faq__link {
  font-size: var(--t-sm);
  color: var(--navy);
  text-decoration: none;
  font-weight: var(--w-bold);
}
.faq__link:hover { color: var(--accent); text-decoration: underline; }

/* Sidebar */
.faq-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}
.faq-sidebar__card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: var(--s5) var(--s6);
}
.faq-sidebar__card--cta {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  padding: var(--s6) var(--s8);
}
.faq-sidebar__card--cta .btn {
  padding: 14px var(--s6);
  text-align: center;
}
.faq-sidebar__card--cta p {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.75);
  margin: var(--s2) 0 var(--s5);
  line-height: 1.55;
}
.faq-sidebar__title {
  font-size: var(--t-xs);
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: var(--s3);
}
.faq-sidebar__card--cta .faq-sidebar__title { color: rgba(255,255,255,0.5); }
.faq-sidebar__link {
  display: block;
  padding: 8px 0;
  font-size: var(--t-sm);
  color: var(--navy);
  text-decoration: none;
  border-top: 1px solid var(--border);
  transition: color var(--transition);
}
.faq-sidebar__link:hover { color: var(--accent); }
.faq-sidebar__phone {
  display: block;
  font-size: var(--t-lg);
  font-weight: var(--w-bold);
  color: var(--white);
  text-decoration: none;
  margin-top: var(--s4);
}
.faq-sidebar__phone:hover { text-decoration: underline; color: var(--white); }
.faq-sidebar__hours {
  display: block;
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

@media (max-width: 860px) {
  .faq-layout  { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; order: -1; flex-direction: row; flex-wrap: wrap; }
  .faq-sidebar__card { flex: 1 1 260px; }
}

/* ============================================================
   31. CONTACT PAGE
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--s12);
  align-items: start;
}
/* (legacy .contact-form-bitrix removed — contact form is now native PHP) */

/* Column headings */
.contact-col__title {
  font-family: var(--font-heading);
  font-size: var(--t-2xl);
  font-weight: var(--w-bold);
  color: var(--text-primary);
  margin-bottom: var(--s2);
}
.contact-col__sub {
  font-size: var(--t-base);
  color: var(--text-secondary);
  margin-bottom: var(--s6);
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: var(--s5); }
.form-field   { display: flex; flex-direction: column; gap: 6px; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); }
.form-label   { font-size: var(--t-sm); font-weight: var(--w-bold); color: var(--text-primary); }
.form-required { color: var(--accent); }
.form-optional { font-weight: var(--w-regular); color: var(--text-muted); font-size: var(--t-xs); }
.form-input {
  width: 100%;
  padding: 11px var(--s4);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--t-base);
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(39,57,117,0.10);
}
.form-input::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-note    { font-size: var(--t-xs); color: var(--text-muted); text-align: center; margin-top: calc(-1 * var(--s2)); }
.form-note a  { color: var(--navy); }

/* Consent checkbox */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: var(--t-sm);
  color: var(--text-secondary);
  line-height: 1.55;
  margin-top: var(--s2);
}
.form-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--navy);
  cursor: pointer;
}
.form-consent a { color: var(--navy); text-decoration: underline; }
.form-consent a:hover { color: var(--accent); }

/* Success / error states */
.form-success {
  background: #edf7ed;
  border: 1px solid #81c784;
  border-radius: var(--radius-md);
  padding: var(--s5) var(--s6);
  font-size: var(--t-base);
  color: #2e7d32;
  line-height: 1.6;
}
.form-error {
  background: #fdf0ef;
  border: 1px solid #ef9a9a;
  border-radius: var(--radius-md);
  padding: var(--s4) var(--s5);
  font-size: var(--t-sm);
  color: var(--accent);
}

/* ─────────────────────────────────────────────────────────────
   THANK-YOU PAGE (/spasibo/)
───────────────────────────────────────────────────────────── */
.thanks-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--s10) var(--s8);
  box-shadow: var(--shadow-sm);
}
.thanks-card__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
  margin: 0 auto var(--s5);
}
.thanks-card .section-label { display: inline-block; margin-bottom: var(--s2); }
.thanks-card__title {
  font-family: var(--font-heading);
  font-size: var(--t-3xl);
  font-weight: var(--w-bold);
  color: var(--text-primary);
  margin: 0 0 var(--s4);
}
.thanks-card__lead {
  font-size: var(--t-base);
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0 auto var(--s6);
  max-width: 480px;
}
.thanks-card__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-bottom: var(--s8);
}
.thanks-card__divider {
  height: 1px;
  background: var(--border);
  margin: 0 calc(var(--s8) * -1) var(--s6);
}
.thanks-card__hint {
  text-align: left;
  font-size: var(--t-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}
.thanks-card__hint strong {
  display: block;
  font-size: var(--t-base);
  color: var(--text-primary);
  margin-bottom: var(--s2);
}
.thanks-card__hint ul {
  margin: 0;
  padding-left: var(--s5);
}
.thanks-card__hint li { margin-bottom: 4px; }
.thanks-card__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s5);
  margin-top: var(--s6);
  padding-top: var(--s5);
  border-top: 1px solid var(--border);
}
.thanks-card__link {
  font-size: var(--t-sm);
  font-weight: var(--w-bold);
  color: var(--navy);
  text-decoration: none;
}
.thanks-card__link:hover { color: var(--accent); }

@media (max-width: 600px) {
  .thanks-card { padding: var(--s8) var(--s5); }
  .thanks-card__divider { margin-left: calc(var(--s5) * -1); margin-right: calc(var(--s5) * -1); }
  .thanks-card__actions { flex-direction: column; }
  .thanks-card__actions .btn { width: 100%; }
}

/* Contact info column */
.contact-details { display: flex; flex-direction: column; gap: var(--s5); }
.contact-detail__label {
  font-size: var(--t-xs);
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-detail__value {
  font-size: var(--t-base);
  color: var(--text-primary);
  text-decoration: none;
  line-height: 1.5;
}
.contact-detail__value--lg {
  font-size: var(--t-xl);
  font-weight: var(--w-bold);
  color: var(--navy);
}
.contact-detail__value:hover { color: var(--accent); }
.contact-divider { height: 1px; background: var(--border); margin: var(--s6) 0; }

/* Контактные лица — named department contacts */
.contact-persons__title {
  font-size: var(--t-xs);
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: var(--s4);
}
.contact-person {
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--border);
}
.contact-person:last-child { border-bottom: none; }
.contact-person__role {
  font-size: var(--t-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.contact-person__phone {
  display: inline-block;
  font-size: var(--t-base);
  font-weight: var(--w-bold);
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  margin-right: var(--s3);
  transition: color var(--transition);
}
.contact-person__phone:hover { color: var(--accent); }
.contact-person__name { font-size: var(--t-sm); color: var(--text-secondary); }

.contact-links__title {
  font-size: var(--t-xs);
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: var(--s3);
}
.contact-link {
  display: block;
  padding: 8px 0;
  font-size: var(--t-sm);
  color: var(--navy);
  text-decoration: none;
  border-top: 1px solid var(--border);
  transition: color var(--transition);
}
.contact-link:hover { color: var(--accent); text-decoration: none; }

/* Map */
.contact-map { border-top: 1px solid var(--border); }

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
}

/* ============================================================
   25. PRINT
   ============================================================ */
@media print {
  .site-header, .site-footer, .btn, .promo-strip, .nav-hamburger, .mobile-nav { display: none !important; }
  body { font-size: 11pt; color: #000; }
  a::after { content: " (" attr(href) ")"; font-size: 8pt; color: #666; }
  .container { max-width: 100%; padding: 0; }
}

/* ============================================================
   24. UTILITY
   ============================================================ */
.hidden  { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.mt-4    { margin-top: var(--s4); }
.mt-6    { margin-top: var(--s6); }
.mt-8    { margin-top: var(--s8); }
.mb-4    { margin-bottom: var(--s4); }
.mb-6    { margin-bottom: var(--s6); }
.mb-8    { margin-bottom: var(--s8); }
.mb-0    { margin-bottom: 0; }
.w-full  { width: 100%; display: block; }

/* ============================================================
   32. BLOG — INDEX (cards grid)
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s8);
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10); transform: translateY(-2px); }
.blog-card__img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 5/3;
  overflow: hidden;
  background: var(--navy-tint);
}
.blog-card__img-wrap--fallback { background: var(--navy-tint); }
.blog-card__img-wrap--fallback img { display: none; }
.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.blog-card:hover .blog-card__img { transform: scale(1.04); }
.blog-card__category {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: var(--t-xs);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .04em;
}
.blog-card__body {
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  gap: var(--s3);
  font-size: var(--t-xs);
  color: var(--text-muted);
  margin-bottom: var(--s3);
}
.blog-card__meta span { display: flex; align-items: center; gap: 4px; }
.blog-card__read::before { content: '·'; margin-right: 4px; }
.blog-card__title {
  font-family: var(--font-serif);
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--s3);
  line-height: 1.35;
}
.blog-card__title a { color: inherit; text-decoration: none; }
.blog-card__title a:hover { color: var(--accent); }
.blog-card__desc {
  font-size: var(--t-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--s4);
}
.blog-card__more {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  margin-top: auto;
}
.blog-card__more:hover { color: var(--accent); }

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

/* ============================================================
   33. BLOG — POST PAGE
   ============================================================ */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--s12);
  align-items: start;
}
.post-hero-meta {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.65);
  margin-top: var(--s3);
  flex-wrap: wrap;
  justify-content: center;
}

/* Article body typography */
.post-body { min-width: 0; }
.post-lead {
  font-size: var(--t-lg);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--s8);
  border-left: 3px solid var(--accent);
  padding-left: var(--s5);
}
.post-body h2 {
  font-family: var(--font-serif);
  font-size: var(--t-xl);
  color: var(--navy);
  margin-top: var(--s10);
  margin-bottom: var(--s4);
  padding-bottom: var(--s2);
  border-bottom: 2px solid var(--navy-tint);
}
.post-body h3 { font-size: var(--t-lg); color: var(--navy); margin-top: var(--s6); margin-bottom: var(--s3); }
.post-body p  { line-height: 1.8; color: var(--text-primary); margin-bottom: var(--s4); }
.post-body ul, .post-body ol { padding-left: var(--s6); margin-bottom: var(--s4); }
.post-body li { line-height: 1.75; color: var(--text-primary); margin-bottom: var(--s2); }
.post-body ul li { list-style: disc; }
.post-body ol li { list-style: decimal; }
.post-body strong { color: var(--text-primary); }
.post-body a { color: var(--navy); text-decoration: underline; }
.post-body a:hover { color: var(--accent); }
.post-body a.btn { text-decoration: none; }
.post-body a.btn:hover { text-decoration: none; }
.post-table { width: 100%; border-collapse: collapse; font-size: var(--t-sm); margin: var(--s4) 0 var(--s6); }
.post-table th, .post-table td { text-align: left; padding: 10px 14px; border: 1px solid var(--border); }
.post-table thead th { background: var(--navy); color: var(--white); font-weight: 600; }
.post-table tbody tr:nth-child(even) td { background: var(--bg-section); }
.post-cta { display: flex; gap: var(--s3); flex-wrap: wrap; margin-top: var(--s10); padding-top: var(--s8); border-top: 1px solid var(--border); }
.post-figure { margin: var(--s8) 0; }
.post-figure img { width: 100%; height: auto; border-radius: var(--radius); display: block; }
.post-figure figcaption { font-size: var(--t-sm); color: var(--text-muted); margin-top: var(--s2); text-align: center; font-style: italic; }

/* Post sidebar */
.post-sidebar { position: sticky; top: 80px; }
.post-sidebar__card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s6);
  margin-bottom: var(--s5);
}
.post-sidebar__card--cta { background: var(--navy); border-color: var(--navy); }
.post-sidebar__title {
  font-size: var(--t-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-secondary);
  margin-bottom: var(--s4);
}
.post-sidebar__card--cta .post-sidebar__title { color: rgba(255,255,255,0.5); }
.post-sidebar__card--cta p { font-size: var(--t-sm); color: rgba(255,255,255,0.8); margin-bottom: var(--s4); }
.post-sidebar__link {
  display: block;
  font-size: var(--t-sm);
  color: var(--text-secondary);
  text-decoration: none;
  padding: 4px 0 4px 8px;
  border-left: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.post-sidebar__link:hover { color: var(--navy); border-left-color: var(--accent); }
.post-sidebar__phone {
  display: block;
  font-size: var(--t-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  text-align: center;
  margin-top: var(--s4);
}
.post-sidebar__phone:hover { color: var(--white); }

@media (max-width: 900px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .post-sidebar__card:first-child { display: none; }
}

/* ============================================================
   34. CAREERS PAGE
   ============================================================ */

/* Perks bar */
.careers-perks-bar { background: var(--navy); padding: 28px 0; }
.careers-perks {
  display: flex;
  justify-content: space-around;
  gap: var(--s6);
  flex-wrap: wrap;
}
.careers-perk { text-align: center; }
.careers-perk__num {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--t-3xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.careers-perk__lbl {
  display: block;
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Vacancy cards */
.vacancy-list { display: flex; flex-direction: column; gap: var(--s8); margin-top: var(--s10); }
.vacancy-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow var(--transition);
}
.vacancy-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.10); }
.vacancy-card__head {
  background: var(--navy);
  padding: var(--s6) var(--s8);
}
.vacancy-card__meta { display: flex; gap: var(--s3); flex-wrap: wrap; margin-bottom: var(--s3); }
.vacancy-badge {
  display: inline-block;
  font-size: var(--t-xs);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  letter-spacing: .04em;
}
.vacancy-badge--schedule { background: rgba(192,57,43,0.75); color: var(--white); }
.vacancy-card__title { font-family: var(--font-serif); font-size: var(--t-xl); color: var(--white); margin: 0; }
.vacancy-card__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.vacancy-col {
  padding: var(--s6) var(--s8);
}
.vacancy-col + .vacancy-col { border-left: 1px solid var(--border); }
.vacancy-col__label {
  font-size: var(--t-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-secondary);
  margin-bottom: var(--s4);
}
.vacancy-list__items { padding-left: var(--s5); margin: 0; }
.vacancy-list__items li {
  font-size: var(--t-sm);
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: var(--s2);
  list-style: disc;
}
.vacancy-list__items--green li::marker { color: #2e7d32; }
.vacancy-card--open .vacancy-card__head { background: var(--navy-mid); }
.vacancy-card__body--single { grid-template-columns: 1fr; }
.vacancy-card__body--single .vacancy-col { border-left: none; }
.vacancy-card__body--single p { font-size: var(--t-sm); color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--s3); }
.vacancy-card__body--single p:last-child { margin-bottom: 0; }
.vacancy-card__foot {
  padding: var(--s5) var(--s8);
  border-top: 1px solid var(--border);
  background: var(--bg-section);
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
}

/* Why us grid */
.careers-why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
  margin-top: var(--s10);
}
.careers-why__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s6);
  border-top: 3px solid var(--navy);
}
.careers-why__icon {
  font-family: var(--font-serif);
  font-size: var(--t-3xl);
  font-weight: 700;
  color: var(--navy-tint);
  line-height: 1;
  margin-bottom: var(--s3);
}
.careers-why__title {
  font-weight: 700;
  font-size: var(--t-base);
  color: var(--navy);
  margin-bottom: var(--s3);
}
.careers-why__item p { font-size: var(--t-sm); color: var(--text-secondary); line-height: 1.65; margin: 0; }

/* Responsive */
@media (max-width: 860px) {
  .vacancy-card__body { grid-template-columns: 1fr; }
  .vacancy-col + .vacancy-col { border-left: none; border-top: 1px solid var(--border); }
  .careers-why { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .vacancy-card__head { padding: var(--s5) var(--s5); }
  .vacancy-col { padding: var(--s5); }
  .vacancy-card__foot { padding: var(--s4) var(--s5); }
  .careers-perks { gap: var(--s4); }
  .careers-perk__num { font-size: var(--t-2xl); }
  .careers-why { grid-template-columns: 1fr; }
}

/* ============================================================
   33. LEGAL PAGES (Privacy Policy, Consent)
   ============================================================ */

/* Simple single-column legal document (Consent page) */
.legal-doc {
  max-width: 760px;
  margin: 0 auto;
}
.legal-doc p, .legal-doc li { line-height: 1.8; color: var(--text-primary); margin-bottom: var(--s4); }
.legal-doc h2 { font-size: var(--t-lg); color: var(--navy); margin-top: var(--s8); margin-bottom: var(--s3); }
.legal-doc ul { padding-left: var(--s6); margin-bottom: var(--s4); }
.legal-doc li { list-style: disc; }
.legal-doc a { color: var(--navy); text-decoration: underline; }
.legal-doc a:hover { color: var(--accent); }
.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--s12);
  align-items: start;
}

/* TOC sidebar */
.legal-toc { position: sticky; top: 80px; }
.legal-toc__card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s6);
}
.legal-toc__title {
  font-size: var(--t-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-secondary);
  margin-bottom: var(--s4);
}
.legal-toc__link {
  display: block;
  font-size: var(--t-sm);
  color: var(--text-secondary);
  text-decoration: none;
  padding: 4px 0;
  border-left: 2px solid transparent;
  padding-left: 8px;
  transition: color var(--transition), border-color var(--transition);
}
.legal-toc__link:hover { color: var(--navy); border-left-color: var(--accent); }

/* Body */
.legal-body { min-width: 0; }
.legal-section { margin-bottom: var(--s12); padding-bottom: var(--s12); border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-section h2 { font-size: var(--t-xl); color: var(--navy); margin-bottom: var(--s4); }
.legal-section h3 { font-size: var(--t-base); font-weight: 700; margin-top: var(--s6); margin-bottom: var(--s3); }
.legal-section p, .legal-section li { line-height: 1.75; color: var(--text-primary); margin-bottom: var(--s3); }
.legal-section ul { padding-left: var(--s6); }
.legal-section li { list-style: disc; }
.legal-section a { color: var(--navy); text-decoration: underline; }
.legal-section a:hover { color: var(--accent); }

/* Table */
.legal-table { width: 100%; border-collapse: collapse; font-size: var(--t-sm); margin-top: var(--s4); margin-bottom: var(--s4); }
.legal-table th, .legal-table td { text-align: left; padding: 10px 14px; border: 1px solid var(--border); }
.legal-table thead th { background: var(--navy); color: var(--white); font-weight: 600; }
.legal-table tbody th { background: var(--bg-section); font-weight: 600; white-space: nowrap; width: 160px; }
.legal-table tbody tr:nth-child(even) td { background: var(--bg-section); }
.legal-table a { color: var(--navy); text-decoration: underline; }

@media (max-width: 860px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .legal-toc__card { display: none; } /* hide on mobile — long page, TOC clutters */
  .legal-table tbody th { white-space: normal; width: auto; }
}

/* ============================================================
   33. COOKIE CONSENT BANNER
   ============================================================ */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--white);
  color: var(--text-primary);
  border-top: 3px solid var(--accent);
  padding: 16px 0;
  transform: translateY(100%);
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -6px 32px rgba(0,0,0,0.15);
}
.cookie-bar.is-visible  { transform: translateY(0); }
.cookie-bar.is-hiding   { transform: translateY(100%); }
.cookie-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s6);
  display: flex;
  align-items: center;
  gap: var(--s6);
}
.cookie-bar__text { font-size: var(--t-sm); line-height: 1.6; flex: 1; margin: 0; color: var(--text-primary); }
.cookie-bar__link { color: var(--navy); text-decoration: underline; }
.cookie-bar__link:hover { color: var(--accent); }
.cookie-bar__actions { display: flex; align-items: center; gap: var(--s3); flex-shrink: 0; }
.cookie-bar__close {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 4px 6px;
  transition: color var(--transition);
}
.cookie-bar__close:hover { color: var(--text-primary); }

@media (max-width: 640px) {
  .cookie-bar__inner { flex-direction: column; align-items: flex-start; gap: var(--s4); }
  .cookie-bar__actions { width: 100%; justify-content: flex-end; }
}

/* ============================================================
   35. CATEGORY HUB PAGES
   ============================================================ */

/* Sub-category grid */
.subcat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
  margin-top: var(--s8);
}
.subcat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.subcat-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.10); transform: translateY(-2px); }
.subcat-card__img-wrap { aspect-ratio: 3/2; overflow: hidden; background: var(--navy-tint); }
.subcat-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.subcat-card:hover .subcat-card__img { transform: scale(1.04); }
.subcat-card__body { padding: var(--s4) var(--s5) var(--s5); flex: 1; display: flex; flex-direction: column; }
.subcat-card__title { font-size: var(--t-base); font-weight: 700; color: var(--navy); margin-bottom: var(--s2); font-family: var(--font-heading); }
.subcat-card__desc { font-size: var(--t-sm); color: var(--text-secondary); line-height: 1.6; flex: 1; margin-bottom: var(--s3); }
.subcat-card__cta { font-size: var(--t-sm); color: var(--accent); font-weight: 600; text-decoration: none; }
.subcat-card__cta::after { content: ' →'; }

/* Application strip */
.cat-applications-section {
  background:
    linear-gradient(180deg, rgba(39,57,117,0.05) 0%, rgba(39,57,117,0.02) 100%),
    var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cat-applications-section .section-head {
  position: relative;
  padding-left: var(--s6);
}
.cat-applications-section .section-head::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--navy) 100%);
}
.cat-application-wrap {
  position: relative;
  margin-top: var(--s8);
}
.cat-application-wrap::before,
.cat-application-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  pointer-events: none;
  z-index: 2;
}
.cat-application-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #eef0f4 0%, rgba(238,240,244,0) 100%);
}
.cat-application-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #eef0f4 0%, rgba(238,240,244,0) 100%);
}
.cat-application-marquee {
  overflow: hidden;
  padding: var(--s2) 0 var(--s3);
  position: relative;
}
.cat-application-track {
  display: flex;
  gap: var(--s5);
  width: max-content;
  animation: catApplicationMarquee 34s linear infinite;
  will-change: transform;
}
.cat-application-marquee:hover .cat-application-track,
.cat-application-marquee:focus-within .cat-application-track {
  animation-play-state: paused;
}

/* Floating nav arrows (shown via JS — see main.js) */
.cat-application-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 4px 12px rgba(18,30,66,0.12);
  transition: box-shadow var(--transition), background var(--transition), color var(--transition);
}
.cat-application-nav:hover {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(18,30,66,0.22);
}
.cat-application-nav:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}
.cat-application-nav:active { opacity: 0.85; }
.cat-application-nav--prev { left: 12px; }
.cat-application-nav--next { right: 12px; }
.cat-application-nav[hidden] { display: none; }

/* Interactive mode — activated on first user interaction (JS adds .is-interactive) */
.cat-application-marquee.is-interactive {
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-application-marquee.is-interactive::-webkit-scrollbar { display: none; }
.cat-application-marquee.is-interactive .cat-application-track { animation: none; }
.cat-application-marquee.is-dragging {
  scroll-behavior: auto;
  cursor: grabbing;
  user-select: none;
}
.cat-application-marquee.is-dragging .cat-application-card { pointer-events: none; }

.cat-application-card {
  flex: 0 0 300px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(18,30,66,0.04);
  transition: box-shadow var(--transition), transform var(--transition);
}
.cat-application-card:hover {
  box-shadow: 0 12px 32px rgba(18,30,66,0.14);
  transform: translateY(-4px);
}
.cat-application-card__img-wrap {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--navy-tint);
}
.cat-application-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.cat-application-card:hover .cat-application-card__img { transform: scale(1.04); }
.cat-application-card__body {
  padding: var(--s4) var(--s5) var(--s5);
  display: flex;
  flex-direction: column;
  min-height: 190px;
}
.cat-application-card__title {
  font-size: var(--t-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--s2);
  font-family: var(--font-heading);
}
.cat-application-card__desc {
  font-size: var(--t-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--s3);
}
.cat-application-card__cta {
  font-size: var(--t-sm);
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.cat-application-card__cta::after { content: ' →'; }
@keyframes catApplicationMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - (var(--s5) / 2))); }
}

/* Stat bar */
.cat-stats-bar { background: var(--navy); padding: 28px 0; }
.cat-stats {
  display: flex;
  justify-content: space-around;
  gap: var(--s6);
  flex-wrap: wrap;
}
.cat-stat { text-align: center; }
.cat-stat__val {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--t-3xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.cat-stat__lbl {
  display: block;
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* About 2-col */
.cat-about {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--s12);
  align-items: start;
}
.cat-about__text p { line-height: 1.8; color: var(--text-primary); margin-bottom: var(--s4); }
.cat-about__text h2 { font-size: var(--t-2xl); color: var(--navy); margin-bottom: var(--s5); }
.cat-about__text ul { padding-left: var(--s6); margin-bottom: var(--s5); }
.cat-about__text li { line-height: 1.75; color: var(--text-primary); margin-bottom: var(--s2); list-style: disc; }
.cat-about__text:only-child { grid-column: 1 / -1; }
.cat-about__img { border-radius: var(--radius); overflow: hidden; }
.cat-about__img img { width: 100%; height: auto; display: block; }

/* Industries */
.cat-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s8);
}
.cat-industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: var(--s5) var(--s6);
  text-decoration: none;
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
}
.cat-industry-card:hover { border-left-color: var(--accent); box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-2px); }
.cat-industry-card__icon { font-size: 24px; flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--navy-tint); border-radius: var(--radius); }
.cat-industry-card__name { font-weight: 700; font-size: var(--t-base); color: var(--navy); display: block; margin-bottom: 2px; }
.cat-industry-card__sub { font-size: var(--t-sm); color: var(--text-secondary); line-height: 1.5; }

/* Delivery facts (geo pages) */
.delivery-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s4);
  margin-bottom: var(--s8);
}
.geo-delivery .delivery-facts {
  background: none; padding: 0; border-radius: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s4);
}
.geo-delivery .delivery-fact {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: var(--s6) var(--s8); text-align: left;
}
.geo-delivery .delivery-fact__label {
  font-size: var(--t-sm); color: var(--text-muted); margin-bottom: var(--s2); line-height: 1.4;
}
.geo-delivery .delivery-fact__val {
  font-family: var(--font-heading); font-size: var(--t-xl); font-weight: var(--w-bold);
  color: var(--navy); line-height: 1.3;
}

/* FAQ accordion */
.cat-faq { margin-top: var(--s8); max-width: 860px; }
.cat-faq__item { border-bottom: 1px solid var(--border); }
.cat-faq__item:first-child { border-top: 1px solid var(--border); }
.cat-faq__q {
  display: flex; justify-content: space-between; align-items: center; gap: var(--s4);
  font-weight: 700; font-size: var(--t-md); color: var(--navy);
  padding: var(--s5) 0; cursor: pointer; user-select: none;
}
.cat-faq__q::after {
  content: '+'; flex-shrink: 0; font-size: 1.4rem; font-weight: 400;
  color: var(--navy); line-height: 1;
}
.cat-faq__item.is-open .cat-faq__q::after { content: '−'; }
.cat-faq__a {
  display: none; color: var(--text-secondary); line-height: 1.75;
  margin: 0; padding-bottom: var(--s5);
}
.cat-faq__item.is-open .cat-faq__a { display: block; }

/* ── Section 38: Why Us ──────────────────────────────────────── */
.why-us-section { background: var(--navy); padding: var(--s16) 0; }
.why-us-section .section-head { margin-bottom: var(--s10); }
.why-us-section .section-label { color: rgba(255,255,255,0.4); }
.why-us-section .section-title { color: #fff; }
.why-us-section .section-sub { color: rgba(255,255,255,0.55); }
.why-us-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); }
.why-us-item { background: rgba(255,255,255,0.05); padding: var(--s8) var(--s7); border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.08); transition: border-color .3s, background .3s; }
.why-us-item:hover { background: rgba(255,255,255,0.08); border-color: var(--accent); }
.why-us-item__num { font-size: 2.2rem; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: var(--s4); font-variant-numeric: tabular-nums; opacity: .7; }
.why-us-item__title { font-weight: 700; font-size: var(--t-md); color: #fff; margin-bottom: var(--s3); line-height: 1.3; }
.why-us-item__text { font-size: var(--t-sm); color: rgba(255,255,255,0.6); line-height: 1.65; margin: 0; }

/* ── Section 39: Testimonials ────────────────────────────────── */
.testimonials-section { background: var(--bg-section); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s6); margin-top: var(--s8); }
.testimonial-card {
  background: #fff; border-radius: 8px; padding: var(--s8);
  display: flex; flex-direction: column; gap: var(--s6);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.testimonial-card__quote {
  font-size: var(--t-base); line-height: 1.8; color: var(--text-primary); margin: 0;
}
.testimonial-card__quote::before {
  content: '\201C'; display: block;
  font-size: 3.5rem; line-height: 0.8; color: var(--navy);
  font-family: Georgia, serif; margin-bottom: var(--s3); opacity: 0.25;
}
.testimonial-card__author { margin-top: auto; padding-top: var(--s5); border-top: 1px solid var(--border); }
.testimonial-card__name { font-weight: 700; font-size: var(--t-base); color: var(--navy); }
.testimonial-card__meta { font-size: var(--t-sm); color: var(--text-secondary); margin-top: 3px; }

/* ── Section 40: Author page ─────────────────────────────────── */
.author-layout { display: grid; grid-template-columns: 300px 1fr; gap: var(--s10); align-items: start; }
.author-card { background: var(--bg-section); border-radius: 8px; padding: var(--s7); text-align: center; }
.author-card__photo { display: block; width: 160px; height: 160px; border-radius: 50%; object-fit: cover; margin: 0 auto var(--s4); }
.author-card__name { font-weight: 700; font-size: var(--t-lg); color: var(--navy); }
.author-card__role { font-size: var(--t-base); color: var(--text-secondary); margin-top: 4px; }
.author-card__company { font-size: var(--t-sm); color: var(--text-secondary); margin-top: 2px; }
.author-card__divider { border: none; border-top: 1px solid var(--border); margin: var(--s5) 0; }
.author-card__expertise-title { font-weight: 700; font-size: var(--t-sm); color: var(--navy); text-align: left; margin-bottom: var(--s3); }
.author-card__expertise { list-style: none; padding: 0; margin: 0; text-align: left; }
.author-card__expertise li { font-size: var(--t-sm); color: var(--text-secondary); padding: 4px 0; padding-left: 1.2em; position: relative; }
.author-card__expertise li::before { content: '✓'; position: absolute; left: 0; color: var(--navy); font-weight: 700; }
.author-content__name { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--navy); margin: var(--s2) 0 var(--s5); }
.author-articles { margin-top: var(--s8); }
.author-articles__title { font-size: var(--t-lg); font-weight: 700; color: var(--navy); margin-bottom: var(--s5); }
.author-articles__list { display: flex; flex-direction: column; gap: var(--s4); }
.author-article-card {
  display: block; padding: var(--s6); background: var(--bg-section); border-radius: 8px;
  border-left: 3px solid var(--navy); text-decoration: none;
  transition: box-shadow 0.18s;
}
.author-article-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.author-article-card__title { font-weight: 700; font-size: var(--t-base); color: var(--navy); margin-bottom: var(--s2); }
.author-article-card__desc { font-size: var(--t-sm); color: var(--text-secondary); line-height: 1.6; margin: 0 0 var(--s3); }
.author-article-card__more { font-size: var(--t-sm); font-weight: 600; color: var(--navy); }

/* ── Author byline (blog posts) ──────────────────────────────── */
.post-byline { display: flex; align-items: center; gap: var(--s4); margin-bottom: var(--s6); }
.post-byline__photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.post-byline__name { font-weight: 700; font-size: var(--t-base); color: var(--navy); text-decoration: none; }
.post-byline__name:hover { text-decoration: underline; }
.post-byline__role { font-size: var(--t-sm); color: var(--text-secondary); }

/* Responsive */
@media (max-width: 1100px) { .subcat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px) {
  .subcat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-about { grid-template-columns: 1fr; }
  .cat-about__img { display: none; }
  .cat-industries-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-product { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .author-layout { grid-template-columns: 1fr; }
  .author-card { display: flex; flex-direction: column; align-items: center; }
}
@media (max-width: 540px) {
  .subcat-grid { grid-template-columns: 1fr; }
  .cat-application-card { flex-basis: 260px; }
  .cat-applications-section .section-head { padding-left: var(--s5); }
  .cat-application-marquee::before,
  .cat-application-marquee::after { width: 28px; }
  .cat-industries-grid { grid-template-columns: 1fr; }
  .delivery-facts { grid-template-columns: 1fr; }
  .cat-stats { gap: var(--s4); }
  .cat-stat__val { font-size: var(--t-2xl); }
  .why-us-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   36. DELIVERY / GEO PAGES
   ============================================================ */

/* Delivery facts card (city pages) */
.delivery-facts {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: var(--s8);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
}
.delivery-fact { text-align: center; }
.delivery-fact__val {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--t-2xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.delivery-fact__lbl {
  display: block;
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.delivery-fact--carriers { text-align: left; }

/* Carrier badges */
.carrier-badges { display: flex; flex-wrap: wrap; gap: var(--s2); }
.carrier-badge {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: var(--t-xs);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.carrier-badge--rail { background: rgba(192,57,43,0.7); }

/* Coverage table (hub page) */
.delivery-coverage-table { width: 100%; border-collapse: collapse; margin-top: var(--s6); font-size: var(--t-sm); }
.delivery-coverage-table th { background: var(--navy); color: var(--white); text-align: left; padding: 12px 16px; font-weight: 600; }
.delivery-coverage-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text-primary); vertical-align: middle; }
.delivery-coverage-table tr:nth-child(even) td { background: var(--bg-section); }
.delivery-coverage-table a { color: var(--navy); text-decoration: none; font-weight: 600; }
.delivery-coverage-table a:hover { color: var(--accent); text-decoration: underline; }

/* How it works (hub page) */
.delivery-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
  margin-top: var(--s8);
}
.delivery-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s6);
  border-top: 3px solid var(--accent);
}
.delivery-step__num {
  font-family: var(--font-heading);
  font-size: var(--t-3xl);
  font-weight: 700;
  color: var(--navy-tint);
  line-height: 1;
  margin-bottom: var(--s3);
}
.delivery-step__title { font-weight: 700; color: var(--navy); margin-bottom: var(--s2); font-size: var(--t-base); }
.delivery-step p { font-size: var(--t-sm); color: var(--text-secondary); line-height: 1.65; margin: 0; }

/* Responsive */
@media (max-width: 900px) {
  .delivery-facts { grid-template-columns: repeat(2, 1fr); }
  .delivery-process { grid-template-columns: repeat(2, 1fr); }
  .delivery-coverage-table th:nth-child(3),
  .delivery-coverage-table td:nth-child(3) { display: none; }
}
@media (max-width: 600px) {
  .delivery-facts { grid-template-columns: 1fr 1fr; padding: var(--s5); gap: var(--s4); }
  .delivery-process { grid-template-columns: 1fr; }
  .delivery-coverage-table th:nth-child(5),
  .delivery-coverage-table td:nth-child(5) { display: none; }
}

/* ============================================================
   37. INDUSTRY PAGES
   ============================================================ */

.product-detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
  gap: var(--s8);
  align-items: start;
}
.product-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--s6);
}
.product-detail-card p {
  font-size: var(--t-base);
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: var(--s4);
}
.product-detail-card p:last-child { margin-bottom: 0; }
.product-detail-card h2,
.product-detail-card h3 {
  color: var(--navy);
  margin-bottom: var(--s4);
}
.product-detail-list {
  padding-left: var(--s5);
  margin: 0;
}
.product-detail-list li {
  list-style: disc;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: var(--s2);
}
.product-detail-links {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.product-buy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.85fr);
  gap: var(--s8);
  align-items: start;
}
.product-gallery-card,
.product-buy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--s6);
}
.product-gallery-main {
  margin: 0 0 var(--s4);
}
.product-gallery-main img,
.product-gallery-thumb img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}
.product-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}
.product-gallery-specs {
  margin-top: var(--s6);
}
.product-gallery-specs__head {
  margin-bottom: var(--s5);
}
.product-gallery-thumb {
  margin: 0;
}
.product-buy-card__label {
  display: inline-block;
  margin-bottom: var(--s3);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.product-buy-card__title {
  color: var(--navy);
  margin-bottom: var(--s3);
}
.product-buy-card__sub {
  font-size: var(--t-sm);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--s5);
}
.product-buy-card__table {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--s5);
}
.product-buy-card__row {
  display: flex;
  justify-content: space-between;
  gap: var(--s4);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.product-buy-card__row:last-child {
  border-bottom: none;
}
.product-buy-card__row span {
  font-size: var(--t-sm);
  color: var(--text-muted);
}
.product-buy-card__row strong {
  font-size: var(--t-sm);
  color: var(--text-primary);
  text-align: right;
}
.product-buy-card__phone {
  margin-top: var(--s3);
}
.product-buy-card__note {
  margin: 0 0 var(--s5);
  padding: 12px 14px;
  background: var(--navy-tint);
  border: 1px solid rgba(39,57,117,0.16);
  border-radius: var(--radius-md);
  font-size: var(--t-sm);
  line-height: 1.65;
  color: var(--text-secondary);
}
.product-buy-card__note strong {
  color: var(--text-primary);
}
.mini-product {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: var(--s8);
  align-items: stretch;
}
.mini-product__column {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.mini-product__column--left {
  align-self: start;
}
.mini-product__column--right {
  align-self: start;
}
.mini-product__image {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s5);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: var(--s3);
  height: auto;
}
.mini-product__image img {
  width: 100%;
  height: 430px;
  min-height: 0;
  object-fit: contain;
  display: block;
}
.mini-product__quickfacts {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--s2);
  align-items: stretch;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}
.mini-product__quickfacts .spec-chip {
  flex: 1 1 0;
  justify-content: center;
  text-align: center;
  min-width: 0;
  white-space: nowrap;
}
.mini-tech-card,
.mini-procurement-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--off-white);
  padding: var(--s4);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mini-tech-card__title,
.mini-procurement-card__title {
  font-size: var(--t-xs);
  font-weight: var(--w-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s3);
}
.mini-tech-card__row,
.mini-procurement-card__row {
  display: grid;
  grid-template-columns: minmax(132px, 44%) 1fr;
  gap: var(--s3);
  align-items: start;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  min-height: 48px;
}
.mini-tech-card__row:first-of-type,
.mini-procurement-card__row:first-of-type {
  border-top: none;
  padding-top: 0;
}
.mini-tech-card__row span,
.mini-procurement-card__row span {
  color: var(--text-secondary);
}
.mini-tech-card__row strong,
.mini-procurement-card__row strong {
  color: var(--text-primary);
}
.mini-product__summary {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  min-height: 100%;
}
.mini-spec-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mini-spec-list__row {
  display: grid;
  grid-template-columns: minmax(170px, 38%) 1fr;
  gap: var(--s4);
  align-items: start;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.mini-spec-list__row:last-child {
  border-bottom: none;
}
.mini-spec-list__row:nth-child(even) {
  background: var(--off-white);
}
.mini-spec-list__label {
  font-weight: var(--w-bold);
  color: var(--text-primary);
}
.mini-spec-list__value {
  color: var(--text-primary);
}
.mini-product__actions {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
}
.mini-product__actions .btn {
  flex: 1 1 200px;
  min-width: 200px;
  padding-left: 18px;
  padding-right: 18px;
  white-space: nowrap;
}
.mini-product__actions--below {
  margin-top: var(--s4);
}
.mini-product__content {
  max-width: 860px;
}
.mini-product__content h2 {
  margin-bottom: var(--s4);
}
.mini-product__content p {
  margin: 0 0 var(--s4);
  color: var(--text-primary);
  line-height: 1.8;
}
.mini-product__content p:last-child { margin-bottom: 0; }
.mini-product__subhead {
  font-family: var(--font-heading);
  font-size: var(--t-lg);
  font-weight: var(--w-bold);
  color: var(--navy);
  margin: var(--s8) 0 var(--s4);
  padding-top: var(--s4);
  border-top: 1px solid var(--border);
}
.mini-product__subhead--lead {
  font-size: var(--t-xl);
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  margin-bottom: var(--s5);
}
.mini-product__usecases {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s5);
  display: grid;
  gap: var(--s3);
}
.mini-product__usecases li {
  padding: var(--s4) var(--s5);
  background: var(--bg-section);
  border-left: 3px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.6;
}
.mini-product__usecases li strong { color: var(--navy); }
.mini-inline-form {
  padding: var(--s5);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--off-white);
}
.mini-inline-form--modal {
  box-shadow: none;
  border: none;
  background: transparent;
  padding: 0;
}
.mini-inline-form__head {
  margin-bottom: var(--s4);
}
.mini-inline-form__title {
  font-size: var(--t-xl);
  margin-bottom: var(--s2);
}
.mini-inline-form__sub {
  color: var(--text-secondary);
}
.mini-inline-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}
.mini-inline-form__grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mini-quote-form {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.mini-callback-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s6);
}
.mini-callback-modal[hidden] {
  display: none;
}
.mini-callback-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 27, 55, 0.58);
  backdrop-filter: blur(4px);
  animation: miniModalFade 180ms ease;
}
.mini-callback-modal__dialog {
  position: relative;
  width: min(720px, 100%);
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  border: 1px solid rgba(39,57,117,0.14);
  border-radius: 14px;
  box-shadow: 0 22px 60px rgba(19, 31, 63, 0.24);
  padding: var(--s8);
  transform: translateY(0);
  animation: miniModalRise 220ms ease;
}
.mini-callback-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--text-primary);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.mini-callback-modal__close:hover {
  background: var(--off-white);
}
@keyframes miniModalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes miniModalRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.mini-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s4);
}
.mini-info-card {
  padding: var(--s5);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.mini-info-card__title {
  font-size: var(--t-lg);
  margin-bottom: var(--s3);
}
.mini-info-card__desc {
  color: var(--text-secondary);
  margin-bottom: var(--s4);
}
.mini-info-card__link {
  font-weight: var(--w-bold);
}

@media (max-width: 860px) {
  .mini-product {
    grid-template-columns: 1fr;
    gap: var(--s5);
  }

  .mini-product__image,
  .mini-spec-list {
    height: auto;
    min-height: 0;
  }

  .mini-product__image {
    padding: var(--s4);
    gap: var(--s3);
  }

  .mini-product__image img {
    min-height: 0;
    flex: 0 1 auto;
  }

  .mini-product__actions {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .mini-product__actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
    font-size: var(--t-xs);
  }

  .mini-product__quickfacts {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .mini-product__quickfacts .spec-chip {
    flex: 0 1 auto;
    min-width: 0;
  }

  .mini-tech-card__row,
  .mini-procurement-card__row,
  .mini-spec-list__row {
    grid-template-columns: minmax(110px, 36%) 1fr;
    gap: var(--s3);
    padding: 10px 12px;
  }

  .mini-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mini-inline-form__grid {
    grid-template-columns: 1fr;
  }

  .mini-callback-modal__dialog {
    padding: var(--s6);
  }

  .product-list-table thead { display: none; }

  .product-list-table,
  .product-list-table tbody,
  .product-list-table tr,
  .product-list-table td { display: block; width: 100%; }

  .product-list-table tbody {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
  }

  .product-list-table tr {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    background: var(--white);
    padding: 10px 12px;
    gap: 2px var(--s3);
    cursor: pointer;
  }
  .product-list-table tr:active { background: var(--off-white); }

  /* All cells: reset by default */
  .product-list-table td {
    padding: 0; border: none; display: none;
  }
  .product-list-table td::before { display: none; }

  /* 1st column (Name) — always show, top left */
  .product-list-table td:first-child {
    display: block;
    grid-column: 1; grid-row: 1;
    font-weight: var(--w-bold);
    font-size: var(--t-sm);
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* 2nd column (Size/Width/Type) — show as subtitle, bottom left */
  .product-list-table td:nth-child(2) {
    display: block;
    grid-column: 1; grid-row: 2;
    font-size: var(--t-xs); color: var(--text-muted);
  }

  /* Last column (Action) — right side, spanning both rows */
  .product-list-table td:last-child {
    display: flex; align-items: center;
    grid-column: 2; grid-row: 1 / 3;
  }
  .product-list-table td:last-child .btn {
    padding: 6px 14px;
    font-size: var(--t-xs);
  }
}

@media (max-width: 540px) {
  .mini-tech-card__row,
  .mini-procurement-card__row,
  .mini-spec-list__row {
    grid-template-columns: 1fr;
  }

  .mini-info-grid {
    grid-template-columns: 1fr;
  }
}
.product-quote-form {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.product-quote-options {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.product-quote-group__label {
  display: block;
  margin-bottom: var(--s2);
  font-size: var(--t-xs);
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.product-quote-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}
.product-quote-pill {
  border: 1px solid var(--border);
  background: var(--off-white);
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: var(--t-sm);
  font-weight: 700;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.product-quote-pill:hover {
  border-color: var(--navy);
  background: var(--navy-tint);
}
.product-quote-pill.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.product-quote-form .form-row {
  gap: var(--s4);
}
.product-quote-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-quote-form .form-label {
  font-size: var(--t-xs);
}
.product-quote-form [data-quote-toggle][aria-expanded="true"] {
  background: var(--border-mid);
  border-color: var(--border-mid);
  color: var(--navy);
}
.product-quote-form [data-quote-toggle][aria-expanded="true"]:hover {
  background: var(--border-dark);
  border-color: var(--border-dark);
  color: var(--navy);
}
.product-quote-form__details {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  padding-top: var(--s2);
  animation: productQuoteReveal 180ms ease;
}
.product-quote-form__details[hidden] {
  display: none;
}
.product-hero-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s2);
  margin-top: var(--s5);
  padding-bottom: 2px;
}
.product-hero-actions {
  gap: var(--s3);
}
.product-hero-facts .spec-chip {
  flex: 0 0 auto;
  background: rgba(255,255,255,0.92);
}
.product-inline-cta {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
  margin-top: var(--s5);
}
.product-detail-link {
  display: block;
  padding: var(--s4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--off-white);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.product-detail-link:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-decoration: none;
}
.product-detail-link__title {
  display: block;
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.product-detail-link__desc {
  display: block;
  font-size: var(--t-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}
.product-use-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s4);
  margin-top: var(--s6);
}
.product-use-card {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.product-use-card__cta {
  display: inline-block;
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--accent);
}
.product-body-media-row {
  margin-top: var(--s6);
  align-items: stretch;
}
.product-figure-card img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: var(--s3);
}
.product-figure-card figcaption {
  font-size: var(--t-sm);
  color: var(--text-muted);
  line-height: 1.6;
}
.product-terms-note {
  margin-top: var(--s6);
}

@keyframes productQuoteReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reqs-block {
  background: var(--navy-tint);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--s6);
  margin: var(--s8) 0;
}
.reqs-block__title {
  font-weight: 700;
  color: var(--navy);
  font-size: var(--t-base);
  margin-bottom: var(--s3);
}
.reqs-block p  { font-size: var(--t-sm); color: var(--text-primary); line-height: 1.75; margin-bottom: var(--s2); }
.reqs-block ul { padding-left: var(--s5); margin-bottom: var(--s2); }
.reqs-block li { list-style: disc; font-size: var(--t-sm); color: var(--text-primary); line-height: 1.75; margin-bottom: 4px; }
.reqs-block a  { color: var(--navy); text-decoration: underline; }
.reqs-block a:hover { color: var(--accent); }

.industry-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s6);
}
.industry-product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: var(--s5);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition);
}
.industry-product-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.industry-product-card__title { font-weight: 700; color: var(--navy); margin-bottom: var(--s2); font-size: var(--t-base); }
.industry-product-card p { font-size: var(--t-sm); color: var(--text-secondary); line-height: 1.6; margin: 0; }

@media (max-width: 860px) { .industry-products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .industry-products { grid-template-columns: 1fr; } }

@media (max-width: 860px) {
  .product-buy-layout,
  .product-detail-intro { grid-template-columns: 1fr; }
  .product-use-grid { grid-template-columns: 1fr; }
  .product-buy-card__row {
    flex-direction: column;
  }
  .product-buy-card__row strong {
    text-align: left;
  }
}

/* ─── Floating contact pill (attention CTA) ───────────────────── */
/* Dock = positioning layer. Anchored bottom-right so it stays there for
   touch / no-JS / reduced-motion; JS slides it left via translateX when the
   cursor is on the left half of the screen. */
.contact-fab-dock {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 320; /* above scroll-top (300) */
  transition: transform 550ms cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.contact-fab {
  position: relative; /* anchor for the pulse ring */
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 22px 14px 19px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text-invert);
  font-family: var(--font-body);
  font-size: var(--t-base);
  font-weight: var(--w-bold);
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(20,24,40,0.20), 0 1px 4px rgba(20,24,40,0.14);
  transition: transform 200ms cubic-bezier(.22,1,.36,1), box-shadow 200ms ease, filter 200ms ease;
  animation: fab-enter 500ms cubic-bezier(.22,1,.36,1) 900ms backwards;
  -webkit-tap-highlight-color: transparent;
}
.contact-fab:hover,
.contact-fab:focus-visible {
  color: var(--text-invert);      /* override global a:hover navy + underline */
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(20,24,40,0.26), 0 2px 8px rgba(20,24,40,0.16);
  filter: brightness(1.06);
}
.contact-fab:focus-visible {
  outline: 3px solid rgba(255,43,6,0.40);
  outline-offset: 3px;
}
.contact-fab:active { transform: translateY(-1px) scale(0.98); }

.contact-fab__icon { flex: none; }
.contact-fab__label { white-space: nowrap; }

/* radiating "sonar" pulse behind the pill to catch the eye */
.contact-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--accent);
  z-index: -1;
  animation: fab-pulse 2.4s ease-out infinite;
}

@keyframes fab-pulse {
  0%   { transform: scale(1);    opacity: 0.55; }
  70%  { transform: scale(1.22); opacity: 0; }
  100% { transform: scale(1.22); opacity: 0; }
}
@keyframes fab-enter {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

@media (max-width: 540px) {
  .contact-fab-dock { right: 16px; bottom: 16px; }
  .contact-fab { padding: 13px 20px 13px 17px; }
  .scroll-top  { bottom: 78px; right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-fab-dock { transition: none; }
  .contact-fab { animation: none; }
  .contact-fab__pulse { animation: none; opacity: 0; }
  .contact-fab:hover,
  .contact-fab:focus-visible { transform: none; }
}
