:root {
  color-scheme: light;
  --ink: #080b10;
  --muted: #5e6670;
  --line: #dfe4ea;
  --blue: #1aa7ff;
  --green: #20dfac;
  --violet: #c777ff;
  --orange: #ff9800;
  --header-height: 90px;
  --page-pad: clamp(12px, 1.3vw, 24px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  min-width: 320px;
}

a { color: inherit; }

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: #fff;
  background: #126bff;
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus { transform: translateY(0); }

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

.site-header {
  height: var(--header-height);
  padding: 0 clamp(20px, 3vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #030405;
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-copy { display: grid; gap: 2px; }
.brand-copy strong { font-size: clamp(1.18rem, 1.7vw, 1.55rem); font-weight: 600; line-height: 1.1; }
.brand-copy small { color: #c4c7cc; font-size: clamp(.78rem, .9vw, .95rem); white-space: nowrap; }

.language-nav { display: flex; align-items: center; gap: 14px; }
.language-nav > span { width: 1px; height: 20px; background: #74777c; }
.language {
  position: relative;
  padding: 9px 0;
  border: 0;
  color: #cfd2d7;
  background: transparent;
  font: inherit;
  font-size: .88rem;
  cursor: pointer;
  text-decoration: none;
}
.language.is-active { color: #fff; }
.language.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: #1d9eff;
}
.globe { width: 23px; height: 23px; margin-left: 13px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.language-select {
  display: none;
  min-width: 64px;
  padding: 8px 28px 8px 10px;
  border: 1px solid #5f646b;
  border-radius: 7px;
  color: #fff;
  background: #111418;
  font: inherit;
  font-size: .88rem;
}

.solutions {
  display: flex;
  gap: 10px;
  width: 100%;
  min-height: 620px;
  height: min(880px, calc(100svh - var(--header-height) - 24px));
  padding: var(--page-pad);
  overflow: hidden;
  background: #f7f8fa;
}

.solution-card {
  --accent: var(--blue);
  position: relative;
  isolation: isolate;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  border-radius: 11px;
  color: #fff;
  background: #071628;
  text-decoration: none;
  box-shadow: 0 2px 0 rgba(255,255,255,.15) inset;
  transition: flex-grow .56s cubic-bezier(.2,.75,.25,1), transform .35s ease, box-shadow .35s ease;
}

.solution-card--industry { --accent: var(--green); background: #03241d; }
.solution-card--seline { --accent: var(--violet); background: #080426; }
.solution-card--cloud { --accent: var(--orange); background: #371000; }

.solution-card__visual,
.solution-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.solution-card__visual {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.02) brightness(1.03);
  transition: transform .72s cubic-bezier(.2,.75,.25,1), filter .4s ease;
}
.solution-card--home .solution-card__visual { object-position: 62% center; }

.solution-card__shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(2,7,15,.76) 0%, rgba(2,7,15,.36) 35%, rgba(2,7,15,.06) 58%, rgba(2,7,15,.70) 100%),
    linear-gradient(90deg, rgba(1,5,12,.28), transparent 72%);
}

.solution-card--seline .solution-card__shade {
  background: linear-gradient(180deg, rgba(4,2,27,.72) 0%, rgba(5,2,31,.38) 35%, rgba(7,2,30,.04) 64%, rgba(4,2,21,.72) 100%);
}

.solution-card--cloud .solution-card__shade {
  background: linear-gradient(180deg, rgba(37,10,4,.56) 0%, rgba(32,9,5,.22) 44%, rgba(25,6,2,.68) 100%);
}

.solution-card__content {
  position: absolute;
  top: clamp(82px, 10vh, 122px);
  left: clamp(22px, 2.3vw, 42px);
  right: clamp(22px, 2.3vw, 42px);
  display: grid;
  align-content: start;
}

.solution-card__eyebrow {
  display: block;
  max-width: 520px;
  font-size: clamp(1.55rem, 2.5vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  text-transform: uppercase;
  font-weight: 780;
  text-wrap: balance;
}

.solution-card__title {
  display: block;
  margin-top: 3px;
  font-size: clamp(1.05rem, 1.5vw, 1.55rem);
  line-height: 1.15;
  font-weight: 720;
}
.solution-card__title em { color: var(--accent); font-style: normal; }

.solution-card__rule {
  display: block;
  width: 72px;
  height: 3px;
  margin: 20px 0 22px;
  background: var(--accent);
  border-radius: 9px;
}

.solution-card__description {
  display: block;
  max-width: 360px;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 1.46;
  text-wrap: pretty;
}

.solution-card__action {
  position: absolute;
  left: clamp(22px, 2.3vw, 42px);
  right: clamp(22px, 2.3vw, 42px);
  bottom: clamp(24px, 4vh, 46px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: clamp(.95rem, 1.2vw, 1.22rem);
  font-weight: 620;
}

.arrow {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  transition: color .25s ease, background .25s ease, transform .35s ease;
}

@media (hover: hover) and (min-width: 961px) {
  .solutions:has(.solution-card:hover) .solution-card:not(:hover) { flex-grow: .82; }
  .solution-card:hover,
  .solution-card:focus-visible {
    flex-grow: 1.72;
    z-index: 2;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
  }
  .solution-card:hover .solution-card__visual,
  .solution-card:focus-visible .solution-card__visual { transform: scale(1.075); filter: saturate(1.17) contrast(1.03) brightness(1.05); }
  .solution-card:hover .arrow,
  .solution-card:focus-visible .arrow { color: #06101a; background: #fff; transform: translateX(4px); }
}

.solution-card:focus-visible { outline: 4px solid #fff; outline-offset: -7px; }

.manifesto {
  padding: 30px 24px 28px;
  text-align: center;
  background: #fff;
  border-top: 1px solid #edf0f3;
}
.manifesto h2 { margin: 0; font-size: clamp(1.35rem, 2vw, 1.9rem); line-height: 1.2; letter-spacing: -.025em; }
.manifesto__pillars { margin: 10px 0 0; color: #555c65; font-size: clamp(.92rem, 1.12vw, 1.05rem); }
.manifesto__pillars span { padding: 0 .3em; color: #9aa1aa; }
.manifesto__intro {
  max-width: 1160px;
  margin: 24px auto 0;
  padding-top: 22px;
  color: #313842;
  border-top: 1px solid #e4e8ec;
  font-size: clamp(.98rem, 1.2vw, 1.08rem);
  line-height: 1.72;
  text-align: left;
  text-wrap: pretty;
}

.site-footer { padding: 24px clamp(18px, 4vw, 64px) 16px; color: #fff; background: #030405; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(10, minmax(76px, 1fr));
  align-items: start;
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
}
.footer-links a {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #f6f7f9;
  text-align: center;
  text-decoration: none;
  font-size: .76rem;
  line-height: 1.25;
}
.footer-links a:hover { color: #42adff; }
.footer-icon { display: grid; place-items: center; height: 32px; font-size: 1.9rem; line-height: 1; font-weight: 400; }
.footer-icon--social { width: 30px; border-radius: 4px; color: #050505; background: #fff; font-family: Arial, sans-serif; font-size: 1.25rem; font-weight: 800; }
.copyright { margin: 18px 0 0; color: #858a91; text-align: center; font-size: .72rem; line-height: 1.5; }

.content-page { min-height: 100vh; background: #eef2f6; }
.content-header { position: sticky; top: 0; z-index: 20; }
.content-main {
  width: min(1220px, calc(100% - 32px));
  margin: 34px auto 56px;
}
.content-main h1 {
  margin: 10px 0 18px;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.content-main h2 { margin: 0 0 14px; font-size: clamp(1.45rem, 2.4vw, 2rem); line-height: 1.17; letter-spacing: -.025em; }
.content-main h3 { margin: 0; }
.content-main p,
.content-main li { color: #3e4650; font-size: 1rem; line-height: 1.75; }
.content-main a { color: #096cce; }
.content-main address { font-style: normal; }
.back-link {
  display: inline-flex;
  margin: 0 0 22px 4px;
  color: #0b67bd;
  font-weight: 720;
  text-decoration: none;
}
.back-link:hover { text-decoration: underline; }

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  min-height: 430px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(27,156,255,.27), transparent 40%),
    linear-gradient(135deg, #07101b, #0b1c2f 58%, #07101a);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(8,23,42,.18);
}
.page-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 76px);
}
.page-hero__copy p {
  max-width: 720px;
  margin: 0;
  color: #d6e1ec;
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}
.page-hero__copy--simple { position: relative; }
.page-hero__copy--simple::before {
  content: "";
  width: 68px;
  height: 3px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, #1aa7ff, #71caff);
  border-radius: 999px;
}
.page-hero__copy--simple h1 { margin-top: 0; }
.page-kicker {
  color: #5bbcff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.about-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  min-height: 430px;
  background: #fff2;
}
.about-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 214px;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(.92) contrast(1.04);
}

.rich-content,
.references-board {
  margin-top: 28px;
  padding: clamp(30px, 5vw, 64px);
  background: #fff;
  border: 1px solid #e0e6ec;
  border-radius: 24px;
  box-shadow: 0 14px 50px rgba(18,35,55,.07);
}
.rich-content > section + section,
.legal-content > section + section { margin-top: 48px; padding-top: 48px; border-top: 1px solid #e7ebef; }
.rich-content p:first-of-type { margin-top: 0; }
.rich-content p:last-child { margin-bottom: 0; }
.prose-section--lead { max-width: 940px; }
.prose-section--lead > p { font-size: 1.08rem; }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.metrics-grid > div {
  display: grid;
  align-content: center;
  min-height: 150px;
  padding: 22px;
  color: #fff;
  background: #071421;
  border-radius: 16px;
}
.metrics-grid strong { font-size: clamp(1.7rem, 3vw, 2.55rem); line-height: 1; letter-spacing: -.04em; }
.metrics-grid span { margin-top: 10px; color: #aebdca; font-size: .86rem; line-height: 1.35; }
.metrics-grid > .metric-visual {
  position: relative;
  isolation: isolate;
  align-content: end;
  min-height: 230px;
  overflow: hidden;
  background: #071421;
  box-shadow: 0 14px 34px rgba(7,20,33,.14);
}
.metric-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(4,14,25,.02) 18%, rgba(4,14,25,.32) 56%, rgba(4,14,25,.94) 100%);
}
.metric-visual img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
}
.metric-visual:nth-child(1) img { object-position: 50% 68%; }
.metric-visual:nth-child(2) img { object-position: 50% 68%; }
.metric-visual:nth-child(3) img { object-position: 58% 50%; }
.metric-visual:nth-child(4) img { object-position: 55% 64%; }
.metric-visual strong,
.metric-visual span { position: relative; z-index: 1; }
.metric-visual span { color: #e5edf4; text-shadow: 0 1px 12px rgba(0,0,0,.5); }
.metric-visual:hover img { transform: scale(1.055); filter: saturate(1.08); }
@media (prefers-reduced-motion: reduce) {
  .metric-visual img { transition: none; }
  .metric-visual:hover img { transform: none; }
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.offer-card {
  --card-accent: #39aaff;
  --card-bg: #123c5a;
  position: relative;
  display: grid;
  min-height: 240px;
  padding: 28px;
  overflow: hidden;
  color: #fff !important;
  background: linear-gradient(145deg, var(--card-bg), #07101b 72%);
  border-radius: 18px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.offer-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -80px;
  border: 1px solid var(--card-accent);
  border-radius: 50%;
  box-shadow: 0 0 55px rgba(26,167,255,.18);
  opacity: .45;
}
.offer-card:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(8,20,33,.16); }
.offer-card > span { color: var(--card-accent); font-size: .8rem; font-weight: 850; letter-spacing: .1em; }
.offer-card h3 { align-self: end; margin-top: 46px; font-size: 1.55rem; letter-spacing: -.025em; }
.offer-card p { position: relative; z-index: 1; margin: 9px 0 0; color: #cbd6df; line-height: 1.55; }
.offer-card--detailed {
  align-content: start;
  min-height: 390px;
}
.offer-card--detailed h3 {
  align-self: auto;
  margin-top: 34px;
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}
.offer-card--detailed h3 + p { margin-top: 26px; }
.offer-card--detailed p { font-size: .96rem; line-height: 1.62; }
.offer-card--detailed strong { color: #fff; }
.offer-card--green { --card-accent: #20dfac; --card-bg: #0d3a32; }
.offer-card--violet { --card-accent: #c777ff; --card-bg: #352348; }
.offer-card--orange { --card-accent: #ff9800; --card-bg: #4a2c12; }

.expertise-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.expertise-detail {
  --detail-accent: #1aa7ff;
  position: relative;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  background: linear-gradient(145deg, #f7fbff, #fff);
  border: 1px solid #dfe8ef;
  border-radius: 18px;
}
.expertise-detail::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -72px;
  top: -72px;
  border: 24px solid color-mix(in srgb, var(--detail-accent) 12%, transparent);
  border-radius: 50%;
}
.expertise-detail h2 { max-width: 560px; margin-top: 3px; }
.expertise-detail p { position: relative; z-index: 1; }
.expertise-detail .section-number { color: var(--detail-accent); }
.expertise-detail--green { --detail-accent: #0aaa7d; }
.expertise-detail--violet { --detail-accent: #964cd6; }
.expertise-detail--orange { --detail-accent: #de7900; }
.accompaniment-panel {
  position: relative;
  padding: clamp(32px, 5vw, 56px) !important;
  overflow: hidden;
  background: linear-gradient(120deg, #eef8ff, #fff 72%);
  border: 1px solid #cfe7f8 !important;
  border-radius: 18px;
}
.accompaniment-panel::after {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  right: -110px;
  bottom: -160px;
  border: 42px solid rgba(25,157,244,.08);
  border-radius: 50%;
}
.accompaniment-panel h2,
.accompaniment-panel p { position: relative; z-index: 1; max-width: 900px; }
.values-section .section-heading { max-width: 840px; }
.values-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.values-grid article {
  min-height: 320px;
  padding: 28px;
  background: #071421;
  border-radius: 18px;
}
.values-grid article > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 40px;
  color: #071421;
  background: #55bfff;
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 900;
}
.values-grid article:nth-child(2) > span { background: #49dcb2; }
.values-grid article:nth-child(3) > span { background: #c585f0; }
.values-grid h3 { color: #fff; font-size: 1.35rem; }
.values-grid p { margin-bottom: 0; color: #bdcbd7; line-height: 1.65; }

.split-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 6vw, 72px);
}
.split-section > div { position: relative; padding-left: 22px; }
.split-section > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 4px;
  height: 46px;
  background: #1aa7ff;
  border-radius: 9px;
}
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(26px, 4vw, 44px) !important;
  color: #fff;
  background: linear-gradient(120deg, #07111d, #10345a);
  border: 0 !important;
  border-radius: 18px;
}
.cta-panel p { color: #bac9d6; }
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 190px;
  padding: 15px 20px;
  color: #07111d !important;
  background: #fff;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.page-hero--contact {
  background:
    radial-gradient(circle at 12% 0%, rgba(33,166,255,.3), transparent 42%),
    linear-gradient(135deg, #07101b, #0a2139);
}
.address-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 430px;
  padding: clamp(34px, 5vw, 58px);
  overflow: hidden;
  color: #fff !important;
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(145deg, #0a6db3, #0b1e34 68%);
  background-size: 42px 42px, 42px 42px, auto;
  text-decoration: none;
}
.address-visual::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  pointer-events: none;
}
.address-visual svg { position: relative; z-index: 1; width: 54px; fill: none; stroke: #fff; stroke-width: 3; }
.address-visual__city { position: absolute; top: 38px; right: 28px; color: rgba(255,255,255,.12); font-size: clamp(3.7rem, 7vw, 6.5rem); font-weight: 900; letter-spacing: -.08em; writing-mode: vertical-rl; }
.address-visual strong { position: relative; z-index: 1; margin-top: 28px; font-size: clamp(1.45rem, 2.7vw, 2.25rem); }
.address-visual small { position: relative; z-index: 1; margin-top: 8px; color: #baddf5; font-size: .9rem; }
.contact-location-visual {
  position: relative;
  display: block;
  min-height: 430px;
  overflow: hidden;
  color: #fff !important;
  background: #071421;
  text-decoration: none;
}
.contact-location-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .7s ease;
}
.contact-location-visual__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,14,23,.04) 20%, rgba(5,14,23,.88) 100%);
}
.contact-location-visual__content {
  position: absolute;
  left: clamp(26px, 4vw, 48px);
  right: clamp(26px, 4vw, 48px);
  bottom: clamp(26px, 4vw, 46px);
  display: grid;
  justify-items: start;
}
.contact-location-visual__content small {
  margin-bottom: 10px;
  color: #7fd0ff;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-location-visual__content strong { font-size: clamp(1.55rem, 2.7vw, 2.3rem); letter-spacing: -.035em; }
.contact-location-visual__content > span { margin-top: 5px; color: #d9e6ef; }
.contact-location-visual__content em {
  margin-top: 20px;
  padding: 10px 14px;
  color: #071421;
  background: #fff;
  border-radius: 999px;
  font-size: .8rem;
  font-style: normal;
  font-weight: 850;
}
.contact-location-visual:hover > img { transform: scale(1.035); filter: saturate(1.08); }
.contact-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.contact-option {
  display: flex;
  gap: 18px;
  min-height: 190px;
  padding: 26px;
  color: inherit !important;
  background: #f6f8fa;
  border: 1px solid #e1e7ec;
  border-radius: 16px;
  text-decoration: none;
}
.contact-option__icon { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 auto; color: #0876cf; background: #e4f3ff; border-radius: 12px; font-size: 1.35rem; }
.contact-option h2 { margin: 1px 0 12px; font-size: 1.12rem; }
.contact-option p { margin: 0; color: #141b22; line-height: 1.5; }
.contact-option small { display: block; margin-top: 10px; color: #7a838d; line-height: 1.4; }
.contact-project { display: grid; grid-template-columns: minmax(240px, .75fr) 1.25fr; gap: 34px; }
.section-number { display: inline-block; margin-bottom: 12px; color: #168fe8; font-size: .8rem; font-weight: 850; letter-spacing: .1em; }
.contact-visual-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.contact-visual-strip a { position: relative; min-height: 180px; overflow: hidden; color: #fff; border-radius: 16px; text-decoration: none; }
.contact-visual-strip img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 58%; filter: brightness(.68) saturate(.9); transition: transform .4s ease; }
.contact-visual-strip a:hover img { transform: scale(1.04); }
.contact-visual-strip span { position: absolute; left: 20px; bottom: 18px; font-size: 1.08rem; font-weight: 780; }

.page-hero--legal,
.page-hero--terms { grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); }
.page-hero--terms .page-hero__copy { padding-block: clamp(34px, 5vw, 58px); }
.page-hero--terms h1 { font-size: clamp(2.55rem, 5vw, 4.25rem); }
.legal-facts,
.terms-highlight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: clamp(30px, 5vw, 58px);
  background: rgba(255,255,255,.055);
  border-left: 1px solid rgba(255,255,255,.12);
}
.legal-facts > div { padding: 18px 20px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; }
.legal-facts span,
.terms-highlight > span { display: block; color: #86caff; font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.legal-facts strong { display: block; margin-top: 6px; font-size: 1.08rem; }
.page-hero-photo {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #dce7ef;
  border-left: 1px solid rgba(255,255,255,.1);
}
.page-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,16,27,.18), transparent 28%);
  pointer-events: none;
}
.page-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(.94) contrast(1.02);
}
.page-hero--legal .page-hero-photo img { object-position: center; }
.page-hero--terms .page-hero-photo img { object-position: center; }
.hero-sales-action {
  display: grid;
  justify-items: start;
  gap: 5px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero-sales-action > span { color: #79c9ff; font-size: .72rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.hero-sales-action strong { font-size: 1rem; }
.hero-sales-action a {
  margin-top: 9px;
  padding: 10px 15px;
  color: #07111d;
  background: #fff;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 850;
  text-decoration: none;
}
.legal-content { counter-reset: legal-section; }
.legal-content > section { max-width: 980px; }
.legal-content h2 { font-size: clamp(1.28rem, 2vw, 1.7rem); }
.legal-content ul { padding-left: 1.25rem; }
.legal-content a { text-underline-offset: 3px; }
.terms-highlight strong { max-width: 320px; margin: 18px 0 28px; font-size: clamp(1.55rem, 3vw, 2.35rem); line-height: 1.12; }
.terms-highlight a { align-self: flex-start; padding: 13px 18px; color: #07111d; background: #fff; border-radius: 999px; font-weight: 800; text-decoration: none; }
.sales-terms-box { max-width: none !important; padding: 30px; background: #eff8ff; border: 1px solid #cfeaff !important; border-radius: 16px; }
.inline-action { display: inline-flex; font-weight: 800; }
.terms-definitions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; }
.terms-definitions > div { padding: 20px; background: #f6f9fb; border: 1px solid #e1e8ee; border-radius: 13px; }
.terms-definitions dt { color: #0875ce; font-weight: 850; }
.terms-definitions dd { margin: 8px 0 0; color: #3e4650; line-height: 1.65; }

.page-hero--references {
  background:
    radial-gradient(circle at 18% 0%, rgba(31,169,255,.3), transparent 45%),
    linear-gradient(135deg, #06101c, #101d2b);
}
.references-signature {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 22px;
  min-height: 430px;
  padding: 50px;
  background:
    linear-gradient(135deg, transparent 0 47%, rgba(255,255,255,.05) 47% 50%, transparent 50%),
    linear-gradient(145deg, #0a71be, #071421 72%);
}
.references-signature strong { font-size: clamp(5rem, 10vw, 9rem); line-height: .78; letter-spacing: -.09em; }
.references-signature span { padding-bottom: 4px; color: #b9d8ee; font-size: .72rem; font-weight: 800; letter-spacing: .12em; line-height: 1.45; }
.references-hero-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: center;
  min-height: 430px;
  padding: clamp(28px, 4vw, 52px);
  background:
    radial-gradient(circle at 100% 0%, rgba(40,177,255,.18), transparent 45%),
    rgba(255,255,255,.035);
  border-left: 1px solid rgba(255,255,255,.1);
}
.references-hero-logos > div {
  display: grid;
  place-items: center;
  min-height: 126px;
  padding: 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0,0,0,.16);
  transform: rotate(-1deg);
}
.references-hero-logos > div:nth-child(even) { transform: rotate(1deg); }
.references-hero-logos img { display: block; width: 100%; height: 86px; object-fit: contain; }
.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.client-logo-card {
  display: grid;
  place-items: center;
  min-height: 170px;
  padding: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0e7ed;
  border-radius: 18px;
  box-shadow: 0 9px 26px rgba(18,35,55,.055);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.client-logo-card img {
  display: block;
  width: 100%;
  height: 118px;
  object-fit: contain;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.client-logo-card--dark { background: #101b28; border-color: #101b28; }
.client-logo-card:hover { transform: translateY(-4px); border-color: #aad8f7; box-shadow: 0 18px 38px rgba(11,51,81,.12); }
.client-logo-card:hover img { transform: scale(1.09); }
.section-heading { max-width: 760px; margin-bottom: 28px; }
.section-heading h2 { margin-top: 8px; }
.references-visual { overflow: hidden; background: #fff; border: 1px solid #e5e9ed; border-radius: 18px; }
.references-visual__crop { aspect-ratio: 947 / 610; overflow: hidden; }
.references-visual img { display: block; width: 100%; height: auto; transform: translateY(-7.6%); }
.references-note { margin: 14px 0 0; color: #737b84 !important; font-size: .82rem !important; text-align: center; }
.split-section--references { margin-top: 0; padding-top: 0; border-top: 0; }

.site-footer--subpage { padding-top: 22px; }
.subpage-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}
.subpage-footer-links a { color: #d8dce1; font-size: .82rem; text-decoration: none; }
.subpage-footer-links a:hover { color: #42adff; }

@media (max-width: 1120px) {
  .solution-card__eyebrow { font-size: clamp(1.35rem, 2.4vw, 2rem); }
  .solution-card__description { font-size: clamp(.95rem, 1.25vw, 1.1rem); }
  .footer-links { grid-template-columns: repeat(5, 1fr); row-gap: 24px; }
  .contact-options { grid-template-columns: repeat(2, 1fr); }
  .contact-options > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  :root { --header-height: 78px; }
  .site-header { padding: 0 18px; }
  .brand img { width: 58px; height: 58px; }
  .brand-copy small { white-space: normal; }
  .language-nav > span, .language, .globe { display: none; }
  .language-select { display: block; }
  .solutions {
    height: auto;
    min-height: 0;
    padding: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
  }
  .solution-card {
    flex: 0 0 min(82vw, 520px);
    height: min(76svh, 720px);
    min-height: 590px;
    scroll-snap-align: center;
  }
  .solution-card__content { top: 62px; }
  .solution-card__eyebrow { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .solution-card__description { font-size: 1.08rem; }
  .content-main { margin-top: 24px; }
  .page-hero,
  .page-hero--legal,
  .page-hero--terms { grid-template-columns: 1fr; min-height: 0; }
  .page-hero__copy { min-height: 360px; }
  .about-mosaic { grid-template-columns: repeat(4, 1fr); min-height: 250px; }
  .about-mosaic img { min-height: 250px; }
  .address-visual,
  .references-signature,
  .contact-location-visual,
  .references-hero-logos,
  .page-hero-photo,
  .page-hero-photo img { min-height: 320px; }
  .legal-facts,
  .terms-highlight { border-top: 1px solid rgba(255,255,255,.12); border-left: 0; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid article { min-height: 0; }
  .values-grid article > span { margin-bottom: 24px; }
  .client-logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-project { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 620px) {
  .brand { gap: 10px; }
  .brand img { width: 52px; height: 52px; }
  .brand-copy strong { font-size: 1.05rem; }
  .brand-copy small { max-width: 210px; font-size: .7rem; }
  .solutions { gap: 8px; }
  .solution-card { flex-basis: 87vw; min-height: 540px; }
  .solution-card__content, .solution-card__action { left: 24px; right: 24px; }
  .manifesto { padding-inline: 18px; }
  .manifesto__pillars span { display: none; }
  .manifesto__pillars { display: grid; gap: 3px; }
  .manifesto__intro { margin-top: 20px; padding-top: 18px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); gap: 24px 12px; }
  .content-main { width: min(100% - 20px, 1220px); margin: 18px auto 36px; }
  .back-link { margin-bottom: 16px; }
  .page-hero { border-radius: 18px; }
  .page-hero__copy { min-height: 330px; padding: 30px 26px; }
  .content-main h1 { font-size: clamp(2.2rem, 12vw, 3.2rem); }
  .page-hero__copy p { font-size: 1rem; }
  .about-mosaic { grid-template-columns: repeat(2, 1fr); min-height: 380px; }
  .about-mosaic img { min-height: 190px; }
  .rich-content,
  .references-board { margin-top: 18px; padding: 26px 22px; border-radius: 18px; }
  .rich-content > section + section,
  .legal-content > section + section { margin-top: 34px; padding-top: 34px; }
  .metrics-grid { gap: 8px; }
  .metrics-grid > div { min-height: 128px; padding: 18px; }
  .offer-grid,
  .split-section,
  .contact-options,
  .expertise-details,
  .terms-definitions { grid-template-columns: 1fr; }
  .contact-options > :last-child { grid-column: auto; }
  .offer-card { min-height: 225px; padding: 24px; }
  .split-section { gap: 34px; }
  .cta-panel { align-items: stretch; flex-direction: column; }
  .button-link { width: 100%; }
  .address-visual,
  .references-signature { min-height: 300px; padding: 32px 28px; }
  .contact-location-visual,
  .references-hero-logos,
  .page-hero-photo,
  .page-hero-photo img { min-height: 300px; }
  .address-visual__city { top: 28px; font-size: 3.8rem; }
  .contact-visual-strip { grid-template-columns: repeat(2, 1fr); }
  .contact-visual-strip a { min-height: 150px; }
  .legal-facts,
  .terms-highlight { padding: 26px 22px; }
  .references-signature { align-items: flex-end; gap: 14px; }
  .references-signature strong { font-size: 5rem; }
  .references-visual { border-radius: 12px; }
  .references-hero-logos { gap: 8px; padding: 22px; }
  .references-hero-logos > div { min-height: 104px; }
  .references-hero-logos img { height: 70px; }
  .client-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .client-logo-card { min-height: 125px; padding: 12px; border-radius: 14px; }
  .client-logo-card img { height: 86px; }
  .subpage-footer-links { gap: 10px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
