/* Core theme — brand: #003A85, accent: #45C463 */

@font-face {
  font-family: 'Oswald';
  src: url('Oswald-DemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

.hero-kicker {
  font-weight: 800;
  letter-spacing: .6px;
  color: var(--heading);
  font-size: 70px !important;
  margin-bottom: 6px;
  font-family: 'Oswald' !important;
}

:root {
  --bgTop: #0f2a55;
  --bgBot: #1f4e8a;
  --ink: #0c1b2a;
  --muted: #5c6b7a;
  --card: #ffffff;
  --card2: #f6f8fb;
  --line: rgba(12, 27, 42, .10);
  --brand: #003A85;
  --brandAccent: #45C463;
  --btnHover: #45C463;
  --heading: #003A85;
  --primary: #003A85;
  --primary2: #003A85;
  --shadow: 0 14px 40px rgba(0, 0, 0, .10);
  --radius: 18px;
  --radius2: 14px;
  --container: 1120px;

  --heroLeft: #eef1f5;
  --heroLeft2: #e7ebf1;
  --heroText: #003A85;

  --fontHeading: "Outfit", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --fontBody: "Montserrat", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;



  /* spacing scale (match screenshot density) */
  --s1: 8px;
  --s2: 12px;
  --s3: 16px;
  --s4: 22px;
  --s5: 28px;

  /* typography scale (site-wide consistency) */
  --fs-body: 16px;
  --lh-body: 1.65;
  --fs-h1: 32px;
  --fs-h2: 30px;
  --fs-h3: 22px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: var(--fontBody);
  color: var(--ink);
  background: white;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

a {
  color: inherit;
  text-decoration: none
}

.container {
  width: min(var(--container), 90vw);
  margin: 0 auto;
}

.container-fluid {
  width: 85vw;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 520px) {
  .container-fluid {
    width: 90vw;
    max-width: none;
  }
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.skip:focus {
  left: 10px
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(0, 58, 133, .06);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0, 26, 60, .45);
  -webkit-tap-highlight-color: transparent;
}

.nav-backdrop.is-active {
  display: block;
}

body.nav-menu-open {
  overflow: hidden;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 240px
}

.brand-logo {
  height: 56px;
  width: auto;
  display: block;
}

.brand:focus-visible {
  outline: 3px solid rgba(0, 58, 133, .28);
  outline-offset: 6px;
  border-radius: 12px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0, 58, 133, .14), rgba(0, 58, 133, .06));
  border: 1px solid rgba(0, 58, 133, .22);
  color: var(--heading);
}

.brand-mark i {
  font-size: 18px
}

.brand-name {
  font-weight: 800;
  letter-spacing: .4px
}

.brand-tag {
  font-size: 12px;
  opacity: .85;
  margin-top: 2px
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px
}

.nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  opacity: 1;
  letter-spacing: .01em;
}

.nav-link:hover {
  color: var(--heading);
  text-decoration: none;
}

.nav-dropdown {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.nav-link--products,
.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

button.nav-dropdown__toggle {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: .01em;
  text-align: left;
}

.nav-chevron {
  font-size: 12px;
  opacity: .85;
  margin-top: 2px;
  transition: transform .2s ease;
}

.nav-dropdown-drop {
  position: absolute;
  top: 100%;
  left: auto;
  right: 0;
  padding-top: 0px;
  z-index: 60;
}

.nav-dropdown-panel {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  min-width: 240px;
  background: #F5F5F5;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

/* Desktop only: hover/focus opens panel (mobile uses .is-open from JS — :focus-within would keep panel open while toggle stays focused) */
@media (min-width: 861px) {

  .nav-dropdown:hover>.nav-link--products,
  .nav-dropdown:focus-within>.nav-link--products,
  .nav-dropdown:hover>.nav-dropdown__toggle,
  .nav-dropdown:focus-within>.nav-dropdown__toggle {
    color: var(--brandAccent);
    text-decoration: none;
  }

  .nav-dropdown:hover .nav-chevron,
  .nav-dropdown:focus-within .nav-chevron {
    color: var(--brandAccent);
  }

  .nav-dropdown:hover .nav-dropdown-panel,
  .nav-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.nav-dropdown-link {
  display: block;
  padding: 10px 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  text-decoration: none;
}

.nav-dropdown-link:hover,
.nav-dropdown-link:focus-visible {
  color: #D81B60;
  outline: none;
  text-decoration: none;
  background: rgba(216, 27, 96, .06);
}

.nav-toggle {
  display: none;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--ink);
  width: 50px;
  height: 50px;
  border-radius: 14px;
}

.nav-toggle i {
  font-size: 20px
}

/* Colour masterbatch page */
.cm-page {
  background: #f5f7fa
}

.cm-hero {
  position: relative;
  min-height: min(50vh, 440px);
  display: grid;
  align-items: center;
  background: #555 url("../images/color.png") center top / cover no-repeat;
}

.cm-hero--white {
  position: relative;
  min-height: min(50vh, 440px);
  display: grid;
  align-items: center;
  background: #555 url("../images/white.jpg") center center / cover no-repeat;

  background-position: center center;
}

.cm-hero--additive {
  background-image: url("../images/additive-masterbatches.jpg");
  background-position: center bottom;
}

.cm-hero--filler {
  background-image: url("../images/filler-masterbatches.jpg");
  background-position: center bottom;
}

.cm-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg,
      rgba(0, 36, 70, 0.45) 0%,
      rgba(0, 26, 55, 0.58) 45%,
      rgba(0, 18, 42, 0.72) 100%);
  pointer-events: none;
}

.cm-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 0;
}

.cm-hero-title {
  margin: 0;
  font-family: var(--fontHeading);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.cm-intro {
  background: #f0f2f5;
  padding: 52px 0;
}

.cm-intro-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.cm-intro-text {
  margin: 0 0 20px;
  color: #4a5563;
  font-size: 15px;
  line-height: 1.75;
}

.cm-intro-text:last-child {
  margin-bottom: 0
}

.cm-benefits {
  padding: 56px 0 48px;
  background: #f5f7fa;
}

.cm-applications {
  padding: 48px 0 72px;
  background: #f5f7fa;
}

.cm-block-title {
  margin: 0 0 36px;
  font-family: var(--fontHeading);
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 26px);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  color: #004080;
}

.cm-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.cm-benefit-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 26px;
  text-align: center;
  box-shadow: 0 10px 34px rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, .05);
}

.cm-benefit-title {
  margin: 0 0 12px;
  font-family: var(--fontHeading);
  font-size: 17px;
  font-weight: 700;
  color: var(--heading);
}

