/* ==========================================================================
   WOGEN ENGINEERING — Home page design layer
   Self-contained CSS (does not depend on the purged Tailwind build).
   Palette is derived from the brand mark: deep blue / orange / teal / amber.
   ========================================================================== */

:root {
  --wg-navy:        #0a2338;
  --wg-navy-800:    #0e3049;
  --wg-blue:        #025b88;
  --wg-blue-600:    #01476b;
  --wg-blue-50:     #e8f2f8;
  --wg-orange:      #e37126;
  --wg-orange-600:  #c85d17;
  --wg-orange-50:   #fdf1e8;
  --wg-teal:        #006764;
  --wg-teal-50:     #e6f1f0;
  --wg-amber:       #f5b324;

  --wg-ink:         #0f1e2b;
  --wg-body:        #47606f;
  --wg-muted:       #6b8394;
  --wg-line:        #e3eaef;
  --wg-surface:     #ffffff;
  --wg-surface-alt: #f5f8fa;

  --wg-header-h: 76px;
  --wg-radius:    14px;
  --wg-radius-lg: 20px;

  --wg-shadow-sm: 0 1px 2px rgba(10, 35, 56, .06), 0 1px 3px rgba(10, 35, 56, .05);
  --wg-shadow-md: 0 4px 14px rgba(10, 35, 56, .07), 0 2px 4px rgba(10, 35, 56, .04);
  --wg-shadow-lg: 0 18px 40px -12px rgba(10, 35, 56, .18), 0 4px 10px rgba(10, 35, 56, .05);

  --wg-ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- base ---------------------------------------------------------- */

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--wg-surface);
  color: var(--wg-body);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: rgba(227, 113, 38, .25); color: var(--wg-ink); }

:where(a, button, input, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--wg-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.wg-skip {
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% -150%;
  z-index: 200;
  background: var(--wg-ink);
  color: #fff;
  padding: .7rem 1.2rem;
  border-radius: 0 0 10px 10px;
  font-size: .875rem;
  font-weight: 600;
  transition: translate .2s var(--wg-ease);
}
.wg-skip:focus { translate: -50% 0; }

.wg-sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- layout helpers ----------------------------------------------- */

.wg-container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 640px)  { .wg-container { padding-inline: 1.75rem; } }
@media (min-width: 1024px) { .wg-container { padding-inline: 2.5rem; } }
@media (min-width: 1440px) { .wg-container { padding-inline: 3.5rem; } }

.wg-section {
  padding-block: 4.5rem;
  scroll-margin-top: calc(var(--wg-header-h) + 8px);
}
@media (min-width: 1024px) { .wg-section { padding-block: 6.5rem; } }

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

.wg-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) {
  .wg-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wg-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .wg-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.75rem; }
  .wg-grid--2 { gap: 2.5rem; }
}

/* ---------- typography ---------------------------------------------------- */

.wg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wg-orange);
}
.wg-eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.wg-section-head { max-width: 46rem; margin-bottom: 3rem; }
.wg-section-head--center { margin-inline: auto; text-align: center; }
.wg-section-head--center .wg-eyebrow::before { display: none; }

.wg-title {
  margin: .9rem 0 0;
  color: var(--wg-ink);
  font-size: clamp(1.85rem, 1.2rem + 2.2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.wg-title em { font-style: normal; color: var(--wg-orange); }

.wg-lede {
  margin: 1rem 0 0;
  font-size: 1.05rem;
  color: var(--wg-muted);
}

.wg-h3 {
  color: var(--wg-ink);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.3;
  margin: 0;
}

/* ---------- buttons ------------------------------------------------------- */

.wg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .8rem 1.4rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s var(--wg-ease), border-color .2s var(--wg-ease),
              color .2s var(--wg-ease), transform .2s var(--wg-ease),
              box-shadow .2s var(--wg-ease);
}
.wg-btn svg { width: 18px; height: 18px; flex: none; }
.wg-btn:active { transform: translateY(1px); }

.wg-btn--primary {
  background: var(--wg-orange);
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(227, 113, 38, .6);
}
.wg-btn--primary:hover { background: var(--wg-orange-600); box-shadow: 0 10px 22px -8px rgba(227, 113, 38, .7); }

.wg-btn--ghost {
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(4px);
}
.wg-btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .14); }

.wg-btn--outline {
  border-color: var(--wg-line);
  background: #fff;
  color: var(--wg-ink);
}
.wg-btn--outline:hover { border-color: var(--wg-orange); color: var(--wg-orange); }

.wg-btn--block { width: 100%; }
.wg-btn--sm { padding: .6rem 1.05rem; font-size: .875rem; }

/* ---------- header -------------------------------------------------------- */

.wg-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--wg-ease), border-color .25s var(--wg-ease),
              background-color .25s var(--wg-ease);
}
@media (max-width: 1023px) {
  .wg-header { background: #fff; }
}
.wg-header.is-scrolled {
  border-bottom-color: var(--wg-line);
  box-shadow: 0 6px 24px -14px rgba(10, 35, 56, .35);
}

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

.wg-brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  flex: none;
}
.wg-brand img {
  width: 42px; height: 42px;
  border-radius: 10px;
}
.wg-brand__name {
  display: block;
  color: var(--wg-ink);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.05;
}
.wg-brand__sub {
  display: block;
  color: var(--wg-muted);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .22em;
  line-height: 1.4;
}

