:root {
  --bg: #f2f4f8;
  --surface: #ffffff;
  --line: #e2e7ef;
  --text: #0d2f5a;
  --muted: #49668c;
  --pink: #ff2f86;
  --fs-h1: clamp(2.1rem, 5.6vw, 3.4rem);
  --fs-h2: clamp(1.8rem, 3.8vw, 2.6rem);
  --fs-h3: clamp(1.12rem, 1.85vw, 1.62rem);
  --fs-card-title: clamp(0.94rem, 1.5vw, 1.43rem);
  --fs-body: clamp(0.98rem, 1vw, 1.02rem);
  --fs-button: clamp(0.84rem, 0.95vw, 0.9rem);
  --fs-nav: clamp(0.9rem, 0.98vw, 0.95rem);
  --fs-label: clamp(0.72rem, 0.78vw, 0.78rem);
  --lh-h1: 110%;
  --lh-h2: 114%;
  --lh-h3: 120%;
  --lh-body: 160%;
  --map-zoom: 1.55;
  --sp-xxs: 0.8%;
  --sp-xs: 1.2%;
  --sp-sm: 1.8%;
  --sp-md: 2.6%;
  --sp-lg: 4.2%;
  --sp-xl: 6.5%;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 8% 0%, #ffffff, var(--bg) 55%);
  color: var(--text);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

a {
  color: inherit;
}

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.header {
  padding: var(--sp-sm) 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  line-height: 100%;
}

.logo-dark,
.logo-white {
  display: block;
  width: auto;
  height: 44px;
  object-fit: contain;
}

.logo-white {
  display: none;
}

.footer .logo-dark,
.footer .logo-white {
  height: 40px;
}

.logo.is-on-dark .logo-dark {
  display: none;
}

.logo.is-on-dark .logo-white {
  display: block;
}

.menu {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  position: relative;
}

.menu-item {
  position: relative;
}

.menu-item.has-panel {
  padding-bottom: 0.55rem;
  margin-bottom: -0.55rem;
}

.menu-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: var(--fs-nav);
  color: #1d4475;
  font-weight: 700;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.menu-item:hover > .menu-link,
.menu-item:focus-within > .menu-link {
  background: #e8eef7;
  color: #0f315a;
}

.menu-panel {
  position: absolute;
  top: calc(100% + 0.1rem);
  left: 0;
  min-width: 330px;
  background: #fff;
  border: 1px solid #dbe4f0;
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(16, 43, 82, 0.14);
  padding: 1rem 1rem 0.9rem;
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 25;
}

.menu-item.has-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 0.1rem);
  height: 0.7rem;
}

.menu-panel.wide {
  min-width: 580px;
}