.cm-benefit-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #5c6b7a;
}

.cm-apps-lead {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 15px;
  line-height: 1.75;
  color: #5c6b7a;
}

.cm-apps-rows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cm-apps-row {
  display: grid;
  gap: 24px;
  width: 100%;
}

.cm-apps-row--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1100px;
}

.cm-apps-row--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 740px;
}

.cm-apps-row--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1200px;
}

.cm-app-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 22px 32px;
  text-align: center;
  box-shadow: 0 10px 34px rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, .05);
}

.cm-app-icon {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.cm-app-svg {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .92;
}

.cm-app-fa {
  font-size: 48px;
  color: #222;
  filter: grayscale(1);
  opacity: .92;
}

.cm-app-title {
  margin: 0 0 12px;
  font-family: var(--fontHeading);
  font-size: 16px;
  font-weight: 700;
  color: #0c1b2a;
}

.cm-app-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #5c6b7a;
}

/* Filler masterbatches: 3+2 benefits rows */
.fm-ben-rows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.fm-ben-row {
  display: grid;
  gap: 24px;
  width: 100%;
}

.fm-ben-row--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1000px;
}

.fm-ben-row--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 680px;
}

/* Filler: Why choose us */
.fm-why {
  background: #fff;
  padding: 48px 0 64px;
  border-top: 1px solid var(--line);
}

.fm-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.fm-why-card {
  padding-top: 24px;
}

.fm-why-icon {
  filter: grayscale(1) brightness(0);
  opacity: .9;
}

.fm-why-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #5c6b7a;
}

@media (max-width: 980px) {
  .cm-benefits-grid {
    grid-template-columns: 1fr;
    max-width: 520px
  }

  .cm-apps-row--3 {
    grid-template-columns: 1fr;
    max-width: 480px
  }

  .cm-apps-row--2 {
    grid-template-columns: 1fr;
    max-width: 480px
  }

  .cm-apps-row--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 640px
  }

  .fm-ben-row--3 {
    grid-template-columns: 1fr;
    max-width: 520px
  }

  .fm-ben-row--2 {
    grid-template-columns: 1fr;
    max-width: 520px
  }

  .fm-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media (max-width: 560px) {
  .cm-apps-row--4 {
    grid-template-columns: 1fr
  }

  .fm-why-grid {
    grid-template-columns: 1fr
  }
}

/* Additive masterbatches page */
.am-content {
  background: #fff;
  padding: 48px 0 40px;
  border-top: 1px solid var(--line);
}

.am-content-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.am-subtitle {
  margin: 0 0 22px;
  font-family: var(--fontHeading);
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: .04em;
  color: var(--heading);
}

.am-body {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.75;
  color: #4a5563;
}

.am-body:last-child {
  margin-bottom: 0
}

.am-table-section {
  background: #fff;
  padding: 20px 0 48px;
}

.am-range-title {
  margin: 0 0 28px;
  font-family: var(--fontHeading);
  font-weight: 800;
  font-size: clamp(17px, 2vw, 22px);
  text-align: center;
  color: var(--heading);
}

.am-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0;
}

.am-range-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  border: 1px solid rgba(0, 0, 0, .12);
  font-size: 14px;
}

.am-range-table thead th {
  padding: 14px 16px;
  text-align: center;
  vertical-align: middle;
  font-weight: 800;
  color: #1b5e3a;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .12);
}

.am-range-table tbody td {
  padding: 14px 16px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid rgba(0, 0, 0, .12);
  line-height: 1.55;
  color: #0c1b2a;
}

.am-range-table tbody td:first-child {
  font-weight: 700;
  color: var(--heading);
}

.am-dual {
  background: #f5f7fa;
  padding: 44px 0 56px;
}

.am-dual-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.am-dual-card {
  background: linear-gradient(145deg, #2e6dbd 0%, #2566b0 50%, #1f5594 100%);
  color: #fff;
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 12px 36px rgba(0, 58, 133, .24);
}

.am-dual-heading {
  margin: 0 0 14px;
  font-family: var(--fontHeading);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}

.am-dual-lead {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .94);
}

.am-dual-list {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .94);
  text-align: left;
}

.am-dual-list li {
  margin-bottom: 8px
}

.am-dual-list li:last-child {
  margin-bottom: 0
}

.am-dual-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .94);
  text-align: left;
}

@media (max-width: 860px) {
  .am-dual-inner {
    grid-template-columns: 1fr
  }
}

/* Colour page: “What makes us the best?” (aligned with home pillars) */
.cm-best {
  background: #fff;
  padding: 44px 0 52px;
  border-top: 1px solid var(--line);
}

.cm-best-heading {
  margin: 0 0 26px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--heading);
  font-weight: 800;
}

.cm-best-inner {
  gap: 18px;
  margin: 0 auto;
}

