:root {
  --bg: #f4f7fb;
  --surface: #fff;
  --surface2: #eef4ff;
  --text: #0f172a;
  --muted-strong: #4a5a70;
  --navy: #0f172a;
  --navy2: #0a2c57;
  --primary: #0a4fd0;
  --primary2: #083fa6;
  --primary-soft: #e7efff;
  --primary-line: #c7d8fb;
  --border: #d6dfef;
  --err: #c62828;
  --star: #f5b400;
  --shadow-sm: 0 6px 18px rgba(15, 23, 42, .06);
  --shadow: 0 18px 60px rgba(15, 23, 42, .10);
  --shadow-lg: 0 26px 60px rgba(15, 23, 42, .16);
  --radius: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --pill: 999px;
  --container: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .28s;
  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-head: Montserrat, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

@view-transition { navigation: auto; }

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  animation: page-in .22s var(--ease) both;
}

body.is-locked { overflow: hidden; }

.vt body { animation: none; }

@keyframes page-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes vt-out {
  to { opacity: 0; }
}

@keyframes vt-in {
  from { opacity: 0; transform: translateY(10px); }
}

::view-transition-old(root) { animation: vt-out .16s var(--ease) both; }
::view-transition-new(root) { animation: vt-in .34s var(--ease) both; }

.utility-bar { view-transition-name: utility-bar; }
.header { view-transition-name: header; }
.footer { view-transition-name: footer; }

::view-transition-group(utility-bar),
::view-transition-group(header),
::view-transition-group(footer) { animation: none; }

::view-transition-old(utility-bar),
::view-transition-old(header),
::view-transition-old(footer) { animation: none; opacity: 0; }

::view-transition-new(utility-bar),
::view-transition-new(header),
::view-transition-new(footer) { animation: none; opacity: 1; }

img, video, iframe, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

.wrap {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

h1, h2, h3, h4 {
  margin: 0 0 .6rem;
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: -.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 1.5rem + 2.4vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.5vw, 2.25rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  color: var(--muted-strong);
  max-width: 70ch;
  font-size: 1.02rem;
}

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--tight { padding: clamp(1rem, 2vw, 1.6rem) 0; }
.section-soft { background: linear-gradient(180deg, rgba(10, 79, 208, .045), transparent); }
.page-head { padding: clamp(2.4rem, 5vw, 3.6rem) 0 1rem; }

.kicker, .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: .5rem .85rem;
  margin-bottom: .9rem;
  border-radius: var(--pill);
  background: var(--primary-soft);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: center;
}

.section-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .8rem 1.3rem;
  border: 1px solid transparent;
  border-radius: var(--pill);
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}

.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 35px rgba(10, 79, 208, .24);
}

.btn-primary:hover { background: var(--primary2); }

