@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;500;600;700;900&display=swap");

:root {
  --page-bg: #f3f9fd;
  --panel-bg: #e8f5fb;
  --panel-deep: #d8edf7;
  --accent: #0091d1;
  --accent-dark: #006e9f;
  --accent-soft: #d9f2ff;
  --ink: #050605;
  --muted: #5f6d74;
  --white: #ffffff;
  --line: rgba(0, 68, 100, 0.08);
  --shadow: 0 20px 55px rgba(0, 93, 133, 0.14);
  --radius-xl: 34px;
  --radius-lg: 14px;
  --radius-md: 8px;
  --content-width: 1696px;
  --font-main: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--page-bg);
  color: var(--ink);
  font-family: var(--font-main);
}

.references-page main {
  padding-top: 92px;
}

.services-page main {
  padding-top: 92px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  min-height: 100vh;
  padding: clamp(10px, 0.85vw, 16px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.93fr) minmax(320px, 0.56fr) minmax(320px, 0.56fr);
  gap: clamp(28px, 2.7vw, 50px);
  width: min(var(--content-width), 100%);
  min-height: calc(100vh - clamp(20px, 1.7vw, 32px));
  margin: 0 auto;
  padding: clamp(24px, 3.3vw, 52px) clamp(24px, 5.35vw, 98px) 96px;
  overflow: hidden;
  background: linear-gradient(90deg, #f3fbff 0%, #ecf7fc 48%, #eef9ff 100%);
  border: 1px solid rgba(0, 145, 209, 0.14);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 12%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(238, 249, 255, 0), rgba(231, 245, 252, 0.95));
}

.hero__left,
.hero__media-grid,
.hero__right {
  position: relative;
  z-index: 1;
}

.hero__left {
  z-index: 5;
}

.site-header {
    position: fixed;
    top: 27px;
    left: clamp(64px, calc(-9px + 5.35vw), 109px);
    z-index: 100;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 67px;
    padding: 17px 23px 18px 10px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 9px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset, 0 8px 20px rgba(0, 93, 133, 0.05);
    transition: width 320ms ease, min-height 240ms ease, padding 240ms ease, border-radius 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
    width: calc(96vw - clamp(53px, calc(-2px + 11.35vw), 121px) - 25px);
    min-height: 57px;
    gap: 3px;
    padding: 8px 9px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 68, 100, 0.14);
}

.header-contact {
  position: absolute;
  top: 50%;
  right: 12px;
  display: inline-flex;
  flex: 0 0 0;
  width: 0;
  max-width: 0;
  min-width: 0;
  min-height: 44px;
  margin-left: auto;
  gap: 0;
  overflow: hidden;
  justify-content: center;
  text-align: center;
  padding: 0;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translate(10px, -50%);
  transition: width 320ms ease, padding 320ms ease, gap 320ms ease, opacity 180ms ease,
    transform 320ms ease, visibility 320ms ease;
}

.site-header.is-scrolled .header-contact {
  flex: 0 0 226px;
  width: 226px;
  max-width: 226px;
  min-width: 226px;
  gap: 13px;
  padding: 0 15px;
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(136px, 9.4vw, 165px);
  min-width: 136px;
}

.brand__logo {
    width: 95%;
    height: auto;
    object-fit: contain;
    padding-left: 7px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  font-size: 14px;
  font-weight: 400;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
  padding-left: 15px;
  font-size: 16px;
  font-weight: 900;
}

.meta-row span,
.eyebrow,
.primary-action,
.top-actions a,
.social-card__header,
.cookie-banner,
.logo-word {
  display: inline-flex;
  align-items: center;
}

.meta-row svg,
.eyebrow svg,
.primary-action svg,
.top-actions svg {
  width: 20px;
  height: 20px;
  stroke-width: 3;
}

.hero-copy {
  margin-top: clamp(75px, 10vh, 140px);
  margin-left: 1px;
}

.eyebrow {
  gap: 14px;
  width: fit-content;
  min-height: 40px;
  padding: 10px 15px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 900;
}

.hero-copy h1 {
  max-width: 640px;
  margin: 20px 0 26px;
  color: #030403;
  font-size: clamp(45px, 4.35vw, 66px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1vw, 16px);
  line-height: 1.55;
}

.primary-action {
     gap: 11px;
    min-height: 61px;
    margin-top: 31px;
    padding: 0 30px;
    color: var(--white);
    background: #006e9f;
    border-radius: 10px;
    font-size: 19px;
    font-weight: 500;
    box-shadow: 0 13px 22px rgba(2, 3, 2, 0.1);
    transition: transform 180ms ease, box-shadow 180ms ease;
    letter-spacing: 3px;
}

.primary-action:hover,
.primary-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(2, 3, 2, 0.16);
}

.trusted {
  width: 100%;
  max-width: 720px;
  margin-top: clamp(48px, 6.4vh, 72px);
}

.trusted p {
  margin: 1 1 26px;
  color: #62747e;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 1px;
}

.trusted__logos {
  position: relative;
  width: 100%;
  min-height: 104px;
  display: flex;
  align-items: center;
  overflow: hidden;
  transform: translateX(-68px)
}

.logo-set {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
  width: 100%;
  opacity: 0;
  visibility: visible;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.logo-set img {
  display: block;
  width: min(100%, 150px);
  height: 76px;
  justify-self: center;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1);
  opacity: 0.68;
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
  margin-left: 45px;
}

.logo-set img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.logo-set.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.logo-word {
  display: none;
}

