/* Classic inner pages — Shimadzu / Clinilab / Ant Teknik inspired */

.sz-section--blue {
  background: linear-gradient(135deg, var(--brand-900, #04506c) 0%, var(--brand-700, #006A90) 100%);
  color: #fff;
}

.sz-page-head {
  padding: 28px 0 24px;
  background: #fff;
  border-bottom: 1px solid #e8eef5;
}

.sz-page-head--compact { padding-top: 20px; }

.sz-page-head__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: #64748b;
  margin-bottom: 14px;
}

.sz-page-head__crumb a:hover { color: var(--brand-700, #006A90); }

.sz-page-head__tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(0, 90, 124, 0.08);
  color: var(--brand-700, #006A90);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sz-page-head__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--brand-900, #04506c);
  line-height: 1.2;
  margin-bottom: 10px;
}

.sz-page-head__sub {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 18px;
}

.sz-page-head__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sz-page-banner {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  background: #f1f5f9;
}

.sz-page-banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.sz-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-600, #006A90);
  margin-bottom: 10px;
}

.sz-label--light { color: rgba(255, 255, 255, 0.85); }

.sz-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.sz-split__text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--brand-900, #04506c);
  margin-bottom: 16px;
}

.sz-split__text p {
  color: #475569;
  line-height: 1.85;
  margin-bottom: 14px;
}

.sz-split__media {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 40px rgba(4, 80, 108, 0.08);
}

.sz-split__media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Tabs */
.sz-tabs-wrap {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: var(--header-h, 72px);
  z-index: 50;
}

.sz-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}

.sz-tabs::-webkit-scrollbar { display: none; }

.sz-tabs a {
  flex-shrink: 0;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
}

.sz-tabs a:hover,
.sz-tabs a.active {
  background: rgba(0, 90, 124, 0.08);
  color: var(--brand-800, #005a7c);
}

/* Hub grid — Clinilab style */
.sz-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sz-hub-card {
  display: block;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.sz-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(4, 80, 108, 0.12);
}

.sz-hub-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f8fafc;
}

.sz-hub-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.sz-hub-card:hover .sz-hub-card__img img { transform: scale(1.04); }

.sz-hub-card__body {
  padding: 18px 20px 22px;
}

.sz-hub-card__body h3 {
  font-size: 1.05rem;
  color: var(--brand-900, #04506c);
  margin-bottom: 8px;
}

.sz-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-600, #006A90);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* App grid */
.sz-app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sz-app-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}

.sz-app-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.sz-app-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sz-app-card__body { padding: 20px; }

.sz-app-card__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-500, #7CC9BF);
  margin-bottom: 8px;
}

.sz-app-card h3 {
  font-size: 1.05rem;
  color: var(--brand-900, #04506c);
  margin-bottom: 8px;
}

.sz-app-card p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

/* Capabilities */
.sz-cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sz-cap-item {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.sz-cap-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 90, 124, 0.08);
  color: var(--brand-700, #006A90);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.sz-cap-item h4 {
  font-size: 1rem;
  color: var(--brand-900, #04506c);
  margin-bottom: 6px;
}

.sz-cap-item p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
}

/* Process */
.sz-process h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 24px;
}

.sz-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  counter-reset: step;
}

.sz-steps li {
  counter-increment: step;
  padding: 18px 18px 18px 56px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  position: relative;
}

.sz-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

html[dir="rtl"] .sz-steps li { padding: 18px 56px 18px 18px; }
html[dir="rtl"] .sz-steps li::before { left: auto; right: 16px; }

.sz-steps strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.sz-steps span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
}

/* Equip list — text cards */
.sz-equip-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sz-equip-item {
  padding: 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  border-right: 4px solid var(--brand-600, #006A90);
}

html[dir="rtl"] .sz-equip-item {
  border-right: none;
  border-left: 4px solid var(--brand-600, #006A90);
}

.sz-equip-item h4 {
  font-size: 0.95rem;
  color: var(--brand-900, #04506c);
  margin-bottom: 6px;
}

.sz-equip-item p {
  font-size: 0.85rem;
  color: #64748b;
}

/* Related */
.sz-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sz-related-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-weight: 600;
  color: var(--brand-800, #005a7c);
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}

.sz-related-card:hover {
  background: rgba(0, 90, 124, 0.05);
  border-color: var(--brand-400, #7CC9BF);
}

/* CTA */
.sz-cta {
  background: linear-gradient(135deg, var(--brand-900, #04506c), var(--brand-700, #006A90));
  padding: 64px 0;
}

.sz-cta__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.sz-cta h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 12px;
}

.sz-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

/* Product cards on landing */
.sz-product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sz-product-cards .lp-product-card,
.sz-product-cards .sz-product-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}

.sz-product-cards img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.sz-product-cards .lp-product-card__body,
.sz-product-cards .sz-product-card__body {
  padding: 18px;
}

/* Contact / Support classic */
.sz-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.sz-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sz-contact-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.sz-contact-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 90, 124, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.sz-contact-item__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-600, #006A90);
  margin-bottom: 4px;
}

.sz-contact-item__value {
  color: #334155;
  line-height: 1.5;
}

.sz-contact-item__value a { color: var(--brand-700, #006A90); }

.sz-form {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px;
}

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

.sz-form .form-group { margin-bottom: 16px; }

.sz-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}

.sz-form input,
.sz-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font: inherit;
}

.sz-form textarea { min-height: 120px; resize: vertical; }

/* Services grid */
.sz-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sz-service-card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-align: center;
}

.sz-service-card__icon { font-size: 2rem; margin-bottom: 12px; }

.sz-service-card h3 {
  font-size: 1.05rem;
  color: var(--brand-900, #04506c);
  margin-bottom: 10px;
}

.sz-service-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
}

/* Partners page — classic editorial layout */
.partners-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(520px, 72vh, 760px);
  background-color: #04506c;
  background-image: var(--partners-hero-image);
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.partners-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 80, 108, 0.18) 0%,
    rgba(4, 80, 108, 0.52) 48%,
    rgba(4, 80, 108, 0.88) 100%
  );
}

