:root {
  --navy: #0d2742;
  --navy-2: #12385d;
  --green: #1fa463;
  --green-dark: #168450;
  --grey: #6f7d8a;
  --steel: #d9e0e6;
  --gold: #d2a84a;
  --white: #ffffff;
  --ink: #101820;
  --soft: #f3f6f8;
  --line: #dbe3ea;
  --shadow: 0 14px 30px rgba(15, 31, 48, .12);
  --ease-smooth: cubic-bezier(.22, .61, .36, 1);
  --tr-fast: .28s;
  --tr-mid: .42s;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  animation: pageEnter .55s ease both;
}
.reveal-item {
  opacity: 1;
  transform: none;
}
.js .reveal-item {
  opacity: 0;
  transform: translateY(20px) scale(.985);
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.js .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
main > section {
  animation: sectionEnter .7s ease both;
  transition: transform var(--tr-mid) var(--ease-smooth), filter var(--tr-mid) ease;
}
main > section:nth-of-type(1) { animation-delay: .05s; }
main > section:nth-of-type(2) { animation-delay: .12s; }
main > section:nth-of-type(3) { animation-delay: .18s; }
main > section:nth-of-type(4) { animation-delay: .24s; }
main > section:nth-of-type(5) { animation-delay: .3s; }
main > section:nth-of-type(6) { animation-delay: .36s; }
main > section:nth-of-type(7) { animation-delay: .42s; }
main > section:nth-of-type(8) { animation-delay: .48s; }
main > section:nth-of-type(9) { animation-delay: .54s; }
main > section:nth-of-type(10) { animation-delay: .6s; }

@keyframes pageEnter {
  from { opacity: .01; }
  to { opacity: 1; }
}
@keyframes sectionEnter {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  body, main > section, .reveal-item {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1200px, calc(100% - 2rem)); margin: 0 auto; }
.header-shell { width: calc(100% - .6rem); max-width: 1460px; margin: 0 auto; }

.industry-card,
.service-card,
.product-card,
.media-card,
.content-card,
.analysis-image,
.analysis-content,
.pin-card,
.cta-panel,
.page-media,
.contact-form-lite,
.services-feature-image,
.industries-feature-image {
  transition:
    transform var(--tr-mid) var(--ease-smooth),
    box-shadow var(--tr-mid) ease,
    border-color var(--tr-mid) ease,
    filter var(--tr-mid) ease;
}

.media-card:hover,
.content-card:hover,
.analysis-image:hover,
.analysis-content:hover,
.pin-card:hover,
.cta-panel:hover,
.page-media:hover,
.contact-form-lite:hover,
.services-feature-image:hover,
.industries-feature-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(15, 31, 48, .17);
}

.media-card img,
.analysis-image img,
.product-card img,
.page-media img,
.services-feature-image img,
.industries-feature-image img {
  transition: transform .75s var(--ease-smooth), filter .55s ease;
}

.media-card:hover img,
.analysis-image:hover img,
.product-card:hover img,
.page-media:hover img,
.services-feature-image:hover img,
.industries-feature-image:hover img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.02);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  transition: background-color .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-top: 3px solid #1d4f8f;
  border-bottom: 1px solid #dbe5ef;
}
.site-header.scrolled {
  background: #fff;
  border-bottom-color: #d2deea;
  box-shadow: 0 8px 20px rgba(14, 34, 56, .10);
}