.menu-item.has-panel:hover > .menu-panel,
.menu-item.has-panel:focus-within > .menu-panel {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.tree-list,
.tree-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tree-list > li {
  position: relative;
  margin: 0.2rem 0 0.45rem;
  padding-left: 1.05rem;
}

.tree-list > li::before {
  content: none;
}

.tree-list > li::after {
  content: none;
}

.tree-list > li:last-child::after {
  bottom: 0.85rem;
}

.tree-list a {
  display: inline-block;
  text-decoration: none;
  color: #173b69;
  font-size: var(--fs-nav);
  line-height: 140%;
  padding: 0.26rem 0.38rem;
  border-radius: 6px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.tree-list a:hover,
.tree-list a:focus-visible {
  background: #eef3fb;
  color: #0d2f58;
}

.tree-list > li > ul {
  margin-top: 0.3rem;
  margin-left: 0.45rem;
}

.tree-list > li > ul > li {
  position: relative;
  padding-left: 0.95rem;
  margin: 0.08rem 0;
}

.tree-list > li > ul > li::before {
  content: none;
}

.tree-list > li > ul > li::after {
  content: none;
}

.tree-list > li > ul > li:last-child::after {
  bottom: 0.82rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.65rem 1.15rem;
  font-size: var(--fs-button);
  font-weight: 700;
  text-decoration: none;
}

.btn-primary {
  background: var(--pink);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: #1b3f6f;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 120%;
}

h1 {
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
}

h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
}

h3 {
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
}

p {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.hero,
.brands,
.trust,
.title,
.services-section,
.industrial-showcase,
.about,
.certifications,
.insights,
.final-cta {
  margin-bottom: var(--sp-xl);
}

.hero-cover {
  min-height: 473px;
  border-radius: 14px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(115deg, #041744, #0a255e 52%, #122d6b);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(120%) contrast(106%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-cover.video-ready .hero-video {
  opacity: 1;
}

.hero-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 76% 38%, rgba(103, 215, 255, 0.34), rgba(13, 31, 74, 0) 35%),
    linear-gradient(108deg, rgba(5, 22, 56, 0.72), rgba(9, 45, 99, 0.52));
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: min(640px, 90%);
  z-index: 2;
}

.hero h1 {
  color: #fff;
  font-size: var(--fs-h1);
}

.hero-overlay p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-news {
  width: min(860px, 96%);
  margin: -1.2rem auto 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(14, 41, 83, 0.15);
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 1.7fr;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.hero-news.is-changing {
  opacity: 0.78;
  transform: translateY(4px);
}

.news-left,
.news-right {
  padding: 1.15rem;
}

.news-left {
  border-right: 1px solid var(--line);
}

.eyebrow {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--pink);
}

.news-left h3 {
  margin: 0.6rem 0;
  font-size: var(--fs-card-title);
  line-height: var(--lh-h3);
}

.news-left a {
  font-size: var(--fs-button);
  font-weight: 700;
}

.news-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-right {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease;
}

.news-right:hover,
.news-right:focus-visible {
  background: #f9fbff;
  border-radius: 0 12px 12px 0;
}

.news-right-slider {
  padding: 0 1rem;
  overflow: hidden;
  border-radius: 0 12px 12px 0;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  display: flex;
  align-items: center;
}

.news-right-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.news-right-track {
  display: flex;
  width: max-content;
  gap: 0.7rem;
  align-items: center;
  animation: client-marquee 42s linear infinite;
  will-change: transform;
}

.news-right-slider.is-paused .news-right-track {
  animation-play-state: paused;
}

.client-logo-chip {
  min-width: 165px;
  height: 66px;
  padding: 0 0.95rem;
  border-radius: 12px;
  border: 0;
  background: #fff;
  box-shadow:
    0 8px 20px rgba(14, 42, 82, 0.08),
    0 1px 2px rgba(14, 42, 82, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.client-logo-chip:hover,
.client-logo-chip:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    0 12px 26px rgba(14, 42, 82, 0.12),
    0 2px 6px rgba(14, 42, 82, 0.08);
}

.client-logo-chip img {
  width: auto;
  height: auto;
  max-width: 88%;
  max-height: 78%;
  margin: 0 auto;
  object-fit: contain;
  display: block;
}

.news-thumb {
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 133, 42, 0.9), rgba(255, 205, 85, 0.65)),
    linear-gradient(150deg, #243f72, #0e1f43);
  width: 120px;
  height: 120px;
  overflow: hidden;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-right p {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: var(--fs-body);
}

.news-right h4 {
  font-size: var(--fs-card-title);
  line-height: var(--lh-h3);
}

@keyframes client-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.brands {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 1.8rem;
}

.brands h2 {
  font-size: var(--fs-h2);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.partner-logo {
  border: 1px solid #dde3ec;
  border-radius: 10px;
  background: #fff;
  min-height: 72px;
  padding: 0.8rem 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--fs-nav);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1e2530;
  overflow: hidden;
}

.partner-logo img {
  max-width: 86%;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.78;
  transition:
    filter 0.25s ease,
    opacity 0.25s ease,
    transform 0.2s ease;
}

.partner-logo:hover,
.partner-logo:focus-visible {
  border-color: #c3d4ea;
}

.partner-logo:hover img,
.partner-logo:focus-visible img {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-1px);
}

.partner-logo:focus-visible {
  outline: 2px solid #89b1dd;
  outline-offset: 2px;
}

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

.trust {
  background: #f4eef3;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.2rem 2.4rem;
  display: grid;
  grid-template-columns: 1.5fr 0.78fr;
  gap: 1.6rem;
}

.trust-main h2 {
  margin: 0.85rem 0 1.7rem;
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  max-width: 22ch;
}

.trust-body {
  display: grid;
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  gap: 1.35rem;
  align-items: start;
}

.trust-tabs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
  width: 100%;
  padding-right: 0.7rem;
}