.partners-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(36px, 5vw, 56px) 0 clamp(40px, 6vw, 64px);
}

.partners-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.82);
}

.partners-hero__crumb a {
  color: rgba(255, 255, 255, 0.92);
}

.partners-hero__crumb a:hover {
  color: #fff;
}

.partners-hero__tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partners-hero__title {
  margin: 0 0 12px;
  max-width: 820px;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.partners-hero__subtitle {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.7;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.partners-hero__intro {
  max-width: 820px;
  margin: 0 0 24px;
  padding: 16px 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(4, 80, 108, 0.55);
  font-size: clamp(0.98rem, 1.6vw, 1.0625rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.96);
}

.partners-hero__visual {
  margin-bottom: 20px;
}

.partners-hero__visual .partners-hero-frame {
  margin-bottom: 0;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.partners-hero__visual .partners-hero-frame__label {
  color: #ffb380;
}

.partners-hero__visual .partner-visual-placeholder {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.partners-hero__visual .partner-visual-placeholder__dims {
  color: rgba(255, 255, 255, 0.72);
}

.partners-hero__visual .partner-visual-placeholder__label {
  color: rgba(255, 255, 255, 0.82);
}

.partners-hero__pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.partners-hero__pillar {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 3px solid #ffb380;
  background: rgba(4, 80, 108, 0.62);
  backdrop-filter: blur(4px);
}

.partners-hero__pillar-title {
  margin: 0 0 6px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
}

.partners-hero__pillar-desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.partners-hero-frame {
  position: relative;
  padding: clamp(16px, 2.5vw, 22px);
  border: 1px solid #cbd5e1;
  background: #fafbfc;
}

.partners-hero-frame__label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--partner-accent, #B1CC83);
}

.partners-hub {
  background: #fff;
  padding-top: clamp(36px, 5vw, 52px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.partners-intro {
  display: none;
}

.partners-pillars {
  display: none;
}

.partners-pillar {
  padding: 22px 20px;
  border: 1px solid #e2e8f0;
  border-top: 3px solid var(--brand-700, #006A90);
  background: #fff;
}

.partners-pillar__title {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-900, #04506c);
}

.partners-pillar__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: #64748b;
}

.partner-section {
  margin-bottom: clamp(40px, 5vw, 56px);
  scroll-margin-top: calc(var(--header-total-h, 120px) + 20px);
}

.partner-section__frame {
  border: 1px solid #cbd5e1;
  background: #fff;
  padding: clamp(22px, 3.5vw, 36px);
}

.partner-section__layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.partner-section--reverse .partner-section__visual {
  order: 2;
}

.partner-section--reverse .partner-section__content {
  order: 1;
}

.partner-visual-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.partner-visual-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  border: 2px dashed rgba(0, 90, 124, 0.14);
  background: #fff;
  text-align: center;
}

.partner-visual-placeholder--hero {
  min-height: clamp(160px, 28vw, 280px);
}

.partner-visual-placeholder__dims {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
  color: rgba(0, 90, 124, 0.38);
}

.partner-visual-placeholder__label {
  margin-top: 8px;
  max-width: 90%;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(0, 90, 124, 0.55);
}

.partner-section__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--partner-accent, #B1CC83);
}

.partner-section__title {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--brand-900, #04506c) !important;
  -webkit-text-fill-color: currentColor;
}

.partner-section__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 16px;
}

.partner-section__since {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(0, 90, 124, 0.06);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-900, #04506c);
}

.partner-section__tagline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--partner-accent, #B1CC83);
}

.partner-section__rule {
  width: 56px;
  height: 2px;
  margin-bottom: 22px;
  background: var(--partner-accent, #B1CC83);
}

.partner-section__rule::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 4px;
  background: rgba(0, 90, 124, 0.15);
}

.partner-section__text {
  margin: 0 0 16px;
  font-size: 1.0125rem;
  line-height: 2;
  color: var(--brand-800, #005a7c);
}

.partner-section__highlights {
  margin: 20px 0 0;
  padding: 0 1.25rem 0 0;
  list-style: none;
}

html[dir="ltr"] .partner-section__highlights {
  padding: 0 0 0 1.25rem;
}

.partner-section__highlights li {
  position: relative;
  padding: 0 0 10px 0;
  font-size: 0.9625rem;
  line-height: 1.75;
  color: var(--brand-800, #005a7c);
}

.partner-section__highlights li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-inline-end: 10px;
  border-radius: 50%;
  background: var(--partner-accent, #B1CC83);
  vertical-align: middle;
}

.partners-global__frame {
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid #cbd5e1;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  text-align: center;
}

.partners-global__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-700, #006A90);
}

.partners-global__title {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--brand-900, #04506c) !important;
  -webkit-text-fill-color: currentColor;
}

.partners-global__intro {
  max-width: 720px;
  margin: 0 auto 24px;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--brand-800, #005a7c);
}

.partners-global__names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.partners-global__chip {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-900, #04506c);
}

.partners-global__note {
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #64748b;
}

/* Legacy partner cards (hub widgets) */
.sz-partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.sz-partner-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  align-items: center;
}

.sz-partner-card__logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 8px;
  overflow: hidden;
}