.btn-outline {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-light { background: #fff; color: var(--primary); }
.btn-light:hover { background: var(--surface2); }

.btn-ghost-sm {
  background: transparent;
  border-color: var(--border);
  color: var(--muted-strong);
  min-height: 40px;
  padding: .55rem 1rem;
  font-size: .85rem;
}

.btn-ghost-sm:hover { color: var(--text); background: var(--bg); }

.hero .btn-outline {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, .2);
  border-color: #fff;
}

.utility-bar {
  background: var(--navy);
  color: #dbe8ff;
  font-size: .82rem;
}

.utility-bar .wrap {
  display: flex;
  align-items: center;
  gap: .35rem 1.5rem;
  padding: .5rem 0;
  flex-wrap: wrap;
}

.utility-bar a { color: #dbe8ff; text-decoration: none; opacity: .9; }
.utility-bar a:hover { opacity: 1; text-decoration: underline; }

.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(244, 247, 251, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur) var(--ease);
}

.header.is-scrolled { box-shadow: 0 8px 30px rgba(15, 23, 42, .08); }

.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.header .wrap > a { display: inline-flex; min-width: 0; }

.logo { height: 56px; width: auto; max-width: 100%; object-fit: contain; }

.header-tools { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }

.nav { display: flex; gap: .3rem; align-items: center; flex-wrap: wrap; }

.nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: .6rem 1rem;
  border-radius: var(--pill);
  text-decoration: none;
  color: var(--muted-strong);
  font-weight: 600;
  font-size: .92rem;
  white-space: nowrap;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.nav a:hover { background: #fff; color: var(--text); }

.nav a.active,
.nav a[aria-current="page"] { background: var(--primary-soft); color: var(--primary); }

.nav a.nav-cta { background: var(--navy); color: #fff; }
.nav a.nav-cta:hover { background: var(--primary); }

.mobile-call {
  display: none;
  align-items: center;
  min-height: 40px;
  padding: .55rem .9rem;
  border-radius: var(--pill);
  background: var(--primary-soft);
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  font-size: .85rem;
}

.mobile-call:hover { background: var(--primary-line); }

.menu-btn {
  display: none;
  align-items: center;
  gap: .5rem;
  min-height: 40px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--pill);
  padding: .5rem 1rem;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
}

.menu-btn-bars { position: relative; width: 16px; height: 11px; flex-shrink: 0; }

.menu-btn-bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.menu-btn-bars span:nth-child(1) { top: 0; }
.menu-btn-bars span:nth-child(2) { top: 4.5px; }
.menu-btn-bars span:nth-child(3) { top: 9px; }

.menu-btn[aria-expanded="true"] .menu-btn-bars span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-btn-bars span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] .menu-btn-bars span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(15, 23, 42, .45);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}

.nav-backdrop.is-visible { opacity: 1; visibility: visible; }

.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy2), var(--primary));
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 20, 40, .85), rgba(10, 79, 208, .55));
}

.hero-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(180deg,
    rgba(255, 255, 255, .03) 0, rgba(255, 255, 255, .03) 1px,
    transparent 1px, transparent 3px);
}

.hero .wrap { position: relative; z-index: 2; color: #fff; }

.hero .eyebrow {
  background: rgba(255, 255, 255, .12);
  color: #dbe8ff;
  font-size: .8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); max-width: 18ch; color: #fff; }
.hero p { color: #dbe8ff; max-width: 60ch; font-size: 1.05rem; }

.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.4rem; }

.trust { background: #fff; border-bottom: 1px solid var(--border); }

.trust .wrap {
  display: flex;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--muted-strong);
}

.trust-item .dot {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: var(--pill);
  background: var(--primary);
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.2rem;
  padding: 1.4rem 0;
}

.brand-strip span {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: .03em;
  color: var(--muted-strong);
  font-size: clamp(.9rem, .85rem + .3vw, 1.05rem);
  white-space: nowrap;
  transition: color var(--dur) var(--ease);
}

.brand-strip span:hover { color: var(--primary); }

.counters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.counter {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.counter b {
  display: block;
  font-size: 2.2rem;
  font-family: var(--font-head);
  color: var(--primary);
  margin-bottom: .3rem;
  font-variant-numeric: tabular-nums;
}

.counter span { color: var(--muted-strong); font-size: .88rem; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: start;
}

.stat {
  display: block;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow);
  font: inherit;
  color: inherit;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.stat b {
  display: block;
  color: var(--primary);
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin-bottom: .3rem;
}

.stat > span { color: var(--muted-strong); font-size: .88rem; }

.stat--interactive { cursor: pointer; }
.stat--interactive:hover { border-color: var(--primary-line); box-shadow: var(--shadow-lg); }

.stat--interactive[aria-expanded="true"] {
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(10, 79, 208, .16);
}

.stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .3rem;
}

.stat-top b { margin-bottom: 0; }

.stat-label { display: block; color: var(--muted-strong); font-size: .88rem; font-weight: 600; }

.offer-panel, .faq-panel, .stat-detail {
  display: block;
  height: 0;
  overflow: hidden;
  transition: height .35s var(--ease);
}

.stat-detail-inner {
  display: block;
  padding-top: .7rem;
  margin-top: .5rem;
  border-top: 1px solid var(--border);
  color: var(--muted-strong);
  font-size: .84rem;
  line-height: 1.6;
  font-weight: 400;
}

.stat-chevron, .offer-chevron, .faq-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: var(--pill);
  background: #fff;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.stat-chevron { width: 26px; height: 26px; }
.offer-chevron { width: 40px; height: 40px; box-shadow: var(--shadow); }
.faq-chevron { width: 34px; height: 34px; }

.stat-chevron svg, .offer-chevron svg, .faq-chevron svg {
  stroke: var(--primary);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform var(--dur) var(--ease), stroke var(--dur) var(--ease);
}

.stat-chevron svg { width: 12px; height: 12px; stroke-width: 2.6; }
.offer-chevron svg { width: 16px; height: 16px; }
.faq-chevron svg { width: 14px; height: 14px; }

[aria-expanded="true"] > .stat-top > .stat-chevron,
[aria-expanded="true"] .offer-chevron,
[aria-expanded="true"] .faq-chevron { background: var(--primary); border-color: var(--primary); }

[aria-expanded="true"] > .stat-top > .stat-chevron svg,
[aria-expanded="true"] .offer-chevron svg,
[aria-expanded="true"] .faq-chevron svg { stroke: #fff; transform: rotate(180deg); }

.offer-list { display: flex; flex-direction: column; gap: .9rem; }

.offer-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.offer-item:hover,
.offer-item.is-open {
  border-color: var(--primary-line);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}

.offer-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.offer-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 32px;
  padding: 0 .4rem;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 800;
  font-size: .85rem;
  flex-shrink: 0;
}

.offer-text { flex: 1; min-width: 0; display: block; }
.offer-title { display: block; font-weight: 700; }
.offer-desc { display: block; color: var(--muted-strong); font-size: .92rem; margin-top: .2rem; }

.offer-panel-inner { display: block; }
.offer-panel-body { padding: 0 1.3rem 1.3rem; }
.offer-panel-body > p { color: var(--muted-strong); font-size: .92rem; margin-bottom: .4rem; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: .6rem;
}

.work-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.work-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface2);
}