.pillars-inner.cm-best-inner--quad {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.cm-best-label--long {
  max-width: 32ch;
  font-size: 13px;
}

@media (max-width: 1020px) {
  .pillars-inner.cm-best-inner--quad {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media (max-width: 560px) {
  .pillars-inner.cm-best-inner--quad {
    grid-template-columns: 1fr
  }
}

.cm-best-card {
  padding: 22px 16px 20px;
  min-height: 132px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .07);
  border: 1px solid rgba(0, 51, 102, .14);
}

.cm-best-ico {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cm-best-svg {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: brightness(0);
  opacity: .88;
}

.cm-best-label {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  color: #5c6b7a;
  max-width: 20ch;
}

.cm-best-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.cm-best-btn {
  border-radius: 999px;
  padding: 12px 34px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  background: var(--heading);
  background-image: none;
  box-shadow: 0 10px 26px rgba(0, 58, 133, .32);
}

.cm-best-btn:hover {
  background: var(--btnHover);
  filter: none;
  box-shadow: 0 10px 28px rgba(69, 196, 99, .38);
}

/* Hero */
.hero {
  position: relative;
  padding: 40px 0 18px;
  background: linear-gradient(180deg, #ffffff, #ffffff);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--heroLeft), var(--heroLeft2));
  clip-path: polygon(0 0, 70% 0, 58% 100%, 0 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bgTop), var(--bgBot));
  clip-path: polygon(62% 0, 100% 0, 100% 100%, 50% 100%);
}

.hero.hero-banner {
  padding: 0;
  min-height: 550px;
  display: flex;
  align-items: center;
  background-image: url("../images/banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero.hero-banner::before,
.hero.hero-banner::after {
  display: none;
}

.hero.hero-banner .hero-inner {
  width: 100%;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  text-align: left;
  gap: 0;
  box-sizing: border-box;
}

.hero.hero-banner .hero-spacer {
  display: none;
}

.hero.hero-banner .hero-copy {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 24px clamp(16px, 4vw, 48px);
  box-sizing: border-box;
}

.hero.hero-banner .hero-sub {
  margin-left: 0;
  color: white;
  margin-right: 0;
  max-width: none;
}

.hero-spacer {
  height: 1px
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 26px;
  align-items: center;
}

.hero-copy {
  padding: 8px 0;
}

.hero-kicker {
  font-weight: 800;
  letter-spacing: .6px;
  color: var(--heading);
  font-size: 60px;

  margin-bottom: 6px;
  font-family: var(--fontHeading);
}

.hero-sub {
  margin: 0 0 14px;
  color: #5f6f84;
  line-height: 1.55;
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
  user-select: none;
}

.btn:active {
  transform: translateY(1px)
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 58, 133, .35);
}

.btn-primary:hover {
  background: var(--btnHover);
  color: #fff;
  filter: none;
  box-shadow: 0 10px 30px rgba(69, 196, 99, .38);
}

.btn-ghost {
  display: none
}

.hero-collage {
  position: relative;
  height: 260px;
}

.hero-collage::before {
  content: "";
  position: absolute;
  inset: -10px -10px -10px -10px;
  background: linear-gradient(135deg, rgba(13, 35, 73, .88), rgba(33, 79, 140, .94));
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
}

.hero-collage .collage {
  position: absolute;
  inset: 16px 16px 16px 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0;
  border-radius: 16px;
  background: transparent;
  border: none;
}

.collage-tilt {
  transform: rotate(18deg);
  transform-origin: center;
}

.tile {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 12px;
  padding: 0;
  min-height: 88px;
  display: grid;
  place-items: center;
}

.tile i {
  font-size: 22px;
  opacity: .95;
  color: #fff
}

.tile span {
  display: none
}

.tile.t2,
.tile.t5 {
  background: rgba(255, 255, 255, .16)
}

@media (max-width: 980px) {
  .hero-collage {
    height: 230px
  }

  .hero::before {
    clip-path: polygon(0 0, 100% 0, 100% 55%, 0 85%);
  }

  .hero::after {
    clip-path: polygon(0 55%, 100% 30%, 100% 100%, 0 100%);
  }

  .hero.hero-banner {
    min-height: 550px;
  }

  .hero.hero-banner .hero-inner {
    min-height: 550px;
  }
}

/* Stats */
.stats {
  background: #ffffff;
  padding: 10px 0 10px;
  border-bottom: 1px solid var(--line);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat {
  text-align: center;
  padding: 8px 8px 6px;
}

.stat-value {
  display: flex;
  gap: 6px;
  align-items: baseline;
  justify-content: center;
  font-family: var(--fontHeading);
  font-weight: 800;
  font-size: 28px;
  color: var(--heading);
  line-height: 1.05;
}

.stat-num {
  font-weight: 900
}

.stat-plus {
  font-weight: 900
}

.stat-label {
  font-weight: 800
}

.stat-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* Sections */
.section-title {
  margin: 0 0 10px;
  font-size: var(--fs-h2);
  letter-spacing: .2px;
  color: var(--heading);
  font-family: var(--fontHeading);
}

.section-title.center {
  text-align: center
}

.section-kicker {
  display: inline-block;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: .3px;
  margin-bottom: 8px;
  font-family: var(--fontHeading);
}

.section-text {
  margin: 0;
  color: var(--muted);
  line-height: var(--lh-body);
  font-size: var(--fs-body);
}

/* Legacy */
.legacy {
  padding: 18px 0 10px;
}

.legacy-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 14px;
  align-items: center;
}

.legacy-media .media-ph {
  height: 200px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #eef3ff);
  border: 1px solid var(--line);
  box-shadow: none;
  display: grid;
  place-items: center;
  gap: 10px;
  color: #214f8c;
}

.media-ph i {
  font-size: 34px;
  opacity: .9
}

.media-ph-text {
  font-size: 12px;
  opacity: .65
}

.legacy-media {
  width: 100%;
  min-height: 200px;
}

.legacy-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

/* Pillars */
.pillars {
  padding: 10px 0 10px
}

.pillars-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 12px;
  justify-content: center;
}

.pillar-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 14px;
  box-shadow: none;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
  min-height: 112px;
}

.pillar-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pillar-title {
  font-weight: 800;
  font-size: 14px
}

/* About */
.about {
  padding: 18px 0 14px
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
}

.about-title {
  margin-bottom: 14px;
}

.about-media {
  width: 100%;
  min-height: 260px;
  display: flex;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: block;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .08);
}

/* Products */
.products {
  padding: 18px 0 18px;
  background: linear-gradient(180deg, rgba(246, 248, 251, .0), rgba(246, 248, 251, .9) 40%, rgba(246, 248, 251, 1));
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 14px 16px;
  box-shadow: none;
  text-align: center;
}

.product-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
  border-radius: calc(var(--radius) - 2px);
}

.product-card {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .10);
  border-color: rgba(0, 58, 133, .22);
}

.product-card__link:focus-visible {
  outline: 3px solid rgba(0, 58, 133, .22);
  outline-offset: 4px;
}

.product-media {
  display: flex;
  justify-content: center;

  margin-bottom: 10px;
}