.wg-nav { display: none; }
.wg-header__actions { display: none; }

@media (min-width: 1024px) {
  .wg-nav {
    display: flex;
    align-items: center;
    gap: .35rem;
  }
  .wg-header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

.wg-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .55rem .7rem;
  border: 0;
  background: none;
  color: var(--wg-ink);
  font-family: inherit;
  font-size: .93rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: color .2s var(--wg-ease);
}
.wg-nav-link::after {
  content: "";
  position: absolute;
  left: .7rem; right: .7rem; bottom: .28rem;
  height: 2px;
  border-radius: 2px;
  background: var(--wg-orange);
  scale: 0 1;
  transform-origin: left;
  transition: scale .25s var(--wg-ease);
}
.wg-nav-link:hover { color: var(--wg-orange); }
.wg-nav-link:hover::after,
.wg-nav-link.is-active::after { scale: 1 1; }
.wg-nav-link.is-active { color: var(--wg-orange); }
.wg-nav-link svg { width: 15px; height: 15px; opacity: .55; transition: rotate .25s var(--wg-ease); }

.wg-dd { position: relative; }
.wg-dd__panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  max-width: 22rem;
  padding: .5rem;
  background: #fff;
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius);
  box-shadow: var(--wg-shadow-lg);
  opacity: 0;
  visibility: hidden;
  translate: 0 6px;
  transition: opacity .2s var(--wg-ease), translate .2s var(--wg-ease), visibility .2s;
}
.wg-dd:hover .wg-dd__panel,
.wg-dd:focus-within .wg-dd__panel {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}
.wg-dd:hover .wg-nav-link svg { rotate: 180deg; }
.wg-dd__panel a {
  display: block;
  padding: .55rem .75rem;
  border-radius: 9px;
  color: var(--wg-body);
  font-size: .875rem;
  line-height: 1.45;
  text-decoration: none;
  transition: background-color .15s var(--wg-ease), color .15s var(--wg-ease);
}
.wg-dd__panel a:hover { background: var(--wg-orange-50); color: var(--wg-orange-600); }

.wg-header__mail {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--wg-muted);
  font-size: .85rem;
  text-decoration: none;
  transition: color .2s var(--wg-ease);
}
.wg-header__mail:hover { color: var(--wg-orange); }
.wg-header__mail svg { width: 16px; height: 16px; }

header .wg-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--wg-line);
  border-radius: 10px;
  background: #fff;
  color: var(--wg-ink);
  cursor: pointer;
}
header .wg-menu-btn:hover { color: var(--wg-orange); border-color: var(--wg-orange); }
header .wg-menu-btn svg { width: 22px; height: 22px; }
@media (min-width: 1024px) { header .wg-menu-btn { display: none; } }

/* Transparent over the hero, solid once scrolled. Desktop only — the mobile
   drop-down panel is light-on-dark text and needs the solid background. */
@media (min-width: 1024px) {
  .wg-header:not(.is-scrolled) {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .wg-header:not(.is-scrolled) .wg-brand__name { color: #fff; }
  .wg-header:not(.is-scrolled) .wg-brand__sub  { color: rgba(255, 255, 255, .62); }
  .wg-header:not(.is-scrolled) .wg-nav-link    { color: rgba(255, 255, 255, .9); }
  .wg-header:not(.is-scrolled) .wg-nav-link:hover,
  .wg-header:not(.is-scrolled) .wg-nav-link.is-active { color: var(--wg-amber); }
  .wg-header:not(.is-scrolled) .wg-nav-link::after { background: var(--wg-amber); }
  .wg-header:not(.is-scrolled) .wg-header__mail { color: rgba(255, 255, 255, .72); }
  .wg-header:not(.is-scrolled) .wg-header__mail:hover { color: #fff; }
}

/* ---------- hero ---------------------------------------------------------- */

.wg-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: min(100svh, 900px);
  padding-top: calc(var(--wg-header-h) + 3.5rem);
  padding-bottom: 4rem;
  isolation: isolate;
  overflow: hidden;
}

.wg-hero__slider {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: var(--wg-navy);
}

.wg-hero__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  animation: wg-slide-fade 24s infinite;
}
.wg-hero__slide:nth-child(1) { animation-delay: 0s; }
.wg-hero__slide:nth-child(2) { animation-delay: 4s; }
.wg-hero__slide:nth-child(3) { animation-delay: 8s; }
.wg-hero__slide:nth-child(4) { animation-delay: 12s; }
.wg-hero__slide:nth-child(5) { animation-delay: 16s; }
.wg-hero__slide:nth-child(6) { animation-delay: 20s; }

@keyframes wg-slide-fade {
  0% { opacity: 0; transform: scale(1.02); }
  4.16% { opacity: 1; transform: scale(1); }
  16.66% { opacity: 1; transform: scale(1); }
  20.82% { opacity: 0; transform: scale(1.02); }
  100% { opacity: 0; }
}

.wg-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(10, 35, 56, .8) 0%, rgba(10, 35, 56, 0) 20%),
    linear-gradient(105deg, rgba(10, 35, 56, .94) 0%, rgba(10, 35, 56, .82) 38%, rgba(10, 35, 56, .55) 68%, rgba(10, 35, 56, .45) 100%),
    linear-gradient(to top, rgba(10, 35, 56, .85) 0%, rgba(10, 35, 56, 0) 45%);
}
.wg-hero__scrim::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 90% at 15% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 90% at 15% 40%, #000 20%, transparent 75%);
}

