:root {
  --ink: #10151d;
  --body: #4b5965;
  --muted: #7b8994;
  --black: #05090d;
  --black-2: #0a1015;
  --blue: #009bdc;
  --blue-2: #007fd6;
  --white: #ffffff;
  --paper: #f6f9fc;
  --line: #dde6ee;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(54px, 6vw, 84px);
  background:
    linear-gradient(120deg, rgba(255,255,255,0.13), rgba(255,255,255,0.035) 42%, rgba(0,155,220,0.08)),
    rgba(5, 9, 13, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 14px 40px rgba(0,0,0,0.18);
  backdrop-filter: blur(26px) saturate(1.55);
  -webkit-backdrop-filter: blur(26px) saturate(1.55);
}
.site-header.scrolled {
  background:
    linear-gradient(120deg, rgba(255,255,255,0.11), rgba(255,255,255,0.025) 44%, rgba(0,155,220,0.075)),
    rgba(5, 9, 13, 0.56);
}
.brand img { width: 84px; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
.site-nav a { opacity: 0.92; }
.site-nav a:hover { color: var(--blue); opacity: 1; }
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-parent::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  display: grid;
  min-width: 250px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04) 48%, rgba(0,155,220,0.1)),
    rgba(5,9,13,0.74);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 24px 56px rgba(0,0,0,0.28);
  backdrop-filter: blur(22px) saturate(1.45);
  -webkit-backdrop-filter: blur(22px) saturate(1.45);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-dropdown-menu a {
  padding: 11px 12px;
  border-radius: 5px;
  color: var(--white);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: rgba(0,155,220,0.14);
}
.nav-cta {
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(180deg, #12aaf0, #007bd4);
  color: var(--white) !important;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.16);
  background: transparent;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: clamp(980px, 108vh, 1180px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(600px, 0.82fr) minmax(420px, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  align-content: center;
  padding: 122px clamp(54px, 6vw, 84px) 58px;
  background:
    radial-gradient(circle at 64% 28%, rgba(0, 155, 220, 0.34), transparent 38%),
    radial-gradient(circle at 94% 78%, rgba(0, 104, 178, 0.38), transparent 42%),
    linear-gradient(65deg, #05090d 0%, #071018 24%, #07344f 48%, #007fc8 75%, #009bdc 116%);
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  perspective: 1200px;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,9,13,0.96) 0 39%, rgba(5,9,13,0.42) 55%, rgba(5,9,13,0.04) 100%);
}
.hero-grid,
.hero-scan { display: none; }
.hero-content {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 760px;
}
.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}
.hero .eyebrow {
  margin-bottom: 22px;
  font-size: 24px;
}
#hero-title {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(42px, 3.75vw, 60px);
  line-height: 1.02;
  letter-spacing: 0;
}
.hero-copy {
  max-width: 610px;
  margin-bottom: 28px;
  color: #d8e3ea;
  font-size: 22px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.16);
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
.button.primary {
  border-color: var(--blue);
  background: linear-gradient(180deg, #12aaf0, #007bd4);
  color: var(--white);
}
.button.ghost { border-color: transparent; }
.button.ghost::after {
  content: "->";
  margin-left: 16px;
  font-size: 18px;
}
.hero-panel {
  position: relative;
  z-index: 3;
  grid-column: 1;
  align-self: start;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(560px, 100%);
  margin-top: 36px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.035);
}
.hero-panel div {
  min-height: 96px;
  padding: 18px 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.hero-panel div:last-child { border-right: 0; }
.hero-panel span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 31px;
  font-weight: 900;
}
.hero-panel small {
  color: #dbe5ec;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-brand-wall {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #091017;
  transform:
    translate3d(calc(var(--mx, 0) * 5px), calc(var(--my, 0) * 4px), 0)
    scale(1.002);
  transition: transform 160ms ease-out;
}
.hero-brand-wall::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at calc(71% + (var(--mx, 0) * 5%)) calc(36% + (var(--my, 0) * 4%)), rgba(0, 190, 255, 0.22), transparent 24%),
    linear-gradient(90deg, rgba(5,9,13,0.72), rgba(5,9,13,0.16) 48%, rgba(5,9,13,0) 78%);
  mix-blend-mode: screen;
  opacity: 0.72;
  pointer-events: none;
}
.hero-brand-wall::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(5,9,13,0.98) 0%, rgba(5,9,13,0.86) 34%, rgba(5,9,13,0.25) 61%, rgba(5,9,13,0.04) 100%),
    linear-gradient(180deg, rgba(5,9,13,0.16), rgba(5,9,13,0.22));
  pointer-events: none;
}
.hero-brand-wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 64%;
  display: block;
  filter: brightness(1.08) saturate(1.04);
}
.contact-hero .hero-brand-wall img {
  object-position: 58% center;
}

.section {
  padding: 72px clamp(54px, 6vw, 84px);
}
.about {
  min-height: 360px;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(420px, 1fr);
  gap: 0;
  align-items: start;
}
.blue-text { color: var(--blue); }
.about h2,
.section-heading h2,
.contact h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}
.about h2 {
  max-width: 720px;
}
.about h2::after,
.sectors-heading h3::after,
.contact h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 30px;
  background: var(--blue);
}
.about-copy {
  position: relative;
  padding: 8px 0 8px 34px;
  border-left: 4px solid var(--blue);
  background: linear-gradient(90deg, rgba(0, 155, 220, 0.07), rgba(255, 255, 255, 0) 58%);
  color: var(--body);
  font-size: 20px;
  line-height: 1.85;
}
.about-copy::before,
.about-copy::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 155, 220, 0.24), rgba(188, 200, 210, 0));
}
.about-copy::before { top: 0; }
.about-copy::after { bottom: 0; }
.about-copy p { margin-bottom: 22px; }
.about-copy p:last-child { margin-bottom: 0; }