.product-media-circle {
  width: 50%;
  height: 80%;

  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #eef3ff);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
  color: #1b3967;
  font-size: 22px;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-title {
  margin: 0 0 8px;
  font-size: 16px
}

.product-desc {
  margin: 0;
  color: var(--muted);
  line-height: var(--lh-body);
  font-size: var(--fs-body)
}

/* Industries */
.industries {
  padding: clamp(30px, 8vw, 30px) 0;
  background-image:
    linear-gradient(105deg, rgba(248, 250, 253, .94) 0%, rgba(240, 245, 252, .94) 50%, rgba(248, 250, 253, .94) 100%),
    url("../images/backgorund.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.industries-inner {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

.industries-copy .section-title {
  font-size: clamp(26px, 3.6vw, 36px);
  margin-bottom: 14px;
}

.industries-copy .section-text {
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.65;
}

.industries-panel {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
  border: 1px solid rgba(0, 58, 133, .10);
  border-radius: 26px;
  padding: clamp(22px, 3.2vw, 36px);
  box-shadow:
    0 6px 10px rgba(0, 58, 133, .05),
    0 28px 56px rgba(0, 58, 133, .10);
}

.industries-panel-rows {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.6vw, 26px);
}

.industries-panel-row {
  display: grid;
  gap: clamp(14px, 2.2vw, 22px);
  align-items: center;
}

.industries-panel-row--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.industries-panel-row--3 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 26px 14px;
  min-height: 158px;
  background: linear-gradient(165deg, #fff 0%, #f4f7fb 100%);
  border: 1px solid rgba(0, 58, 133, .11);
  border-radius: 20px;
  box-shadow: 0 3px 14px rgba(0, 58, 133, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 58, 133, .13);
  border-color: rgba(0, 58, 133, .22);
}

.industry-card__ico {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(0, 58, 133, .08), rgba(69, 196, 99, .10));
  border: 2px solid rgba(0, 58, 133, .14);
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
  box-shadow: 0 3px 12px rgba(0, 58, 133, .07);
}

.industry-card:hover .industry-card__ico {
  border-color: rgba(69, 196, 99, .45);
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(69, 196, 99, .16);
}

.industry-card__svg {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
}

.industry-card__label {
  font-family: var(--fontHeading);
  font-weight: 700;
  font-size: clamp(14px, 2.15vw, 17px);
  line-height: 1.35;
  color: var(--heading);
  letter-spacing: .02em;
}

@media (prefers-reduced-motion: reduce) {

  .industry-card,
  .industry-card:hover,
  .industry-card__ico,
  .industry-card:hover .industry-card__ico {
    transition: none;
    transform: none;
  }
}

@media (max-width: 980px) {
  .industries-panel-row--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industries-panel-row--3 {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {

  .industries-panel-row--4,
  .industries-panel-row--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .industry-card {
    min-height: 128px;
    padding: 18px 10px;
    gap: 12px;
  }

  .industry-card__ico {
    width: 58px;
    height: 58px;
  }

  .industry-card__svg {
    width: 30px;
    height: 30px;
  }
}

/* Contact page */
.contact-page {
  background: #ffffff;
  padding: 18px 0 26px;
}

.contact-page-head {
  text-align: center;
  margin-bottom: 18px;
}

.contact-page-title {
  margin: 0;
  font-family: var(--fontHeading);
  color: var(--heading);
  font-size: var(--fs-h1);
  font-weight: 900;
  letter-spacing: .6px;
}

.contact-page-sub {
  margin-top: 6px;
  color: rgba(0, 58, 133, .9);
  font-weight: 700;
  font-size: 12px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 22px;
  align-items: center;
}

.contact-page-left {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 10px 0;
}

.contact-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(0, 58, 133, .92);
  font-weight: 700;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.contact-link {
  color: inherit;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-detail-ico {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 58, 133, .06);
  border: 1px solid rgba(0, 58, 133, .16);
  flex: 0 0 auto;
}

.contact-page-right {
  background: rgba(232, 245, 235, .55);
  border: 1px solid rgba(0, 58, 133, .10);
  border-radius: 14px;
  padding: 16px;
}

.contact-success {
  background: #e9fff0;
  border: 1px solid rgba(0, 128, 64, .18);
  color: #0a5a2e;
  padding: 10px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 13px;
}

.contact-error {
  background: #fff0f0;
  border: 1px solid rgba(180, 40, 40, .22);
  color: #7a1515;
  padding: 10px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 13px;
}

.contact-error-list {
  margin: 0;
  padding-left: 18px;
  font-weight: 600;
}

.contact-error-list li {
  margin: 4px 0
}

.contact-form {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-label {
  font-family: var(--fontHeading);
  font-size: 12px;
  font-weight: 800;
  color: var(--heading);
}

.req {
  color: #c11
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid rgba(0, 58, 133, .40);
  border-radius: 0;
  padding: 9px 10px;
  font-family: var(--fontBody);
  font-size: 13px;
  outline: none;
  background: rgba(255, 255, 255, .85);
}

.form-input:focus,
.form-textarea:focus {
  box-shadow: 0 0 0 3px rgba(0, 58, 133, .12);
  border-color: rgba(0, 58, 133, .65);
}

.form-submit {
  width: fit-content;
  padding: 8px 16px;
  border: 1px solid rgba(0, 58, 133, .35);
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  border-radius: 0;
}

.form-submit:hover {
  background: var(--btnHover);
  border-color: rgba(69, 196, 99, .55);
  filter: none;
  box-shadow: 0 6px 20px rgba(69, 196, 99, .25);
}

@media (max-width: 980px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .contact-page-right {
    padding: 14px
  }
}

/* R&D page */
.rd-page {
  background: #ffffff;
  padding: 18px 0 26px;
}

.rd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;

  margin: 0 auto;
}

.rd-media {
  width: 100%;
  min-height: 420px;
}

.rd-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .08);
}

.rd-copy {
  max-width: none;
}

.rd-spacer {
  margin-top: 14px;
}

@media (max-width: 980px) {
  .rd-grid {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .rd-media {
    min-height: 260px
  }
}

/* R&D lab section (two green bordered cards) */
.rd-lab {
  background: #f2f4f6;
  padding: 22px 0 30px;
}

.rd-lab-head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 18px;
}

.rd-lab-sub {
  margin: 8px auto 0;
  color: rgba(12, 27, 42, .70);
  line-height: 1.6;
  font-size: var(--fs-body);
  max-width: 980px;
}

.rd-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.rd-card {
  background: #fff;
  border: 2px solid rgba(69, 196, 99, .88);
  border-radius: 0;
  padding: 18px 18px 14px;
}

.rd-card-title {
  margin: 0 0 10px;
  text-align: center;
  font-family: var(--fontHeading);
  font-weight: 900;
  font-size: var(--fs-h3);
  color: var(--heading);
}

.rd-card-text {
  margin: 0 0 10px;
  color: rgba(12, 27, 42, .72);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.rd-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(12, 27, 42, .78);
  font-size: 12.5px;
  line-height: 1.55;
}

.rd-list li {
  margin: 8px 0
}

.rd-list b {
  color: rgba(12, 27, 42, .88)
}

@media (max-width: 980px) {
  .rd-cards {
    grid-template-columns: 1fr
  }
}

/* Industries page (left content / right image) */
.ind-page {
  background: #fff;
  padding: 18px 0 28px;
}

.ind-head {
  text-align: center;
  margin: 0 0 20px;
}

.ind-sub {
  margin: 10px auto 0;
  max-width: 980px;
  color: rgba(12, 27, 42, .72);
  line-height: 1.65;
  font-size: var(--fs-body);
}

.ind-row {
  margin: 22px auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(12, 27, 42, .08);
  max-width: none;
  width: 100%;
}

.ind-row:first-of-type {
  border-top: none;
}

.ind-row .ind-copy {
  grid-column: 1;
}

.ind-row .ind-media {
  grid-column: 2;
}

.ind-row--reverse .ind-media {
  grid-column: 1;
}

.ind-row--reverse .ind-copy {
  grid-column: 2;
}

.ind-copy {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ind-title {
  margin: 0 0 10px;
  font-family: var(--fontHeading);
  font-weight: 900;
  font-size: var(--fs-h2);
  color: var(--heading);
}

.ind-text {
  margin: 0;
  color: rgba(12, 27, 42, .72);
  line-height: 1.7;
  font-size: var(--fs-body);
  max-width: 70ch;
}

.ind-media {
  width: 100%;
  min-height: 280px;
}

.ind-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .08);
}