.wg-hero__inner { max-width: 68rem; }

.wg-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .4rem .9rem .4rem .65rem;
  border: 1px solid rgba(245, 179, 36, .35);
  border-radius: 999px;
  background: rgba(227, 113, 38, .16);
  color: #ffd9b8;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
}
.wg-hero__badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--wg-amber);
  box-shadow: 0 0 0 4px rgba(245, 179, 36, .22);
}

.wg-hero h1 {
  margin: 1.35rem 0 0;
  color: #fff;
  font-size: clamp(2.1rem, 1.1rem + 4.2vw, 4.3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.wg-hero h1 .wg-accent-o { color: var(--wg-amber); }
.wg-hero h1 .wg-accent-b { color: #7ec8ec; }

.wg-hero__text {
  margin: 1.4rem 0 0;
  max-width: 46rem;
  color: #cddae4;
  font-size: clamp(1rem, .95rem + .3vw, 1.13rem);
  line-height: 1.75;
}

.wg-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2.1rem;
}

.wg-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.wg-chip {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem .95rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: #e6eef4;
  font-size: .84rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.wg-chip svg { width: 16px; height: 16px; flex: none; }
.wg-chip--orange svg { color: var(--wg-amber); }
.wg-chip--blue   svg { color: #7ec8ec; }
.wg-chip--teal   svg { color: #6ecfc4; }

.wg-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  translate: -50% 0;
  color: rgba(255, 255, 255, .5);
  animation: wg-bob 2.4s var(--wg-ease) infinite;
}
.wg-scroll-cue svg { width: 22px; height: 22px; }
@keyframes wg-bob {
  0%, 100% { translate: -50% 0; }
  50%      { translate: -50% 7px; }
}
@media (max-width: 767px) { .wg-scroll-cue { display: none; } }

/* ---------- credibility strip -------------------------------------------- */

.wg-strip {
  background: var(--wg-navy-800);
  border-top: 1px solid rgba(255, 255, 255, .07);
}
.wg-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .09);
}
@media (min-width: 900px) { .wg-strip__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.wg-strip__item {
  background: var(--wg-navy-800);
  padding: 1.6rem 1.25rem;
  text-align: center;
}
.wg-strip__k {
  display: block;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.wg-strip__v {
  display: block;
  margin-top: .3rem;
  color: #93aec1;
  font-size: .8rem;
  letter-spacing: .04em;
}

/* ---------- cards --------------------------------------------------------- */

.wg-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius-lg);
  padding: 1.9rem;
  box-shadow: var(--wg-shadow-sm);
  transition: box-shadow .3s var(--wg-ease), transform .3s var(--wg-ease),
              border-color .3s var(--wg-ease);
}

.wg-icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  margin-bottom: 1.15rem;
}
.wg-icon-tile svg { width: 22px; height: 22px; }
.wg-icon-tile--orange { background: var(--wg-orange-50); color: var(--wg-orange-600); }
.wg-icon-tile--blue   { background: var(--wg-blue-50);   color: var(--wg-blue); }
.wg-icon-tile--teal   { background: var(--wg-teal-50);   color: var(--wg-teal); }

.wg-card p { margin: .75rem 0 0; font-size: .97rem; line-height: 1.75; }
.wg-card .wg-card__label {
  margin: 0;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--wg-muted);
}

/* about: split + mission/vision */

.wg-split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .wg-split { grid-template-columns: 1.05fr .95fr; gap: 3.5rem; } }

.wg-ticks { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: .85rem; }
.wg-ticks li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  color: var(--wg-ink);
  font-size: .95rem;
  font-weight: 600;
}
.wg-ticks svg { width: 19px; height: 19px; flex: none; margin-top: .15rem; color: var(--wg-teal); }

.wg-panel {
  background: linear-gradient(160deg, #f3f8fb 0%, #eef4f8 100%);
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius-lg);
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
}
.wg-mv { display: flex; gap: 1rem; align-items: flex-start; }
.wg-mv .wg-icon-tile { margin-bottom: 0; flex: none; }
.wg-mv h4 { margin: 0 0 .3rem; color: var(--wg-ink); font-size: 1.02rem; font-weight: 700; }
.wg-mv p { margin: 0; font-size: .92rem; line-height: 1.65; }

/* values band */