.trust-tabs li {
  margin: 0 0 6px;
}

.trust-tabs li:last-child {
  margin-bottom: 0;
}

.trust-tab-btn {
  appearance: none;
  border: 0;
  background: transparent;
  text-align: left;
  width: 100%;
  color: #1f2f45;
  font-size: var(--fs-body);
  line-height: 130%;
  font-weight: 600;
  position: relative;
  text-transform: none;
  padding: 0.1rem 1rem 0.1rem 0;
  margin: 0;
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.25s ease;
}

.trust-panel {
  min-width: 0;
}

.trust-tab-btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 32px;
  background: #f0c9d9;
  border-radius: 99px;
}

.trust-tab-btn.active {
  color: var(--pink);
}

.trust-tab-btn.active::after {
  background: #ff4e95;
}

.trust-panel h3 {
  font-size: var(--fs-card-title);
  margin-top: 0.08rem;
  line-height: var(--lh-h3);
}

.trust-panel p {
  margin-top: 0.9rem;
  color: #303f56;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  max-width: 64ch;
  white-space: pre-line;
}

.trust-list {
  margin: 0.95rem 0 0;
  padding-left: 1.05rem;
  color: #303f56;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  max-width: 64ch;
}

.trust-list li {
  margin: 0 0 0.45rem;
}

.trust-action {
  display: inline-flex;
  margin-top: 1.05rem;
  border: 1px solid #ff7cad;
  border-radius: 999px;
  padding: 0.52rem 0.95rem;
  color: #b1185a;
  text-decoration: none;
  font-weight: 700;
  font-size: var(--fs-button);
}

.trust-media {
  border-radius: 8px;
  min-height: 560px;
  width: 100%;
  max-width: 430px;
  justify-self: end;
}