.sz-partner-card__logo img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

.sz-partner-card h3 {
  font-size: 1.1rem;
  color: var(--brand-900, #04506c);
  margin-bottom: 8px;
}

.sz-partner-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .partners-hero__pillars {
    grid-template-columns: 1fr;
  }

  .partners-pillars {
    grid-template-columns: 1fr;
  }

  .partner-section__layout {
    grid-template-columns: 1fr;
  }

  .partner-section--reverse .partner-section__visual,
  .partner-section--reverse .partner-section__content {
    order: unset;
  }
}

@media (max-width: 1024px) {
  .sz-split,
  .sz-contact-grid { grid-template-columns: 1fr; }
  .sz-hub-grid,
  .sz-app-grid,
  .sz-equip-list,
  .sz-product-cards,
  .sz-service-grid { grid-template-columns: repeat(2, 1fr); }
  .sz-cap-grid,
  .sz-steps { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .sz-hub-grid,
  .sz-app-grid,
  .sz-equip-list,
  .sz-product-cards,
  .sz-service-grid,
  .sz-related,
  .sz-partners-grid { grid-template-columns: 1fr; }
  .sz-partner-card { grid-template-columns: 1fr; }
  .sz-form .form-row { grid-template-columns: 1fr; }
  .sz-page-banner img { height: 240px; }
}

/* —— Company hub — editorial layout (matches homepage overview) —— */

.company-hub {
  padding: 0;
  background: #fff;
}

.company-hub__sections {
  display: flex;
  flex-direction: column;
}

.company-section {
  scroll-margin-top: calc(var(--header-total-h, 120px) + 24px);
  padding: clamp(40px, 5vw, 56px) 0;
  border-bottom: 1px solid #e2e8f0;
}

.company-section:last-child {
  border-bottom: none;
}

.company-section__frame {
  background: #fff;
}

.company-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.company-section--reverse .company-section__content {
  order: 2;
}

.company-section--reverse .company-section__figure {
  order: 1;
}

.company-section__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.company-section__icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #f5f5f5;
  color: var(--step-color, #006A90);
}

.company-section__icon svg {
  width: 28px;
  height: 28px;
}

.company-section__eyebrow {
  margin: 0 0 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--section-accent, #c0392b);
}

.company-section__title {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--brand-900, #04506c) !important;
  -webkit-text-fill-color: currentColor;
  background: none;
  letter-spacing: -0.01em;
}

.company-section__rule {
  width: 56px;
  height: 2px;
  background: var(--section-accent, #c0392b);
}

.company-section__rule::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 4px;
  background: rgba(0, 90, 124, 0.15);
}

.company-section__body {
  max-width: 56ch;
}

.company-section__text {
  margin: 0 0 18px;
  font-size: 1.0125rem;
  line-height: 2;
  color: var(--brand-800, #005a7c);
}

.company-section__text--lead {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--brand-900, #04506c);
}

.company-section__list {
  margin: 0;
  padding: 0 1.25rem 0 0;
  color: var(--brand-800, #005a7c);
  font-size: 1rem;
  line-height: 1.9;
}

html[dir="ltr"] .company-section__list {
  padding: 0 0 0 1.25rem;
}

.company-section__list li + li {
  margin-top: 12px;
}

.company-section__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 8px;
  padding: 20px 0;
  border-block: 1px solid rgba(0, 90, 124, 0.1);
}

.company-section__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 16px;
  text-align: center;
}

.company-section__stat:not(:last-child) {
  border-inline-end: 1px solid rgba(0, 90, 124, 0.1);
}

.company-section__stat-num {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-900, #04506c);
  line-height: 1.2;
}

.company-section__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #475569;
  line-height: 1.4;
}

.company-section__block + .company-section__block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 90, 124, 0.08);
}

.company-section__block-title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-900, #04506c);
}

.company-section__subhead {
  margin: 28px 0 14px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-900, #04506c);
}

.company-section__fields {
  margin: 0;
}

.company-section__field {
  display: grid;
  grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 90, 124, 0.08);
}