@media (max-width: 520px) {
  .ind-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ind-row .ind-media,
  .ind-row .ind-copy,
  .ind-row--reverse .ind-media,
  .ind-row--reverse .ind-copy {
    grid-column: auto;
  }

  .ind-media {
    min-height: 220px
  }
}

/* R&D */
.rnd {
  padding: 0 0 14px
}

.rnd-inner {
  display: flex;
  justify-content: center
}

.rnd-card {
  width: 100%;
  background: linear-gradient(135deg, #ffffff, #f1f6ff);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .08);
  padding: 14px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.rnd-ico {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0, 58, 133, .12), rgba(0, 58, 133, .06));
  border: 1px solid rgba(0, 58, 133, .20);
  color: var(--brand);
  flex: 0 0 auto;
  font-size: 20px;
}

/* Contact */
.contact {
  padding: 8px 0 22px
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 12px;
}

.contact-card {
  background: linear-gradient(135deg, rgba(15, 42, 85, .95), rgba(31, 78, 138, .95));
  color: #fff;
  border-radius: calc(var(--radius) + 6px);
  padding: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 255, 255, .12);
}

.contact-card .section-title {
  margin-bottom: 12px
}

.contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
  opacity: .95;
  margin: 10px 0;
  font-size: 13px;
}

.contact-ico {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  flex: 0 0 auto;
}

.quick-links {
  display: grid;
  gap: 10px
}

.quick-link {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  font-weight: 700;
  font-size: 13px;
}

.quick-link:hover {
  background: rgba(255, 255, 255, .14)
}

/* Footer */
.site-footer {
  background-image: url("../images/footerbackground.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 22px 0 14px;
}

.footer-wrap {
  opacity: .95
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: start;
}

.footer-col-links {
  text-align: right;
}

.footer-title {
  font-family: var(--fontHeading);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
}

.footer-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: var(--fs-body);
  line-height: 1.55;
  margin: 10px 0;
  color: rgba(255, 255, 255, .92);
}

.footer-inline-link {
  color: inherit;
  text-decoration: none;
}

.footer-inline-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-ico {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  flex: 0 0 auto;
  margin-top: 1px;
}

.footer-links {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.footer-link {
  color: rgba(255, 255, 255, .92);
  font-weight: 700;
  font-size: 13px;
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

button.footer-link {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
  text-align: inherit;
}

@media (max-width: 768px) {
  .footer-col-links {
    text-align: center;
  }

  .footer-col-links .footer-title {
    text-align: center;
  }

  .footer-links {
    justify-items: center;
    text-align: center;
  }

  .footer-link,
  button.footer-link {
    text-align: center;
  }
}

body.disclaimer-modal-open,
body.contact-thanks-modal-open {
  overflow: hidden;
}

.disclaimer-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.disclaimer-modal[hidden] {
  display: none !important;
}

.disclaimer-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.disclaimer-modal__panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(85vh, 720px);
  overflow: auto;
  background: #fff;
  border: 3px solid #111;
  border-radius: 2px;
  padding: 28px 26px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

.disclaimer-modal__title {
  margin: 0 0 14px;
  padding-right: 44px;
  font-family: var(--fontHeading);
  font-weight: 800;
  font-size: 20px;
  color: var(--heading);
}

.disclaimer-modal__body {
  font-size: 14px;
  line-height: 1.65;
  color: #333;
}

.disclaimer-modal__body p {
  margin: 0 0 12px;
}

.disclaimer-modal__body p:last-child {
  margin-bottom: 0;
}

.disclaimer-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 0;
  background: #111;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.disclaimer-modal__close:hover {
  filter: brightness(1.12);
}

/* Contact form — thank you popup */
.contact-thanks-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.contact-thanks-modal[hidden] {
  display: none !important;
}

.contact-thanks-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 70, .45);
  backdrop-filter: blur(4px);
}

.contact-thanks-modal__panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  text-align: center;
  background: #fff;
  border: 1px solid rgba(0, 58, 133, .18);
  border-radius: 16px;
  padding: 32px 28px 28px;
  box-shadow: 0 28px 70px rgba(0, 58, 133, .22);
}

.contact-thanks-modal__icon {
  font-size: 48px;
  color: var(--brandAccent);
  line-height: 1;
  margin-bottom: 12px;
}

.contact-thanks-modal__title {
  margin: 0 0 10px;
  font-family: var(--fontHeading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--heading);
  line-height: 1.25;
}

.contact-thanks-modal__text {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.6;
  color: #3a4a5c;
}

.contact-thanks-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 10px 22px;
  border: 0;
  border-radius: 0;
  background: var(--brand);
  color: #fff;
  font-family: var(--fontBody);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}

.contact-thanks-modal__btn:hover {
  background: var(--btnHover);
  filter: none;
  box-shadow: 0 8px 24px rgba(69, 196, 99, .35);
}

.contact-thanks-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(0, 58, 133, .15);
  background: #fff;
  color: var(--heading);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.contact-thanks-modal__close:hover {
  background: rgba(0, 58, 133, .06);
}

.footer-bottom {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: 12px;
  color: rgba(255, 255, 255, .90);
}

.footer-mini {
  display: none
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .65);
}

/* Responsive */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .legacy-inner {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .pillars-inner {
    grid-template-columns: 1fr;
    justify-content: stretch
  }

  .stats-inner {
    grid-template-columns: 1fr
  }

  .industries-inner {
    grid-template-columns: 1fr
  }

  .contact-inner {
    grid-template-columns: 1fr
  }
}