.trust-media.state-who {
  background:
    linear-gradient(145deg, rgba(12, 34, 64, 0.2), rgba(255, 255, 255, 0.08)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1000&q=80")
      center/cover no-repeat;
}

.trust-media.state-mission {
  background:
    linear-gradient(145deg, rgba(10, 29, 57, 0.22), rgba(255, 255, 255, 0.06)),
    url("https://images.unsplash.com/photo-1581092583537-20d51b4b4f1b?auto=format&fit=crop&w=1000&q=80")
      center/cover no-repeat;
}

.trust-media.state-why {
  background:
    linear-gradient(145deg, rgba(16, 30, 54, 0.2), rgba(255, 255, 255, 0.08)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1000&q=80")
      center/cover no-repeat;
}

/* reset old trust list styling */
.trust ul {
  display: grid;
  gap: 0;
}

.title h2 {
  margin-top: 0.4rem;
  font-size: var(--fs-h2);
}

.title-inline {
  margin-bottom: 1rem;
}

.services-section {
  padding-top: 0.6rem;
}

.curious-cta {
  width: min(520px, 100%);
  margin: 0 auto 2.8rem;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(10, 34, 64, 0.08);
  padding: 1.1rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.curious-cta h3 {
  font-size: var(--fs-h2);
  color: #153e71;
}

.services-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
  align-items: start;
}

.services-intro {
  padding-top: 0.2rem;
}

.services-intro h2 {
  margin-top: 0.62rem;
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  max-width: 7ch;
}

.services-board {
  border: 1px solid #f6c4d8;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fb;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-item {
  min-height: 405px;
  padding: 2.15rem 1.85rem 1.55rem;
  border-right: 1px solid #f6c4d8;
  border-bottom: 1px solid #f6c4d8;
  background: #f8f9fb;
  position: relative;
  z-index: 1;
  display: block;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.24s ease,
    background-color 0.24s ease;
}

.service-item:nth-child(2n) {
  border-right: 0;
}

.service-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.service-item:hover,
.service-item:focus-within {
  z-index: 3;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(13, 41, 84, 0.11);
  border-color: #f3b2cc;
  background: #ffffff;
}

.service-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #ff2f86;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: var(--fs-label);
}

.service-head span {
  font-size: clamp(2.1rem, 2.5vw, 2.65rem);
  color: #f0bfce;
  line-height: 100%;
  font-weight: 800;
}

.service-item h3 {
  margin-top: 1.6rem;
  color: #0f2138;
  font-size: var(--fs-card-title);
  line-height: var(--lh-h3);
}

.service-item p:not(.service-head) {
  margin-top: 1rem;
  color: #213e63;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.service-links {
  margin-top: 1.7rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.service-links a,
.service-links span {
  text-decoration: none;
  font-size: var(--fs-button);
  font-weight: 700;
  color: #17385f;
  transition: color 0.24s ease;
}

.service-links a::after,
.service-links span::after {
  content: ">";
  margin-left: 0.45rem;
  color: #2d4b77;
  transition: transform 0.24s ease;
}

.service-item:hover .service-links a,
.service-item:hover .service-links span,
.service-item:focus-within .service-links a,
.service-item:focus-within .service-links span {
  color: #0b3d7a;
}

.service-item:hover .service-links a::after,
.service-item:hover .service-links span::after,
.service-item:focus-within .service-links a::after,
.service-item:focus-within .service-links span::after {
  transform: translateX(2px);
}

/* legacy style left for compatibility */
.service-grid h3 {
  color: var(--pink);
  font-size: 0.96rem;
}

.service-grid p {
  margin-top: 0.65rem;
  color: #33557e;
  font-size: 0.96rem;
}

.industrial-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 2.22fr);
  gap: 1.35rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.industrial-intro {
  padding: 0.35rem 0.4rem 0 0.1rem;
  position: sticky;
  top: 92px;
  z-index: 2;
  min-width: 0;
  overflow: hidden;
}

.industrial-intro h2 {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.02rem;
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  max-width: 100%;
}

.industrial-intro h2 span {
  display: inline-block;
  max-width: 100%;
  background: transparent;
  padding: 0;
}

.industrial-focus {
  margin-top: 1.1rem;
  color: #314a68;
  font-weight: 600;
  font-size: var(--fs-body);
}

.industrial-meta {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.industrial-carousel {
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
}

.industrial-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.industrial-track.is-sliding {
  pointer-events: none;
}

.industrial-controls {
  display: flex;
  gap: 0.45rem;
}

.industrial-nav-btn {
  width: 33px;
  height: 33px;
  border-radius: 999px;
  border: 2px solid #153d6a;
  color: #153d6a;
  background: transparent;
  font-size: 1rem;
  line-height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.industrial-nav-btn.active {
  background: #153d6a;
  color: #fff;
}

.industrial-nav-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.industrial-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  border: 1px solid #f6c4d8;
  border-radius: 14px;
  background: #fff;
  padding: 1.15rem 1.1rem 1rem;
  min-height: 315px;
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.industrial-card:hover {
  transform: translateY(-3px);
  border-color: #f1a8c8;
  box-shadow: 0 12px 24px rgba(13, 41, 84, 0.1);
}

.industrial-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.industrial-card h3 {
  font-size: var(--fs-card-title);
  line-height: var(--lh-h3);
  color: #0f2138;
  margin-top: 0.3rem;
}

.industrial-card p {
  color: #365577;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.industrial-card a {
  margin-top: auto;
  text-decoration: none;
  color: #17385f;
  font-weight: 700;
  font-size: var(--fs-button);
}

.industrial-card a::after {
  content: ">";
  margin-left: 0.45rem;
}

.about {
  border: 0;
  border-radius: 12px;
  padding: 1.45rem 1.55rem 1.35rem;
  background: #ffffff;
  display: grid;
  gap: 1rem;
  box-shadow: 0 12px 28px rgba(16, 43, 82, 0.08);
}

.light {
  color: #ffd2e5;
}

.about-head h2 {
  color: #1e2430;
  margin: 0.25rem 0 0;
  font-size: clamp(1.35rem, 2.1vw, 1.7rem);
}

.about-head .eyebrow {
  color: var(--pink);
  letter-spacing: 0.02em;
  text-transform: none;
}

.about-map {
  border-radius: 10px;
  background: #f5f7fb;
  padding: 0.85rem 0.95rem 0.75rem;
}

.map-canvas {
  position: relative;
  min-height: 250px;
  border-radius: 8px;
  overflow: hidden;
}

.map-base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(var(--map-zoom));
  transform-origin: center;
  opacity: 0.9;
  pointer-events: none;
}

.map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 0 8px rgba(255, 47, 134, 0.24);
  left: var(--dot-x, 50%);
  top: var(--dot-y, 50%);
  transform: translate(-50%, -50%);
}

.map-countries {
  margin: 0.65rem 0 0;
  color: #355170;
  font-size: 0.86rem;
  line-height: var(--lh-body);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem 0.85rem;
  margin: 0;
}

.stats article {
  margin: 0;
  border-radius: 10px;
  background: #ffffff;
  border: 0;
  padding: 0.8rem 0.85rem;
  box-shadow: 0 8px 18px rgba(16, 43, 82, 0.06);
}

.stats span {
  display: block;
  color: #355170;
  font-size: 0.82rem;
  line-height: var(--lh-body);
  font-weight: 700;
  margin-top: 0.35rem;
}

.stats strong {
  display: block;
  font-size: 1.7rem;
  line-height: 100%;
  font-weight: 800;
  color: #ff2f86;
}

.certifications {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.cert-layout {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 1.8rem;
  align-items: start;
}

.cert-intro h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  max-width: 12ch;
}

.cert-note {
  margin-top: 0.6rem;
  max-width: 26ch;
  color: #4a678d;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.cert-card {
  --cert-logo-height: 64px;
  min-height: 96px;
  padding: 0.45rem;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem 0.7rem;
  align-items: center;
}

.cert-card img {
  width: auto;
  max-width: min(178px, 90%);
  max-height: var(--cert-logo-height);
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  opacity: 0.78;
  transition:
    filter 0.25s ease,
    opacity 0.25s ease,
    transform 0.2s ease;
}

.cert-card:hover img,
.cert-card:focus-within img {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-1px);
}