.company-section__field dt {
  font-weight: 700;
  color: var(--brand-900, #04506c);
}

.company-section__field dd {
  margin: 0;
  color: var(--brand-800, #005a7c);
  line-height: 1.65;
}

.company-section__figure {
  margin: 0;
}

.company-section__figure-inner img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

.company-section__caption {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 90, 124, 0.1);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brand-700, #006A90);
  text-align: center;
}

.page-company-hub .sz-page-head__sub {
  color: #475569;
  font-size: 1.05rem;
}

@media (max-width: 1024px) {
  .company-section__layout {
    grid-template-columns: 1fr;
  }

  .company-section--reverse .company-section__content,
  .company-section--reverse .company-section__figure {
    order: unset;
  }

  .company-section__body {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .company-section__head {
    gap: 12px;
  }

  .company-section__icon {
    width: 48px;
    height: 48px;
  }

  .company-section__icon svg {
    width: 24px;
    height: 24px;
  }

  .company-section__stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .company-section__stat {
    padding: 0;
  }

  .company-section__stat:not(:last-child) {
    border-inline-end: none;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 90, 124, 0.08);
  }

  .company-section__field {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* —— Industry landing pages (long-form classic) —— */

.industry-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(480px, 68vh, 720px);
  background-color: #04506c;
  background-image: var(--industry-hero-image);
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.industry-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 80, 108, 0.12) 0%,
    rgba(4, 80, 108, 0.38) 45%,
    rgba(4, 80, 108, 0.78) 100%
  );
}

.industry-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(36px, 5vw, 56px) 0 clamp(40px, 6vw, 64px);
}

.industry-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.78);
}

.industry-hero__crumb a {
  color: rgba(255, 255, 255, 0.88);
}

.industry-hero__crumb a:hover {
  color: #fff;
}

.industry-hero__tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industry-hero__title {
  margin: 0 0 14px;
  max-width: 820px;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff !important;
  -webkit-text-fill-color: currentColor;
}

.industry-hero__lead {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
}

.industry-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-hero .btn--outline-light {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff !important;
  background: transparent;
}

.industry-hero .btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff !important;
}

.industry-hero .btn--primary {
  border-color: var(--section-accent, #B1CC83);
  background: var(--section-accent, #B1CC83);
}

.industry-landing {
  background: #fff;
  padding-bottom: 8px;
}

.industry-section--intro {
  padding-top: clamp(44px, 5vw, 60px);
}

.industry-section__layout--solo {
  grid-template-columns: 1fr;
}

.industry-section__layout--solo .industry-section__body {
  max-width: none;
}

.industry-section {
  padding: clamp(36px, 5vw, 52px) 0;
  border-bottom: 1px solid #e2e8f0;
  scroll-margin-top: calc(var(--header-total-h, 120px) + 20px);
}

.industry-section:last-child {
  border-bottom: none;
}

.industry-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.82fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.industry-section--reverse .industry-section__content {
  order: 2;
}

.industry-section--reverse .industry-section__figure {
  order: 1;
}

.industry-section__eyebrow {
  margin: 0 0 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--section-accent, #B1CC83);
}

.industry-section__title {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--brand-900, #04506c) !important;
  -webkit-text-fill-color: currentColor;
}

.industry-section__rule {
  width: 56px;
  height: 2px;
  margin-bottom: 22px;
  background: var(--section-accent, #B1CC83);
}

.industry-section__rule::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 4px;
  background: rgba(0, 90, 124, 0.15);
}

.industry-section__body {
  max-width: none;
}

.industry-section__text {
  margin: 0 0 16px;
  font-size: 1.0125rem;
  line-height: 2;
  color: var(--brand-800, #005a7c);
}

.industry-section__list {
  margin: 0;
  padding: 0 1.25rem 0 0;
  color: var(--brand-800, #005a7c);
  font-size: 1rem;
  line-height: 1.9;
}

html[dir="ltr"] .industry-section__list {
  padding: 0 0 0 1.25rem;
}

.industry-section__list li + li {
  margin-top: 10px;
}

.industry-section__block + .industry-section__block {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 90, 124, 0.08);
}

.industry-section__block-title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-900, #04506c);
}

.industry-section__figure {
  margin: 0;
  position: sticky;
  top: calc(var(--header-total-h, 120px) + 24px);
}

.industry-section__figure-inner img,
.industry-section__figure-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
}

.industry-section__figure-inner img {
  object-fit: contain;
  object-position: center;
  background: #f4f5ef;
}

.industry-section__figure-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(0, 90, 124, 0.16);
  background: #f4f7fb;
}

.industry-section__figure-dims {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
  color: rgba(0, 90, 124, 0.42);
}

.industry-section__caption {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 90, 124, 0.1);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brand-700, #006A90);
  text-align: center;
}

@media (max-width: 1024px) {
  .industry-section__layout {
    grid-template-columns: 1fr;
  }

  .industry-section--reverse .industry-section__content,
  .industry-section--reverse .industry-section__figure {
    order: unset;
  }

  .industry-section__figure {
    position: static;
  }
}

@media (max-width: 640px) {
  .industry-section__title {
    font-size: 1.35rem;
  }

  .industry-section__text {
    font-size: 0.975rem;
    line-height: 1.85;
  }
}

/* —— Technical Support page — distinctive engineering character —— */
.page-support {
  --support-accent: #1a7a6e;
  --support-accent-light: #5eead4;
}

.support-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(520px, 72vh, 760px);
  background-color: #0a2e28;
  background-image: var(--support-hero-image);
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
}

.support-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 46, 40, 0.25) 0%,
    rgba(4, 80, 108, 0.55) 50%,
    rgba(10, 46, 40, 0.9) 100%
  );
}

.support-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(36px, 5vw, 56px) 0 clamp(40px, 6vw, 64px);
}

.support-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.82);
}