.wg-values {
  position: relative;
  margin-top: 3.5rem;
  padding: 2.75rem 1.5rem;
  border-radius: var(--wg-radius-lg);
  background: linear-gradient(115deg, var(--wg-blue) 0%, #063a58 45%, var(--wg-navy) 100%);
  color: #fff;
  overflow: hidden;
}
.wg-values::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(52% 130% at 92% 6%, rgba(227, 113, 38, .5), transparent 62%);
}
.wg-values > * { position: relative; }
.wg-values h3 {
  margin: 0 0 2rem;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.wg-values__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 1rem;
}
@media (min-width: 720px) { .wg-values__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.wg-value { display: flex; flex-direction: column; align-items: center; gap: .7rem; text-align: center; }
.wg-value span { font-size: .88rem; font-weight: 600; }
.wg-value div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
}
.wg-value svg { width: 20px; height: 20px; }

/* ---------- services ------------------------------------------------------ */

.wg-service {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
}
.wg-service::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--wg-accent, var(--wg-orange));
  scale: 0 1;
  transform-origin: left;
  transition: scale .35s var(--wg-ease);
}
.wg-service:hover {
  transform: translateY(-4px);
  box-shadow: var(--wg-shadow-lg);
  border-color: transparent;
}
.wg-service:hover::before { scale: 1 1; }
.wg-service:hover .wg-h3 { color: var(--wg-accent, var(--wg-orange)); }
.wg-service .wg-h3 { transition: color .25s var(--wg-ease); }
.wg-service .wg-icon-tile { transition: scale .3s var(--wg-ease); }
.wg-service:hover .wg-icon-tile { scale: 1.08; }

.wg-service__list {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  gap: .6rem;
  flex: 1;
}
.wg-service__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: .91rem;
  line-height: 1.6;
}
.wg-service__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--wg-accent, var(--wg-orange));
}
.wg-service__more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.5rem;
  color: var(--wg-accent, var(--wg-orange));
  font-size: .875rem;
  font-weight: 700;
}
.wg-service__more svg { width: 16px; height: 16px; transition: translate .25s var(--wg-ease); }
.wg-service:hover .wg-service__more svg { translate: 4px 0; }

/* ---------- industries ---------------------------------------------------- */

.wg-industry {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.4rem;
  background: #fff;
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius);
  box-shadow: var(--wg-shadow-sm);
  transition: transform .25s var(--wg-ease), box-shadow .25s var(--wg-ease);
}
.wg-industry:hover { transform: translateY(-3px); box-shadow: var(--wg-shadow-md); }
.wg-industry .wg-icon-tile { margin-bottom: 0; flex: none; width: 44px; height: 44px; }
.wg-industry h3 {
  margin: 0;
  color: var(--wg-ink);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.4;
}

.wg-industry--cta {
  background: linear-gradient(135deg, var(--wg-navy) 0%, var(--wg-blue-600) 100%);
  border-color: transparent;
  color: #fff;
  text-decoration: none;
}
.wg-industry--cta h3 { color: #fff; }
.wg-industry--cta p { margin: .2rem 0 0; font-size: .82rem; color: #a8c3d4; }
.wg-industry--cta .wg-icon-tile { background: rgba(255, 255, 255, .14); color: var(--wg-amber); }

/* why-choose panel */

.wg-why {
  margin-top: 3.5rem;
  padding: 2.5rem;
  background: var(--wg-surface-alt);
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius-lg);
}
.wg-why h3 {
  margin: 0 0 2rem;
  text-align: center;
  color: var(--wg-ink);
  font-size: 1.35rem;
  font-weight: 700;
}
.wg-why__grid { display: grid; gap: 1.75rem; }
@media (min-width: 768px) { .wg-why__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.75rem 2.5rem; } }
.wg-why__item { display: flex; gap: 1rem; align-items: flex-start; }
.wg-why__item svg { width: 21px; height: 21px; flex: none; margin-top: .2rem; color: var(--wg-teal); }
.wg-why__item h4 { margin: 0 0 .25rem; color: var(--wg-ink); font-size: 1rem; font-weight: 700; }
.wg-why__item p { margin: 0; font-size: .9rem; line-height: 1.6; }

/* ---------- contact ------------------------------------------------------- */

.wg-office {
  background: #fff;
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius);
  padding: 1.5rem;
  box-shadow: var(--wg-shadow-sm);
}
.wg-office + .wg-office { margin-top: 1.25rem; }
.wg-office h4 {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .9rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--wg-line);
  color: var(--wg-blue);
  font-size: 1rem;
  font-weight: 700;
}
.wg-office--teal h4 { color: var(--wg-teal); }
.wg-office h4 svg { width: 18px; height: 18px; }
.wg-office address { font-style: normal; font-size: .9rem; line-height: 1.65; }
.wg-office__row {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-top: .6rem;
  font-size: .88rem;
}
.wg-office__row svg { width: 16px; height: 16px; flex: none; color: var(--wg-orange); }
.wg-office__row a { color: inherit; text-decoration: none; }
.wg-office__row a:hover { color: var(--wg-orange); }