.navbar-wrap { background: #fff; }
.navbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .75rem;
  align-items: center;
  min-height: 84px;
  padding: .45rem 0 .3rem;
}
.brand { display: flex; align-items: center; gap: .7rem; min-width: 0; }
.brand img {
  width: 280px;
  height: 68px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.primary-nav { min-width: 0; }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #cfd9e3;
  border-radius: .7rem;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  justify-self: end;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: #163858;
  transition: transform .22s ease, opacity .22s ease;
}
.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: .35rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.nav-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: .5rem .7rem .55rem;
  border-radius: .45rem .45rem 0 0;
  font-weight: 600;
  color: #485a6d;
  transition: .2s ease;
}
.nav-list a:hover, .nav-list a.active {
  background: linear-gradient(180deg, #2e5c9b, #1f4d8b);
  color: #fff;
}
.site-header.scrolled .nav-list a { color: #485a6d; }
.site-header.scrolled .nav-list a:hover,
.site-header.scrolled .nav-list a.active {
  color: #fff;
  background: linear-gradient(180deg, #2e5c9b, #1f4d8b);
}

.nav-flags { display: flex; align-items: center; gap: .35rem; }
.flag-chip {
  width: 46px;
  height: 22px;
  border-radius: .15rem;
  border: 1px solid #c7d2df;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
}
.flag-it {
  color: #14293f;
  background: linear-gradient(90deg, #009246 0 33%, #ffffff 33% 66%, #ce2b37 66% 100%);
}
.flag-en {
  color: #13253b;
  background: linear-gradient(180deg, #ff9933 0 33%, #ffffff 33% 66%, #138808 66% 100%);
}
.flag-chip.is-lang-active {
  box-shadow: 0 0 0 2px rgba(30,75,136,.20), 0 1px 2px rgba(0,0,0,.08);
  border-color: #1f4d8b;
  transform: translateY(-1px);
}
.flag-in {
  color: #13253b;
  background: linear-gradient(180deg, #ff9933 0 33%, #fff 33% 66%, #138808 66% 100%);
}
.standards-strip {
  background: linear-gradient(180deg, #2e5c9b, #1e4b88);
  border-top: 1px solid rgba(255,255,255,.15);
}
.standards-strip-inner {
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: #eef4fb;
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .06em;
}
.standards-strip-inner .sep { color: #b8cceb; }

.eyebrow {
  margin: 0 0 .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .78rem;
  color: var(--green);
  font-weight: 700;
}
.eyebrow.dark { color: var(--navy); }
h1, h2, h3, h4 { margin: 0 0 .7rem; line-height: 1.15; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.3rem); }
h3 { font-size: 1.05rem; }
p { margin-top: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  border: 1px solid transparent;
  border-radius: .7rem;
  padding: .78rem 1.05rem;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease, background-color .2s ease, color .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--green), #2cc97a);
  color: #fff;
  box-shadow: 0 10px 18px rgba(31,164,99,.22);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--green-dark), var(--green)); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.45);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.08); }
.btn-outline-light {
  background: #fff;
  border-color: rgba(13,39,66,.18);
  color: #17334f;
}
.btn-outline-light:hover { background: #eef4fb; color: #0d2742; }
.btn-outline-dark {
  background: #fff;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: #fff; }
.btn-small { padding: .55rem .8rem; font-size: .9rem; }

.hero-section {
  position: relative;
  background: #0e2d55;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid #d8e1ec;
}
.hero-banner-bg { position: absolute; inset: 0; }
.hero-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) brightness(.68);
  transform: scale(1.02);
  transition: transform 6s ease, filter .6s ease;
}
.hero-section:hover .hero-banner-bg img {
  transform: scale(1.06);
  filter: saturate(1.1) brightness(.7);
}
.hero-banner-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(9,35,74,.92) 0%, rgba(13,47,93,.82) 42%, rgba(12,35,64,.35) 70%, rgba(8,24,46,.18) 100%);
}
.hero-wave {
  position: absolute;
  left: 0; bottom: 10px;
  width: 46%;
  height: 46%;
  opacity: .7;
  background:
    radial-gradient(circle at 20% 80%, rgba(45,197,122,.38), transparent 45%),
    radial-gradient(circle at 35% 90%, rgba(73,173,255,.34), transparent 38%),
    radial-gradient(circle at 10% 100%, rgba(255,255,255,.18), transparent 28%);
  filter: blur(1px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
.hero-grid-banner {
  min-height: 210px;
  align-items: center;
  grid-template-columns: 1.05fr .95fr;
  gap: 1rem;
  padding: .85rem 0 .55rem;
}
.hero-copy-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy-banner {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: .55rem .4rem .55rem .15rem;
  color: #fff;
}
.hero-copy-banner h1 {
  color: #fff;
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  margin-bottom: .45rem;
  letter-spacing: .03em;
}
.hero-line {
  font-weight: 700;
  color: #eaf2fd;
  font-size: 1.05rem;
  margin-bottom: .2rem;
}
.hero-subline { color: #cfe0f3; margin-bottom: 0; }
.hero-subline-em {
  font-style: italic;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: .02em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1rem; }
.hero-actions-banner { margin-top: .75rem; gap: .65rem; }
.hero-btn {
  min-width: 170px;
  padding: .58rem .95rem;
  font-size: .95rem;
  border-radius: .25rem;
}
.hero-visual {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #d7e1ea;
  background: #dfeaf4;
}
.hero-monitor {
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  display: flex;
  justify-content: flex-end;
}
.hero-image-wrap { position: relative; height: 100%; min-height: 260px; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-monitor-frame {
  min-height: 120px;
  width: min(100%, 420px);
  background: #102843;
  border: 3px solid rgba(197,214,234,.85);
  border-radius: .3rem;
  box-shadow: 0 12px 28px rgba(2,10,20,.35);
  overflow: hidden;
}
.hero-monitor-frame img {
  object-fit: cover;
  object-position: center;
  height: 100%;
}
.hero-blue-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(18,56,93,.24), rgba(58,142,210,.15));
  pointer-events: none;
}
.hero-monitor-glow {
  background:
    linear-gradient(180deg, rgba(39,93,156,.22), rgba(10,28,53,.12)),
    linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,0));
}
.hero-bottom-strip {
  position: relative;
  z-index: 2;
  margin-top: 0;
  background: #08264a;
  color: #eaf2fb;
  border-top: 1px solid rgba(255,255,255,.25);
  border-bottom: 2px solid #ffffff;
}
.strip-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
  padding: .28rem 0;
  text-align: center;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: none;
}
.strip-items span { position: relative; }
.strip-items span + span::before {
  content: "";
  position: absolute;
  left: -.3rem; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,.18);
}