.work-card figcaption { padding: .6rem .8rem; font-size: .82rem; font-weight: 600; }

.faq-list { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.2rem; }

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}

.faq-item.is-open { border-color: var(--primary-line); }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.faq-panel-inner {
  display: block;
  padding: 0 1.3rem 1.2rem;
  color: var(--muted-strong);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.case-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.case-media {
  position: relative;
  aspect-ratio: 2 / 1;          /* zamiast height: 150px */
  display: flex;
  align-items: flex-end;
  padding: .9rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy2), #1f8fef); /* fallback */
}
.case-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.case-card:hover .case-media img { transform: scale(1.05); }

.case-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 44, 87, .15), rgba(10, 44, 87, .75));
}

.case-tag {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  padding: .35rem .7rem;
  border-radius: var(--pill);
  backdrop-filter: blur(6px);
}

.case-body { display: flex; flex-direction: column; flex: 1; padding: 1.2rem; }
.case-body h3 { font-size: 1.05rem; margin-bottom: .7rem; }

.case-row { margin-bottom: .6rem; font-size: .86rem; }

.case-row b {
  display: block;
  color: var(--primary);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .15rem;
}

.case-row span { color: var(--muted-strong); }

.case-result {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-top: auto;
  padding-top: .9rem;
  border-top: 1px solid var(--border);
}

.case-result b {
  font-size: 1.5rem;
  color: var(--primary);
  font-family: var(--font-head);
  font-variant-numeric: tabular-nums;
}

.case-result span { color: var(--muted-strong); font-size: .82rem; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.testi-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.testi-stars { color: var(--star); letter-spacing: .15em; margin-bottom: .7rem; }

.testi-card blockquote { margin: 0; flex: 1; font-size: .94rem; }

.testi-who { display: flex; align-items: center; gap: .7rem; margin-top: 1rem; }

.testi-avatar {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: var(--pill);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .78rem;
}

.testi-who b { display: block; font-size: .86rem; }
.testi-who span { display: block; color: var(--muted-strong); font-size: .78rem; }

.area-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }

.area-chip {
  padding: .5rem .9rem;
  border-radius: var(--pill);
  background: var(--surface2);
  border: 1px solid var(--primary-line);
  color: var(--primary);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--dur) var(--ease);
}

a.area-chip:hover { background: var(--primary-line); }

.cta { background: linear-gradient(160deg, var(--navy2), var(--primary)); color: #fff; }
.cta h2 { color: #fff; }
.cta .lead { color: #dbe8ff; }
.cta .kicker { background: rgba(255, 255, 255, .14); color: #dbe8ff; }

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.6rem;
}

.timeline-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.1rem;
}

.timeline-step b {
  display: block;
  color: var(--primary);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .4rem;
}

.timeline-step h3 { margin: 0 0 .4rem; font-size: 1rem; }
.timeline-step p { margin: 0; color: var(--muted-strong); font-size: .85rem; line-height: 1.6; }

.timeline-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.4rem;
  right: -1rem;
  width: 1rem;
  height: 2px;
  background: var(--border);
}

.tech-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.tech-service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.tech-service-card:hover { transform: translateY(-4px); box-shadow: 0 22px 60px rgba(15, 23, 42, .14); }

.tech-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.tech-service-card h3 { font-size: 1.15rem; margin: 0 0 .5rem; }

.tech-service-card > p {
  color: var(--muted-strong);
  margin: 0 0 1rem;
  font-size: .92rem;
  line-height: 1.6;
}

.tech-service-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }

.tech-service-list li { position: relative; padding-left: 1.3rem; font-size: .86rem; }

.tech-service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: var(--pill);
  background: var(--primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.6rem;
  align-items: start;
}

.contact-card, .form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
}

.contact-detail { padding: .9rem 0; border-bottom: 1px solid var(--border); }
.contact-detail:last-of-type { border-bottom: 0; }

.contact-detail b {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted-strong);
  margin-bottom: .3rem;
}

.contact-detail a { color: var(--primary); font-weight: 600; text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }

.map-card {
  position: relative;
  margin-top: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 260px;
  background: var(--surface2);
}

.map-card .map { width: 100%; height: 260px; border: 0; }