/* About page (image left / content right) */
.about-page {
  background: #fff;
  padding: 40px 0 54px;
}

.about-page-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;

  margin: 0 auto;
}

.about-page-media {
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-page-img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  display: block;
}

.about-page-copy {
  max-width: 560px;
}

.about-page-title {
  margin: 0 0 12px;
  font-family: var(--fontHeading);
  font-weight: 900;
  font-size: clamp(22px, 2.7vw, 30px);
  color: var(--heading);
  line-height: 1.2;
}

.about-page-text {
  margin: 0 0 14px;
  color: rgba(12, 27, 42, .72);
  line-height: 1.7;
  font-size: var(--fs-body);
}

.about-page-text:last-of-type {
  margin-bottom: 18px
}

.about-page-btn {
  border-radius: 999px;
  padding: 12px 22px;
}

@media (max-width: 980px) {
  .about-page-inner {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .about-page-copy {
    max-width: none
  }

  .about-page-media {
    min-height: 240px
  }

  .about-page-img {
    max-height: 340px
  }
}

/* About page: Legacy timeline slider */
.about-timeline {
  background: #ffffff;
  padding: 28px 0 48px;
}

.about-timeline-inner {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: clamp(16px, 4vw, 48px);
  padding-right: clamp(16px, 4vw, 48px);
}

.about-tl-title {
  margin: 0 0 28px;
  text-align: center;
  font-family: var(--fontHeading);
  font-weight: 900;
  font-size: clamp(22px, 2.8vw, 34px);
  color: var(--heading);
  line-height: 1.2;
}

.about-tl-slider {
  display: flex;
  align-items: stretch;
  gap: 6px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-tl-arrow {
  flex: 0 0 auto;
  align-self: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--brand);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: color .2s ease, background .2s ease;
}

.about-tl-arrow:hover {
  color: #002a5c;
  background: rgba(0, 58, 133, .08);
}

.about-tl-arrow:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.about-tl-viewport {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}

.about-tl-viewport::-webkit-scrollbar {
  height: 0
}

.about-tl-track {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  width: max-content;
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 4px 12px;
}


/* Horizontal connector across all milestones (inside track so it isn’t covered by the track layer) */
.about-tl-track::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 22px;
  height: 3px;
  background: var(--brand);
  pointer-events: none;
  z-index: 0;
}

.about-tl-item {
  position: relative;
  z-index: 1;
  flex: 0 0 min(88vw, 380px);
  scroll-snap-align: center;
  text-align: center;
  padding: 0 8px 8px;
  box-sizing: border-box;
}

.about-tl-trigger {
  width: 100%;
  margin: 0;
  padding: 6px 8px 10px;
  border: none;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  text-align: center;
  font: inherit;
  color: inherit;
  transition: background .2s ease, box-shadow .2s ease;
}

.about-tl-trigger:hover {
  background: rgba(0, 58, 133, .06);
}

.about-tl-trigger:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.about-tl-text--clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.about-tl-node {
  position: relative;
  z-index: 2;
  height: 56px;
  margin: 0 0 10px;
}

.about-tl-node .about-tl-dot {
  position: absolute;
  left: 50%;
  top: 22px;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand);
  z-index: 2;
  box-shadow: 0 0 0 3px #fff;
}

.about-tl-stem {
  position: absolute;
  left: 50%;
  top: 29px;
  transform: translateX(-50%);
  width: 2px;
  height: 36px;
  background: var(--brand);
  z-index: 1;
}

.about-tl-year {
  display: block;
  font-family: var(--fontHeading);
  font-weight: 800;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--heading);
  margin: 0 0 8px;
}

.about-tl-text {
  display: block;
  margin: 0;
  font-size: var(--fs-body);
  line-height: 1.65;
  color: #5b9bd5;
}

body.about-tl-modal-open {
  overflow: hidden;
}

.about-tl-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 32px);
  box-sizing: border-box;
}

.about-tl-modal[hidden] {
  display: none !important;
}

.about-tl-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .82);
  cursor: pointer;
}

.about-tl-modal__close-corner {
  position: fixed;
  top: clamp(12px, 3vw, 24px);
  right: clamp(12px, 3vw, 24px);
  z-index: 222;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: opacity .2s ease, transform .2s ease;
}

.about-tl-modal__close-corner:hover {
  opacity: .88;
  transform: scale(1.06);
}

.about-tl-modal__close-corner:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.about-tl-modal__panel {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  max-height: min(78vh, 640px);
  overflow: auto;
  margin: 0;
  padding: clamp(24px, 4vw, 40px) clamp(22px, 4vw, 36px);
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .45);
  text-align: center;
}

.about-tl-modal__detail {
  margin: 0 0 18px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1.45;
  color: var(--heading);
}

.about-tl-modal__year {
  margin: 0;
  font-family: var(--fontHeading);
  font-weight: 800;
  font-size: clamp(15px, 1.6vw, 18px);
  color: #4a5568;
}

/* Mobile: 2 timeline items per screen
   Viewport = 90vw (container-fluid) - 2 arrows (44px each) - 2 slider gaps (6px each) = 90vw - 100px
   Item = (viewport - item gap 16px) / 2 = (90vw - 116px) / 2 = 45vw - 58px
*/
@media (max-width: 599px) {
  .about-tl-item {
    flex: 0 0 calc(45vw - 58px);
    scroll-snap-align: start;
    min-width: 0;
  }
}

/* Desktop: fixed card width */
@media (min-width: 900px) {

  /* Use vw/clamp — not % of track — so widths stay stable with width:max-content on .about-tl-track */
  .about-tl-item {
    flex: 0 0 clamp(200px, 22vw, 280px);
    scroll-snap-align: start;
  }
}

/* About page: Core Values slider */
.cv {
  background: #ffffff;
  padding: 18px 0 56px;

  max-width: 100vw;

  box-sizing: border-box;
}

.cv>.container-fluid {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: clamp(16px, 4vw, 48px);
  padding-right: clamp(16px, 4vw, 48px);
}

.cv-title {
  margin: 0 0 18px;
  text-align: center;
  font-family: var(--fontHeading);
  font-weight: 900;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--heading);
}

.cv-slider {
  max-width: none;
  margin: 0 auto;
}

.cv-track {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
}

.cv-track::-webkit-scrollbar {
  height: 0
}

.cv-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex;
  min-height: 0;
}

.cv-card {
  background: var(--brand);
  border-radius: 12px;
  padding: 26px 20px;
  flex: 1;
  width: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .10);
}

.cv-ico {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
}

.cv-ico i {
  font-size: 28px
}