.wg-weblink {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 1.25rem 0 0;
  padding-left: .25rem;
  font-size: .9rem;
  font-weight: 600;
}
.wg-weblink svg { width: 17px; height: 17px; flex: none; color: var(--wg-teal); }
.wg-weblink a { color: var(--wg-blue); text-decoration: none; }
.wg-weblink a:hover { color: var(--wg-orange); }

.wg-form {
  background: #fff;
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius-lg);
  padding: 2rem;
  box-shadow: var(--wg-shadow-md);
}
.wg-form h3 { margin: 0 0 1.5rem; color: var(--wg-ink); font-size: 1.2rem; font-weight: 700; }
.wg-field { display: block; margin-bottom: 1.1rem; }
.wg-field > span {
  display: block;
  margin-bottom: .4rem;
  color: var(--wg-ink);
  font-size: .85rem;
  font-weight: 600;
}
.wg-field input,
.wg-field textarea {
  width: 100%;
  padding: .75rem .9rem;
  border: 1px solid var(--wg-line);
  border-radius: 10px;
  background: #fff;
  color: var(--wg-ink);
  font: inherit;
  font-size: .95rem;
  transition: border-color .2s var(--wg-ease), box-shadow .2s var(--wg-ease);
}
.wg-field textarea { resize: vertical; min-height: 120px; }
.wg-field input::placeholder,
.wg-field textarea::placeholder { color: #9fb3c0; }
.wg-field input:focus,
.wg-field textarea:focus {
  outline: none;
  border-color: var(--wg-orange);
  box-shadow: 0 0 0 3px rgba(227, 113, 38, .15);
}

.wg-note { margin: .9rem 0 0; font-size: .78rem; color: var(--wg-muted); }
.wg-actions { display: grid; gap: .7rem; }

/* ---------- footer -------------------------------------------------------- */

.wg-footer {
  background: var(--wg-navy);
  color: #b9cdda;
  padding-block: 3.5rem 1.75rem;
}
.wg-footer__grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .wg-footer__grid { grid-template-columns: 1.3fr .7fr 1.3fr; gap: 3rem; } }
.wg-footer h4 {
  margin: 0 0 1.1rem;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.wg-footer p { font-size: .9rem; line-height: 1.7; }
.wg-footer a { color: inherit; text-decoration: none; transition: color .2s var(--wg-ease); }
.wg-footer a:hover { color: var(--wg-orange); }
.wg-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; font-size: .9rem; }
.wg-footer__brand { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.1rem; }
.wg-footer__brand img { width: 44px; height: 44px; border-radius: 10px; }
.wg-footer__brand strong { display: block; color: #fff; font-size: 1.15rem; font-weight: 800; letter-spacing: .04em; line-height: 1.1; }
.wg-footer__brand .wg-footer__sub { display: block; font-size: .64rem; font-weight: 600; letter-spacing: .22em; color: #7f9cae; }
.wg-footer__office { font-size: .875rem; line-height: 1.6; }
.wg-footer__office + .wg-footer__office { margin-top: 1.1rem; }
.wg-footer__office strong { display: block; color: #fff; font-weight: 600; margin-bottom: .25rem; }
.wg-footer__bottom {
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: #7f9cae;
}

/* ---------- reveal on scroll --------------------------------------------- */

.wg-js .wg-reveal {
  opacity: 0;
  translate: 0 18px;
  transition: opacity .6s var(--wg-ease), translate .6s var(--wg-ease);
}
.wg-js .wg-reveal.is-visible { opacity: 1; translate: 0 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .wg-js .wg-reveal { opacity: 1; translate: 0 0; }
}

/* ==========================================================================
   INNER PAGE TEMPLATES (product / trading / service pages)
   ========================================================================== */

/* ---------- page hero ----------------------------------------------------- */

.wg-phero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 30rem;
  padding-top: calc(var(--wg-header-h) + 5rem);
  padding-bottom: 4rem;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--wg-navy);
}
@media (min-width: 1024px) {
  .wg-phero { min-height: 34rem; padding-top: calc(var(--wg-header-h) + 6rem); padding-bottom: 5rem; }
}

.wg-phero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: var(--wg-navy);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.wg-phero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(10, 35, 56, .82) 0%, rgba(10, 35, 56, .2) 26%),
    linear-gradient(100deg, rgba(10, 35, 56, .95) 0%, rgba(10, 35, 56, .8) 45%, rgba(10, 35, 56, .5) 100%),
    linear-gradient(to top, rgba(10, 35, 56, .92) 0%, rgba(10, 35, 56, 0) 55%);
}
.wg-phero__scrim::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(110% 100% at 12% 70%, #000 15%, transparent 72%);
  -webkit-mask-image: radial-gradient(110% 100% at 12% 70%, #000 15%, transparent 72%);
}

.wg-phero__inner { max-width: 58rem; }

.wg-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
  font-size: .8rem;
  color: rgba(255, 255, 255, .6);
}
.wg-crumbs a { color: inherit; text-decoration: none; transition: color .2s var(--wg-ease); }
.wg-crumbs a:hover { color: var(--wg-amber); }
.wg-crumbs li::after { content: "/"; margin-left: .45rem; opacity: .45; }
.wg-crumbs li:last-child { color: rgba(255, 255, 255, .9); font-weight: 600; }
.wg-crumbs li:last-child::after { content: none; }