.cert-itar { --cert-logo-height: 70px; }
.cert-iatf { --cert-logo-height: 66px; }
.cert-iso9001 { --cert-logo-height: 60px; }
.cert-iso14001 { --cert-logo-height: 60px; }
.cert-dfars { --cert-logo-height: 62px; }
.cert-reach { --cert-logo-height: 66px; }
.cert-as9100d { --cert-logo-height: 64px; }
.cert-ul { --cert-logo-height: 58px; }
.cert-rohs { --cert-logo-height: 62px; }

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.post-grid article {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.post-grid article a {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.post-grid article a:focus-visible {
  outline: 2px solid #8cb3de;
  outline-offset: 2px;
}

.post-grid article:hover,
.post-grid article:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(15, 38, 70, 0.1);
  border-color: #d6e2f0;
}

.post-thumb {
  height: 170px;
  position: relative;
  overflow: hidden;
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.55;
  mix-blend-mode: multiply;
}

.post-content {
  padding: 1rem 0.95rem 0.95rem;
  display: grid;
  align-content: start;
  gap: 0.62rem;
}

.post-meta {
  color: #4a678d;
  font-size: var(--fs-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.post-summary {
  color: #2f4d73;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-read {
  margin-top: 0.45rem;
  color: #17385f;
  font-size: var(--fs-button);
  font-weight: 800;
}

.p1 {
  background: linear-gradient(130deg, #ef9f43, #e4c95a, #5378aa);
}

.p2 {
  background: linear-gradient(130deg, #214f88, #2f7ab7, #6cc3ff);
}

.p3 {
  background: linear-gradient(130deg, #6841a8, #3472b2, #47d3d2);
}

.post-grid h3 {
  padding: 0;
  font-size: var(--fs-card-title);
  line-height: var(--lh-h3);
}

.final-cta {
  border: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(16, 43, 82, 0.08);
  padding: 1.15rem 1.35rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.final-cta h2 {
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  line-height: 118%;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2.3rem;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1.15fr 1fr;
  gap: 1rem;
}

.footer p {
  color: var(--muted);
  max-width: 28ch;
}

.footer h4 {
  margin: 0 0 0.65rem;
}

.footer-text {
  color: var(--muted);
  margin: 0 0 0.55rem;
  font-size: var(--fs-nav);
  line-height: 150%;
}

.footer a {
  display: block;
  text-decoration: none;
  color: #254a78;
  margin-bottom: 0.45rem;
  font-size: var(--fs-nav);
}

@media (max-width: 980px) {
  .hero-news,
  .brands,
  .trust,
  .about,
  .footer {
    grid-template-columns: 1fr;
  }

  .news-left {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust {
    padding: 2rem;
  }

  .trust-main h2 {
    max-width: none;
  }

  .trust-body {
    grid-template-columns: minmax(160px, 210px) minmax(0, 1fr);
    gap: 1rem;
  }

  .trust-tab-btn {
    margin-bottom: 0;
    font-size: 0.95rem;
    text-transform: none;
  }

  .trust-panel h3 {
    font-size: var(--fs-card-title);
  }

  .trust-panel p {
    font-size: 1rem;
  }

  .trust-action {
    font-size: 0.84rem;
  }

  .trust-media {
    min-height: 340px;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .cert-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cert-intro h2 {
    max-width: none;
  }

  .cert-note {
    max-width: none;
  }

  .cert-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.28rem 0.55rem;
  }

  .cert-card {
    min-height: 88px;
  }

  .services-layout {
    grid-template-columns: 220px 1fr;
  }

  .post-grid {
    gap: 0.9rem;
  }

  .services-intro h2 {
    font-size: clamp(1.7rem, 3.1vw, 2.2rem);
  }

  .industrial-showcase {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .industrial-intro {
    position: static;
    overflow: visible;
    padding-right: 0;
  }

  .industrial-card {
    flex-basis: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 760px) {
  .menu {
    display: none;
  }

  .hero-cover {
    min-height: 350px;
  }

  .hero-overlay {
    left: 1.2rem;
    top: 1.4rem;
    transform: none;
  }

  .map-canvas {
    min-height: 190px;
  }

  :root {
    --map-zoom: 1.32;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .insights .title-inline {
    margin-bottom: 0.8rem;
  }

  .post-grid {
    gap: 0.75rem;
  }

  .post-content {
    padding: 0.86rem 0.8rem 0.82rem;
    gap: 0.5rem;
  }

  .certifications {
    padding: 0;
  }

  .cert-layout {
    gap: 0.8rem;
  }

  .cert-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.22rem 0.42rem;
  }

  .cert-card {
    min-height: 82px;
  }

  .cert-card img {
    max-width: min(148px, 88%);
    max-height: calc(var(--cert-logo-height) * 0.82);
  }

  .news-right-slider {
    padding: 0 0.75rem;
  }

  .client-logo-chip {
    min-width: 138px;
    height: 58px;
  }

  .trust-body {
    grid-template-columns: minmax(120px, 35%) minmax(0, 1fr);
    gap: 0.8rem;
  }

  .trust-tab-btn {
    font-size: 0.98rem;
    line-height: 125%;
  }

  .trust {
    padding: 1.3rem;
  }

  .trust-main h2 {
    font-size: clamp(1.65rem, 8vw, 2.3rem);
    margin-bottom: 1rem;
  }

  .trust-panel h3 {
    font-size: var(--fs-card-title);
  }

  .trust-action {
    margin-top: 0.9rem;
  }

  .services-board,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .industrial-intro h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .industrial-meta {
    margin-top: 0.7rem;
  }

  .industrial-card {
    flex-basis: 100%;
  }

  .industrial-card {
    min-height: auto;
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-intro h2 {
    max-width: none;
  }

  .curious-cta {
    margin-bottom: 1.7rem;
    padding: 1rem;
    gap: 0.7rem;
  }

  .curious-cta h3 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .service-item {
    border-right: 0;
    min-height: auto;
    padding: 1.45rem 1.2rem 1.2rem;
  }

  .service-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid #f4bed3;
  }

  .service-item:last-child {
    border-bottom: 0;
  }

  .service-item:hover,
  .service-item:focus-within {
    transform: none;
    box-shadow: none;
  }

  .final-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