.cv-ico-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.cv-head {
  font-weight: 900;
  font-family: var(--fontHeading);
  font-size: 14px;
}

.cv-text {
  font-size: 13px;
  line-height: 1.65;
  max-width: 42ch;
  color: rgba(255, 255, 255, .92);
}

.cv-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 12px;
}

.cv-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  border: 0;
  background: rgba(0, 58, 133, .25);
  cursor: pointer;
}

.cv-dot[aria-selected="true"],
.cv-dot[aria-current="true"] {
  width: 18px;
  background: var(--brandAccent);
}

/* Mobile: 2 Core Value cards per screen */
@media (max-width: 599px) {
  .cv-slide {
    flex: 0 0 calc(50% - 8px);
  }
}

/* Tablet and up: 3 cards per screen */
@media (min-width: 980px) {
  .cv-slide {
    flex: 0 0 calc((100% - 32px) / 3)
  }
}

@media (max-width: 860px) {
  .header-inner {
    position: relative;
    z-index: 1002;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    position: relative;
    z-index: 1003;
    flex-shrink: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .site-nav {
    display: none;
    position: fixed;
    left: 12px;
    right: 12px;
    top: calc(18px + 56px + 18px + 6px);
    width: auto;
    max-width: 420px;
    margin-left: auto;
    margin-right: 0;
    max-height: min(calc(100dvh - 110px), 520px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    z-index: 1001;
    background: #ffffff;
    border: 1px solid rgba(0, 58, 133, .12);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav.is-open {
    display: flex
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: stretch;
    align-self: stretch;
  }

  /* Match .nav-link padding & left alignment; chevron sits at row end */
  .nav-link--products,
  .nav-dropdown__toggle {
    padding: 14px 14px;
    border-radius: 14px;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 600;
    color: var(--heading);
    letter-spacing: .01em;
    text-align: left;
  }

  .nav-dropdown__toggle .nav-chevron {
    margin-left: auto;
    flex-shrink: 0;
    align-self: center;
  }

  .nav-dropdown-drop {
    position: static;
    padding-top: 0;
    margin: -4px 0 2px;
  }

  .nav-dropdown-panel {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    min-width: 0;
    box-shadow: none;
    border: 0;
    border-radius: 12px;
    background: rgba(0, 51, 102, .06);
    padding: 0;
    margin: 0 6px 0;
    transition: opacity .2s ease, max-height .25s ease, visibility .2s, padding .2s ease, margin .2s ease;
  }

  /* Only .is-open controls panel (not :focus-within — toggle stays focused after tap) */
  .nav-dropdown.is-open .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    max-height: 480px;
    padding: 6px 0;
    margin: 0 6px 8px;
  }

  .nav-dropdown-link {
    padding: 10px 14px;
    border-radius: 10px;
    margin: 0 6px;
  }

  .nav-dropdown.is-open>.nav-dropdown__toggle {
    color: var(--brandAccent);
    background: rgba(69, 196, 99, .12);
  }

  .nav-dropdown.is-open .nav-chevron {
    transform: rotate(180deg);
  }

  .nav-link {
    padding: 14px 14px;
    border-radius: 14px;
    font-size: 16px;
  }

  .nav-dropdown-link {
    font-size: 15px;
  }

  .nav-link:hover {
    background: rgba(0, 58, 133, .08);
    text-decoration: none
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 34px 0 14px
  }

  .hero-kicker {
    font-size: 28px
  }

  .container {
    width: min(var(--container), calc(100% - 28px))
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .hero.hero-banner {
    background-image: url("../images/mobile-bannerjpg.jpg");
    min-height: 550px;
  }

  .hero.hero-banner .hero-inner {
    min-height: 550px;
  }

  .about-media {
    min-height: 220px
  }

  .about-img {
    height: 100%
  }
}


/* Admin app */
.admin-body {
  margin: 0;
  min-height: 100vh;
  background: #eef2f8;
  font-family: Montserrat, system-ui, sans-serif;
  color: #1a2b3d;
}

.admin-body--app {
  background: #f0f3f9;
}

/* Login */
.admin-login-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .admin-login-wrap {
    grid-template-columns: minmax(280px, 1fr) minmax(360px, 480px);
  }
}

.admin-login-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 32px;
  background: linear-gradient(155deg, #003A85 0%, #002d66 55%, #003A85 100%);
  color: #fff;
}

.admin-login-brand-title {
  margin: 0 0 8px;
  font-family: Outfit, var(--fontHeading), system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: .02em;
}

.admin-login-brand-text {
  margin: 0;
  max-width: 360px;
  font-size: 14px;
  line-height: 1.65;
  opacity: .92;
}

.admin-login-aside {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background: #f0f3f9;
}

.admin-login-card {
  width: min(400px, 100%);
  background: #fff;
  border: 1px solid rgba(0, 58, 133, .10);
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 16px 48px rgba(0, 58, 133, .10);
}

.admin-login-title {
  margin: 0 0 6px;
  font-family: Outfit, var(--fontHeading), system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--heading);
}

.admin-login-sub {
  margin: 0 0 20px;
  font-size: 13px;
  color: #4a5a6e;
  line-height: 1.5;
}

.admin-login-error {
  margin-bottom: 14px
}

.admin-login-form {
  display: grid;
  gap: 14px
}

/* App shell */
.admin-app {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
}

@media (min-width: 880px) {
  .admin-app {
    grid-template-columns: 260px 1fr;
  }
}

.admin-sidebar {
  background: #0c2d5c;
  color: #e8eef7;
  display: flex;
  flex-direction: column;
  padding: 20px 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

@media (min-width: 880px) {
  .admin-sidebar {
    border-bottom: 0;
    min-height: 100vh;
    position: sticky;
    top: 0;
    align-self: start;
    height: 100vh;
    overflow: auto;
  }
}

.admin-sidebar-logo {
  display: block;
  padding: 0 20px 20px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  margin-bottom: 12px;
}

.admin-sidebar-logo-text {
  display: block;
  font-family: Outfit, var(--fontHeading), system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .04em;
}

.admin-sidebar-logo-sub {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .65;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 12px;
  flex: 1;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background .15s, color .15s;
}

.admin-nav-link:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.admin-nav-link.is-active {
  background: rgba(69, 196, 99, .22);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(69, 196, 99, .38);
}

.admin-nav-ico {
  width: 22px;
  text-align: center;
  opacity: .9;
}

.admin-sidebar-foot {
  padding: 16px 20px 0;
  margin-top: auto;
}

.admin-sidebar-site {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
}

.admin-sidebar-site:hover {
  color: #fff
}

.admin-app-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100vh;
}

.admin-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px 18px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 58, 133, .10);
  box-shadow: 0 4px 20px rgba(0, 58, 133, .04);
}