.section-soft { background: var(--soft); padding: 3.2rem 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: center; }
.media-card, .content-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  overflow: hidden;
}
.media-card img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.content-card { padding: 1.2rem; }
.page-content .content-card,
.page-content .media-card,
.page-content .page-media {
  animation: aboutFadeUp .7s ease both;
}
.page-content .content-card:nth-child(2),
.page-content .page-media:nth-child(2) {
  animation-delay: .08s;
}
.page-content .page-media:nth-child(3) {
  animation-delay: .16s;
}
.page-content .page-media:nth-child(4) {
  animation-delay: .24s;
}
.page-content .content-card:hover,
.page-content .media-card:hover,
.page-content .page-media:hover {
  transform: translateY(-6px);
}
.page-content .media-card img,
.page-content .page-media img {
  transition: transform .65s var(--ease-smooth), filter .45s ease;
}
.page-content .media-card:hover img,
.page-content .page-media:hover img {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.03);
}
.page-content .content-card h2,
.page-content .section-heading h2 {
  position: relative;
  display: inline-block;
}
.page-content .content-card h2::after,
.page-content .section-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.22rem;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2e5c9b, #1fa463);
  transform: scaleX(.35);
  transform-origin: left center;
  transition: transform .32s ease;
}
.page-content .content-card:hover h2::after,
.page-content .section-heading:hover h2::after {
  transform: scaleX(1);
}
.page-content .content-card::before,
.page-content .page-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,92,155,.08), rgba(31,164,99,.04));
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.page-content .content-card,
.page-content .page-media {
  position: relative;
}
.page-content .content-card:hover::before,
.page-content .page-media:hover::before {
  opacity: 1;
}
@keyframes aboutFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.industries-section { background: #fff; padding: 3.2rem 0; }
.section-heading { margin-bottom: 1rem; }
.section-heading.light h2 { color: #fff; }
.industries-feature-image {
  border-radius: .95rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: .95rem;
  background: #eff3f8;
}
.industries-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  max-height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}
.industry-card {
  position: relative;
  min-height: 170px;
  border-radius: .95rem;
  overflow: hidden;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  transform: translateZ(0);
}
.industry-card::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(13,39,66,.28);
  transition: transform .45s var(--ease-smooth), background-color .35s ease;
}
.industry-card:hover::before {
  transform: scale(1.05);
  background: rgba(13,39,66,.2);
}
.industry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(5,14,24,.72));
}
.industry-content {
  position: absolute; inset: auto 0 0 0;
  padding: .95rem;
  color: #fff;
  z-index: 2;
}
.industry-content h3 { margin: 0 0 .25rem; }
.industry-content span { color: #cce8ff; font-weight: 600; }
.industry-card:hover {
  background-size: 110%;
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(14, 34, 56, .2);
}

.services-section {
  padding: 3.2rem 0;
  background:
    linear-gradient(#f8fbfd, #f8fbfd),
    repeating-linear-gradient(0deg, rgba(18,56,93,.03) 0, rgba(18,56,93,.03) 1px, transparent 1px, transparent 30px),
    repeating-linear-gradient(90deg, rgba(18,56,93,.03) 0, rgba(18,56,93,.03) 1px, transparent 1px, transparent 30px);
}
.services-feature-image {
  border-radius: .95rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: .95rem;
  background: #eff3f8;
}
.services-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  max-height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .9rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: .95rem;
  padding: 1rem;
  box-shadow: var(--shadow);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(15, 31, 48, .18);
}
.service-icon {
  width: 42px; height: 42px;
  border-radius: .75rem;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(13,39,66,.08), rgba(31,164,99,.12));
  font-size: 1.25rem;
  margin-bottom: .65rem;
}
.service-card p { color: #58697a; font-size: .93rem; }
.service-expand {
  margin-top: auto;
  padding-top: .6rem;
  color: var(--green-dark);
  font-weight: 700;
  transform: translateY(6px);
  opacity: .75;
  transition: .2s ease;
}
.service-card:hover .service-expand { transform: translateY(0); opacity: 1; }

.design-analysis { background: #fff; padding: 3.2rem 0; }
.analysis-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.analysis-combined-card {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) 1.1fr;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1rem;
  align-items: center;
}
.analysis-combined-card .analysis-image { grid-column: 1; }
.analysis-combined-card .analysis-content { grid-column: 2; }

/* Landing page: keep Design & Analysis content to the right of the image */
#expertise .analysis-combined-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#expertise .analysis-combined-card .analysis-image {
  flex: 0 0 42%;
  max-width: 42%;
}
#expertise .analysis-combined-card .analysis-content {
  flex: 1 1 auto;
  max-width: none;
}
.analysis-combined-card .analysis-image,
.analysis-combined-card .analysis-content {
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}
.analysis-row.reverse .analysis-image { order: 2; }
.analysis-row.reverse .analysis-content { order: 1; }
.analysis-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #eff3f8;
}
.analysis-image img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; }
.analysis-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.15rem;
  box-shadow: var(--shadow);
}
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.feature-list li {
  padding: .6rem .8rem;
  border-radius: .65rem;
  background: #f6faf7;
  border: 1px solid #dbece2;
  position: relative;
  padding-left: 2rem;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: .8rem; top: 50%; transform: translateY(-50%);
  width: .55rem; height: .55rem;
  border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(31,164,99,.15);
}