.map-open {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .5rem .8rem;
  border-radius: var(--pill);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(15, 23, 42, .12);
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.map-open:hover { background: var(--bg); }

.map-open svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form { display: grid; gap: 1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-grid > *, .form-row, .field { min-width: 0; }

.field { display: grid; gap: .4rem; }
.field label { font-weight: 700; font-size: .88rem; }
.field .req { color: var(--err); }

.field input, .field select, .field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fff;
  font: inherit;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.field textarea { resize: vertical; min-height: 8rem; }

.field select {
  appearance: none;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a4fd0' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 79, 208, .18);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--err);
  box-shadow: 0 0 0 3px rgba(198, 40, 40, .14);
}

.field-hint { font-size: .78rem; color: var(--muted-strong); }

.field-error { display: none; font-size: .8rem; font-weight: 600; color: var(--err); }
.field.has-error .field-error { display: block; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .86rem;
  color: var(--muted-strong);
  line-height: 1.55;
  cursor: pointer;
}

.consent input {
  margin-top: .2rem;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--primary);
}

.consent span { flex: 1; }
.consent a { color: var(--primary); font-weight: 600; }
.consent.has-error span { color: var(--err); }

.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status {
  display: none;
  margin: 0;
  padding: .85rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
}

.form-status.is-visible { display: block; }
.form-status.is-ok { background: #e8f6ed; border: 1px solid #bfe4cd; color: #0f6b33; }
.form-status.is-err { background: #fdecec; border: 1px solid #f6cdcd; color: #93231d; }

.error-code {
  font-family: var(--font-head);
  font-size: clamp(4rem, 14vw, 7.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
}

.footer { background: var(--navy); color: #b9c4dd; padding: 2.2rem 0 1.2rem; }

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-logo {
  width: 110px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: .8rem;
}

.footer-brand p { max-width: 32ch; font-size: .85rem; }

.footer-nav { display: flex; gap: 2rem 3rem; flex-wrap: wrap; }

.footer-col h3 {
  color: #fff;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .8rem;
}

.footer-col a {
  display: block;
  color: #b9c4dd;
  text-decoration: none;
  font-size: .88rem;
  margin-bottom: .55rem;
}

.footer-col a:hover { color: #fff; text-decoration: underline; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.2rem;
  font-size: .8rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  max-width: 640px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .2);
}

.cookie-banner[hidden] { display: none; }
.cookie-banner p { font-size: .85rem; color: var(--muted-strong); margin-bottom: .9rem; }
.cookie-banner a { color: var(--primary); font-weight: 600; }
.cookie-actions { display: flex; gap: .7rem; flex-wrap: wrap; }

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.js .reveal--right { transform: translateY(28px) scale(.985); transition-delay: .08s; }

.js .reveal.is-visible { opacity: 1; transform: none; }

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 200;
  padding: .7rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  background: var(--primary);
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transform: translate(-50%, -120%);
  transition: transform var(--dur) var(--ease);
}

.skip-link:focus { transform: translate(-50%, 0); }

:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 6px; }

.hero :focus-visible,
.cta :focus-visible,
.footer :focus-visible,
.utility-bar :focus-visible { outline-color: #fff; }

@media (max-width: 1024px) {
  .grid-2, .contact-grid { grid-template-columns: 1fr; }
  .counters, .case-grid, .testi-grid, .tech-services-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline-step:nth-child(2)::after { display: none; }

  .header {
    backdrop-filter: none;
    background: rgba(244, 247, 251, .97);
  }

  .menu-btn, .mobile-call { display: inline-flex; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 60;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
    padding: .25rem 1rem 1.25rem;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 22px 44px rgba(15, 23, 42, .16);
    max-height: calc(100vh - 9rem);
    max-height: calc(100dvh - 9rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease),
                visibility var(--dur) var(--ease);
  }

  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }

  .nav a {
    justify-content: flex-start;
    min-height: 56px;
    padding: .95rem .8rem;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.02rem;
  }

  .nav a:hover { background: transparent; color: var(--muted-strong); }

  .nav a.active,
  .nav a[aria-current="page"] {
    background: var(--primary-soft);
    color: var(--primary);
    box-shadow: inset 3px 0 0 var(--primary);
  }

  .nav a.nav-cta {
    margin-top: 1.1rem;
    border-bottom: 0;
    border-radius: var(--pill);
    justify-content: center;
    min-height: 54px;
    color: #fff;
  }
}

@media (max-width: 640px) {
  .counters, .case-grid, .testi-grid, .tech-services-grid,
  .work-grid, .timeline, .stat-row { grid-template-columns: 1fr; }

  .timeline-step::after { display: none; }
  .cta-inner, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-nav { gap: 1.5rem 2rem; }

  .utility-bar { display: none; }

  .footer-col a { padding: .55rem 0; margin-bottom: 0; }
  .area-chip { padding: .65rem 1rem; }
  .map-open { padding: .65rem .9rem; }

  .contact-detail a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
  }

  .logo { height: 46px; }
  .header .wrap { min-height: 70px; }
  .offer-trigger { gap: .7rem; padding: 1rem; }
  .offer-chevron { width: 34px; height: 34px; }
}

@media (max-width: 430px) {
  .logo { height: 40px; max-width: 140px; }
  .header .wrap { gap: .5rem; }
  .header-tools { gap: .4rem; }
  .mobile-call { padding: .5rem .75rem; font-size: .82rem; }
  .menu-btn { font-size: 0; padding: .5rem .7rem; gap: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .js .reveal { opacity: 1; transform: none; }
  .case-card:hover, .tech-service-card:hover { transform: none; }

  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) { animation: none !important; }
}