.logo-set--legacy {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(16px, 1.8vw, 30px);
  flex-wrap: nowrap;
  width: min(100%, 620px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s ease;
}

.logo-set--legacy.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.logo-set--legacy .logo-word {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  font-size: clamp(20px, 1.7vw, 32px);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.logo-set--legacy .logo-word small {
  display: block;
  margin-left: -5px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.logo-set--legacy .logo-word svg {
  width: 42px;
  height: 42px;
  stroke-width: 2.5;
}

.logo-set--legacy .logo-word__symbol {
  position: relative;
  width: 45px;
  height: 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 11px 50%, #111 0 9px, transparent 9px),
    radial-gradient(circle at 22px 50%, #111 0 9px, transparent 9px),
    radial-gradient(circle at 33px 50%, #111 0 9px, transparent 9px);
}

.logo-set--legacy .logo-word__symbol--nova,
.logo-word__symbol--northstar,
.logo-word__symbol--summit {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #111;
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.12);
}

.logo-set--legacy .logo-word__symbol--nova::before,
.logo-word__symbol--northstar::before,
.logo-word__symbol--summit::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.logo-set--legacy .logo-word__symbol--northstar {
  border-radius: 6px;
  transform: rotate(45deg);
}

.logo-set--legacy .logo-word__symbol--summit {
  border-radius: 50% 50% 0 50%;
  transform: rotate(45deg);
}

.visual-rail {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.visual-rail__track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.visual-rail__group {
  display: grid;
  gap: 39px;
  padding-bottom: 39px;
}

.visual-rail__group[aria-hidden="true"] {
  pointer-events: none;
}

.visual-rail--up .visual-rail__track {
  animation: railScrollUp 28s linear infinite;
}

.visual-rail--down .visual-rail__track {
  animation: railScrollDown 28s linear infinite;
}

.visual-rail:hover .visual-rail__track {
  animation-play-state: paused;
}

.hero__media-grid {
  min-height: calc(100vh - 150px);
  max-height: 875px;
  padding-top: 0;
  z-index: 0;
}

.media-card,
.social-card,
.phone-card {
  overflow: hidden;
  background: linear-gradient(180deg, #e7f4fb, #dceef7);
  border-radius: 9px;
}

.media-card--wide,
.photo-card {
  width: 100%;
  height: 390px;
  min-height: 390px;
}

.media-card--photo {
  height: 390px;
}

.media-card--expert {
  border-radius: 0 0 9px 9px;
}

.media-card img,
.social-card img,
.phone-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.media-card--expert img {
  object-position: center 23%;
  filter: saturate(0.92) contrast(1.02);
}

.media-card--photo img {
  object-position: center;
}

.media-card--screen {
  position: relative;
  display: grid;
  min-height: 408px;
  place-items: center;
  background: linear-gradient(180deg, #e7f4fb, #dceef7);
}

.photo-card { padding: 0; }

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.media-card--screen::before,
.phone-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -23% 34%;
  height: 44%;
  background: rgba(0, 145, 209, 0.23);
  transform: skewX(-20deg);
}

.monitor-art {
  position: relative;
  width: min(76%, 330px);
  transform: rotate(-9deg) translate(24px, 4px);
}

.monitor-art__screen {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 165px;
  padding: 28px 30px;
  background:
    radial-gradient(circle at 99% -2%, rgba(201, 232, 247, 0.8) 0 38px, transparent 39px),
    var(--white);
  border: 8px solid #151714;
  outline: 18px solid #0091d1;
  border-radius: 5px;
  box-shadow: 0 16px 25px rgba(0, 72, 103, 0.16);
}

.monitor-art__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 25px;
  font-weight: 900;
}

.monitor-art__brand span {
  width: 27px;
  height: 27px;
  border: 7px solid var(--accent);
  border-radius: 50%;
}

.monitor-art strong {
  max-width: 230px;
  font-size: 16px;
  line-height: 1.16;
  font-weight: 900;
}

.monitor-art__stand {
  width: 24px;
  height: 83px;
  margin: 1px auto 0;
  background: linear-gradient(90deg, #b8c3c8, #edf4f8);
}

.monitor-art__base {
  width: 142px;
  height: 22px;
  margin: -3px auto 0;
  background: linear-gradient(90deg, #ced8dd, #ffffff);
  border-radius: 50%;
}

.hero__right {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-content: start;
  gap: 37px;
}

.right-visual-rail {
  min-height: calc(100vh - 243px);
  max-height: 778px;
}

.top-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 56px;
}

.updates-link {
  gap: 11px;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 53px;
  padding: 0 24px;
  color: var(--white);
  background: var(--accent);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(0, 145, 209, 0.22);
}

.contact-button svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.social-card {
  min-height: 508px;
  padding: 25px 27px 0;
}

.social-card__header {
  justify-content: flex-end;
  gap: 22px;
  min-height: 31px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.social-card__header a {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
}

.social-card__header svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.7;
}

.social-card img {
  height: 430px;
  margin-top: 20px;
  object-position: center top;
  mix-blend-mode: multiply;
}

.social-card.photo-card {
  width: 100%;
  height: 390px;
  min-height: 390px;
  padding: 0;
}

.social-card.photo-card img {
  height: 100%;
  margin-top: 0;
  object-position: center;
  mix-blend-mode: normal;
}

.phone-card {
  position: relative;
  display: grid;
  min-height: 339px;
  place-items: center;
  padding: 36px;
}

.phone-card img {
  position: relative;
  z-index: 1;
  width: 56%;
  min-width: 165px;
  height: auto;
  aspect-ratio: 0.54;
  border: 10px solid #0091d1;
  border-radius: 38px;
  box-shadow: -14px 16px 0 rgba(0, 58, 85, 0.13);
  transform: rotate(14deg);
}

@keyframes railScrollUp {
  from {
    transform: translateY(0);
  }

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

@keyframes railScrollDown {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}



.cookie-banner.is-hidden {
  display: none;
}



.cookie-banner p {
  min-width: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.cookie-banner a {
  color: var(--ink);
  font-weight: 900;
}



.cookie-banner__close svg {
  width: 17px;
  height: 17px;
  stroke-width: 3;
}

.services {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  padding: clamp(92px, 10vw, 160px) clamp(20px, 5.35vw, 98px) clamp(100px, 11vw, 170px);
  background: var(--white);
}

.services__intro {
  max-width: 760px;
  margin: 0 auto clamp(46px, 5vw, 72px);
  text-align: center;
}

.services__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.services__eyebrow svg {
  width: 18px;
  height: 18px;
  stroke-width: 3;
}

.services__intro h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -1px;
}

.services__lead {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 38px);
}

.service-card {
  overflow: hidden;
  background: #f8fcfe;
  border: 1px solid rgba(0, 110, 159, 0.16);
  border-radius: 18px;
  box-shadow: 0 16px 35px rgba(0, 93, 133, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0, 93, 133, 0.15);
}

.service-card__visual {
  position: relative;
  display: grid;
  min-height: clamp(250px, 25vw, 350px);
  margin: 22px 22px 0;
  overflow: hidden;
  place-items: center;
  background: var(--panel-bg);
  border-radius: 11px;
}

.service-card__visual--software {
  background: linear-gradient(145deg, #dff3fc, #c4e6f3);
}

.dashboard-window {
  width: 74%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 4px solid #0b5578;
  border-radius: 10px;
  box-shadow: 12px 14px 0 rgba(0, 110, 159, 0.15), 0 15px 30px rgba(0, 68, 100, 0.17);
  transform: rotate(-5deg);
}

.dashboard-window__bar {
  display: flex;
  gap: 5px;
  padding: 8px 10px;
  background: #0b5578;
}

.dashboard-window__bar span {
  width: 6px;
  height: 6px;
  background: #8bcee6;
  border-radius: 50%;
}

.dashboard-window__body {
  display: grid;
  grid-template-columns: 27% 1fr;
  min-height: 155px;
}

.dashboard-window__nav {
  background: #e8f6fb;
  border-right: 1px solid #cbe8f3;
}

.dashboard-window__content {
  padding: 20px 16px 12px;
}

.dashboard-window__label,
.dashboard-window__content strong {
  display: block;
  width: 42%;
  height: 7px;
  background: #9dd4e8;
  border-radius: 4px;
}

.dashboard-window__content strong {
  width: 68%;
  height: 16px;
  margin-top: 10px;
  background: #075c82;
}

.dashboard-window__chart {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 72px;
  margin-top: 18px;
  padding: 10px;
  background: #e8f6fb;
  border-radius: 5px;
}

.dashboard-window__chart i {
  width: 14%;
  height: 35%;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
}

.dashboard-window__chart i:nth-child(2) { height: 58%; }
.dashboard-window__chart i:nth-child(3) { height: 44%; }
.dashboard-window__chart i:nth-child(4) { height: 82%; }
.dashboard-window__chart i:nth-child(5) { height: 68%; }

.service-card__badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 6px 9px;
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 110, 159, 0.15);
  border-radius: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.service-card__visual--video {
  background: linear-gradient(145deg, #dff3fc, #c4e6f3);
}

.video-window {
  width: 75%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 4px solid #0b5578;
  border-radius: 10px;
  box-shadow: 12px 14px 0 rgba(0, 110, 159, 0.15), 0 15px 30px rgba(0, 68, 100, 0.17);
  transform: rotate(4deg);
}

.video-window__bar {
  display: flex;
  gap: 5px;
  padding: 8px 10px;
  background: #0b5578;
}

.video-window__bar span {
  width: 6px;
  height: 6px;
  background: #8bcee6;
  border-radius: 50%;
}

.video-window__content {
  padding: 10px;
  background: #e8f6fb;
}

.video-window__screen {
  position: relative;
  display: grid;
  min-height: 142px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, transparent 47%, rgba(255, 255, 255, 0.22) 48% 49%, transparent 50%),
    linear-gradient(25deg, #0b5578 0 23%, #0b6f97 24% 48%, #0a83b2 49% 71%, #075c82 72%);
  border-radius: 4px;
}

.video-window__screen::before,
.video-window__screen::after {
  content: "";
  position: absolute;
  width: 48%;
  height: 32%;
  border: 2px solid rgba(190, 235, 248, 0.72);
  border-radius: 5px;
  transform: rotate(-8deg);
}

.video-window__screen::before {
  top: 17%;
  left: 14%;
}

.video-window__screen::after {
  right: 11%;
  bottom: 14%;
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(7deg);
}

.video-window__play {
  position: relative;
  z-index: 1;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(0, 38, 58, 0.2);
}

.video-window__play svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.video-window__glow {
  position: absolute;
  width: 88px;
  height: 88px;
  background: rgba(143, 225, 246, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(143, 225, 246, 0.1);
}

.video-window__timeline {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  filter: saturate(0.78) contrast(1.05);
}

.video-window__timeline {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 28px;
  margin-top: 8px;
}

.video-window__timeline i {
  width: 18%;
  height: 42%;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
}

.video-window__timeline i:nth-child(2) { height: 72%; }
.video-window__timeline i:nth-child(3) { height: 53%; }
.video-window__timeline i:nth-child(4) { height: 88%; }
.video-window__timeline i:nth-child(5) { height: 64%; }

.service-card__visual--ai {
  background: radial-gradient(circle, #bfe8f5 0%, #e5f6fc 42%, #c4e7f2 100%);
}

.ai-orbit {
  position: absolute;
  border: 1px solid rgba(0, 110, 159, 0.45);
  border-radius: 50%;
  transform: rotate(-28deg) skewX(-20deg);
}

.ai-orbit--outer { width: 66%; height: 54%; }
.ai-orbit--inner { width: 45%; height: 75%; transform: rotate(45deg) skewX(-20deg); }

.ai-core {
  position: relative;
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  color: var(--white);
  background: var(--accent-dark);
  border: 9px solid #9bd9ec;
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(0, 145, 209, 0.12), 0 12px 24px rgba(0, 68, 100, 0.2);
}

.ai-core svg { width: 30px; height: 30px; }
.ai-node { position: absolute; width: 12px; height: 12px; background: var(--accent); border: 3px solid var(--white); border-radius: 50%; }
.ai-node--one { top: 25%; left: 20%; }
.ai-node--two { right: 18%; top: 34%; }
.ai-node--three { bottom: 20%; left: 34%; }

.service-card__body {
  padding: 25px 28px 29px;
}

.service-card__number {
  margin: 0 0 13px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.2;
  font-weight: 600;
}

.service-card__body > p:not(.service-card__number) {
  min-height: 53px;
  margin: 13px 0 23px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.service-card__link:hover svg,
.service-card__link:focus-visible svg {
  transform: translate(2px, -2px);
}

.strategy {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.88fr);
  width: min(var(--content-width), 100%);
  min-height: 720px;
  margin: 0 auto;
  padding: clamp(70px, 8vw, 125px) clamp(20px, 5.35vw, 98px);
  gap: clamp(42px, 6vw, 100px);
  background: linear-gradient(135deg, #eaf8fd 0%, #d8f0f9 100%);
}

.strategy__content {
  align-self: center;
}

.strategy__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
}

.strategy__eyebrow svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.7;
}

.strategy h2 {
  max-width: 600px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 4.4vw, 70px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -1px;
}

.strategy__lead {
  max-width: 610px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
}

.strategy__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 52px);
  margin-top: 50px;
}

.strategy-metric__circle {
  display: grid;
  width: clamp(116px, 10vw, 154px);
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 18px;
  border: 16px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  color: var(--accent-dark);
  background: transparent;
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(0, 110, 159, 0.08);
}

.strategy-metric__circle--creative {
  border-top-color: var(--accent);
  border-right-color: var(--accent);
  border-bottom-color: var(--accent);
}

.strategy-metric__circle--growth {
  border-color: var(--accent-dark);
  border-left-color: rgba(255, 255, 255, 0.85);
}

.strategy-metric h3 {
  margin: 0;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.2;
  font-weight: 600;
}

.strategy-metric p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.strategy-metric p b {
  color: var(--accent);
  font-weight: 700;
}

.strategy__visual {
  position: relative;
  align-self: stretch;
  min-height: 570px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 24px 55px rgba(0, 93, 133, 0.17);
}

.strategy__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 68, 100, 0.02), rgba(0, 68, 100, 0.3));
}

.strategy__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.strategy__visual-label {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.strategy__visual-label svg {
  width: 16px;
  height: 16px;
}

.references {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 118px) clamp(20px, 5.35vw, 98px) clamp(56px, 7vw, 92px);
  color: #0a2444;
  background: #f7fbff;
}

.references__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
  align-items: center;
  gap: clamp(36px, 7vw, 120px);
  min-height: 245px;
  padding: clamp(32px, 5vw, 70px) clamp(28px, 5vw, 72px);
  overflow: hidden;
  background: linear-gradient(122deg, #eef6ff 0%, #e1effd 58%, #c8e2f7 100%);
  border-radius: 18px;
}

.references__eyebrow,
.references__heading p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: #0878d1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.references__eyebrow svg { width: 16px; height: 16px; }

.references h1,
.references h2 {
  margin: 0;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.references h2 span { color: #0878d1; }

.references__lead {
  max-width: 390px;
  margin: 20px 0 0;
  color: #58718c;
  font-size: 14px;
  line-height: 1.6;
}

.references__quote {
  position: relative;
  padding: 25px 25px 22px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 10px;
}

.references__quote svg {
  width: 25px;
  height: 25px;
  color: #0878d1;
  fill: #0878d1;
}

.references__quote p {
  max-width: 190px;
  margin: 13px 0 0;
  color: #173b61;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.references__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 42px auto 18px;
  max-width: 720px;
}

.references__heading span {
  height: 1px;
  flex: 1;
  background: #9dc9ef;
}

.references__heading p {
  margin: 0;
  color: #0878d1;
  white-space: nowrap;
}

.references__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: #fff;
  border: 1px solid #dceafa;
  border-radius: 10px;
  box-shadow: 0 16px 32px rgba(23, 86, 139, 0.08);
}

.reference-logo {
  display: grid;
  min-height: 126px;
  padding: 20px;
  place-items: center;
  border-right: 1px solid #e2edf8;
  border-bottom: 1px solid #e2edf8;
}

.reference-logo:nth-child(4n) { border-right: 0; }
.reference-logo:nth-last-child(-n + 4) { border-bottom: 0; }

.reference-logo img {
  width: min(100%, 170px);
  height: 70px;
  object-fit: contain;
  filter: grayscale(0.35);
  opacity: 0.82;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.reference-logo:hover img,
.reference-logo:focus-within img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

.references__cta {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 10px;
  padding: 14px 20px;
  color: #15375a;
  background: #e9f3ff;
  border-radius: 8px;
}

.references__cta-icon {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: #0878d1;
  border-radius: 5px;
}

.references__cta-icon svg { width: 22px; height: 22px; }
.references__cta strong { font-size: 12px; }
.references__cta p { margin: 4px 0 0; color: #607993; font-size: 11px; }

.references__cta a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  margin-left: auto;
  padding: 0 15px;
  color: #0878d1;
  border: 1px solid #6eaff0;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
}

.references__cta a svg { width: 15px; height: 15px; }

.references__projects {
  margin-top: clamp(62px, 8vw, 112px);
}

.references__projects-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.references__projects-heading .references__eyebrow { margin-bottom: 12px; }
.references__projects-heading h2 { font-size: clamp(38px, 4.5vw, 60px); }
.references__projects-heading > p { max-width: 300px; margin: 0 0 5px; color: #60748a; font-size: 13px; line-height: 1.65; }

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.project-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 15px;
  color: #0878d1;
  background: #fff;
  border: 1px solid #b8d7f5;
  border-radius: 5px;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.project-filter:hover,
.project-filter:focus-visible,
.project-filter.is-active {
  color: #fff;
  background: #0878d1;
  border-color: #0878d1;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.project-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dceafa;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(23, 86, 139, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card:hover { transform: translateY(-4px); box-shadow: 0 18px 32px rgba(23, 86, 139, 0.13); }
.project-card[hidden] { display: none; }

.project-card__media {
  position: relative;
  aspect-ratio: 1.35;
  overflow: hidden;
  background: #e9f3ff;
}

.project-card__media img,
.project-card__media video,
.project-card__media iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  transition: transform 260ms ease;
}

.project-video-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.project-video-link img {
  display: block;
}

.project-card:hover .project-card__media img,
.project-card:hover .project-card__media video { transform: scale(1.035); }

.project-card:hover .project-video-link img { transform: scale(1.035); }

.project-card__media img {
  cursor: zoom-in;
}

body.is-lightbox-open {
  overflow: hidden;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(5, 17, 28, 0.88);
}

.photo-lightbox[hidden] {
  display: none;
}

.photo-lightbox__image {
  width: min(92vw, 1200px);
  height: min(90vh, 900px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.photo-lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.project-card__play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: #0878d1;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(8, 120, 209, 0.3);
}

.project-card__play svg { width: 15px; height: 15px; fill: currentColor; }
.project-card__body { padding: 14px 16px 17px; }
.project-card__body span { color: #0878d1; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.project-card__body h3 { margin: 6px 0 0; color: #15375a; font-size: 14px; line-height: 1.3; }

.services-catalog {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 72px) clamp(20px, 5.35vw, 98px) clamp(60px, 7vw, 96px);
  background: #f7fbff;
}

.services-catalog__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  align-items: center;
  gap: clamp(35px, 7vw, 100px);
  min-height: 285px;
  padding: clamp(34px, 5vw, 60px) clamp(28px, 5vw, 64px);
  overflow: hidden;
  background: linear-gradient(122deg, #f1f7ff 0%, #e4f0ff 58%, #c9e2fa 100%);
  border-radius: 18px;
}

.services-catalog__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: #0878d1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.services-catalog__eyebrow svg { width: 16px; height: 16px; }

.services-catalog h1 {
  max-width: 700px;
  margin: 0;
  color: #102746;
  font-size: clamp(37px, 4.7vw, 62px);
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
}

.services-catalog h1 span { color: #0878d1; }

.services-catalog__hero > div:first-child > p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: #58718c;
  font-size: 14px;
  line-height: 1.65;
}

.services-catalog__visual {
  position: relative;
  min-height: 220px;
}

.services-catalog__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 145px;
  height: 190px;
  border: 1px solid rgba(70, 133, 220, 0.2);
  border-radius: 7px;
  transform: translate(-50%, -50%) skewY(16deg) rotate(17deg);
}

.services-catalog__panel--back { background: rgba(255, 255, 255, 0.55); transform: translate(-75%, -50%) skewY(16deg) rotate(17deg); }
.services-catalog__panel--middle { background: rgba(230, 240, 255, 0.8); transform: translate(-37%, -50%) skewY(16deg) rotate(17deg); }
.services-catalog__panel--front { display: grid; place-items: center; color: #fff; background: #0878d1; box-shadow: 0 18px 32px rgba(8, 120, 209, 0.25); }
.services-catalog__panel--front svg { width: 38px; height: 38px; stroke-width: 1.5; }

.services-catalog__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  margin-top: 24px;
}

.catalog-card {
  display: flex;
  min-height: 370px;
  flex-direction: column;
  padding: 20px 16px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e2edf8;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(23, 86, 139, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.catalog-card:hover { transform: translateY(-4px); box-shadow: 0 18px 30px rgba(23, 86, 139, 0.12); }

.catalog-card__top { display: flex; align-items: center; justify-content: space-between; }

.catalog-card__icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: #0878d1;
  background: #edf5ff;
  border-radius: 8px;
}

.catalog-card__icon svg { width: 23px; height: 23px; stroke-width: 1.8; }
.catalog-card__number { color: #0878d1; font-size: 14px; font-weight: 500; }
.catalog-card h2 { margin: 19px 0 10px; color: #14243a; font-size: 15px; line-height: 1.2; text-transform: uppercase; }

.catalog-card__rule { display: block; width: 20px; height: 2px; margin-bottom: 13px; background: #0878d1; }
.catalog-card > p { min-height: 65px; margin: 0; color: #60748a; font-size: 11px; line-height: 1.55; }

.catalog-card ul { display: grid; gap: 7px; margin: 14px 0 18px; padding: 0; list-style: none; }
.catalog-card li { position: relative; padding-left: 14px; color: #435d78; font-size: 10px; line-height: 1.25; }
.catalog-card li::before { content: ""; position: absolute; top: 4px; left: 0; width: 6px; height: 6px; border: 1px solid #0878d1; border-radius: 50%; }

.catalog-card > a { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; color: #0878d1; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.catalog-card > a svg { width: 14px; height: 14px; }

.services-catalog__cta {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 14px;
  padding: 14px 20px;
  color: #15375a;
  background: #e9f3ff;
  border-radius: 8px;
}

.services-catalog__cta-icon { display: grid; width: 46px; height: 46px; flex: 0 0 auto; place-items: center; color: #fff; background: #0878d1; border-radius: 5px; }
.services-catalog__cta-icon svg { width: 23px; height: 23px; }
.services-catalog__cta strong { font-size: 13px; }
.services-catalog__cta p { margin: 4px 0 0; color: #607993; font-size: 11px; }
.services-catalog__cta > a { display: inline-flex; align-items: center; gap: 9px; min-height: 34px; margin-left: auto; padding: 0 16px; color: #fff; background: #0878d1; border-radius: 5px; font-size: 10px; font-weight: 700; }
.services-catalog__cta > a svg { width: 15px; height: 15px; }

.contact-page main { padding-top: 92px; }

.contact-catalog {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 72px) clamp(20px, 5.35vw, 98px) clamp(60px, 7vw, 96px);
  background: #f7fbff;
}

.contact-catalog__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  align-items: center;
  gap: clamp(30px, 6vw, 90px);
  min-height: 265px;
  padding: clamp(34px, 5vw, 60px) clamp(28px, 5vw, 64px);
  overflow: hidden;
  background: linear-gradient(122deg, #f1f7ff 0%, #e4f0ff 58%, #c9e2fa 100%);
  border-radius: 18px;
}

.contact-catalog__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: #0878d1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.contact-catalog__eyebrow svg { width: 16px; height: 16px; }
.contact-catalog h1 { margin: 0; color: #102746; font-size: clamp(48px, 5.5vw, 76px); line-height: 0.92; text-transform: uppercase; }
.contact-catalog h1 span { color: #0878d1; }
.contact-catalog__hero > div:first-child > p:last-child { max-width: 470px; margin: 21px 0 0; color: #58718c; font-size: 14px; line-height: 1.65; }

.contact-catalog__visual { position: relative; min-height: 210px; }
.contact-catalog__bubble { position: absolute; top: 22px; left: 34%; display: flex; align-items: center; justify-content: center; gap: 10px; width: 190px; height: 125px; background: linear-gradient(145deg, #3b8df0, #0878d1); border-radius: 18px 18px 18px 5px; box-shadow: 0 18px 35px rgba(8, 120, 209, 0.25); transform: rotate(4deg); }
.contact-catalog__bubble::after { content: ""; position: absolute; bottom: -20px; left: 30px; border: 18px solid transparent; border-top-color: #0878d1; transform: rotate(20deg); }
.contact-catalog__bubble span { width: 15px; height: 15px; background: #fff; border-radius: 50%; opacity: 0.9; }
.contact-catalog__envelope { position: absolute; bottom: 22px; left: 8%; width: 106px; height: 72px; background: rgba(255, 255, 255, 0.75); border: 2px solid #9ec6f3; border-radius: 7px; transform: rotate(-11deg); }
.contact-catalog__envelope::after { content: ""; position: absolute; inset: 13px; border-bottom: 2px solid #9ec6f3; transform: rotate(-32deg); }
.contact-catalog__phone { position: absolute; right: 5%; bottom: 15px; display: grid; width: 62px; height: 62px; place-items: center; color: #0878d1; background: #fff; border-radius: 50%; box-shadow: 0 12px 25px rgba(8, 120, 209, 0.16); transform: rotate(-28deg); }
.contact-catalog__phone svg { width: 31px; height: 31px; }

.contact-catalog__body { display: grid; grid-template-columns: minmax(230px, 0.62fr) minmax(0, 1fr); gap: 14px; margin-top: 24px; }
.contact-catalog__details { display: grid; gap: 9px; }
.contact-detail { display: flex; align-items: center; gap: 15px; min-height: 92px; padding: 17px 16px; background: #fff; border: 1px solid #e2edf8; border-radius: 8px; box-shadow: 0 9px 20px rgba(23, 86, 139, 0.05); }
.contact-detail > span { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; color: #0878d1; background: #edf5ff; border-radius: 8px; }
.contact-detail svg { width: 21px; height: 21px; }
.contact-detail strong { display: block; margin-bottom: 7px; color: #0878d1; font-size: 11px; text-transform: uppercase; }
.contact-detail a, .contact-detail p { margin: 0; color: #435d78; font-size: 12px; }

.contact-form { padding: 23px; background: #fff; border: 1px solid #e2edf8; border-radius: 8px; box-shadow: 0 9px 20px rgba(23, 86, 139, 0.05); }
.contact-form__eyebrow { margin: 0; color: #0878d1; font-size: 14px; font-weight: 700; text-transform: uppercase; }
.contact-form__lead { margin: 5px 0 17px; color: #71849a; font-size: 11px; }
.contact-form__status { margin: 0 0 15px; padding: 10px 12px; border-radius: 5px; font-size: 11px; line-height: 1.45; }
.contact-form__status.is-success { color: #17663d; background: #ecfaf2; border: 1px solid #b9e6ca; }
.contact-form__status.is-error { color: #9d2e2e; background: #fff0f0; border: 1px solid #f0caca; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.contact-form label { display: block; margin-bottom: 9px; }
.contact-form label span { display: block; margin: 0 0 5px; color: #637a93; font-size: 10px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 10px 11px; color: #233f5d; background: #fbfdff; border: 1px solid #d5e4f4; border-radius: 5px; font: inherit; font-size: 11px; outline: 0; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #0878d1; box-shadow: 0 0 0 3px rgba(8, 120, 209, 0.1); }
.contact-form textarea { min-height: 82px; resize: vertical; }
.contact-form button { display: inline-flex; align-items: center; gap: 9px; min-height: 37px; margin-top: 4px; padding: 0 16px; color: #fff; background: #0878d1; border: 0; border-radius: 5px; font: inherit; font-size: 10px; font-weight: 700; cursor: pointer; }
.contact-form button svg { width: 15px; height: 15px; }

.contact-catalog__follow { display: flex; align-items: center; gap: 17px; margin-top: 14px; padding: 17px 22px; background: #fff; border: 1px solid #e2edf8; border-radius: 8px; }
.contact-catalog__follow-icon { display: grid; width: 46px; height: 46px; flex: 0 0 auto; place-items: center; color: #fff; background: #0878d1; border-radius: 6px; }
.contact-catalog__follow-icon svg { width: 23px; height: 23px; }
.contact-catalog__follow strong { color: #15375a; font-size: 13px; text-transform: uppercase; }
.contact-catalog__follow p { margin: 4px 0 0; color: #607993; font-size: 11px; }
.contact-catalog__follow > a { display: inline-flex; align-items: center; gap: 8px; margin-left: auto; color: #0878d1; font-size: 12px; font-weight: 700; }
.contact-catalog__follow > a svg { width: 15px; height: 15px; }

.about-page main { padding-top: 92px; }

.about-catalog {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 72px) clamp(20px, 5.35vw, 98px) clamp(60px, 7vw, 96px);
  background: #f7fbff;
}

.about-catalog__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  align-items: center;
  gap: clamp(35px, 7vw, 100px);
  min-height: 305px;
  padding: clamp(34px, 5vw, 62px) clamp(28px, 5vw, 64px);
  overflow: hidden;
  background: linear-gradient(122deg, #f1f7ff 0%, #e4f0ff 58%, #c9e2fa 100%);
  border-radius: 18px;
}

.about-catalog__eyebrow,
.about-catalog__label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: #0878d1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.about-catalog__eyebrow svg { width: 16px; height: 16px; }
.about-catalog h1 { margin: 0; color: #102746; font-size: clamp(48px, 5.4vw, 76px); line-height: 0.95; text-transform: uppercase; }
.about-catalog h1 span, .about-catalog h2 span { color: #0878d1; }
.about-catalog__hero > div:first-child > p:last-child { max-width: 570px; margin: 22px 0 0; color: #58718c; font-size: 14px; line-height: 1.65; }

.about-catalog__visual { position: relative; min-height: 235px; }
.about-catalog__frame { position: absolute; top: 50%; left: 50%; width: 220px; height: 155px; border: 2px solid rgba(8, 120, 209, 0.55); border-radius: 8px; transform: translate(-50%, -50%) rotate(-12deg); box-shadow: 18px 18px 0 rgba(255, 255, 255, 0.7), 0 20px 35px rgba(8, 120, 209, 0.12); }
.about-catalog__frame::before, .about-catalog__frame::after { content: ""; position: absolute; background: #0878d1; }
.about-catalog__frame::before { top: 24px; left: 24px; width: 70px; height: 4px; border-radius: 4px; box-shadow: 0 13px 0 #9fcaf2, 0 26px 0 #9fcaf2; }
.about-catalog__frame::after { right: 24px; bottom: 22px; width: 38px; height: 38px; border-radius: 50%; box-shadow: -51px 0 0 rgba(8, 120, 209, 0.2); }
.about-catalog__frame-corner { position: absolute; right: 20px; top: 20px; width: 24px; height: 24px; border-top: 3px solid #0878d1; border-right: 3px solid #0878d1; }
.about-catalog__frame-dot { position: absolute; bottom: 18px; left: 26px; width: 8px; height: 8px; background: #0878d1; border-radius: 50%; }
.about-catalog__lens { position: absolute; right: 4%; bottom: 16px; display: grid; width: 75px; height: 75px; place-items: center; color: #fff; background: #0878d1; border: 9px solid #b9dcfb; border-radius: 50%; box-shadow: 0 0 0 12px rgba(8, 120, 209, 0.1); }
.about-catalog__lens svg { width: 31px; height: 31px; }

.about-catalog__content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, 0.55fr); gap: clamp(34px, 7vw, 100px); padding: clamp(52px, 7vw, 90px) clamp(10px, 3vw, 42px); }
.about-catalog__label { margin-bottom: 17px; }
.about-catalog h2 { margin: 0; color: #102746; font-size: clamp(34px, 4vw, 54px); line-height: 1.05; text-transform: uppercase; }
.about-catalog__copy > p:not(.about-catalog__label) { max-width: 620px; margin: 22px 0 0; color: #60748a; font-size: 14px; line-height: 1.75; }
.about-founder-copy { max-width: 620px; margin-top: 28px; padding-top: 24px; border-top: 1px solid #dceafa; }
.about-founder-copy p { margin: 0 0 17px; color: #60748a; font-size: 14px; line-height: 1.75; }
.about-founder-copy p:last-child { margin-bottom: 0; color: #15375a; font-weight: 500; }
.about-catalog__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-self: center; }
.about-catalog__metrics article { min-height: 170px; padding: 21px 18px; background: #fff; border: 1px solid #e2edf8; border-radius: 8px; box-shadow: 0 12px 25px rgba(23, 86, 139, 0.07); }
.about-catalog__metrics strong { display: block; color: #0878d1; font-size: clamp(30px, 3vw, 38px); line-height: 1; }
.about-catalog__metrics span { display: block; margin-top: 12px; color: #15375a; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.about-catalog__metrics p { margin: 10px 0 0; color: #71849a; font-size: 11px; line-height: 1.45; }
.about-catalog__cta { display: flex; align-items: center; gap: 17px; padding: 14px 20px; color: #15375a; background: #e9f3ff; border-radius: 8px; }
.about-catalog__cta-icon { display: grid; width: 46px; height: 46px; flex: 0 0 auto; place-items: center; color: #fff; background: #0878d1; border-radius: 5px; }
.about-catalog__cta-icon svg { width: 23px; height: 23px; }
.about-catalog__cta strong { font-size: 13px; }
.about-catalog__cta p { margin: 4px 0 0; color: #607993; font-size: 11px; }
.about-catalog__cta > a { display: inline-flex; align-items: center; gap: 9px; min-height: 34px; margin-left: auto; padding: 0 16px; color: #fff; background: #0878d1; border-radius: 5px; font-size: 10px; font-weight: 700; }
.about-catalog__cta > a svg { width: 15px; height: 15px; }

.site-footer {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  padding: 58px clamp(20px, 5.35vw, 98px) 24px;
  color: #68737a;
  background: var(--white);
  border-top: 1px solid rgba(0, 110, 159, 0.1);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.55fr;
  gap: clamp(28px, 5vw, 90px);
  min-height: 170px;
}

.site-footer__brand {
  display: inline-flex;
  width: 150px;
}

.site-footer__brand img { width: 100%; height: auto; }

.site-footer__brand-block p {
  max-width: 290px;
  margin: 19px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

.site-footer__contact,
.site-footer__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  padding-top: 5px;
}

.site-footer__contact a,
.site-footer__actions a,
.site-footer__bottom a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #4f5b62;
  font-size: 14px;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer__contact a:hover,
.site-footer__contact a:focus-visible,
.site-footer__actions a:hover,
.site-footer__actions a:focus-visible,
.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  color: var(--accent-dark);
  transform: translateX(2px);
}

.site-footer__contact svg {
  width: 18px;
  height: 18px;
  color: var(--accent-dark);
  stroke-width: 2.2;
}

.site-footer__actions a {
  min-height: 32px;
  padding: 0 12px;
  color: var(--accent-dark);
  border: 1px solid rgba(0, 110, 159, 0.22);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}

.site-footer__actions svg { width: 15px; height: 15px; }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 110, 159, 0.1);
}

.site-footer__bottom p { margin: 0; font-size: 13px; }
.site-footer__bottom a { color: var(--ink); }
.site-footer__bottom svg { width: 21px; height: 21px; stroke-width: 2; }

@media (max-width: 1320px) {
  .hero {
    grid-template-columns: minmax(360px, 1fr) minmax(280px, 0.72fr);
  }

  .hero__right {
    grid-column: 1 / -1;
    grid-template-columns: minmax(300px, 0.92fr) minmax(280px, 0.7fr);
  }

  .top-actions {
    grid-column: 1 / -1;
  }

  .right-visual-rail {
    grid-column: 1 / -1;
    min-height: 520px;
    max-height: 620px;
  }

  .social-card,
  .phone-card {
    min-height: 360px;
  }
}

@media (max-width: 900px) {
  .page-shell {
    padding: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 100vh;
    padding: 18px 18px 112px;
    border-radius: 0 0 24px 24px;
  }

  .site-header {
    display: flex;
    left: 0;
    width: 100%;
    top: 8px;
    justify-content: space-between;
    min-height: 70px;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .site-header.is-scrolled {
    width: calc(100% - 20px);
    left: 10px;
    min-height: 58px;
    padding: 10px 14px;
  }

  .site-header.is-scrolled .header-contact {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 12px 0;
  }

  .meta-row {
    padding-left: 0;
  }

  .hero-copy {
    margin-top: 52px;
  }

  .hero-copy h1 {
    max-width: 680px;
    font-size: clamp(43px, 12vw, 62px);
  }

  .hero-copy p {
    font-size: 19px;
  }

  .hero__media-grid {
    min-height: 520px;
    max-height: 620px;
  }

  .media-card--expert {
    border-radius: 9px;
  }

  .media-card--wide,
  .photo-card,
  .media-card--screen {
    height: 310px;
    min-height: 310px;
  }

  .hero__right {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 20px;
  }

  .top-actions {
    align-items: stretch;
  }

  .social-card img {
    height: 100%;
  }

  .right-visual-rail {
    min-height: 520px;
    max-height: 620px;
  }

  .cookie-banner {
    width: calc(100% - 34px);
    bottom: 18px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }

  .service-card__visual {
    min-height: 320px;
  }

  .strategy {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 78px 90px;
  }

  .strategy__visual {
    min-height: 480px;
  }

  .references {
    padding: 72px 18px 58px;
  }

  .references__hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .references__quote {
    max-width: 360px;
  }

  .references__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .references__projects-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .references__projects-heading > p { max-width: 520px; }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reference-logo,
  .reference-logo:nth-child(4n) {
    border-right: 1px solid #e2edf8;
    border-bottom: 1px solid #e2edf8;
  }

  .reference-logo:nth-child(even) {
    border-right: 0;
  }

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

  .references__cta {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .references__cta a {
    margin-left: 60px;
  }

  .site-footer {
    padding: 48px 18px 22px;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .site-footer__brand-block {
    grid-column: 1 / -1;
  }

}

@media (max-width: 560px) {
  .hero {
    padding-inline: 14px;
  }

  .services {
    padding: 82px 14px 100px;
  }

  .services__intro h2 {
    font-size: 34px;
    letter-spacing: -0.5px;
  }

  .services__lead {
    font-size: 14px;
  }

  .strategy {
    gap: 44px;
    padding: 68px 14px 78px;
  }

  .strategy h2 {
    font-size: 38px;
    letter-spacing: -0.5px;
  }

  .strategy__lead {
    font-size: 14px;
  }

  .strategy__metrics {
    gap: 18px;
    margin-top: 38px;
  }

  .strategy-metric__circle {
    width: 104px;
    border-width: 12px;
  }

  .strategy-metric h3 {
    font-size: 17px;
  }

  .strategy-metric p {
    font-size: 12px;
  }

  .strategy__visual {
    min-height: 360px;
  }

  .service-card__visual {
    min-height: 250px;
    margin: 14px 14px 0;
  }

  .service-card__body {
    padding: 22px 20px 24px;
  }

  .references {
    padding: 62px 14px 52px;
  }

  .references__hero {
    padding: 30px 22px;
  }

  .references h1,
  .references h2 {
    font-size: 46px;
  }

  .references__heading {
    gap: 9px;
  }

  .references__heading p {
    font-size: 10px;
    letter-spacing: 0.3px;
  }

  .references__projects {
    margin-top: 58px;
  }

  .references__projects-heading h2 {
    font-size: 42px;
  }

  .references__projects-heading > p {
    font-size: 12px;
  }

  .project-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .project-filter {
    width: 100%;
    padding-inline: 8px;
    font-size: 10px;
  }

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

  .project-card__media {
    aspect-ratio: 1.45;
  }

  .reference-logo {
    min-height: 100px;
    padding: 12px;
  }

  .reference-logo img {
    height: 52px;
  }

  .references__cta {
    gap: 12px;
    padding: 15px;
  }

  .references__cta a {
    width: calc(100% - 60px);
    justify-content: center;
    margin-left: 60px;
  }

  .trusted__logos {
    min-height: 150px;
  }

  .logo-set {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .logo-set img {
    width: min(100%, 92px);
    height: 62px;
  }

  .brand {
    width: 146px;
    min-width: 146px;
  }

  .meta-row {
    gap: 12px;
    font-size: 14px;
  }

  .eyebrow {
    font-size: 13px;
  }

  .primary-action,
  .contact-button {
    width: 100%;
    justify-content: center;
  }

  .trusted__logos {
    gap: 18px;
  }

  .logo-word {
    font-size: 24px;
  }

  .top-actions {
    flex-direction: column;
  }

  .updates-link {
    justify-content: center;
    min-height: 46px;
  }

  .social-card {
    padding: 18px 16px 0;
  }

  .social-card__header {
    justify-content: center;
    gap: 16px;
    font-size: 15px;
  }

  .monitor-art {
    width: min(75%, 270px);
  }

  .monitor-art__screen {
    min-height: 138px;
    padding: 23px 22px;
    outline-width: 13px;
    border-width: 6px;
  }

  .monitor-art__brand {
    font-size: 20px;
  }

  .monitor-art strong {
    font-size: 13px;
  }

  .cookie-banner {
    align-items: flex-start;
  }

  .cookie-banner p {
    font-size: 13px;
    line-height: 1.35;
  }
}

@media (max-width: 900px) {
  .about-page main { padding-top: 78px; }
  .about-catalog { padding: 58px 18px; }
  .about-catalog__hero { grid-template-columns: 1fr; gap: 15px; }
  .about-catalog__visual { min-height: 175px; }
  .about-catalog__content { grid-template-columns: 1fr; gap: 35px; }
  .about-catalog__cta { align-items: flex-start; flex-wrap: wrap; }
  .about-catalog__cta > a { margin-left: 63px; }
}

@media (max-width: 560px) {
  .about-catalog { padding: 42px 14px 52px; }
  .about-catalog__hero { padding: 30px 22px; }
  .about-catalog h1 { font-size: 48px; }
  .about-catalog__hero > div:first-child > p:last-child { font-size: 13px; }
  .about-catalog__content { padding: 52px 8px; }
  .about-catalog__metrics { grid-template-columns: 1fr 1fr; }
  .about-catalog__metrics article { min-height: 145px; padding: 17px 13px; }
  .about-catalog__metrics strong { font-size: 31px; }
  .about-catalog__cta { gap: 12px; padding: 15px; }
  .about-catalog__cta > a { width: calc(100% - 63px); justify-content: center; margin-left: 63px; }
}

@media (max-width: 900px) {
  .contact-page main { padding-top: 78px; }

  .contact-catalog { padding: 58px 18px; }

  .contact-catalog__hero { grid-template-columns: 1fr; gap: 15px; }
  .contact-catalog__visual { min-height: 175px; }
  .contact-catalog__body { grid-template-columns: 1fr; }
  .contact-catalog__follow { align-items: flex-start; flex-wrap: wrap; }
  .contact-catalog__follow > a { margin-left: 63px; }
}

@media (max-width: 560px) {
  .contact-catalog { padding: 42px 14px 52px; }
  .contact-catalog__hero { padding: 30px 22px; }
  .contact-catalog h1 { font-size: 52px; }
  .contact-catalog__hero > div:first-child > p:last-child { font-size: 13px; }
  .contact-form { padding: 18px; }
  .contact-form__row { grid-template-columns: 1fr; gap: 0; }
  .contact-catalog__follow { gap: 12px; padding: 15px; }
  .contact-catalog__follow > a { width: calc(100% - 63px); justify-content: center; margin-left: 63px; }
}

@media (max-width: 1100px) {
  .services-catalog__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .services-page main {
    padding-top: 78px;
  }

  .services-catalog {
    padding: 58px 18px;
  }

  .services-catalog__hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-catalog__visual {
    min-height: 170px;
  }

  .services-catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-catalog__cta {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .services-catalog__cta > a {
    margin-left: 63px;
  }
}

@media (max-width: 560px) {
  .services-catalog {
    padding: 42px 14px 52px;
  }

  .services-catalog__hero {
    padding: 30px 22px;
  }

  .services-catalog h1 {
    font-size: 38px;
  }

  .services-catalog__hero > div:first-child > p:last-child {
    font-size: 13px;
  }

  .services-catalog__grid {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    min-height: 330px;
  }

  .services-catalog__cta {
    gap: 12px;
    padding: 15px;
  }

  .services-catalog__cta > a {
    width: calc(100% - 63px);
    justify-content: center;
    margin-left: 63px;
  }
}

@media (max-width: 560px) {
  .about-catalog__hero > div:first-child {
    width: 100%;
  }

  .about-catalog__hero > div:first-child > p:last-child {
    width: 100%;
    max-width: 100%;
    overflow-wrap: normal;
  }

  .references__hero > div,
  .about-catalog__hero > div,
  .services-catalog__hero > div,
  .contact-catalog__hero > div {
    min-width: 0;
  }

  .references h1,
  .references h2,
  .about-catalog h1,
  .about-catalog h2,
  .services-catalog h1,
  .contact-catalog h1 {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .references__lead,
  .about-catalog__hero > div:first-child > p:last-child,
  .services-catalog__hero > div:first-child > p:last-child,
  .contact-catalog__hero > div:first-child > p:last-child {
    width: 100%;
    max-width: none;
  }

  .references h1 {
    font-size: clamp(38px, 11.5vw, 46px);
    line-height: 0.98;
  }

  .about-catalog h1 {
    font-size: clamp(40px, 11.5vw, 48px);
    line-height: 0.98;
  }

  .services-catalog h1 {
    font-size: clamp(34px, 10vw, 40px);
  }

  .contact-catalog h1 {
    font-size: clamp(44px, 12vw, 52px);
  }

  .site-header {
    min-height: 62px;
    padding: 10px 12px;
    border-radius: 12px;
  }

  .site-header.is-scrolled {
    width: calc(100% - 16px);
    left: 8px;
    padding: 8px 10px;
  }

  .brand,
  .site-header.is-scrolled .brand {
    width: min(44vw, 146px);
    min-width: 0;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .site-nav {
    top: 70px;
    left: 10px;
    right: 10px;
    padding: 12px 16px;
  }

  .hero-copy {
    margin-top: 42px;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 11vw, 52px);
    line-height: 0.98;
  }

  .hero-copy p {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero__media-grid {
    min-height: 390px;
    max-height: 460px;
  }

  .media-card--wide,
  .photo-card,
  .media-card--screen {
    height: 240px;
    min-height: 240px;
  }

  .hero__right,
  .right-visual-rail {
    min-height: 390px;
    max-height: 460px;
  }

  .social-card img {
    height: 100%;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .site-footer__brand-block {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .visual-rail__track {
    animation: none;
    transform: translateY(0);
  }
}