.products-section { background: var(--soft); padding: 3.2rem 0; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .9rem;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: .95rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--tr-fast) var(--ease-smooth), box-shadow var(--tr-fast) ease, border-color var(--tr-fast) ease;
}
.product-card img { width: 100%; height: 150px; object-fit: cover; }
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(15, 31, 48, .18);
  border-color: #c7d6e5;
}
.product-body { padding: .9rem; display: grid; gap: .55rem; }
.product-body p { color: #5b6d7f; font-size: .9rem; margin: 0; }

.concept-execution {
  padding: 3.5rem 0;
  background: linear-gradient(140deg, #0d2742, #12385d);
  color: #e8f1fb;
}
.center-wrap { text-align: center; }
.center-wrap .eyebrow { color: #a8f2cd; }
.concept-execution .lead { color: #cad8e6; max-width: 820px; margin: 0 auto 1.2rem; }
.concept-execution .lifecycle-lines {
  display: grid;
  gap: .35rem;
}
.concept-execution .lifecycle-lines .lifecycle-summary {
  color: #dce8f3;
  margin-bottom: .25rem;
}
.concept-execution .lifecycle-lines span {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
  animation:
    revealSoft .8s ease both,
    heartbeat 2.8s ease-in-out infinite both;
  transform-origin: center;
  will-change: transform, opacity;
}
.concept-execution .lifecycle-lines span:nth-child(1) { animation-delay: .1s, .95s; }
.concept-execution .lifecycle-lines span:nth-child(2) { animation-delay: .45s, 1.3s; }
.concept-execution .lifecycle-lines span:nth-child(3) { animation-delay: .8s, 1.65s; }
.concept-execution .lifecycle-lines span:nth-child(4) { animation-delay: 1.15s, 2s; }
.concept-execution .lifecycle-lines span:nth-child(5) { animation-delay: 1.5s, 2.35s; }
.concept-execution .lifecycle-lines span:nth-child(6) { animation-delay: 1.85s, 2.7s; }
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .6rem;
  align-items: start;
  margin-top: 1rem;
  perspective: 1200px;
}
.timeline-line {
  position: absolute;
  left: 5%; right: 5%; top: 19px;
  height: 3px;
  background: linear-gradient(90deg, rgba(31,164,99,.2), rgba(31,164,99,.95), rgba(210,168,74,.9));
  border-radius: 999px;
  display: none;
}
.timeline-step {
  --text-delay: .2s;
  --line-delay: 0s;
  position: relative;
  z-index: 1;
  padding: 2.3rem .55rem .7rem;
  min-height: 102px;
  color: #e8f1fb;
  font-weight: 600;
  font-size: clamp(.84rem, 1.05vw, .94rem);
  line-height: 1.35;
  text-align: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .8rem;
  background: rgba(255,255,255,.03);
  overflow-wrap: anywhere;
  hyphens: auto;
  opacity: 0;
  transform: translateY(8px);
  animation: stepReveal .55s ease forwards;
  animation-delay: var(--text-delay);
  transition:
    transform .28s var(--ease-smooth),
    border-color .28s ease,
    box-shadow .28s ease,
    background-color .28s ease,
    filter .28s ease;
}
.timeline-step:hover {
  transform: translateY(-6px) rotateX(4deg);
  border-color: rgba(168, 242, 205, .38);
  background: rgba(255,255,255,.07);
  box-shadow: 0 18px 32px rgba(4, 15, 29, .26);
  filter: saturate(1.05);
}
.timeline-step:hover::before {
  box-shadow: 0 0 0 8px rgba(31,164,99,.18), 0 0 18px rgba(31,164,99,.35);
}
.timeline-step:hover::after {
  opacity: 1;
  filter: brightness(1.08);
}
.timeline .timeline-step:nth-child(2) { --text-delay: .2s; }
.timeline .timeline-step:nth-child(3) { --line-delay: .95s; --text-delay: 1.35s; }
.timeline .timeline-step:nth-child(4) { --line-delay: 2s; --text-delay: 2.4s; }
.timeline .timeline-step:nth-child(5) { --line-delay: 3.05s; --text-delay: 3.45s; }
.timeline .timeline-step:nth-child(6) { --line-delay: 4.1s; --text-delay: 4.5s; }
.timeline-step::before {
  content: "";
  position: absolute;
  top: .45rem; left: 50%; transform: translateX(-50%) scale(.55);
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green);
  border: 3px solid rgba(255,255,255,.25);
  box-shadow: 0 0 0 6px rgba(31,164,99,.15);
  opacity: 0;
  animation: stepDot .45s ease forwards;
  animation-delay: calc(var(--text-delay) + .05s);
}
.timeline-step::after {
  content: "";
  position: absolute;
  top: clamp(18px, 1.4vw, 21px);
  left: calc(-50% - min(2vw, 12px));
  width: calc(100% + min(4vw, 24px));
  height: clamp(3px, .35vw, 5px);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31,164,99,.25), rgba(31,164,99,.95), rgba(210,168,74,.9));
  transform-origin: left center;
  transform: scaleX(0);
  opacity: .95;
  z-index: -1;
  animation: connectorDraw .35s ease forwards;
  animation-delay: var(--line-delay);
  transition: opacity .28s ease, filter .28s ease;
}
.timeline-step > span {
  display: inline-block;
  position: relative;
}
.timeline-step > span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,242,205,.92), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .28s ease;
}
.timeline-step:hover > span::after {
  transform: scaleX(1);
}
.timeline .timeline-step:nth-child(2)::after {
  display: none;
}
@keyframes pulseLine {
  0%,100% { opacity: .75; }
  50% { opacity: 1; box-shadow: 0 0 18px rgba(31,164,99,.25); }
}
@keyframes connectorDraw {
  from { transform: scaleX(0); opacity: .75; }
  to { transform: scaleX(1); opacity: 1; }
}
@keyframes stepReveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes stepDot {
  from { opacity: 0; transform: translateX(-50%) scale(.55); }
  to { opacity: 1; transform: translateX(-50%) scale(1); }
}
@keyframes revealSoft {
  from { opacity: 0; transform: translateY(6px) scale(1); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes mapShift {
  0% { transform: scale(1) translate3d(0, 0, 0); }
  100% { transform: scale(1.03) translate3d(0, -8px, 0); }
}
@keyframes heartbeat {
  0%, 48%, 100% { transform: translateY(0) scale(1); }
  52% { transform: translateY(0) scale(1.03); }
  58% { transform: translateY(0) scale(1); }
  64% { transform: translateY(0) scale(1.02); }
  72% { transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .concept-execution .lifecycle-lines span {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .timeline-line {
    transform: none;
    animation: none;
    display: none;
  }
  .timeline-step {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .timeline-step::before {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    animation: none;
  }
  .timeline-step::after {
    transform: scaleX(1);
    animation: none;
  }
  .map-bg {
    animation: none;
  }
  .industry-card,
  .service-card,
  .product-card,
  .media-card,
  .content-card,
  .analysis-image,
  .analysis-content,
  .pin-card,
  .cta-panel,
  .page-media,
  .contact-form-lite,
  .services-feature-image,
  .industries-feature-image {
    transition: none !important;
  }
  .media-card img,
  .analysis-image img,
  .product-card img,
  .page-media img,
  .services-feature-image img,
  .industries-feature-image img,
  .hero-banner-bg img {
    transition: none !important;
    transform: none !important;
    filter: none !important;
  }
}

.global-presence {
  position: relative;
  background: #071a2d;
  color: #fff;
  padding: 3.2rem 0;
  overflow: hidden;
}
.map-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(31,164,99,.12), transparent 38%),
    radial-gradient(circle at 75% 20%, rgba(210,168,74,.10), transparent 35%),
    radial-gradient(circle at 65% 70%, rgba(74,140,220,.12), transparent 38%),
    linear-gradient(transparent 96%, rgba(255,255,255,.03) 96%),
    linear-gradient(90deg, transparent 96%, rgba(255,255,255,.03) 96%);
  background-size: auto, auto, auto, 30px 30px, 30px 30px;
  opacity: .9;
  animation: mapShift 12s ease-in-out infinite alternate;
}
.pins-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: .9rem;
}
.pin-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .95rem;
  padding: 1rem;
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  backdrop-filter: blur(4px);
  transition: transform var(--tr-fast) var(--ease-smooth), border-color var(--tr-fast) ease, background-color var(--tr-fast) ease;
}
.pin-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.07);
}
.pin { font-size: 1.3rem; filter: drop-shadow(0 0 8px rgba(31,164,99,.45)); }
.pin-card p { margin: .15rem 0 0; color: #c9d9ea; }

.cta-section { padding: 3rem 0; background: #fff; }
.cta-panel {
  background: linear-gradient(135deg, #f2f7fb, #ebf5ee);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
  align-items: center;
}
.cta-buttons { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: flex-end; }

.inner-hero {
  background: linear-gradient(135deg, var(--navy), #17456f);
  color: #fff;
  padding: 3rem 0;
}
.inner-hero.page-hero {
  background-image:
    linear-gradient(135deg, rgba(13,39,66,.88), rgba(23,69,111,.78)),
    var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.inner-hero p { color: #d8e5f3; max-width: 800px; }
.page-content { padding: 2.5rem 0 3rem; background: var(--soft); }
.page-media {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  background: #e9eff6;
}
.page-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}
.contact-form-lite {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  gap: .7rem;
}
.contact-form-lite label { display: grid; gap: .35rem; font-weight: 600; color: #23384e; }
.contact-form-lite input,
.contact-form-lite textarea {
  width: 100%;
  border: 1px solid #cfd9e3;
  border-radius: .65rem;
  padding: .7rem .8rem;
  font: inherit;
}
.contact-form-lite input:focus,
.contact-form-lite textarea:focus {
  outline: 2px solid rgba(31,164,99,.18);
  border-color: var(--green);
}
.notice-success {
  background: #ecfbf3;
  border: 1px solid #bfe8cf;
  color: #0b6b3a;
  border-radius: .65rem;
  padding: .7rem .8rem;
  font-weight: 600;
}

.site-footer { background: #081a2d; color: #d2dcea; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  padding: 2rem 0 1.4rem;
}
.footer-grid h4 { color: #fff; margin-bottom: .6rem; }
.footer-grid a, .footer-grid span {
  display: block;
  color: #c4d3e1;
  margin: .28rem 0;
  font-size: .92rem;
}
.footer-subtoggle {
  display: block;
  width: 100%;
  margin: .28rem 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #c4d3e1;
  font: inherit;
  font-size: .92rem;
  text-align: left;
  cursor: pointer;
}
.footer-subtoggle:hover,
.footer-subtoggle[aria-expanded="true"] {
  color: #9be9c2;
}
.footer-submenu {
  padding-left: .9rem;
  border-left: 1px solid rgba(255,255,255,.12);
  margin: .2rem 0 .4rem;
}
.footer-submenu a {
  color: #aebfd1;
  font-size: .88rem;
}
.footer-grid a:hover { color: #9be9c2; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.08);
}
.footer-bottom-inner {
  padding: .9rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .9rem;
  color: #b8c8d8;
}

.chat-float {
  position: fixed !important;
  right: max(.9rem, env(safe-area-inset-right));
  bottom: max(.9rem, env(safe-area-inset-bottom));
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
  z-index: 9999;
  transition: transform .35s ease, box-shadow .35s ease, background-color .35s ease, filter .35s ease;
  animation: chatFloat 3.2s ease-in-out infinite;
}
.chat-float:hover {
  transform: translateY(-4px) scale(1.06);
  background: #1ebe5b;
  box-shadow: 0 16px 38px rgba(37, 211, 102, .58);
  filter: saturate(1.08);
}
.chat-float:focus-visible {
  outline: 3px solid rgba(255,255,255,.85);
  outline-offset: 3px;
  transform: translateY(-3px) scale(1.04);
}
.chat-float:active {
  transform: translateY(0) scale(.97);
  box-shadow: 0 8px 22px rgba(37, 211, 102, .45);
}
.chat-float svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
  flex: 0 0 auto;
}
@keyframes chatFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.01); }
}
@media (prefers-reduced-motion: reduce) {
  .chat-float {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
  .navbar-inner { grid-template-columns: 1fr; }
  .brand { justify-self: start; }
  .nav-list { justify-content: flex-start; }
  .nav-flags { justify-self: start; }
  .analysis-combined-card { grid-template-columns: minmax(260px, .85fr) 1fr; }
  .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .timeline { grid-template-columns: repeat(5, minmax(0,1fr)); }
  .timeline-step { min-height: 108px; font-size: .86rem; }
  .timeline-step::after {
    left: -51%;
    width: 102%;
  }
}
@media (max-width: 800px) {
  body { overflow-x: hidden; }
  .navbar-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand flags"
      "nav nav";
    min-height: 74px;
    gap: .45rem;
    padding: .45rem 0;
  }
  .brand { grid-area: brand; justify-self: start; }
  .brand img { width: 230px; height: 58px; }
  .nav-toggle {
    display: inline-flex;
    grid-area: flags;
    align-self: end;
    justify-self: end;
  }
  .primary-nav {
    grid-area: nav;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .28s ease, opacity .2s ease;
  }
  .site-header.nav-open .primary-nav {
    max-height: 420px;
    opacity: 1;
  }
  .nav-list {
    flex-direction: column;
    gap: .2rem;
    padding: .3rem 0 .15rem;
  }
  .nav-list li { width: 100%; }
  .nav-list a {
    min-width: 0;
    width: 100%;
    justify-content: flex-start;
    padding: .8rem .9rem;
    border-radius: .7rem;
    border: 1px solid #dbe3ea;
    background: #f7fafc;
  }
  .nav-flags {
    grid-area: flags;
    align-self: start;
    justify-self: end;
    justify-content: flex-end;
    flex-wrap: nowrap;
    padding-bottom: 0;
  }
  .standards-strip-inner { justify-content: flex-start; flex-wrap: wrap; padding: .15rem 0; }
  .hero-grid-banner { grid-template-columns: 1fr; gap: .7rem; padding: .8rem 0 .45rem; }
  .hero-copy-banner { padding: .35rem .1rem; }
  .hero-copy-banner h1 { font-size: 1.55rem; }
  .hero-btn { min-width: 145px; }
  .hero-monitor { justify-content: stretch; }
  .hero-monitor-frame { width: min(100%, 360px); min-height: 140px; }
  .hero-grid, .two-col, .analysis-row, .cta-panel, .analysis-combined-card { grid-template-columns: 1fr; }
  .analysis-combined-card { padding: .85rem; }
  .analysis-row.reverse .analysis-image, .analysis-row.reverse .analysis-content { order: initial; }
  #expertise .analysis-combined-card {
    flex-direction: column;
    align-items: stretch;
  }
  #expertise .analysis-combined-card .analysis-image,
  #expertise .analysis-combined-card .analysis-content {
    flex: 1 1 auto;
    max-width: 100%;
  }
  .industry-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .pins-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, minmax(0,1fr)); row-gap: .8rem; }
  .timeline-line { display: none; }
  .timeline-step::after { display: none; }
  .timeline-step { min-height: 96px; text-align: center; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: .8rem; padding: 2.1rem .5rem .6rem; }
  .page-media img { height: 220px; }
  .cta-buttons { justify-content: flex-start; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .header-shell { width: calc(100% - .3rem); }
  .navbar-inner { min-height: 66px; }
  .brand img { width: 185px; height: 50px; }
  .nav-toggle {
    width: 40px;
    height: 40px;
    border-radius: .6rem;
    margin-top: 1.2rem;
  }
  .nav-flags {
    width: auto;
    gap: .25rem;
    margin-bottom: .15rem;
  }
  .nav-list a { padding: .72rem .8rem; font-size: .9rem; }
  .flag-chip { width: 34px; height: 18px; font-size: .58rem; }
  .container { width: min(1200px, calc(100% - 1rem)); }
  .section-soft,
  .industries-section,
  .services-section,
  .design-analysis,
  .products-section,
  .global-presence,
  .cta-section,
  .concept-execution,
  .inner-hero,
  .page-content {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
  }
  .hero-line { font-size: .95rem; }
  .hero-subline-em { font-size: .95rem; }
  .hero-btn { min-width: 0; flex: 1 1 auto; }
  .hero-monitor-frame { width: min(100%, 300px); min-height: 120px; border-width: 2px; }
  .analysis-combined-card { grid-template-columns: 1fr; }
  .analysis-combined-card .analysis-image,
  .analysis-combined-card .analysis-content { grid-column: auto; }
  #expertise .analysis-combined-card { flex-direction: column; }
  #expertise .analysis-combined-card .analysis-image,
  #expertise .analysis-combined-card .analysis-content {
    flex: 1 1 auto;
    max-width: 100%;
  }
  .strip-items { font-size: .68rem; }
  .strip-items { grid-template-columns: 1fr; text-align: left; }
  .strip-items span + span::before { display: none; }
  .industry-grid, .services-grid, .product-grid, .footer-grid { grid-template-columns: 1fr; }
  .industry-card { min-height: 190px; }
  .service-card { min-height: 0; }
  .analysis-image img,
  .media-card img {
    min-height: 220px;
  }
  .content-card,
  .analysis-content,
  .contact-form-lite,
  .cta-panel {
    padding: 1rem;
  }
  .hero-image-wrap { min-height: 190px; }
  .chat-float {
    width: 62px;
    height: 62px;
    right: max(.7rem, env(safe-area-inset-right));
    bottom: max(.7rem, env(safe-area-inset-bottom));
    border-radius: 50%;
  }
  .chat-float svg {
    width: 32px;
    height: 32px;
  }
}


.service-thumb {
  width: calc(100% + 2rem);
  margin: -1rem -1rem .75rem;
  height: 150px;
  object-fit: cover;
  border-radius: .95rem .95rem 0 0;
  border: 0;
}

