:root {
  --ink: #15232e;
  --muted: #65727d;
  --steel: #516879;
  --steel-dark: #263b4b;
  --blue: #0b7185;
  --blue-bright: #19a9bd;
  --ice: #edf3f5;
  --line: #d9e1e5;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 82px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(21, 35, 46, 0.09);
  backdrop-filter: blur(18px);
}

.header-inner { height: 100%; display: flex; align-items: center; gap: 36px; }
.brand { width: 292px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.main-nav a { color: #40505c; font-size: 14px; font-weight: 600; transition: color .2s ease; }
.main-nav a:hover { color: var(--blue); }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  color: var(--white);
  background: var(--steel-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: background .2s ease, transform .2s ease;
}
.header-cta:hover { background: var(--blue); transform: translateY(-1px); }

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: #152a38;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(12, 29, 40, .96) 0%, rgba(20, 45, 60, .87) 45%, rgba(25, 56, 73, .34) 100%),
    linear-gradient(0deg, rgba(10, 26, 36, .60), transparent 60%),
    url('/assets/hero.webp');
  background-size: cover;
  background-position: center;
  filter: saturate(.64) contrast(1.08);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  align-items: center;
  gap: 50px;
  padding-block: 68px 76px;
}
.eyebrow, .section-kicker {
  margin: 0 0 24px;
  color: #c4e6eb;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 28px; height: 2px; background: var(--blue-bright); }
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 5.3vw, 74px);
  line-height: .98;
  letter-spacing: -.052em;
  font-weight: 780;
}
.hero h1 span { color: #b8d1d8; }
.hero-lead {
  max-width: 655px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue-bright); color: #082934; }
.button-primary:hover { background: #37c2d3; }
.button-ghost { border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); }
.hero-note { margin: 28px 0 0; color: rgba(255,255,255,.50); font-size: 12px; letter-spacing: .03em; }

.hero-visual { position: relative; align-self: end; min-height: 560px; }
.hero-visual > img {
  position: absolute;
  z-index: 2;
  right: 8px;
  bottom: -28px;
  width: min(420px, 94%);
  max-height: 565px;
  object-fit: contain;
  filter: drop-shadow(0 34px 32px rgba(3, 12, 18, .44));
}
.console-halo {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -30px;
  bottom: 58px;
  border: 1px solid rgba(90, 207, 222, .28);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(15, 166, 188, .045), 0 0 0 120px rgba(15, 166, 188, .025);
}
.status-card {
  position: absolute;
  z-index: 3;
  min-width: 190px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(19, 43, 56, .80);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(4, 14, 20, .25);
}
.status-card p, .status-card small { margin: 0 0 5px; color: #c2d3d9; font-size: 11px; }
.status-card strong { display: block; font-size: 13px; letter-spacing: .02em; }
.status-card-top { top: 96px; right: -4px; padding-left: 42px; }
.status-card-bottom { left: -8px; bottom: 76px; }
.status-light {
  position: absolute;
  left: 17px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5ee5aa;
  box-shadow: 0 0 0 6px rgba(94,229,170,.12), 0 0 16px rgba(94,229,170,.85);
}

.stats-band { position: relative; z-index: 4; margin-top: -1px; background: #edf2f4; border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { position: relative; min-height: 158px; padding: 30px 24px; border-right: 1px solid #d2dce1; }
.stat:first-child { border-left: 1px solid #d2dce1; }
.stat-index { display: block; margin-bottom: 16px; color: #7c8d98; font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.stat strong { display: block; color: var(--steel-dark); font-size: 25px; line-height: 1.1; }
.stat p { margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }

.intro { padding: 96px 0 100px; }
.intro-grid { display: grid; grid-template-columns: 1.05fr .75fr; gap: 34px 80px; }
.section-kicker { color: var(--blue); margin-bottom: 16px; }
.intro-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  font-weight: 820;
  letter-spacing: -.035em;
  text-transform: none;
}
.intro-kicker::after { content: ""; width: 64px; height: 3px; background: var(--blue-bright); }
.intro h2 { max-width: 760px; margin: 0; font-size: clamp(36px, 4.1vw, 54px); line-height: 1.07; letter-spacing: -.043em; }
.intro-accent { color: var(--blue); }
.intro-copy { align-self: end; padding-bottom: 4px; }
.intro-copy p { margin: 0; color: #53636f; font-size: 18px; line-height: 1.68; }
.project-roadmap {
  position: relative;
  grid-column: 1 / -1;
  min-height: 264px;
  overflow: hidden;
  padding: 30px 32px 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 14%, rgba(25, 169, 189, .22), transparent 28%),
    var(--steel-dark);
}
.project-roadmap::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}
.roadmap-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.roadmap-heading > span {
  color: #78d7e2;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.roadmap-heading strong {
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}
.roadmap-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.roadmap-steps::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 9.5%;
  right: 9.5%;
  height: 1px;
  background: linear-gradient(90deg, #63cedc, rgba(99,206,220,.32));
}
.roadmap-steps li { position: relative; min-width: 0; padding-right: 22px; }
.roadmap-node {
  position: relative;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(118,216,228,.72);
  background: #2b4a5a;
  color: #85e2ec;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .10em;
  box-shadow: 0 0 0 7px var(--steel-dark);
}
.roadmap-steps h3 {
  margin: 20px 0 8px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 720;
}
.roadmap-steps p {
  max-width: 185px;
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  line-height: 1.5;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .62fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 52px;
}
.section-heading h2 { margin: 0; font-size: clamp(36px, 4.2vw, 55px); line-height: 1.05; letter-spacing: -.045em; }
.section-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 15px; line-height: 1.75; }

.services { padding: 110px 0 120px; background: #f0f4f6; border-top: 1px solid var(--line); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #cfd9de; border-left: 1px solid #cfd9de; }
.service-card {
  min-height: 330px;
  padding: 28px;
  border-right: 1px solid #cfd9de;
  border-bottom: 1px solid #cfd9de;
  background: rgba(255,255,255,.58);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.service-card:hover { position: relative; z-index: 2; transform: translateY(-5px); background: var(--white); box-shadow: 0 24px 55px rgba(36, 58, 72, .10); }
.service-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 60px; }
.service-code {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--steel-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}
.service-number { color: #8a9aa4; font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.service-card h3 { margin: 0; font-size: 20px; line-height: 1.22; letter-spacing: -.02em; }
.service-card > p { min-height: 76px; margin: 16px 0 26px; color: var(--muted); font-size: 14px; line-height: 1.62; }
.service-card small { display: block; padding-top: 17px; border-top: 1px solid #dce4e8; color: var(--blue); font-size: 10px; font-weight: 700; line-height: 1.5; letter-spacing: .035em; }

.products { padding: 116px 0 120px; background: var(--white); }
.products-heading { margin-bottom: 46px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { border: 1px solid var(--line); background: #f8fafb; overflow: hidden; }
.product-media { position: relative; display: grid; place-items: center; height: 320px; background: linear-gradient(145deg, #f6f9fa, #e8eef1); overflow: hidden; }
.product-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(41,74,91,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(41,74,91,.055) 1px, transparent 1px);
  background-size: 34px 34px;
}
.product-media > img { position: relative; z-index: 1; width: 76%; height: 86%; object-fit: contain; transition: transform .45s ease; }
.product-card:hover .product-media > img { transform: scale(1.045) translateY(-3px); }
.product-media-console > img { width: 72%; }
.product-media-terminals > img { width: 94%; height: 75%; }
.product-media > span { position: absolute; z-index: 2; top: 20px; left: 20px; color: #7a8e9a; font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.product-copy { padding: 28px; border-top: 1px solid var(--line); background: var(--white); }
.product-copy h3 { margin: 0; font-size: 24px; letter-spacing: -.03em; }
.product-copy > p { min-height: 90px; margin: 15px 0 22px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.product-copy ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.product-copy li { position: relative; padding-left: 16px; color: #42545f; font-size: 12px; line-height: 1.45; }
.product-copy li::before { content: ""; position: absolute; left: 0; top: .58em; width: 6px; height: 2px; background: var(--blue); }
.discount-bar { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 18px; padding: 28px 32px; color: var(--white); background: var(--steel); }
.discount-bar > div:first-child { display: grid; gap: 5px; }
.discount-bar > div:first-child span { color: #bed1d9; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.discount-bar > div:first-child strong { font-size: 20px; }
.discount-steps { display: flex; align-items: center; gap: 10px; }
.discount-steps span { display: grid; gap: 4px; min-width: 108px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.18); color: #d7e4e9; font-size: 10px; }
.discount-steps b { color: var(--white); font-size: 17px; }

.stack { position: relative; overflow: hidden; padding: 120px 0; color: var(--white); background: #162b39; }
.stack::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 7% 32%, rgba(18,147,166,.20), transparent 29%), linear-gradient(115deg, transparent 55%, rgba(255,255,255,.025)); }
.stack-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 70%);
}
.stack-inner { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
.stack-intro .section-kicker { color: #73d2df; }
.stack-intro h2 { margin: 0; font-size: clamp(38px, 4.2vw, 55px); line-height: 1.06; letter-spacing: -.045em; }
.stack-intro > p { margin: 26px 0 0; color: rgba(255,255,255,.63); font-size: 15px; line-height: 1.78; }
.stack-signal { display: flex; align-items: center; gap: 13px; margin-top: 38px; color: #bcd2d9; font-size: 12px; }
.stack-signal i { width: 10px; height: 10px; border-radius: 50%; background: #65e0aa; box-shadow: 0 0 0 7px rgba(101,224,170,.10), 0 0 20px rgba(101,224,170,.5); }
.stack-groups { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.14); border-left: 1px solid rgba(255,255,255,.14); }
.stack-group { min-height: 295px; padding: 26px; border-right: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.025); }
.stack-group-title { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.stack-group-title span { color: #67c6d4; font-size: 9px; letter-spacing: .14em; }
.stack-group-title h3 { margin: 0; font-size: 17px; }
.stack-group ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.stack-group li { padding: 8px 10px; border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.72); font-size: 11px; background: rgba(255,255,255,.035); }

.workflow { padding: 116px 0 122px; background: #f5f8f9; }
.workflow-list { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; border-top: 1px solid #bdcbd2; list-style: none; counter-reset: step; }
.workflow-list li { position: relative; min-height: 230px; padding: 30px 22px; border-right: 1px solid #d0dadf; }
.workflow-list li:first-child { border-left: 1px solid #d0dadf; }
.workflow-list li::before { content: ""; position: absolute; top: -5px; left: 20px; width: 9px; height: 9px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 6px #f5f8f9; }
.workflow-list span { display: block; margin-bottom: 48px; color: #8b9ba5; font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.workflow-list strong { display: block; font-size: 17px; }
.workflow-list p { margin: 13px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.projects { padding: 118px 0 124px; }
.projects-layout { display: grid; grid-template-columns: .75fr 1.25fr; min-height: 810px; border: 1px solid var(--line); }
.projects-photo { position: relative; min-height: 100%; overflow: hidden; background: var(--steel-dark); }
.projects-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,28,38,.90), rgba(12,28,38,.08) 70%); }
.projects-photo > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.62); transition: transform .8s ease; }
.projects-photo:hover > img { transform: scale(1.035); }
.projects-photo-overlay { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 34px; display: grid; gap: 9px; color: var(--white); }
.projects-photo-overlay span { color: #86d8e2; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.projects-photo-overlay strong { max-width: 330px; font-size: 25px; line-height: 1.2; }
.projects-list { display: grid; grid-template-rows: repeat(4, 1fr); }
.project-row { display: grid; grid-template-columns: 54px 1fr; gap: 15px; padding: 28px 32px; border-bottom: 1px solid var(--line); background: #fff; transition: background .2s ease; }
.project-row:last-child { border-bottom: 0; }
.project-row:hover { background: #f5f8f9; }
.project-number { padding-top: 4px; color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.project-row h3 { margin: 0; font-size: 21px; letter-spacing: -.02em; }
.project-row p { margin: 12px 0 16px; color: var(--muted); font-size: 13px; line-height: 1.58; }
.project-row small { display: block; padding-top: 13px; border-top: 1px solid #e2e8eb; color: #41545f; font-size: 10px; line-height: 1.5; }

.inim { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 680px; background: var(--steel-dark); color: var(--white); }
.inim-photo { position: relative; min-height: 560px; overflow: hidden; }
.inim-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 70%, rgba(38,59,75,.9)); }
.inim-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65) contrast(1.05); }
.inim-content { display: flex; flex-direction: column; justify-content: center; padding: 78px max(48px, calc((100vw - 1180px) / 2)) 78px 68px; }
.inim-content .section-kicker { color: #75d1dd; }
.inim-content h2 { margin: 0; font-size: clamp(36px, 4.1vw, 53px); line-height: 1.06; letter-spacing: -.045em; }
.inim-content > p { margin: 24px 0 0; color: rgba(255,255,255,.64); font-size: 15px; line-height: 1.75; }
.inim-content ul { display: grid; gap: 0; margin: 32px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.14); list-style: none; }
.inim-content li { display: grid; grid-template-columns: 40px 1fr; gap: 10px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.14); color: #d8e3e7; font-size: 12px; }
.inim-content li span { color: #6bc8d5; font-size: 9px; font-weight: 700; letter-spacing: .12em; }

.clients { padding: 116px 0 124px; background: #f1f5f6; }
.clients-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #d0dadf; border-left: 1px solid #d0dadf; }
.client-logo { display: grid; place-items: center; min-height: 145px; padding: 26px; border-right: 1px solid #d0dadf; border-bottom: 1px solid #d0dadf; background: rgba(255,255,255,.72); transition: background .2s ease, transform .2s ease; }
.client-logo:last-child { grid-column: span 2; }
.client-logo:hover { position: relative; z-index: 2; background: #fff; transform: translateY(-3px); }
.client-logo img { width: 100%; height: 76px; object-fit: contain; mix-blend-mode: multiply; }

.contact { position: relative; overflow: hidden; padding: 120px 0; color: var(--white); background: #142a39; }
.contact::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 25%, rgba(16,149,168,.2), transparent 26%); }
.contact-grid { position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 68px 68px; }
.contact-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .72fr; gap: 90px; align-items: center; }
.contact-copy .section-kicker { color: #76d3df; }
.contact-copy h2 { max-width: 700px; margin: 0; font-size: clamp(40px, 5.2vw, 67px); line-height: 1.03; letter-spacing: -.052em; }
.contact-copy > p { max-width: 620px; margin: 26px 0 32px; color: rgba(255,255,255,.64); font-size: 16px; line-height: 1.72; }
.contact-card { margin: 0; padding: 4px 32px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.035); font-style: normal; backdrop-filter: blur(12px); }
.contact-row { display: grid; grid-template-columns: 90px 1fr; gap: 16px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.contact-row:last-child { border-bottom: 0; }
.contact-row > span { color: #7bcbd7; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contact-row strong { display: grid; gap: 8px; font-size: 13px; line-height: 1.65; }
.contact-row a:hover { color: #7ed4df; }

footer { padding: 30px 0; background: #fff; }
.footer-inner { display: grid; grid-template-columns: 260px 1fr auto; align-items: center; gap: 38px; }
.footer-inner img { width: 250px; }
.footer-inner p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.footer-inner > span { color: #7d8b95; font-size: 10px; }

a:focus-visible { outline: 3px solid #50c8d8; outline-offset: 4px; }

@media (max-width: 1020px) {
  .main-nav { display: none; }
  .header-cta { margin-left: auto; }
  .hero-inner { grid-template-columns: 1fr minmax(280px, .55fr); gap: 10px; }
  .hero-visual { opacity: .84; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid #d2dce1; }
  .section-heading { gap: 50px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-card:last-child { grid-column: 1 / -1; }
  .product-card:last-child { display: grid; grid-template-columns: 1fr 1fr; }
  .product-card:last-child .product-media { height: auto; }
  .discount-bar { align-items: flex-start; flex-direction: column; }
  .stack-inner { grid-template-columns: 1fr; gap: 60px; }
  .workflow-list { grid-template-columns: repeat(3, 1fr); border-left: 1px solid #d0dadf; }
  .workflow-list li:first-child { border-left: 0; }
  .workflow-list li { border-bottom: 1px solid #d0dadf; }
  .projects-layout { grid-template-columns: .65fr 1.35fr; }
  .inim { grid-template-columns: .85fr 1.15fr; }
  .inim-content { padding: 70px 38px; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-inner { gap: 50px; }
  .footer-inner { grid-template-columns: 240px 1fr; }
  .footer-inner > span { grid-column: 2; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 32px, 1180px); }
  .site-header { height: 70px; }
  .brand { width: 220px; }
  .header-cta { display: none; }
  .hero, .hero-inner { min-height: 720px; }
  .hero-inner { display: block; padding-top: 76px; }
  .hero-photo { background-position: 58% center; }
  .hero h1 { font-size: clamp(39px, 11.5vw, 54px); }
  .hero-lead { font-size: 16px; line-height: 1.6; }
  .hero-visual { display: none; }
  .button { width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { min-height: 148px; padding: 24px 16px; }
  .stat strong { font-size: 21px; }
  .intro { padding: 74px 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .intro-kicker { margin-bottom: 24px; font-size: 30px; }
  .intro-kicker::after { width: 44px; }
  .intro h2 { font-size: clamp(34px, 9.8vw, 48px); }
  .intro-copy p { font-size: 17px; line-height: 1.65; }
  .project-roadmap { grid-column: 1; min-height: 0; padding: 26px 22px 28px; }
  .roadmap-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .roadmap-steps { grid-template-columns: 1fr; margin-top: 28px; }
  .roadmap-steps::before {
    top: 21px;
    right: auto;
    bottom: 21px;
    left: 21px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, #63cedc, rgba(99,206,220,.28));
  }
  .roadmap-steps li {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 18px;
    padding: 0 0 24px;
  }
  .roadmap-steps li:last-child { padding-bottom: 0; }
  .roadmap-node { grid-row: 1 / span 2; }
  .roadmap-steps h3 { grid-column: 2; margin: 1px 0 5px; }
  .roadmap-steps p { grid-column: 2; max-width: none; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 38px; }
  .services, .products, .workflow, .projects, .clients { padding: 82px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .service-top { margin-bottom: 42px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card:last-child { grid-column: auto; display: block; }
  .product-card:last-child .product-media, .product-media { height: 285px; }
  .product-copy > p { min-height: 0; }
  .discount-bar { padding: 24px 20px; }
  .discount-steps { display: grid; width: 100%; grid-template-columns: 1fr 1fr; }
  .discount-steps span { min-width: 0; }
  .stack { padding: 84px 0; }
  .stack-groups { grid-template-columns: 1fr; }
  .stack-group { min-height: 0; }
  .workflow-list { grid-template-columns: 1fr; border-left: 1px solid #d0dadf; }
  .workflow-list li { min-height: 180px; }
  .workflow-list span { margin-bottom: 30px; }
  .projects-layout { grid-template-columns: 1fr; min-height: 0; }
  .projects-photo { min-height: 420px; }
  .project-row { grid-template-columns: 40px 1fr; padding: 26px 20px; }
  .inim { grid-template-columns: 1fr; }
  .inim-photo { min-height: 360px; }
  .inim-photo::after { background: linear-gradient(0deg, rgba(38,59,75,.75), transparent 45%); }
  .inim-content { padding: 70px 24px; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .client-logo { min-height: 120px; padding: 18px; }
  .contact { padding: 84px 0; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-card { padding-inline: 20px; }
  .contact-row { grid-template-columns: 72px 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 18px; }
  .footer-inner > span { grid-column: 1; }
}

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