.admin-topbar-kicker {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #6b7c90;
}

.admin-topbar-title {
  margin: 0;
  font-family: Outfit, var(--fontHeading), system-ui, sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
}

.admin-topbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.admin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  font-family: inherit;
}

.admin-btn--ghost {
  background: rgba(0, 58, 133, .08);
  color: var(--heading);
}

.admin-btn--ghost:hover {
  background: rgba(0, 58, 133, .14)
}

.admin-page {
  flex: 1;
  padding: 22px 20px 40px;
  overflow-x: hidden;
}

.admin-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.admin-inner--narrow {
  max-width: 720px
}

.admin-section {
  margin-bottom: 28px;
}

.admin-section:last-child {
  margin-bottom: 0
}

.admin-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.admin-section-title {
  margin: 0 0 14px;
  font-family: Outfit, var(--fontHeading), system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--heading);
}

.admin-section-head .admin-section-title {
  margin-bottom: 0
}

.admin-link-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--heading);
  text-decoration: none;
}

.admin-link-more:hover {
  text-decoration: underline
}

.admin-lead {
  margin: 0 0 16px;
  font-size: 14px;
  color: #4a5a6e;
}

.admin-alert {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

.admin-alert--error {
  background: #fff0f0;
  border: 1px solid rgba(180, 40, 40, .2);
  color: #7a1515;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .admin-stat-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.admin-stat-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px;
  background: #fff;
  border: 1px solid rgba(0, 58, 133, .10);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 58, 133, .05);
}

.admin-stat-card--accent {
  border-color: rgba(69, 196, 99, .38);
  background: linear-gradient(135deg, #fff 0%, rgba(69, 196, 99, .08) 100%);
}

.admin-stat-card--link {
  text-decoration: none;
  color: inherit;
  transition: transform .15s, box-shadow .15s;
}

.admin-stat-card--link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 58, 133, .10);
}

.admin-stat-card-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 58, 133, .10);
  color: var(--heading);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.admin-stat-card--accent .admin-stat-card-ico {
  background: rgba(69, 196, 99, .22);
  color: #1a6b38;
}

.admin-stat-label {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  color: #6b7c90;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.admin-stat-value {
  margin: 0;
  font-family: Outfit, var(--fontHeading), system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--heading);
  line-height: 1;
}

.admin-stat-action {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: var(--heading);
}

.admin-panel {
  background: #fff;
  border: 1px solid rgba(0, 58, 133, .10);
  border-radius: 14px;
  padding: 22px;
}

.admin-panel--empty {
  text-align: center;
  padding: 32px 20px;
}

.admin-empty {
  margin: 0;
  font-size: 14px;
  color: #4a5a6e;
  line-height: 1.6;
}

.admin-empty a {
  color: var(--heading);
  font-weight: 700
}

.admin-recent-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.admin-recent-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px 16px;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(0, 58, 133, .10);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 58, 133, .04);
}

@media (max-width: 640px) {
  .admin-recent-item {
    grid-template-columns: 1fr;
  }
}

.admin-recent-main {
  min-width: 0;
}

.admin-recent-name {
  display: block;
  font-weight: 800;
  color: var(--heading);
  font-size: 14px;
}

.admin-recent-co {
  display: block;
  font-size: 13px;
  color: #5a6a7e;
  margin-top: 2px;
}

.admin-recent-meta {
  text-align: right;
}

@media (max-width: 640px) {
  .admin-recent-meta {
    text-align: left
  }
}

.admin-recent-product {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #3a4a5c;
}

.admin-recent-date {
  display: block;
  font-size: 11px;
  color: #7a8a9e;
  margin-top: 4px;
}

.admin-recent-mail {
  font-size: 13px;
  font-weight: 700;
  color: var(--heading);
  text-decoration: none;
  white-space: nowrap;
}

.admin-recent-mail:hover {
  text-decoration: underline
}

.admin-table-card {
  background: #fff;
  border: 1px solid rgba(0, 58, 133, .10);
  border-radius: 14px;
  box-shadow: 0 4px 22px rgba(0, 58, 133, .06);
  overflow: hidden;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.admin-table thead th {
  text-align: left;
  padding: 12px 14px;
  background: rgba(0, 58, 133, .06);
  font-weight: 800;
  color: var(--heading);
  white-space: nowrap;
  border-bottom: 1px solid rgba(0, 58, 133, .10);
}

.admin-table tbody td {
  padding: 12px 14px;
  border-top: 1px solid rgba(0, 58, 133, .08);
  vertical-align: top;
}

.admin-table tbody tr:hover {
  background: rgba(0, 58, 133, .025)
}

.admin-td-nowrap {
  white-space: nowrap
}

.admin-table a {
  color: var(--heading);
  font-weight: 600
}

.admin-details summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--heading);
}

.admin-dl {
  margin: 10px 0 0;
  padding: 12px 14px;
  background: rgba(232, 245, 235, .45);
  border-radius: 10px;
  font-size: 12px;
}

.admin-dl dt {
  font-weight: 800;
  color: var(--heading);
  margin-top: 8px;
}

.admin-dl dt:first-child {
  margin-top: 0
}

.admin-dl dd {
  margin: 2px 0 0
}

/* Guide / inner prose pages */
.admin-prose-grid {
  display: grid;
  gap: 16px;
}

.admin-prose-card {
  background: #fff;
  border: 1px solid rgba(0, 58, 133, .10);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 4px 18px rgba(0, 58, 133, .05);
}

.admin-prose-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.admin-prose-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 58, 133, .10);
  color: var(--heading);
  display: grid;
  place-items: center;
  font-size: 16px;
}

.admin-prose-title {
  margin: 0;
  font-family: Outfit, var(--fontHeading), system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--heading);
}

.admin-prose-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #3a4a5c;
}

.admin-prose-text strong {
  color: #1a2b3d
}

.admin-code {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  background: rgba(0, 58, 133, .08);
  padding: 2px 6px;
  border-radius: 4px;
}

.admin-inline-link {
  color: var(--heading);
  font-weight: 700;
  text-decoration: none;
}

.admin-inline-link:hover {
  text-decoration: underline
}

@media (max-width: 879px) {
  .admin-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .admin-nav-link {
    flex: 1;
    min-width: 120px;
    justify-content: center;
  }
}