.wg-phero h1 {
  margin: 1.1rem 0 0;
  color: #fff;
  font-size: clamp(2rem, 1.2rem + 3.2vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.wg-phero h1 .wg-accent-o { color: var(--wg-amber); }
.wg-phero h1 .wg-accent-b { color: #7ec8ec; }
.wg-phero h1 .wg-accent-t { color: #6ecfc4; }

.wg-phero__text {
  margin: 1.25rem 0 0;
  max-width: 46rem;
  color: #c6d5e0;
  font-size: clamp(.97rem, .93rem + .25vw, 1.08rem);
  line-height: 1.75;
}
.wg-phero__text + .wg-phero__text { margin-top: .9rem; color: #a7bccc; font-size: .95rem; }

.wg-phero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

/* ---------- page body ----------------------------------------------------- */

.wg-page { background: var(--wg-surface); }

.wg-band {
  padding-block: 4rem;
  scroll-margin-top: calc(var(--wg-header-h) + 8px);
}
@media (min-width: 1024px) { .wg-band { padding-block: 5.5rem; } }
.wg-band--alt { background: var(--wg-surface-alt); }
.wg-band--tight { padding-block: 3rem; }

.wg-band-head { max-width: 46rem; margin: 0 auto 3rem; text-align: center; }
.wg-band-head .wg-eyebrow::before { display: none; }

/* two-up: sticky media + stacked cards */

.wg-showcase { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 1024px) {
  .wg-showcase { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 3rem; }
  .wg-showcase__media { position: sticky; top: calc(var(--wg-header-h) + 1.5rem); }
}
.wg-showcase__frame {
  background: #fff;
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius-lg);
  padding: 1rem;
  box-shadow: var(--wg-shadow-md);
}
.wg-showcase__img {
  display: block;
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 12px;
  background: var(--wg-surface-alt);
}
.wg-showcase__body { display: grid; gap: 1.5rem; }

/* feature card (rule-heading + bullet list) */

.wg-fcard {
  background: #fff;
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--wg-shadow-sm);
  transition: box-shadow .3s var(--wg-ease), border-color .3s var(--wg-ease);
}
.wg-fcard:hover { box-shadow: var(--wg-shadow-md); }
@media (min-width: 640px) { .wg-fcard { padding: 2rem; } }

.wg-fcard__title {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin: 0 0 1.25rem;
  color: var(--wg-teal);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.3;
}
.wg-fcard__title::before {
  content: "";
  flex: none;
  width: 26px; height: 3px;
  border-radius: 3px;
  background: var(--wg-orange);
}

/* bullet lists */

.wg-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.wg-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--wg-body);
  font-size: .93rem;
  line-height: 1.6;
}
.wg-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .58em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--wg-orange);
}
.wg-list--2col { gap: .65rem 2rem; }
@media (min-width: 640px) { .wg-list--2col { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* icon card (gradient tile + heading + list) */

.wg-icard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--wg-shadow-sm);
  transition: box-shadow .3s var(--wg-ease), transform .3s var(--wg-ease);
}
@media (min-width: 640px) { .wg-icard { padding: 2rem; } }
.wg-icard:hover { transform: translateY(-3px); box-shadow: var(--wg-shadow-lg); }
.wg-icard > :is(h2, h3, h4) {
  margin: 0 0 1.1rem;
  color: var(--wg-ink);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.3;
}
.wg-icard p { color: var(--wg-body); font-size: .93rem; line-height: 1.7; }