.process {
  padding-top: 38px;
  padding-bottom: 70px;
  background: var(--white);
}
.process-line {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: linear-gradient(135deg, #eef8ff, #f5fbff);
  border: 1px solid #e4edf5;
}
.process-line article {
  position: relative;
  min-height: 175px;
  padding: 34px 28px 28px;
  border-right: 1px solid #dce7f0;
}
.process-line article:last-child { border-right: 0; }
.process-line article:not(:last-child)::after {
  content: "->";
  position: absolute;
  right: 20px;
  top: 55%;
  color: #6c7d8b;
  font-size: 24px;
}
.process-line span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
}
.process-line span svg {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-line p {
  margin: 0;
  color: var(--body);
  font-size: 17px;
  line-height: 1.65;
}

.offerings {
  padding-top: 72px;
  padding-bottom: 68px;
  background:
    radial-gradient(circle at 78% 22%, rgba(0, 155, 220, 0.09), transparent 28%),
    linear-gradient(180deg, #ffffff, #f6fbff);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(560px, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: stretch;
  margin-bottom: 0;
}
.offerings .section-heading {
  grid-template-columns: minmax(460px, clamp(460px, 34vw, 590px)) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 36px);
}
.offerings .section-heading > div:first-child {
  display: grid;
  align-content: center;
}
.offerings .section-heading h2 {
  max-width: 590px;
  color: var(--ink);
  font-size: clamp(34px, 3.4vw, 52px);
}
.offerings .section-heading p {
  max-width: 540px;
  color: var(--body);
  font-size: 20px;
  line-height: 1.75;
}
.service-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  height: 100%;
}
.service-tile {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 100%;
  overflow: hidden;
  padding: 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(12, 24, 34, 0.08);
  transition: transform 220ms ease, border-color 220ms ease;
}
.service-tile:hover {
  transform: translateY(-8px);
  border-color: rgba(0,155,220,0.76);
  box-shadow: 0 24px 64px rgba(12, 24, 34, 0.14);
}
.service-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  opacity: 0.88;
  filter: brightness(1.08) saturate(1.06);
  transition: transform 420ms ease, opacity 220ms ease;
}
.service-tile:hover img {
  opacity: 0.98;
  transform: scale(1.05);
}
.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 14, 0.04) 0%, rgba(6, 10, 14, 0.14) 42%, rgba(6, 10, 14, 0.78) 100%);
  pointer-events: none;
}
.service-tile span {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-page {
  background: linear-gradient(180deg, #ffffff, #f7fbff 62%, #ffffff);
}
.service-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(420px, 1fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  min-height: 620px;
  padding: 150px clamp(54px, 6vw, 84px) 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(0,155,220,0.5), transparent 34%),
    linear-gradient(65deg, #070c10 0%, #071018 22%, #07324a 48%, #007fc8 75%, #009bdc 118%);
  color: var(--white);
}
.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 36%, rgba(0,155,220,0.24), transparent 28%),
    linear-gradient(65deg, rgba(0,155,220,0.16), transparent 42%);
  pointer-events: none;
}
.service-hero-content,
.service-hero-media {
  position: relative;
  z-index: 2;
}
.service-hero-content {
  display: grid;
  gap: 22px;
}
.service-hero h1 {
  max-width: 780px;
  font-size: clamp(46px, 5vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}
.service-hero p {
  max-width: 720px;
  color: #d7e2ea;
  font-size: 21px;
  line-height: 1.65;
}
.service-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #dff4ff, #ffffff);
}
.service-hero-media {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: auto;
  z-index: 1;
  width: 100vw;
  height: 100%;
  margin: 0 0 0 -50vw;
  overflow: hidden;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: #05090d;
  box-shadow: none;
  pointer-events: none;
}
.service-image { min-height: 220px; }
#sign-services .service-image {
  aspect-ratio: 1 / 1;
  min-height: 0;
}
#print-services .service-image,
#print-planning .service-image {
  aspect-ratio: 4 / 3;
  min-height: 0;
}
#brand-system .service-image {
  aspect-ratio: 4 / 3;
  min-height: 0;
}
.service-hero-media img,
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-hero-media img {
  object-position: 76% center;
  filter: brightness(1.12) saturate(1.08);
  transform: scale(1.02);
}
.service-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(105deg, rgba(5,9,13,0.99) 0%, rgba(5,9,13,0.92) 33%, rgba(5,9,13,0.68) 48%, rgba(5,9,13,0.18) 70%, rgba(5,9,13,0.02) 100%),
    linear-gradient(180deg, rgba(5,9,13,0.10), rgba(5,9,13,0.36));
  pointer-events: none;
}
.service-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(65deg, rgba(5,9,13,0) 50%, rgba(0,155,220,0.10) 78%, rgba(0,155,220,0.22) 100%);
  pointer-events: none;
}
.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,9,14,0.02), rgba(4,9,14,0.26));
  pointer-events: none;
}
.jump-nav {
  position: sticky;
  top: 86px;
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
  overflow-x: auto;
  padding: 16px clamp(54px, 6vw, 84px);
  background: rgba(255,255,255,0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.jump-nav a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid #dce7f0;
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.jump-nav a:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.service-section {
  padding: 76px clamp(54px, 6vw, 84px);
}
.service-section-tight {
  padding-top: clamp(42px, 4vw, 58px);
}
.service-section.alt {
  background: linear-gradient(180deg, #f5faff, #ffffff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-hero + .service-section-tight.service-section.alt {
  border-top: 0;
}
.jump-nav + .service-section-tight.service-section.alt {
  border-top: 0;
}
#brand-system {
  padding-bottom: clamp(34px, 4vw, 52px);
}
.service-section-head {
  max-width: 920px;
  margin-bottom: 32px;
}
.service-section-head h2 {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 1.02;
}
.service-cta h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 1.02;
}
.service-section-head p,
.service-cta p {
  color: var(--body);
  font-size: 20px;
  line-height: 1.7;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-card-rich {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 24px;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 18px 48px rgba(12,24,34,0.06);
}
.service-card-rich h3 {
  color: var(--ink);
  font-size: 25px;
  line-height: 1.15;
}
.service-card-rich p,
.service-card-rich li {
  color: var(--body);
  font-size: 17px;
  line-height: 1.62;
}
.service-card-rich ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}
.service-card-rich .mini-title {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.service-card-rich .text-link {
  align-self: end;
  color: var(--blue);
  font-weight: 900;
}
.service-benefits {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(560px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}
.benefit-list,
.service-link-list {
  display: grid;
  gap: 12px;
}
.benefit-list li,
.service-link-list a {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(12,24,34,0.045);
}
.service-process-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid #dce7f0;
  background: linear-gradient(135deg, #eef8ff, #f7fbff);
}
.service-process-grid article {
  padding: 22px;
  border-right: 1px solid #dce7f0;
}
.service-process-grid article:last-child { border-right: 0; }
.service-process-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.service-process-grid h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 21px;
}
.service-process-grid p,
.faq-list p {
  color: var(--body);
  font-size: 16px;
  line-height: 1.6;
}
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.faq-list details {
  padding: 20px;
  border: 1px solid rgba(0, 155, 220, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, #eef8ff, #f7fbff);
  box-shadow: 0 16px 34px rgba(0, 64, 96, 0.06);
}
.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
}
.faq-list p { margin-top: 12px; }
.service-cta {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 54px clamp(54px, 6vw, 84px);
  background:
    radial-gradient(circle at 88% 18%, rgba(0,155,220,0.36), transparent 40%),
    linear-gradient(65deg, #070c10 0%, #071018 26%, #07324a 52%, #007fc8 82%, #009bdc 118%);
  color: #fff;
}
.service-cta h2 { color: #fff; }
.service-cta p { color: #d9e6ee; }
.service-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.service-detail-light {
  display: grid;
  gap: 34px;
  background:
    radial-gradient(circle at 12% 0, rgba(0,155,220,0.065), transparent 28%),
    linear-gradient(180deg, #ffffff, #f7fbff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-detail-card {
  scroll-margin-top: 104px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(640px, 1.28fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  height: 430px;
  min-height: 0;
  overflow: hidden;
  padding: clamp(44px, 3.4vw, 52px) clamp(36px, 3.8vw, 58px);
  border: 1px solid rgba(0, 155, 220, 0.18);
  border-radius: 8px;
  background: #f8fcff;
  box-shadow: 0 22px 68px rgba(12, 24, 34, 0.09);
  isolation: isolate;
}
.service-detail-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--panel-image);
  background-size: cover;
  background-position: center;
  opacity: 1;
  filter: brightness(1.12) saturate(1.1) contrast(1.02);
}
.service-detail-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0 37%, rgba(255,255,255,0.8) 58%, rgba(255,255,255,0.24) 82%, rgba(255,255,255,0.05) 100%),
    linear-gradient(145deg, rgba(0,155,220,0.09), transparent 44%);
}
.service-detail-number {
  position: absolute;
  top: clamp(18px, 1.6vw, 24px);
  left: clamp(18px, 1.6vw, 24px);
  z-index: 1;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0,155,220,0.48);
  background: rgba(255,255,255,0.68);
  color: var(--blue);
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0,155,220,0.12);
}
.service-detail-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
}
.service-detail-copy .eyebrow {
  margin-bottom: 10px;
  font-size: 20px;
}
.service-detail-copy h3 {
  max-width: 520px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(25px, 2.35vw, 38px);
  line-height: 1.08;
}
.service-detail-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--body);
  font-size: 19px;
  line-height: 1.65;
}
.service-detail-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  align-self: center;
  justify-self: center;
  width: min(96%, 980px);
  height: 286px;
  max-height: 100%;
  padding: 13px clamp(16px, 1.45vw, 20px);
  border: 1px solid rgba(0,155,220,0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0,155,220,0.12), rgba(0,155,220,0.025)),
    rgba(245,252,255,0.44);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), 0 18px 46px rgba(0,155,220,0.08);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
}
.service-detail-list div {
  display: grid;
  grid-template-columns: minmax(170px, 0.44fr) minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 34px);
  align-items: baseline;
  min-height: 34px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(0, 92, 140, 0.12);
}
.service-detail-list div:last-child {
  border-bottom: 0;
}
.service-detail-list strong {
  color: #26323d;
  font-size: clamp(15px, 0.92vw, 17px);
  font-weight: 900;
  line-height: 1.12;
}
.service-detail-list small {
  color: #4f6170;
  font-size: clamp(12px, 0.72vw, 14px);
  font-weight: 600;
  line-height: 1.36;
  text-wrap: pretty;
}
.service-detail-list div:hover strong {
  color: var(--blue-2);
}