.support-hero__crumb a {
  color: rgba(255, 255, 255, 0.92);
}

.support-hero__crumb a:hover {
  color: #fff;
}

.support-hero__tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 2px;
  border: 1px solid rgba(94, 234, 212, 0.35);
  background: rgba(26, 122, 110, 0.35);
  color: #ecfdf5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.support-hero__title {
  margin: 0 0 12px;
  max-width: 820px;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.support-hero__subtitle {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.7;
  color: var(--support-accent-light, #5eead4);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.support-hero__intro {
  max-width: 820px;
  margin: 0 0 24px;
  padding: 16px 18px;
  border-radius: 2px;
  border-left: 3px solid var(--support-accent, #1a7a6e);
  background: rgba(10, 46, 40, 0.65);
  font-size: clamp(0.98rem, 1.6vw, 1.0625rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.96);
}

html[dir="rtl"] .support-hero__intro {
  border-left: none;
  border-right: 3px solid var(--support-accent, #1a7a6e);
}

.support-hero__visual {
  margin-bottom: 20px;
}

.support-hero-frame {
  padding: clamp(16px, 2.5vw, 22px);
  border: 1px solid rgba(94, 234, 212, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.support-hero-frame__label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--support-accent-light, #5eead4);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.support-hero__pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.support-hero__pillar {
  padding: 14px 16px;
  border: 1px solid rgba(94, 234, 212, 0.16);
  border-top: 3px solid var(--support-accent, #1a7a6e);
  background: rgba(10, 46, 40, 0.62);
}

.support-hero__pillar-title {
  margin: 0 0 6px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
}

.support-hero__pillar-desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.support-visual-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  border: 2px dashed rgba(26, 122, 110, 0.22);
  background: #f0fdfa;
  text-align: center;
}

.support-hero .support-visual-placeholder {
  border-color: rgba(94, 234, 212, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.support-hero .support-visual-placeholder__dims {
  color: rgba(255, 255, 255, 0.7);
}

.support-hero .support-visual-placeholder__label {
  color: rgba(255, 255, 255, 0.85);
}

.support-visual-placeholder--hero {
  min-height: clamp(140px, 24vw, 260px);
}

.support-visual-placeholder__dims {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: rgba(26, 122, 110, 0.5);
}

.support-visual-placeholder__label {
  margin-top: 8px;
  max-width: 90%;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(0, 90, 124, 0.55);
}

.support-hub {
  background: #f8fafb;
  padding-top: clamp(40px, 5vw, 56px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.support-block__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--support-accent, #1a7a6e);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.support-block__title {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--brand-900, #04506c) !important;
  -webkit-text-fill-color: currentColor;
}

.support-block__rule {
  width: 56px;
  height: 2px;
  margin-bottom: 22px;
  background: var(--support-accent, #1a7a6e);
}

.support-block__text {
  margin: 0 0 16px;
  font-size: 1.0125rem;
  line-height: 2;
  color: var(--brand-800, #005a7c);
}

.support-block__text--lead {
  font-weight: 600;
  color: var(--brand-900, #04506c);
}

.support-block__list {
  margin: 0;
  padding: 0 1.25rem 0 0;
  list-style: none;
  color: var(--brand-800, #005a7c);
  font-size: 0.9625rem;
  line-height: 1.75;
}

html[dir="ltr"] .support-block__list {
  padding: 0 0 0 1.25rem;
}

.support-block__list li {
  position: relative;
  padding-bottom: 8px;
}

.support-block__list li::before {
  content: '▸';
  margin-inline-end: 8px;
  color: var(--support-accent, #1a7a6e);
  font-size: 0.75rem;
}

.support-block__list--compact li {
  padding-bottom: 6px;
  font-size: 0.9rem;
}

.support-promise {
  margin-bottom: clamp(44px, 6vw, 64px);
}

.support-promise__frame,
.support-process__frame,
.support-coverage__frame {
  padding: clamp(24px, 3.5vw, 36px);
  border: 1px solid #cbd5e1;
  background: #fff;
}

.support-promise__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.75fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.support-catalog-head {
  margin-bottom: clamp(28px, 4vw, 40px);
  text-align: center;
}

.support-catalog-head .support-block__rule {
  margin-inline: auto;
}

.support-catalog {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: clamp(44px, 6vw, 64px);
}

.support-service {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 0 20px;
}

.support-service__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 28px;
}

.support-service__num {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--support-accent, #1a7a6e);
  border-radius: 2px;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--support-accent, #1a7a6e);
}

.support-service__line {
  flex: 1;
  width: 2px;
  min-height: 24px;
  margin-top: 8px;
  background: linear-gradient(180deg, var(--support-accent, #1a7a6e), rgba(26, 122, 110, 0.15));
}

.support-service:last-child .support-service__line {
  display: none;
}

.support-service__frame {
  margin-bottom: 28px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid #e2e8f0;
  background: #fff;
}

.support-service__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}

.support-service--reverse .support-service__visual {
  order: -1;
}

.support-service__title {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-900, #04506c);
}

.support-service__desc {
  margin: 0 0 14px;
  font-size: 0.9625rem;
  line-height: 1.85;
  color: var(--brand-800, #005a7c);
}

.support-process {
  margin-bottom: clamp(44px, 6vw, 64px);
}

.support-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.support-process__step {
  padding: 20px 16px;
  border: 1px solid #e2e8f0;
  border-top: 3px solid var(--support-accent, #1a7a6e);
  background: #f8fafb;
}

.support-process__step-num {
  display: block;
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--support-accent, #1a7a6e);
}

.support-process__step-title {
  margin: 0 0 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--brand-900, #04506c);
}

.support-process__step-desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #64748b;
}

.support-coverage__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.support-coverage__sector {
  padding: 20px;
  border: 1px solid #e2e8f0;
  background: #f8fafb;
}

.support-coverage__sector-name {
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--support-accent, #1a7a6e);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-900, #04506c);
}

.support-coverage__sector-list {
  margin: 0;
  padding: 0 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--brand-800, #005a7c);
}

html[dir="ltr"] .support-coverage__sector-list {
  padding: 0 0 0 1rem;
}

.sz-cta--support .support-cta__emails {
  margin: 12px 0;
  font-size: 1.05rem;
}

.sz-cta--support .support-cta__emails a {
  color: #fff;
  text-decoration: underline;
}

.sz-cta--support .support-cta__note {
  margin-bottom: 20px;
  font-size: 0.875rem;
  opacity: 0.85;
}

@media (max-width: 1024px) {
  .support-hero__pillars {
    grid-template-columns: 1fr;
  }

  .support-promise__layout,
  .support-service__layout {
    grid-template-columns: 1fr;
  }

  .support-service--reverse .support-service__visual {
    order: unset;
  }

  .support-process__steps,
  .support-coverage__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .support-service {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 0 12px;
  }

  .support-service__num {
    width: 40px;
    height: 40px;
    font-size: 0.75rem;
  }

  .support-process__steps,
  .support-coverage__grid {
    grid-template-columns: 1fr;
  }
}

/* —— Product landing pages — catalog classic style —— */
.page-product-landing .product-hero .btn--primary {
  border-color: var(--section-accent, #006A90);
  background: var(--section-accent, #006A90);
}

.product-landing {
  background: #f8fafb;
  padding: clamp(40px, 5vw, 56px) 0 clamp(48px, 6vw, 72px);
}

.product-section {
  position: relative;
  margin-bottom: clamp(32px, 4vw, 48px);
  scroll-margin-top: calc(var(--header-total-h, 120px) + 20px);
}

.product-section__index {
  position: absolute;
  top: 18px;
  inset-inline-end: 20px;
  z-index: 2;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  line-height: 1;
  color: rgba(0, 90, 124, 0.06);
  pointer-events: none;
}

.product-section__frame {
  border: 1px solid #cbd5e1;
  background: #fff;
  padding: clamp(22px, 3.5vw, 36px);
}

.product-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.82fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.product-section__layout--solo {
  grid-template-columns: 1fr;
}

.product-section--reverse .product-section__content {
  order: 2;
}

.product-section--reverse .product-section__figure {
  order: 1;
}

.product-section__eyebrow {
  margin: 0 0 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--section-accent, #006A90);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.product-section__title {
  margin: 0 0 16px;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--brand-900, #04506c) !important;
  -webkit-text-fill-color: currentColor;
}

.product-section__rule {
  width: 56px;
  height: 2px;
  margin-bottom: 22px;
  background: var(--section-accent, #006A90);
}

.product-section__rule::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 4px;
  background: rgba(0, 90, 124, 0.12);
}

.product-section__text {
  margin: 0 0 16px;
  font-size: 1.0125rem;
  line-height: 2;
  color: var(--brand-800, #005a7c);
}

.product-section__list {
  margin: 0;
  padding: 0 1.25rem 0 0;
  color: var(--brand-800, #005a7c);
  font-size: 1rem;
  line-height: 1.9;
}

html[dir="ltr"] .product-section__list {
  padding: 0 0 0 1.25rem;
}

.product-section__list li + li {
  margin-top: 10px;
}

.product-section__block + .product-section__block {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 90, 124, 0.08);
}

.product-section__block-title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-900, #04506c);
}

.product-equip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.product-equip-chip {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(0, 90, 124, 0.12);
  border-radius: 2px;
  background: #f8fafc;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-800, #005a7c);
}

.product-section__figure {
  margin: 0;
  position: sticky;
  top: calc(var(--header-total-h, 120px) + 24px);
}

.product-section__figure-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px;
  border: 2px dashed rgba(0, 90, 124, 0.16);
  background: #f4f7fb;
  border-radius: 4px;
}

.product-section__figure-inner {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.product-section__figure-inner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f4f5ef;
  border-radius: 4px;
}

.product-section__figure-caption {
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brand-700, #006A90);
  text-align: center;
}

.product-section__figure-dims {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: rgba(0, 90, 124, 0.38);
}

.product-section__figure-label {
  margin-top: 10px;
  max-width: 92%;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 600;
  color: rgba(0, 90, 124, 0.55);
}

.product-section--intro {
  padding-top: 0;
}

@media (max-width: 1024px) {
  .product-section__layout {
    grid-template-columns: 1fr;
  }

  .product-section--reverse .product-section__content,
  .product-section--reverse .product-section__figure {
    order: unset;
  }

  .product-section__figure {
    position: static;
  }
}

/* —— Products hub — full catalog page —— */
.page-products-hub .products-catalog {
  background: #f8fafb;
}

.products-hub-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(520px, 68vh, 720px);
  background-color: #04506c;
  background-image: var(--products-hub-hero-image);
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
}

.products-hub-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 80, 108, 0.16) 0%,
    rgba(4, 80, 108, 0.5) 46%,
    rgba(4, 80, 108, 0.9) 100%
  );
}

.products-hub-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(36px, 5vw, 56px) 0 clamp(40px, 6vw, 64px);
}

.products-hub-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.82);
}

.products-hub-hero__crumb a {
  color: rgba(255, 255, 255, 0.92);
}

.products-hub-hero__crumb a:hover {
  color: #fff;
}

.products-hub-hero__tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-hub-hero__title {
  margin: 0 0 12px;
  max-width: 820px;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.products-hub-hero__subtitle {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.7;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.products-hub-hero__intro {
  max-width: 820px;
  margin: 0 0 24px;
  padding: 16px 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(4, 80, 108, 0.55);
  font-size: clamp(0.98rem, 1.6vw, 1.0625rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.96);
}

.products-hub-hero__visual {
  margin-bottom: 20px;
}

.products-hub-hero-frame {
  position: relative;
  padding: clamp(16px, 2.5vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.products-hub-hero-frame__label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7ec8e3;
}

.products-hub-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  border: 2px dashed rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}

.products-hub-placeholder--hero {
  min-height: clamp(140px, 24vw, 240px);
}

.products-hub-placeholder__dims {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: rgba(255, 255, 255, 0.72);
}

.products-hub-placeholder__label {
  margin-top: 8px;
  max-width: 90%;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.products-hub-hero__pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.products-hub-hero__pillar {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 3px solid #7ec8e3;
  background: rgba(4, 80, 108, 0.62);
  backdrop-filter: blur(4px);
}

.products-hub-hero__pillar-title {
  margin: 0 0 6px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
}

.products-hub-hero__pillar-desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.products-catalog {
  padding-top: clamp(40px, 5vw, 56px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.products-catalog-head {
  margin-bottom: clamp(32px, 4vw, 48px);
  text-align: center;
}

.products-catalog__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-700, #006A90);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.products-catalog__title {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--brand-900, #04506c) !important;
  -webkit-text-fill-color: currentColor;
}

.products-catalog__rule {
  width: 56px;
  height: 2px;
  margin-bottom: 18px;
  background: var(--brand-700, #006A90);
}

.products-catalog-head .products-catalog__rule {
  margin-inline: auto;
}

.products-catalog__rule::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 4px;
  background: rgba(0, 90, 124, 0.12);
}

.products-catalog__lead {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.0125rem;
  line-height: 1.9;
  color: var(--brand-800, #005a7c);
}

.products-catalog-item {
  position: relative;
  margin-bottom: clamp(36px, 4.5vw, 52px);
  scroll-margin-top: calc(var(--header-total-h, 120px) + 20px);
}

.products-catalog-item__num {
  position: absolute;
  top: 14px;
  inset-inline-end: 18px;
  z-index: 2;
  font-size: 2.75rem;
  font-weight: 800;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  line-height: 1;
  color: rgba(0, 90, 124, 0.06);
  pointer-events: none;
}

.products-catalog-item__frame {
  border: 1px solid #cbd5e1;
  border-top: 3px solid var(--cat-accent, #006A90);
  background: #fff;
  padding: clamp(22px, 3.5vw, 36px);
}

.products-catalog-item__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.82fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.products-catalog-item--reverse .products-catalog-item__content {
  order: 2;
}

.products-catalog-item--reverse .products-catalog-item__figure {
  order: 1;
}

.products-catalog-item__brand {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border: 1px solid rgba(0, 90, 124, 0.1);
  border-radius: 2px;
  background: #f8fafc;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cat-accent, #006A90);
}

.products-catalog-item__title {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--brand-900, #04506c) !important;
  -webkit-text-fill-color: currentColor;
}

.products-catalog-item__lead {
  margin: 0 0 14px;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.75;
  color: var(--brand-800, #005a7c);
}

.products-catalog-item__text {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.95;
  color: var(--brand-800, #005a7c);
}

.products-catalog-item__highlights {
  margin: 0 0 18px;
  padding: 0 1.25rem 0 0;
  color: var(--brand-800, #005a7c);
  font-size: 0.975rem;
  line-height: 1.85;
}

html[dir="ltr"] .products-catalog-item__highlights {
  padding: 0 0 0 1.25rem;
}

.products-catalog-item__highlights li {
  position: relative;
  padding-inline-start: 4px;
}

.products-catalog-item__highlights li::marker {
  color: var(--cat-accent, #006A90);
}

.products-catalog-item__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 18px;
  border: 1px solid var(--cat-accent, #006A90);
  border-radius: 2px;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--cat-accent, #006A90);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.products-catalog-item__link:hover {
  background: var(--cat-accent, #006A90);
  color: #fff;
}

.products-catalog-item__figure {
  margin: 0;
  position: sticky;
  top: calc(var(--header-total-h, 120px) + 24px);
}

.products-catalog-item__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px;
  border: 2px dashed rgba(0, 90, 124, 0.14);
  background: #f4f7fb;
  text-align: center;
}

.products-catalog-item__placeholder-dims {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: rgba(0, 90, 124, 0.38);
}

.products-catalog-item__placeholder-label {
  margin-top: 10px;
  max-width: 92%;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 600;
  color: rgba(0, 90, 124, 0.55);
}

.products-catalog-brands {
  margin-top: clamp(12px, 2vw, 24px);
}

.products-catalog-brands__frame {
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid #cbd5e1;
  background: #fff;
  text-align: center;
}

.products-catalog-brands__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.products-catalog-brands__chip {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid rgba(0, 90, 124, 0.12);
  border-radius: 2px;
  background: #f8fafc;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-900, #04506c);
}

/* Ensure hub content is visible immediately (no scroll-reveal blank page) */
.page-products-hub .products-hub-hero .visible,
.page-products-hub .products-catalog .reveal,
.page-products-hub .products-catalog .visible,
.page-products-hub #dynamicProducts .reveal,
.page-products-hub #dynamicProducts .visible,
.page-products-hub #productsHubCta.visible,
.page-products-hub .products-hub-tiles .industries-mega__card {
  opacity: 1;
  transform: none;
}

.products-hub-tiles {
  padding-top: clamp(40px, 5vw, 56px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.industries-mega--page {
  padding: 0;
}

.industries-mega--page .industries-mega__head {
  margin-bottom: clamp(24px, 4vw, 36px);
}

.industries-mega--page .industries-mega__title {
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
}

.industries-mega--page .industries-mega__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  padding: 0;
  overflow: visible;
}

.industries-mega--page.industries-mega--products .industries-mega__media {
  padding: 16%;
  border-radius: 18px 18px 0 0;
}

.industries-mega--page.industries-mega--products .industries-mega__bar {
  min-height: 58px;
  border-radius: 0 0 18px 18px;
}

.industries-mega--page.industries-mega--products .industries-mega__bar span {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
}

@media (max-width: 768px) {
  .industries-mega--page .industries-mega__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .industries-mega--page .industries-mega__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .products-hub-hero__pillars {
    grid-template-columns: 1fr;
  }

  .products-catalog-item__layout {
    grid-template-columns: 1fr;
  }

  .products-catalog-item--reverse .products-catalog-item__content,
  .products-catalog-item--reverse .products-catalog-item__figure {
    order: unset;
  }

  .products-catalog-item__figure {
    position: static;
  }
}

/* —— Contact page — classic hub layout —— */
.contact-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(520px, 68vh, 720px);
  background-color: #04506c;
  background-image: var(--contact-hero-image);
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 80, 108, 0.16) 0%,
    rgba(4, 80, 108, 0.5) 46%,
    rgba(4, 80, 108, 0.9) 100%
  );
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(36px, 5vw, 56px) 0 clamp(40px, 6vw, 64px);
}

.contact-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.82);
}

.contact-hero__crumb a {
  color: rgba(255, 255, 255, 0.92);
}

.contact-hero__crumb a:hover {
  color: #fff;
}

.contact-hero__tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-hero__title {
  margin: 0 0 12px;
  max-width: 820px;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.contact-hero__subtitle {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.7;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.contact-hero__intro {
  max-width: 820px;
  margin: 0 0 24px;
  padding: 16px 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(4, 80, 108, 0.55);
  font-size: clamp(0.98rem, 1.6vw, 1.0625rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.96);
}

.contact-hero__pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
  margin-top: 8px;
}

.contact-hero__pillar {
  padding: 16px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.contact-hero__pillar-title {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.contact-hero__pillar-desc {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.contact-hub {
  background: #f6f8f7;
}

.contact-hub__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.contact-hub__aside,
.contact-form-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 10px 28px -18px rgba(15, 35, 64, 0.18);
}

.contact-hub__eyebrow {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-600, #006A90);
}

.contact-hub__title {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 700;
  color: #0f2940;
  line-height: 1.3;
}

.contact-hub__rule {
  width: 56px;
  height: 3px;
  margin-bottom: 22px;
  border-radius: 2px;
  background: linear-gradient(90deg, #B1CC83, #7CC9BF);
}

.contact-hub__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-hub__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #eef2f6;
}

.contact-hub__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-hub__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: color-mix(in srgb, #006A90 10%, #f0f7f5);
  color: #006A90;
}

.contact-hub__icon svg {
  width: 20px;
  height: 20px;
}

.contact-hub__label {
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.contact-hub__value {
  color: #1e3348;
  line-height: 1.55;
  font-size: 0.95rem;
}

.contact-hub__value a {
  color: #006A90;
  text-decoration: none;
  font-weight: 600;
}

.contact-hub__value a:hover {
  color: #04506c;
  text-decoration: underline;
}

.contact-hub__hours {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
}

.contact-form-panel__head {
  margin-bottom: 8px;
}

.contact-form-panel__lead {
  margin: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #64748b;
}

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

.contact-form-panel .form-group {
  margin-bottom: 16px;
}

.contact-form-panel label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
}

.contact-form-panel input,
.contact-form-panel textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #fbfdfe;
  font: inherit;
  color: #0f2940;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
  outline: none;
  border-color: #7CC9BF;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(124, 201, 191, 0.22);
}

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

.contact-form-panel__submit {
  width: 100%;
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .contact-hero__pillars,
  .contact-hub__grid {
    grid-template-columns: 1fr;
  }
}

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