.wg-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 52px; height: 52px;
  margin-bottom: 1.25rem;
  border-radius: 14px;
  color: #fff;
}
.wg-tile svg { width: 24px; height: 24px; }
.wg-tile--orange { background: linear-gradient(135deg, #ef8a3f, var(--wg-orange-600)); }
.wg-tile--blue   { background: linear-gradient(135deg, #0a7fb8, var(--wg-blue-600)); }
.wg-tile--teal   { background: linear-gradient(135deg, #0a8b86, var(--wg-teal)); }
.wg-tile--amber  { background: linear-gradient(135deg, #f7c14e, #e09a10); }
.wg-tile--slate  { background: linear-gradient(135deg, #5b7385, #33495a); }
.wg-tile svg { color: #fff; stroke: currentColor; }
.wg-tile--auto { margin-inline: auto; }
.wg-tile--center { margin-inline: auto; }
@media (min-width: 768px) { .wg-tile--center { margin-inline: 0; } }

.wg-stack { display: grid; gap: 1.25rem; }
.wg-grow { flex: 1; color: var(--wg-body); font-size: .92rem; line-height: 1.7; }

/* inline icon + heading row (used on some cards) */

.wg-icard__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.wg-icard__head .wg-tile { margin-bottom: 0; width: 48px; height: 48px; }
.wg-icard__head :is(h2, h3, h4) {
  margin: 0;
  color: var(--wg-ink);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
}
.wg-icard__head > svg {
  flex: none;
  width: 28px; height: 28px;
  color: var(--wg-orange);
}
.wg-icard__head--rule {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--wg-line);
}
.wg-icard__head--rule :is(h2, h3, h4) {
  font-size: clamp(1.35rem, 1.1rem + .9vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -.02em;
}

/* soft sub-card (OEM/model blocks) */

.wg-subcard {
  background: var(--wg-surface-alt);
  border: 1px solid var(--wg-line);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
}
.wg-subcard + .wg-subcard { margin-top: .9rem; }
.wg-subcard h3, .wg-subcard h4 {
  margin: 0 0 .35rem;
  color: var(--wg-ink);
  font-size: 1rem;
  font-weight: 700;
}
.wg-subcard p { margin: 0; color: var(--wg-body); font-size: .9rem; }

.wg-tag {
  display: inline-block;
  padding: .3rem .75rem;
  border: 1px solid var(--wg-line);
  border-radius: 999px;
  background: var(--wg-surface-alt);
  color: var(--wg-blue);
  font-size: .75rem;
  font-weight: 600;
}

/* grids */

.wg-cards { display: grid; gap: 1.5rem; }
@media (min-width: 640px)  { .wg-cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 768px)  { .wg-cards--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) {
  .wg-cards { gap: 1.75rem; }
  .wg-cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .wg-cards--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1280px) { .wg-cards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* image gallery + masonry */

.wg-gallery { display: grid; gap: 1.25rem; }
@media (min-width: 640px)  { .wg-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .wg-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; } }
.wg-gallery__item {
  overflow: hidden;
  border-radius: var(--wg-radius-lg);
  border: 1px solid var(--wg-line);
  background: var(--wg-surface-alt);
  aspect-ratio: 4 / 3;
  box-shadow: var(--wg-shadow-sm);
  transition: transform .35s var(--wg-ease), box-shadow .35s var(--wg-ease);
}
.wg-gallery__item:hover { transform: translateY(-4px); box-shadow: var(--wg-shadow-lg); }
.wg-gallery__item img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: scale .6s var(--wg-ease);
}
.wg-gallery__item:hover img { scale: 1.06; }

.wg-masonry { columns: 1; column-gap: 1.25rem; }
@media (min-width: 640px)  { .wg-masonry { columns: 2; } }
@media (min-width: 1024px) { .wg-masonry { columns: 3; column-gap: 1.5rem; } }
.wg-masonry--4 { }
@media (min-width: 1280px) { .wg-masonry--4 { columns: 4; } }
.wg-masonry__item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  overflow: hidden;
  border-radius: var(--wg-radius-lg);
  border: 1px solid var(--wg-line);
  background: #fff;
  box-shadow: var(--wg-shadow-sm);
  transition: transform .35s var(--wg-ease), box-shadow .35s var(--wg-ease);
}
@media (min-width: 1024px) { .wg-masonry__item { margin-bottom: 1.5rem; } }
.wg-masonry__item:hover { transform: translateY(-4px); box-shadow: var(--wg-shadow-lg); }
.wg-masonry__item img { display: block; width: 100%; height: auto; }

/* photo card with overlay caption (linked product tiles) */

.wg-photo {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--wg-radius-lg);
  aspect-ratio: 5 / 4;
  box-shadow: var(--wg-shadow-md);
  text-decoration: none;
  isolation: isolate;
}
@media (min-width: 640px) { .wg-photo { aspect-ratio: 4 / 5; } }
.wg-photo__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.wg-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: scale .7s var(--wg-ease);
}
.wg-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(10, 35, 56, .95) 8%, rgba(10, 35, 56, .5) 45%, rgba(10, 35, 56, .1) 100%);
  transition: opacity .3s var(--wg-ease);
}
.wg-photo:hover img { scale: 1.07; }
.wg-photo__body {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem;
}
.wg-photo__body h3 {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.wg-photo__more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .6rem;
  color: var(--wg-amber);
  font-size: .82rem;
  font-weight: 700;
  opacity: 0;
  translate: 0 6px;
  transition: opacity .3s var(--wg-ease), translate .3s var(--wg-ease);
}
.wg-photo__more svg { width: 15px; height: 15px; }
.wg-photo:hover .wg-photo__more,
.wg-photo:focus-visible .wg-photo__more { opacity: 1; translate: 0 0; }

/* closing statement / CTA band */

.wg-statement {
  position: relative;
  overflow: hidden;
  margin-top: 3.5rem;
  padding: 2.5rem 1.75rem;
  border-radius: var(--wg-radius-lg);
  background: linear-gradient(115deg, var(--wg-blue) 0%, #063a58 48%, var(--wg-navy) 100%);
  color: #fff;
  text-align: center;
}
@media (min-width: 768px) { .wg-statement { padding: 3.25rem 3rem; } }
.wg-statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(52% 130% at 92% 6%, rgba(227, 113, 38, .5), transparent 62%);
}
.wg-statement > * { position: relative; }
.wg-statement p {
  max-width: 52rem;
  margin: 0 auto;
  font-size: clamp(1.02rem, .95rem + .5vw, 1.3rem);
  font-weight: 500;
  line-height: 1.65;
  color: #e8f0f6;
}
.wg-statement strong { color: var(--wg-amber); font-weight: 700; }
.wg-statement .wg-btn { margin-top: 1.75rem; }
.wg-statement--orange { background: linear-gradient(115deg, #b8540f 0%, var(--wg-orange) 55%, #ef8a3f 130%); }
.wg-statement--orange::before { background: radial-gradient(52% 130% at 92% 6%, rgba(10, 35, 56, .45), transparent 62%); }
.wg-statement--orange strong { color: #fff; }
.wg-statement--teal { background: linear-gradient(115deg, #00423f 0%, var(--wg-teal) 60%, #0a8b86 130%); }
.wg-statement--teal::before { background: radial-gradient(52% 130% at 92% 6%, rgba(126, 224, 214, .38), transparent 62%); }

/* closing statement in its own section */

.wg-closing { text-align: center; }
.wg-closing p {
  max-width: 56rem;
  margin: 0 auto;
  color: var(--wg-ink);
  font-size: clamp(1.05rem, .98rem + .55vw, 1.4rem);
  font-weight: 400;
  line-height: 1.7;
}
.wg-closing strong { color: var(--wg-teal); font-weight: 700; }

/* contact CTA appended to every inner page */

.wg-endcta {
  background: var(--wg-navy);
  color: #c6d5e0;
  padding-block: 3.5rem;
  text-align: center;
}
.wg-endcta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -.02em;
}
.wg-endcta p { max-width: 40rem; margin: .85rem auto 0; font-size: .98rem; }
.wg-endcta__btns { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.85rem; }

/* ==========================================================================
   ALTERNATING FEATURE ROWS — one content block, then its matching image
   ========================================================================== */

.wg-features { display: grid; gap: 2.25rem; }
@media (min-width: 900px)  { .wg-features { gap: 3rem; } }
@media (min-width: 1280px) { .wg-features { gap: 4rem; } }

.wg-feature {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .wg-feature { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 2.5rem; }
  /* content stays first in the DOM (so it reads first on mobile and in
     screen readers); only the visual order flips on wide screens */
  .wg-feature--flip { grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); }
  .wg-feature--flip .wg-feature__body  { order: 2; }
  .wg-feature--flip .wg-feature__media { order: 1; }
}
@media (min-width: 1280px) { .wg-feature { gap: 3rem; } }

.wg-feature__body { min-width: 0; }

.wg-feature__num {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .85rem;
  color: var(--wg-orange);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  font-variant-numeric: tabular-nums;
}
.wg-feature__num::after {
  content: "";
  width: 28px; height: 2px;
  border-radius: 2px;
  background: currentColor;
  opacity: .55;
}

.wg-feature__title {
  margin: 0 0 1.1rem;
  color: var(--wg-ink);
  font-size: clamp(1.4rem, 1.15rem + 1vw, 1.9rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.wg-feature__intro { margin: -.4rem 0 1.2rem; color: var(--wg-body); font-size: 1rem; line-height: 1.75; }

.wg-feature .wg-list li { font-size: .95rem; }
@media (min-width: 640px) {
  .wg-feature__list--split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem 1.75rem; }
}

.wg-feature__media {
  position: relative;
  margin: 0;
  border-radius: var(--wg-radius-lg);
  overflow: hidden;
  border: 1px solid var(--wg-line);
  background: linear-gradient(160deg, #f4f8fb 0%, #eaf1f6 100%);
  box-shadow: var(--wg-shadow-md);
  transition: box-shadow .35s var(--wg-ease), transform .35s var(--wg-ease);
}
.wg-feature__media:hover { box-shadow: var(--wg-shadow-lg); transform: translateY(-3px); }
.wg-feature__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
/* product renders / diagrams sit on a plain backdrop — never crop them */
.wg-feature__media--contain img {
  object-fit: contain;
  padding: 0.75rem;
}
.wg-feature__media--contain { background: #fff; }

.wg-feature__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.15rem .85rem;
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .01em;
  background: linear-gradient(to top, rgba(10, 35, 56, .88), transparent);
}
.wg-feature__media--contain .wg-feature__cap {
  color: var(--wg-muted);
  background: none;
  border-top: 1px solid var(--wg-line);
  position: static;
  padding: .7rem 1.15rem;
  text-align: center;
}

/* sub-blocks that live inside a feature body (OEM/model lists, tags) */
.wg-feature__sub { display: grid; gap: .8rem; margin-top: 1.2rem; }
.wg-feature__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }

/* section divider inside a page */
.wg-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.75rem;
}
.wg-divider h2 {
  margin: 0;
  color: var(--wg-ink);
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.wg-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--wg-line), transparent);
}

/* current page highlighted inside its own dropdown */
.wg-dd__panel a.is-current {
  background: var(--wg-orange-50);
  color: var(--wg-orange-600);
  font-weight: 700;
}
.wg-dd__panel a.is-current::before {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  margin-right: .5rem;
  border-radius: 50%;
  background: currentColor;
  vertical-align: middle;
}