.sectors {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(560px, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: stretch;
  background:
    radial-gradient(circle at 12% 18%, rgba(0,155,220,0.055), transparent 30%),
    var(--white);
}
.sectors-heading h3 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(34px, 3.5vw, 50px);
  line-height: 1.04;
}
.sectors-heading {
  display: grid;
  align-content: center;
}
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(12, 24, 34, 0.08);
}
.sector-card {
  display: grid;
  place-items: center;
  min-height: 148px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
  text-align: center;
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1), background 220ms ease;
}
.sector-card.from-left { transform: translateX(-38px); }
.sector-card.from-right { transform: translateX(38px); }
.sector-card.visible { opacity: 1; transform: translateX(0); }
.sector-card:hover { background: #f7fbff; }
.sector-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--blue-2);
}
.sector-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sector-card h4 {
  margin: 0;
  font-size: 17px;
  line-height: 1.32;
}

.work {
  padding-top: 58px;
  padding-bottom: 72px;
  background: linear-gradient(180deg, #f7fbff, #ffffff);
  border-top: 1px solid var(--line);
}
.work .section-heading {
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 20px;
}
.work .section-heading h2 {
  font-size: clamp(26px, 2.6vw, 38px);
}
.work-tools {
  display: grid;
  gap: 30px;
  justify-items: end;
}
.view-all {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}
.view-all::after {
  content: " ->";
  margin-left: 16px;
  font-size: 17px;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filters button {
  min-height: 28px;
  padding: 7px 12px;
  border: 0;
  border-radius: 3px;
  background: #edf3f8;
  color: #596875;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}
.filters button.active {
  background: var(--blue);
  color: var(--white);
}
.portfolio-slider {
  position: relative;
  aspect-ratio: 16 / 7;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e9f3fa;
  box-shadow: 0 22px 70px rgba(15, 38, 54, 0.13);
}
.portfolio-slider-track,
.portfolio-slide {
  position: absolute;
  inset: 0;
}
.portfolio-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 780ms ease, transform 900ms cubic-bezier(.2,.8,.2,1);
  transform: scale(1.035);
}
.portfolio-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.portfolio-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 6200ms ease;
}
.portfolio-slide.active img {
  transform: scale(1);
}
.portfolio-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04) 42%, rgba(0,0,0,0.72));
}
.portfolio-slide-copy {
  position: absolute;
  left: clamp(22px, 3vw, 46px);
  right: clamp(22px, 3vw, 46px);
  bottom: clamp(22px, 3vw, 42px);
  z-index: 2;
  max-width: 720px;
  color: var(--white);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease 160ms, transform 620ms ease 160ms;
}
.portfolio-slide.active .portfolio-slide-copy {
  opacity: 1;
  transform: translateY(0);
}
.portfolio-slide-copy p {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
.portfolio-slide-copy h3 {
  margin: 0;
  font-size: clamp(36px, 4.8vw, 76px);
  line-height: 0.96;
}
.portfolio-slide-copy span {
  display: block;
  max-width: 620px;
  margin-top: 14px;
  color: #dce7ef;
  font-size: 20px;
  line-height: 1.5;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 54px;
  height: 74px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 7px;
  background: rgba(5, 11, 16, 0.48);
  opacity: 0;
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: opacity 220ms ease, background 220ms ease, transform 220ms ease;
}
.portfolio-slider:hover .slider-arrow,
.slider-arrow:focus-visible { opacity: 1; }
.slider-arrow:hover { background: rgba(0, 160, 222, 0.86); }
.slider-arrow.prev { left: 18px; }
.slider-arrow.next { right: 18px; }
.slider-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  border-top: 4px solid var(--white);
  border-right: 4px solid var(--white);
}
.slider-arrow.prev::before { transform: rotate(-135deg); left: 7px; }
.slider-arrow.next::before { transform: rotate(45deg); right: 7px; }
.slider-empty,
.gallery-empty {
  display: grid;
  place-items: center;
  min-height: 240px;
  padding: 32px;
  color: var(--body);
  font-size: 20px;
  font-weight: 800;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #dfe8ef;
  color: inherit;
  cursor: pointer;
  text-align: left;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 460ms ease;
}
.gallery-item:hover img { transform: scale(1.055); }
.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 12px 10px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.72));
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
}
.gallery-caption small { display: none; }
.web-gallery-card {
  display: grid;
  grid-template-rows: minmax(120px, 0.68fr) 1fr;
  aspect-ratio: auto;
  min-height: 300px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: default;
}
.web-thumb {
  width: 100%;
  min-height: 150px;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #e4ebf1;
  cursor: pointer;
}
.web-thumb img { width: 100%; height: 100%; object-fit: cover; }
.web-card-copy {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 16px;
}
.web-card-copy p {
  margin: 0;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
.web-card-copy h3 { margin: 0; font-size: 20px; }
.web-card-copy small { color: var(--body); line-height: 1.5; }
.web-card-copy a { color: var(--blue-2); font-weight: 900; font-size: 17px; }
.service-gallery-section {
  background: linear-gradient(180deg, #ffffff, #f4fbff);
}
.service-gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.service-gallery-grid .gallery-item {
  aspect-ratio: 1 / 1.12;
}
.service-gallery-grid .web-gallery-card {
  aspect-ratio: 1 / 1.12;
  min-height: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.52fr) minmax(620px, 1fr);
  grid-template-areas:
    "copy details"
    "copy form";
  grid-template-rows: auto auto;
  gap: 24px clamp(42px, 5vw, 84px);
  align-items: start;
  padding-top: clamp(70px, 7vw, 96px);
  padding-bottom: clamp(70px, 7vw, 96px);
  background: linear-gradient(135deg, #f7fbff, #ffffff);
  border-top: 1px solid var(--line);
}
.contact-copy {
  grid-area: copy;
  align-self: start;
}
.contact-copy h2 {
  max-width: 430px;
  font-size: clamp(38px, 4vw, 58px);
}
.contact-details {
  grid-area: details;
  max-width: 960px;
  padding-top: 0;
  color: var(--body);
  font-size: 20px;
  line-height: 1.7;
}
.contact-details p {
  margin: 0;
}
.contact-links {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}
.contact-links a {
  color: var(--ink);
  font-weight: 700;
}
.phone-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 46px;
  padding: 11px 16px;
  background: #e9eef3;
  border: 1px solid #d7e0e7;
  color: #1d2832;
}
.contact-form {
  grid-area: form;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(0, 155, 220, 0.12);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 24px 70px rgba(0,64,96,0.07);
}
.quote-page {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 38%);
}
.quote-hero .service-hero-content p {
  max-width: 760px;
}
.quote-intro {
  padding-top: 64px;
}
.quote-form {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px 28px;
  margin-top: 34px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(0, 155, 220, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
  box-shadow: 0 24px 70px rgba(0, 64, 96, 0.08);
}
.quote-form label {
  display: grid;
  grid-column: span 4;
  gap: 10px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}
.quote-form .span-6 { grid-column: span 6; }
.quote-form .wide { grid-column: 1 / -1; }
.quote-form .field-icon::before {
  top: 43px;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  min-height: 54px;
  border-color: #cfdde8;
  background: #f8fcff;
}
.quote-form textarea {
  min-height: 150px;
}
.math-check {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #dfe7ee;
  background: #f6fbff;
}
.math-check input {
  background: var(--white);
}
.math-label {
  color: var(--body);
  font-size: 17px;
  font-weight: 900;
}
.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--body);
  font-size: 17px;
  font-weight: 800;
}
.form-status.is-success { color: #087846; }
.form-status.is-warning { color: #946200; }
.form-status.is-error { color: #b3261e; }
.contact-form label.is-invalid input,
.contact-form label.is-invalid textarea,
.contact-form label.is-invalid select {
  border-color: #d64545;
  background: #fff7f7;
  box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.13);
}
.contact-form label.is-invalid::before {
  opacity: 0.9;
}
.contact-form label.is-valid input,
.contact-form label.is-valid textarea,
.contact-form label.is-valid select {
  border-color: #b8d8c4;
}
.contact-form .math-check.is-invalid {
  border-color: #d64545;
  background: #fff7f7;
  box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.13);
}
.contact-form .math-check.is-invalid .math-label {
  color: #b3261e;
}
label {
  color: var(--ink);
  font-size: 0;
  font-weight: 800;
}
.field-icon {
  position: relative;
}
.field-icon::before {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--blue-2);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}
.field-icon.name::before { content: "○"; }
.field-icon.email::before { content: "@"; }
.field-icon.company::before { content: "□"; }
.field-icon.phone::before { content: "☎"; }
.field-icon.select::before { content: "◇"; }
.field-icon.message::before { content: "✎"; }
/* Reliable SVG field icons override any fallback text glyphs above. */
.field-icon::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  color: transparent;
  content: "";
}
.field-icon.name::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23007fd6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E"); }
.field-icon.email::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23007fd6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E"); }
.field-icon.company::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23007fd6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 21V7l8-4 8 4v14'/%3E%3Cpath d='M9 21v-5h6v5'/%3E%3Cpath d='M8 9h.01M12 9h.01M16 9h.01M8 13h.01M12 13h.01M16 13h.01'/%3E%3C/svg%3E"); }
.field-icon.phone::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23007fd6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2A19.8 19.8 0 0 1 3.1 5.2 2 2 0 0 1 5.1 3h3a2 2 0 0 1 2 1.7c.1.8.3 1.6.6 2.4a2 2 0 0 1-.5 2.1L9 10.4a16 16 0 0 0 4.6 4.6l1.2-1.2a2 2 0 0 1 2.1-.5c.8.3 1.6.5 2.4.6A2 2 0 0 1 22 16.9Z'/%3E%3C/svg%3E"); }
.field-icon.select::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23007fd6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h16'/%3E%3Cpath d='M4 12h16'/%3E%3Cpath d='M4 17h10'/%3E%3Cpath d='m18 15 2 2 2-2'/%3E%3C/svg%3E"); }
.field-icon.message::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23007fd6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5h16v14H4z'/%3E%3Cpath d='M8 9h8'/%3E%3Cpath d='M8 13h5'/%3E%3C/svg%3E"); }
.field-icon.project::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23007fd6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 6h13'/%3E%3Cpath d='M8 12h13'/%3E%3Cpath d='M8 18h13'/%3E%3Cpath d='M3 6h.01'/%3E%3Cpath d='M3 12h.01'/%3E%3Cpath d='M3 18h.01'/%3E%3C/svg%3E"); }
.field-icon.address::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23007fd6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
.field-icon.city::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23007fd6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M5 21V7l8-4v18'/%3E%3Cpath d='M19 21V11l-6-4'/%3E%3Cpath d='M9 9h.01M9 13h.01M9 17h.01M17 13h.01M17 17h.01'/%3E%3C/svg%3E"); }
.field-icon.state::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23007fd6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6l6-3 6 3 6-3v15l-6 3-6-3-6 3V6Z'/%3E%3Cpath d='M9 3v15'/%3E%3Cpath d='M15 6v15'/%3E%3C/svg%3E"); }
.field-icon.postal::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23007fd6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M7 9h10'/%3E%3Cpath d='M7 13h4'/%3E%3C/svg%3E"); }
input,
textarea,
select {
  width: 100%;
  margin: 0;
  padding: 13px 14px;
  border: 1px solid #dfe7ee;
  border-radius: 2px;
  background: #fbfdff;
  color: var(--ink);
  outline: 0;
  font-size: 17px;
}
.field-icon input,
.field-icon select,
.field-icon textarea {
  padding-left: 46px;
}
select {
  color: var(--ink);
}
.contact-form select:invalid {
  color: var(--ink);
}
.form-hidden {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
textarea { resize: vertical; }
input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,155,220,0.12);
}
.wide { grid-column: 1 / -1; }

.site-footer {
  position: relative;
  overflow: hidden;
  display: grid;
  padding: 0;
  background:
    radial-gradient(circle at 86% 18%, rgba(0,155,220,0.34), transparent 36%),
    linear-gradient(65deg, #05090d 0%, #071018 34%, #07243a 58%, #0086ce 118%);
  color: #d8e2ea;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(62deg, rgba(255,255,255,0.04) 0 21%, transparent 21% 100%),
    linear-gradient(118deg, rgba(0,0,0,0.34) 0 36%, transparent 36% 100%);
  pointer-events: none;
}
.site-footer > * {
  position: relative;
  z-index: 1;
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: clamp(58px, 7vw, 86px) clamp(54px, 6vw, 84px) 52px;
}
.footer-top > * {
  padding-right: clamp(22px, 3vw, 48px);
}
.footer-brand,
.footer-column {
  display: grid;
  align-content: start;
  gap: 0;
}
.footer-brand {
  gap: 18px;
}
.footer-brand img { width: 150px; }
.footer-brand p {
  max-width: 300px;
  margin: 0;
  color: #d8e2ea;
  font-size: 19px;
  line-height: 1.55;
}
.footer-rule {
  width: 58px;
  height: 2px;
  background: var(--blue);
}
.footer-service-line {
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.75;
  text-transform: uppercase;
}
.footer-service-line span {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 9px 3px;
  border-radius: 999px;
  background: var(--blue);
}
.footer-column h3 {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}
.footer-column a,
.footer-column span {
  color: var(--white);
  font-size: 20px;
  line-height: 1.25;
  text-decoration: none;
}
.footer-column > a {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.footer-contact {
  padding-left: clamp(20px, 3vw, 56px);
  padding-right: 0;
  border-left: 1px solid rgba(255,255,255,0.2);
}
.footer-contact-link {
  display: block;
  padding: 11px 0;
  color: #e9f2f8;
}
.footer-contact-link::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 14px;
  vertical-align: -5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px 22px;
}
.footer-phone::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23009bdc' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2A19.8 19.8 0 0 1 3.1 5.2 2 2 0 0 1 5.1 3h3a2 2 0 0 1 2 1.7c.1.8.3 1.6.6 2.4a2 2 0 0 1-.5 2.1L9 10.4a16 16 0 0 0 4.6 4.6l1.2-1.2a2 2 0 0 1 2.1-.5c.8.3 1.6.5 2.4.6A2 2 0 0 1 22 16.9Z'/%3E%3C/svg%3E"); }
.footer-email::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23009bdc' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E"); }
.footer-location::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23009bdc' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
.footer-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  box-sizing: border-box;
  padding: 0 clamp(54px, 6vw, 84px);
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.footer-values div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 132px;
  padding: 24px clamp(18px, 2.3vw, 34px);
  border-right: 1px solid rgba(255,255,255,0.2);
}
.footer-values div:last-child { border-right: 0; }
.footer-values p {
  margin: 0;
}
.footer-values strong,
.footer-values small {
  display: block;
}
.footer-values strong {
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}
.footer-values small {
  margin-top: 4px;
  color: #d8e2ea;
  font-size: 17px;
  line-height: 1.35;
}
.value-icon {
  display: block;
  width: 58px;
  height: 58px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 58px 58px;
}
.value-target { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23009bdc' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='32' r='20'/%3E%3Ccircle cx='32' cy='32' r='8'/%3E%3Cpath d='M32 4v11M32 49v11M4 32h11M49 32h11'/%3E%3C/svg%3E"); }
.value-pencil { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23009bdc' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M42 8l14 14-30 30-17 3 3-17L42 8Z'/%3E%3Cpath d='M36 14l14 14'/%3E%3Cpath d='M8 56h48'/%3E%3C/svg%3E"); }
.value-layers { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23009bdc' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 8 58 20 32 32 6 20 32 8Z'/%3E%3Cpath d='M12 31 32 40 52 31'/%3E%3Cpath d='M12 42 32 51 52 42'/%3E%3C/svg%3E"); }
.value-partner { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23009bdc' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='24' cy='24' r='9'/%3E%3Ccircle cx='43' cy='26' r='7'/%3E%3Cpath d='M8 54c2-12 10-18 16-18s14 6 16 18'/%3E%3Cpath d='M37 39c6 1 11 6 13 15'/%3E%3C/svg%3E"); }
.footer-legal {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(54px, 6vw, 84px);
  background: rgba(0,0,0,0.12);
  color: #aebbc5;
  font-size: 16px;
}
.footer-legal div {
  display: flex;
  gap: 42px;
}
.footer-legal a {
  color: #dce5eb;
  text-decoration: none;
}
.admin-dot {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.18);
  cursor: pointer;
  font-size: 9px;
  line-height: 1;
  text-decoration: none;
}

.admin { background: #10161b; color: var(--white); }
.admin-page { background: #10161b; }
.admin-page .admin {
  min-height: 100vh;
  padding-top: 64px;
}
.admin[hidden] { display: none; }
.admin .section-heading { align-items: center; }
.admin-session-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-self: end;
}
.admin-shell { border-top: 1px solid rgba(255,255,255,0.14); }
.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
}
.admin-tabs button {
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
}
.admin-tabs button.active {
  border-color: var(--blue);
  background: var(--blue);
}
.upload-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  padding: 24px 0;
}
.upload-form label,
.login-panel label,
.admin-fields label {
  color: #dce7ef;
  font-size: 17px;
}
.upload-form input,
.upload-form textarea,
.upload-form select,
.login-panel input,
.admin-fields input,
.admin-fields textarea {
  margin-top: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.16);
}
select option { color: #111; }
.form-note {
  margin: 0;
  color: #a7b6c2;
  font-size: 18px;
  line-height: 1.45;
}
.admin-upload-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: #a7b6c2;
  font-size: 16px;
  font-weight: 800;
}
.admin-upload-status.is-success { color: #80e2ac; }
.admin-upload-status.is-warning { color: #ffd27a; }
.admin-upload-status.is-error { color: #ff9e9e; }
.upload-positioner {
  grid-column: 1 / -1;
  align-self: stretch;
  width: min(980px, 100%);
}
.upload-positioner[hidden] { display: none; }
.upload-positioner-help {
  margin: 0 0 10px;
  color: #a7b6c2;
  font-size: 15px;
  font-weight: 800;
}
.upload-positioner-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  max-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(0,161,224,0.42);
  background: rgba(255,255,255,0.06);
  cursor: grab;
  touch-action: none;
  box-shadow: 0 18px 52px rgba(0,0,0,0.24);
}
.upload-positioner.service-frame .upload-positioner-frame {
  aspect-ratio: 1 / 1.12;
  width: min(620px, 100%);
  max-height: 620px;
}
.upload-positioner-frame.dragging { cursor: grabbing; }
.upload-positioner-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.04);
  transform-origin: center;
  user-select: none;
  pointer-events: none;
}
.upload-positioner-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.16);
  pointer-events: none;
}
.admin-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.admin-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  border: 1px dashed rgba(255,255,255,0.18);
  color: #a7b6c2;
}
.admin-row {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 102px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}
.admin-row.dragging { opacity: 0.45; }
.admin-row img {
  width: 84px;
  height: 82px;
  object-fit: cover;
}
.admin-fields { display: grid; gap: 10px; }
.admin-row small { color: #a7b6c2; }
.admin-controls {
  grid-column: 1 / -1;
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}
.icon-button {
  width: 40px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
}

.login-overlay,
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,0.74);
  backdrop-filter: blur(12px);
}
.login-overlay[hidden],
.gallery-modal[hidden] { display: none; }
.admin-login-screen {
  align-content: center;
  gap: 14px;
}
.login-panel {
  position: relative;
  width: min(420px, 100%);
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.16);
  background: #111820;
  color: var(--white);
  box-shadow: 0 28px 70px rgba(0,0,0,0.45);
}
.login-panel h1,
.login-panel h2 { font-size: 34px; }
.login-reset-panel {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.login-close,
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-size: 0;
  line-height: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.login-close::before,
.login-close::after,
.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}
.login-close::before,
.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.login-close::after,
.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.login-close span {
  display: none;
}
.login-close:hover,
.modal-close:hover {
  border-color: rgba(0,161,224,0.75);
  background: rgba(0,161,224,0.16);
  transform: translateY(-1px);
}
.login-error {
  min-height: 22px;
  margin: 12px 0;
  color: #ff9e9e;
  font-size: 18px;
}
.reset-password {
  display: inline-flex;
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.42);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}
.reset-password:hover { color: var(--blue); }
.login-panel .button.primary {
  margin-top: 16px;
}
.reset-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: #a7b6c2;
  font-size: 18px;
  line-height: 1.4;
}
.password-admin-form {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.gallery-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  width: min(1180px, 100%);
  max-height: 88vh;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  background: #111820;
  color: var(--white);
  box-shadow: 0 34px 90px rgba(0,0,0,0.48);
}
.gallery-modal-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  background: #080b0d;
}
.modal-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 4vw, 42px);
}
.modal-copy h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 46px);
}
.modal-copy p {
  color: #cad6de;
  line-height: 1.65;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background:
      linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.035) 44%, rgba(0,155,220,0.09)),
      rgba(5,9,13,0.88);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.13), 0 22px 54px rgba(0,0,0,0.22);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
  }
  .site-nav.open { display: flex; }
  .nav-dropdown {
    display: grid;
    gap: 10px;
  }
  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 8px 0 0 14px;
    border: 0;
    border-left: 2px solid rgba(0,155,220,0.68);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu a {
    padding: 8px 0;
  }
  .nav-toggle { display: block; }
  .hero,
  .service-hero,
  .about-grid,
  .section-heading,
  .offerings .section-heading,
  .service-detail-card,
  .service-benefits,
  .service-cta,
  .sectors,
  .contact {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-areas:
      "copy"
      "details"
      "form";
  }
  .hero-brand-wall {
    opacity: 0.72;
  }
  .hero-panel { margin-top: 24px; }
  .service-tile-grid,
  .process-line,
  .service-grid,
  .faq-list,
  .sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-process-grid article:nth-child(3) { border-right: 0; }
  .service-process-grid article:nth-child(-n+3) { border-bottom: 1px solid #dce7f0; }
  .service-cta-actions { justify-content: flex-start; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portfolio-slider { aspect-ratio: 16 / 8; }
  .service-detail-card {
    height: auto;
    min-height: 0;
  }
  #signage-offering .service-detail-copy {
    padding-top: clamp(30px, 4vw, 48px);
  }
  .service-detail-list {
    border-left: 0;
    border-top: 1px solid var(--line);
    height: auto;
    max-height: none;
  }
  .service-detail-list div {
    grid-template-columns: minmax(160px, 0.44fr) minmax(0, 1fr);
  }
  .contact-details,
  .contact-form {
    grid-column: auto;
  }
  .contact-details { padding-top: 0; }
  .quote-form label,
  .quote-form .span-6,
  .quote-form .wide {
    grid-column: 1 / -1;
  }
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-contact {
    padding-left: 0;
    border-left: 0;
  }
  .footer-values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-values div:nth-child(2n) { border-right: 0; }
}

@media (max-width: 680px) {
  .site-header {
    height: 72px;
    padding: 0 22px;
  }
  .brand img { width: 72px; }
  .site-nav { top: 72px; }
  .section,
  .service-section,
  .hero {
    padding-left: 22px;
    padding-right: 22px;
  }
  .service-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 112px 22px 54px;
  }
  .service-hero-media { min-height: 300px; }
  .jump-nav {
    top: 72px;
    padding-left: 22px;
    padding-right: 22px;
  }
  .hero {
    min-height: 940px;
    padding-top: 112px;
  }
  #hero-title { font-size: 40px; }
  .hero-brand-wall {
    opacity: 0.54;
  }
  .hero-brand-wall img { object-position: 66% 64%; }
  .hero-panel,
  .service-tile-grid,
  .service-detail-list,
  .process-line,
  .service-grid,
  .faq-list,
  .service-process-grid,
  .sector-grid,
  .gallery-grid,
  .contact-form,
  .admin-list {
    grid-template-columns: 1fr;
  }
  .service-process-grid article,
  .service-process-grid article:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid #dce7f0;
  }
  .service-process-grid article:last-child { border-bottom: 0; }
  .service-detail-card {
    padding-top: 72px;
  }
  .service-detail-list div {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .service-cta {
    padding-left: 22px;
    padding-right: 22px;
  }
  .math-check { grid-template-columns: 1fr; }
  .quote-form {
    padding: 22px;
    gap: 18px;
  }
  .quote-form label,
  .quote-form .span-6,
  .quote-form .wide {
    grid-column: 1 / -1;
  }
  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .hero-panel div:last-child { border-bottom: 0; }
  .work .section-heading { grid-template-columns: 1fr; }
  .work-tools { justify-items: start; }
  .service-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }
  .portfolio-slider { aspect-ratio: 4 / 3; }
  .portfolio-slide-copy h3 { font-size: 34px; }
  .portfolio-slide-copy span { font-size: 18px; }
  .slider-arrow {
    width: 44px;
    height: 58px;
    opacity: 1;
  }
  .slider-arrow.prev { left: 10px; }
  .slider-arrow.next { right: 10px; }
  .upload-form { grid-template-columns: 1fr; }
  .gallery-modal-panel {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
  .gallery-modal-panel img {
    min-height: 260px;
    max-height: 58vh;
  }
  .footer-top {
    grid-template-columns: 1fr;
    padding: 44px 22px 34px;
  }
  .footer-top > * { padding-right: 0; }
  .footer-brand img { width: 118px; }
  .footer-brand p { max-width: 100%; }
  .footer-values { grid-template-columns: 1fr; }
  .footer-values div {
    grid-template-columns: 52px 1fr;
    min-height: 0;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }
  .footer-values div:last-child { border-bottom: 0; }
  .footer-legal {
    display: grid;
    justify-content: start;
    gap: 14px;
    padding-left: 22px;
    padding-right: 22px;
  }
  .footer-legal div {
    flex-wrap: wrap;
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
