:root {
  color-scheme: light;
  --ink: #0b1733;
  --muted: #657087;
  --soft: #eef4fb;
  --line: #dce7f4;
  --blue: #1167ff;
  --blue-deep: #043fbe;
  --cyan: #21c7df;
  --mint: #34c99b;
  --amber: #f2b84b;
  --navy: #06162d;
  --navy-2: #082349;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(27, 61, 116, 0.14);
  --shadow-dark: 0 24px 70px rgba(0, 11, 28, 0.34);
  --max: 1180px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7fbff 0, #ffffff 280px),
    #ffffff;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  max-width: calc(var(--max) + 56px);
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(4, 20, 43, 0.72);
  box-shadow: 0 14px 40px rgba(0, 12, 32, 0.18);
  backdrop-filter: blur(18px);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(189, 205, 225, 0.78);
  box-shadow: 0 12px 40px rgba(20, 51, 93, 0.12);
}

.brand {
  display: inline-grid;
  grid-template-columns: 38px auto;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  line-height: 1;
  background:
    linear-gradient(135deg, rgba(33, 199, 223, 0.9), rgba(17, 103, 255, 0.95)),
    var(--blue);
  border-radius: 8px;
  box-shadow: inset 0 -10px 18px rgba(2, 25, 74, 0.24);
}

.brand strong {
  display: block;
  font-size: 13px;
  line-height: 1.05;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: currentColor;
  font-size: 10px;
  opacity: 0.68;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.3vw, 20px);
  min-width: 0;
}

.nav a {
  color: currentColor;
  font-size: 13px;
  opacity: 0.82;
  transition:
    opacity 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}

.nav a:hover,
.nav a.is-active {
  color: var(--cyan);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn,
.video-link,
.icon-button {
  min-height: 44px;
  border-radius: 8px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -30% auto -30% -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
}

.btn:hover::before,
.btn.shine::before {
  animation: button-shine 1.25s ease;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 14px 28px rgba(17, 103, 255, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(17, 103, 255, 0.36);
}

.btn-small {
  min-height: 36px;
  padding: 9px 14px;
  font-size: 12px;
}

.btn-outline {
  color: var(--blue-deep);
  background: #fff;
  border-color: #bdd0ed;
}

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

.btn-ghost {
  min-height: 40px;
  color: #eaf3ff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.icon-button {
  display: none;
  width: 44px;
  padding: 0;
  place-items: center;
  color: currentColor;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.site-header.is-scrolled .icon-button {
  border-color: var(--line);
  background: #fff;
}

.icon-button svg,
.video-link svg,
.btn svg,
.stat svg,
.service-icon svg,
.contact-list svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  padding: 118px 24px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(33, 199, 223, 0.26), transparent 26%),
    radial-gradient(circle at 32% 70%, rgba(52, 201, 155, 0.16), transparent 24%),
    linear-gradient(135deg, #041228 0%, #062857 58%, #06162d 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(36px, 7vw, 90px);
  max-width: var(--max);
  margin: 0 auto;
}

.hero-copy {
  max-width: 670px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #7bdff1;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(39px, 4.25vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-text {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  font-size: 14px;
}

.video-link:hover {
  color: #fff;
}

.play-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.play-icon svg {
  width: 18px;
  height: 18px;
  margin-left: 2px;
  fill: currentColor;
  stroke: none;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  perspective: 1100px;
}

.device {
  position: relative;
  overflow: hidden;
  width: min(100%, 560px);
  min-height: 360px;
  margin-left: auto;
  padding: 16px;
  border: 1px solid rgba(144, 203, 255, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(3, 13, 31, 0.78);
  box-shadow: var(--shadow-dark);
  transform: rotateY(-10deg) rotateX(4deg);
  animation: float-device 7s ease-in-out infinite;
}

.device::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -18px;
  height: 42px;
  border-radius: 50%;
  background: rgba(33, 199, 223, 0.24);
  filter: blur(22px);
}

.device-top {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 28px;
  color: rgba(255, 255, 255, 0.72);
}

.device-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
}

.device-top strong {
  margin-left: auto;
  font-size: 12px;
  font-weight: 800;
}

.dashboard {
  display: grid;
  grid-template-columns: 0.75fr 1.35fr;
  gap: 12px;
  height: 300px;
}

.metric-panel,
.chart-panel,
.call-panel,
.funnel-panel {
  border: 1px solid rgba(119, 186, 246, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(9, 48, 96, 0.88), rgba(6, 28, 58, 0.78)),
    #082145;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.metric-panel,
.call-panel {
  padding: 18px;
}

.metric-panel small,
.call-panel small {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.metric-panel b,
.call-panel b {
  display: block;
  margin-top: 16px;
  font-size: 42px;
  line-height: 1;
}

.positive {
  display: inline-block;
  margin-top: 16px;
  color: #7be5bd;
  font-weight: 900;
}

.chart-panel {
  position: relative;
  overflow: hidden;
  grid-row: span 2;
  padding: 20px 20px 18px;
}

.chart-bars {
  position: absolute;
  inset: 28px 22px 22px;
  display: flex;
  align-items: end;
  gap: 12px;
}

.chart-bars i {
  flex: 1;
  height: var(--h);
  min-height: 30px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #20c9e4, #1167ff);
  box-shadow: 0 0 18px rgba(33, 199, 223, 0.28);
  animation: bars 2.6s ease-in-out infinite;
  animation-delay: calc(var(--h) * -0.02);
}

.line-graph {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 42px;
  width: calc(100% - 48px);
  height: 100px;
  overflow: visible;
}

.line-shadow,
.line-main {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-shadow {
  stroke: rgba(51, 214, 224, 0.24);
  stroke-width: 12;
  filter: blur(4px);
}

.line-main {
  stroke: #8df0ff;
  stroke-width: 4;
}

.call-panel span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.6);
}

.funnel-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 14px;
}

.funnel-panel span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  font-size: 12px;
}

.dna {
  position: absolute;
  left: 2%;
  bottom: 18px;
  display: grid;
  width: 230px;
  height: 120px;
  opacity: 0.95;
}

.dna span {
  position: absolute;
  left: calc(var(--i, 0) * 18%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(114, 219, 255, 0.52);
  border-radius: 50%;
  box-shadow: 0 0 26px rgba(33, 199, 223, 0.26);
}

.dna span:nth-child(1) { --i: 0; top: 20px; }
.dna span:nth-child(2) { --i: 1; top: 54px; }
.dna span:nth-child(3) { --i: 2; top: 18px; }
.dna span:nth-child(4) { --i: 3; top: 54px; }
.dna span:nth-child(5) { --i: 4; top: 20px; }
.dna span:nth-child(6) { --i: 5; top: 54px; }

.stats-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: 50px auto -52px;
  overflow: hidden;
  border: 1px solid rgba(194, 210, 230, 0.92);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.stat {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  column-gap: 14px;
  min-height: 116px;
  padding: 25px 24px;
  color: var(--ink);
  background: #fff;
}

.stat-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue);
  border-radius: 50%;
  background: #eef5ff;
}

.stat strong {
  color: var(--blue-deep);
  font-size: clamp(24px, 2.3vw, 32px);
  line-height: 1;
}

.stat small {
  grid-column: 2;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 24px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.centered {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 22px;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(31px, 3.1vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
}

.section-heading p:not(.eyebrow),
.service-card p,
.project-card p,
.process-item p,
.insight-card p,
.page-preview p,
.footer p,
.contact-content p {
  color: var(--muted);
  line-height: 1.62;
}

.services-section {
  padding-top: 138px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 230px;
  padding: 24px 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(29, 67, 112, 0.06);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(17, 103, 255, 0.3);
  box-shadow: 0 20px 42px rgba(29, 67, 112, 0.12);
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--blue);
  border-radius: 8px;
  background: linear-gradient(180deg, #eef6ff, #ffffff);
  border: 1px solid #dce9fb;
}

.service-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 20px;
  border: 1px solid #dce7f4;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(27, 61, 116, 0.08);
}

.project-card-dark,
.project-total {
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(33, 199, 223, 0.22), transparent 34%),
    linear-gradient(160deg, #071c3a, #031226);
  border-color: rgba(22, 82, 142, 0.72);
}

.project-card h3 {
  margin-top: 18px;
}

.project-card p {
  min-height: 68px;
  margin-bottom: 22px;
  font-size: 14px;
}

.project-card-dark p,
.project-total p {
  color: rgba(255, 255, 255, 0.72);
}

.project-card a:not(.btn) {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-weight: 900;
  font-size: 13px;
}

.project-card-dark a:not(.btn) {
  color: #7bdff1;
}

.project-card a svg {
  width: 16px;
  height: 16px;
}

.project-art {
  height: 98px;
  border-radius: 8px;
  border: 1px solid rgba(181, 203, 232, 0.48);
  background: #0a264f;
}

.project-wave {
  background:
    radial-gradient(circle at 20% 30%, rgba(33, 199, 223, 0.5), transparent 12%),
    linear-gradient(135deg, rgba(17, 103, 255, 0.28), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 20px),
    #061a36;
}

.project-crm {
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(17, 103, 255, 0.14) 16% 18%, transparent 18%),
    radial-gradient(circle at 72% 25%, rgba(52, 201, 155, 0.46), transparent 18%),
    #edf5ff;
}

.project-ai {
  background:
    radial-gradient(circle at 48% 38%, rgba(33, 199, 223, 0.42), transparent 18%),
    radial-gradient(circle at 50% 40%, transparent 30%, rgba(17, 103, 255, 0.3) 31% 34%, transparent 35%),
    #071b38;
}

.project-network {
  background:
    radial-gradient(circle at 18% 28%, #21c7df 0 3px, transparent 4px),
    radial-gradient(circle at 68% 58%, #1167ff 0 4px, transparent 5px),
    radial-gradient(circle at 78% 24%, #34c99b 0 3px, transparent 4px),
    linear-gradient(135deg, #edf5ff, #ffffff);
}

.project-total {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 310px;
}

.project-total span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.project-total strong {
  display: block;
  font-size: 74px;
  line-height: 1;
}

.development-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: 28px;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(27, 61, 116, 0.06);
}

.process-item span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 900;
}

.process-item p {
  margin-bottom: 0;
}

.tech-panel {
  min-height: 100%;
  padding: 28px;
  color: #fff;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 8%, rgba(242, 184, 75, 0.28), transparent 26%),
    linear-gradient(155deg, #071a38, #0a2a51);
  box-shadow: var(--shadow-dark);
}

.tech-panel h3 {
  margin-bottom: 24px;
  font-size: 25px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.tech-grid span {
  display: grid;
  min-height: 48px;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.insight-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: center;
  gap: 32px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(17, 103, 255, 0.08), rgba(52, 201, 155, 0.08)),
    #f8fbff;
  border: 1px solid #dfeaf6;
}

.insight-card p {
  margin-bottom: 0;
}

.insight-visual {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 24px;
  border: 1px solid #dce7f4;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 18%, rgba(33, 199, 223, 0.13), transparent 26%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 18px 44px rgba(27, 61, 116, 0.08);
}

.revenue-map {
  display: grid;
  gap: 18px;
}

.revenue-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.revenue-top strong {
  font-size: 18px;
}

.revenue-top span {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.revenue-chart {
  position: relative;
  height: 154px;
  overflow: hidden;
  border: 1px solid #dbe8f5;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(17, 103, 255, 0.06), rgba(52, 201, 155, 0.06)),
    repeating-linear-gradient(0deg, transparent 0 37px, rgba(151, 171, 198, 0.18) 38px),
    #ffffff;
}

.revenue-chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.revenue-area {
  fill: url("#revenueGradient");
  opacity: 0.78;
}

.revenue-line {
  fill: none;
  stroke: #1167ff;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 8px 14px rgba(17, 103, 255, 0.25));
}

.revenue-dot {
  fill: #ffffff;
  stroke: #21c7df;
  stroke-width: 4;
}

.revenue-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.channel-chip {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 12px;
  border: 1px solid #dce7f4;
  border-radius: 8px;
  background: #fff;
}

.channel-chip small {
  color: var(--muted);
  font-weight: 800;
}

.channel-chip b {
  color: var(--ink);
  font-size: 18px;
}

.revenue-funnel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.funnel-step {
  position: relative;
  min-height: 56px;
  padding: 11px 10px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--step), #06285a);
  box-shadow: 0 14px 26px rgba(16, 74, 151, 0.15);
}

.funnel-step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -9px;
  z-index: 1;
  width: 10px;
  height: 2px;
  background: #b9cbe0;
}

.funnel-step:last-child::after {
  display: none;
}

.funnel-step strong,
.funnel-step small {
  display: block;
}

.funnel-step strong {
  font-size: 15px;
}

.funnel-step small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
}

.team-news-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.team-panel,
.news-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(27, 61, 116, 0.08);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.person-card {
  min-width: 0;
  text-align: center;
}

.avatar {
  position: relative;
  height: 142px;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, #edf4fc, #dfe8f2);
}

.avatar::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--skin, #d9aa85);
  transform: translateX(-50%);
}

.avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -26px;
  width: 110px;
  height: 82px;
  border-radius: 44px 44px 0 0;
  background: var(--shirt, #0b2f61);
  transform: translateX(-50%);
}

.avatar-1 { --skin: #d5a17d; --shirt: #12345e; }
.avatar-2 { --skin: #e3b392; --shirt: #f5f7fb; }
.avatar-3 { --skin: #c98f6b; --shirt: #102c50; }
.avatar-4 { --skin: #e0ac8d; --shirt: #f5f7fb; }

.person-card h3 {
  margin: 0 0 3px;
  font-size: 15px;
}

.person-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.full-width {
  width: 100%;
  margin-top: 22px;
}

.news-list {
  display: grid;
  gap: 14px;
}

.news-item {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.news-thumb {
  height: 78px;
  border-radius: 8px;
  background: #082349;
}

.news-thumb-1 {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 5px, transparent 5px 18px),
    linear-gradient(135deg, #082349, #1167ff);
}

.news-thumb-2 {
  background:
    radial-gradient(circle at 68% 34%, rgba(242, 184, 75, 0.54), transparent 20%),
    linear-gradient(135deg, #eaf3ff, #ffffff);
}

.news-thumb-3 {
  background:
    radial-gradient(circle at 50% 50%, rgba(33, 199, 223, 0.5), transparent 18%),
    #071a38;
}

.news-item time {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
}

.news-item h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.36;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.job-card {
  display: grid;
  gap: 10px;
  min-height: 120px;
  align-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(27, 61, 116, 0.06);
}

.job-card::before {
  content: "";
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(17, 103, 255, 0.16), rgba(52, 201, 155, 0.16)),
    #eef6ff;
}

.job-card span {
  font-weight: 900;
  font-size: 14px;
}

.job-card small {
  color: var(--muted);
}

.centered-button {
  display: flex;
  width: min(100%, 330px);
  margin: 24px auto 0;
}

.logos-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 16px 42px rgba(27, 61, 116, 0.07);
}

.logos-row span {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 18px;
  color: #5f6a7f;
  background: #fff;
  font-weight: 900;
  text-align: center;
}

.pages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.page-preview {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.96)),
    #fff;
  box-shadow: 0 18px 44px rgba(27, 61, 116, 0.07);
}

.page-preview span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--blue-deep);
  border-radius: 8px;
  background: #eef6ff;
  font-weight: 900;
}

.page-preview p {
  margin-bottom: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: start;
  gap: 34px;
  padding-bottom: 120px;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
}

.contact-list svg {
  color: var(--blue);
  flex: 0 0 auto;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--ink);
  font-weight: 900;
  font-size: 13px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfddec;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8fbff;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(17, 103, 255, 0.22);
  border-color: var(--blue);
  background: #fff;
}

.footer {
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 12% 14%, rgba(33, 199, 223, 0.18), transparent 24%),
    linear-gradient(135deg, #06162d, #02101f);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.8fr 1.35fr;
  gap: 64px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 66px 24px;
}

.footer-brand {
  margin-bottom: 22px;
  color: #fff;
}

.footer p {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.66);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-links h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 15px;
}

.footer-links a,
.footer-links span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.inner-page {
  background:
    linear-gradient(180deg, #06162d 0, #06162d 380px, #f7fbff 381px, #ffffff 760px),
    #ffffff;
}

.service-hero,
.contact-hero,
.cases-hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 132px 24px 82px;
  color: #fff;
  background:
    radial-gradient(circle at 74% 18%, rgba(33, 199, 223, 0.22), transparent 28%),
    radial-gradient(circle at 18% 74%, rgba(52, 201, 155, 0.16), transparent 24%),
    linear-gradient(135deg, #06162d 0%, #082b5d 58%, #06162d 100%);
}

.service-hero::before,
.contact-hero::before,
.cases-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
  pointer-events: none;
}

.service-hero-grid,
.contact-hero-grid,
.cases-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.9fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  max-width: var(--max);
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.breadcrumb a {
  color: #9ae8f5;
}

.service-hero h1,
.contact-hero h1,
.cases-hero h1 {
  max-width: 760px;
}

.service-lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.62;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.hero-badges span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  font-size: 13px;
}

.service-dashboard,
.contact-dashboard,
.cases-dashboard {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(144, 203, 255, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03)),
    rgba(3, 13, 31, 0.76);
  box-shadow: var(--shadow-dark);
}

.screen-top {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.screen-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
}

.screen-top strong {
  margin-left: auto;
  font-size: 12px;
}

.service-screen-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 12px;
}

.kpi-card,
.mini-funnel,
.screen-note,
.service-bars,
.service-map {
  border: 1px solid rgba(119, 186, 246, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(9, 48, 96, 0.9), rgba(6, 28, 58, 0.78)),
    #082145;
}

.kpi-card {
  padding: 18px;
}

.kpi-card small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.kpi-card strong {
  display: block;
  margin-top: 14px;
  font-size: 36px;
  line-height: 1;
}

.kpi-card span {
  display: inline-block;
  margin-top: 12px;
  color: #7be5bd;
  font-weight: 900;
}

.service-bars {
  display: flex;
  align-items: end;
  gap: 10px;
  min-height: 176px;
  padding: 20px 18px;
}

.service-bars i {
  flex: 1;
  height: var(--h);
  min-height: 28px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #20c9e4, #1167ff);
  box-shadow: 0 0 18px rgba(33, 199, 223, 0.28);
}

.mini-funnel {
  display: grid;
  gap: 10px;
  grid-column: span 2;
  padding: 14px;
}

.mini-funnel span {
  display: block;
  width: var(--w);
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(90deg, rgba(17, 103, 255, 0.95), rgba(33, 199, 223, 0.76));
  font-weight: 800;
  font-size: 12px;
}

.proof-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: -42px auto 0;
  overflow: hidden;
  border: 1px solid rgba(194, 210, 230, 0.92);
  border-radius: 10px;
  background: #dce7f4;
  box-shadow: var(--shadow);
}

.proof-card {
  min-height: 124px;
  padding: 24px;
  background: #fff;
}

.proof-card strong {
  display: block;
  color: var(--blue-deep);
  font-size: 32px;
  line-height: 1;
}

.proof-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.4;
}

.feature-grid,
.case-grid,
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card,
.case-card,
.offer-card,
.faq-list details,
.estimator,
.map-card,
.contact-method,
.case-row {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(27, 61, 116, 0.07);
}

.feature-card,
.offer-card,
.case-card {
  min-height: 220px;
  padding: 24px;
}

.feature-card b,
.offer-card b {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--blue);
  border-radius: 8px;
  background: #eef6ff;
  font-weight: 900;
}

.feature-card p,
.offer-card p,
.case-card p,
.case-row p,
.faq-list p {
  color: var(--muted);
  line-height: 1.62;
}

.channel-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

.flow-diagram {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 18%, rgba(33, 199, 223, 0.15), transparent 26%),
    linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 18px 44px rgba(27, 61, 116, 0.08);
}

.flow-diagram::before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(17, 103, 255, 0.1) 50%, transparent 51%),
    linear-gradient(0deg, transparent 0 49%, rgba(17, 103, 255, 0.1) 50%, transparent 51%);
  pointer-events: none;
}

.flow-node {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: min(100%, 420px);
  min-height: 76px;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid #dce7f4;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(27, 61, 116, 0.08);
}

.flow-node:nth-child(2n) {
  margin-left: auto;
}

.flow-node b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.flow-node strong,
.flow-node small {
  display: block;
}

.flow-node small {
  margin-top: 4px;
  color: var(--muted);
}

.estimate-card {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(242, 184, 75, 0.24), transparent 26%),
    linear-gradient(155deg, #071a38, #0a2a51);
  box-shadow: var(--shadow-dark);
}

.estimator {
  display: grid;
  gap: 12px;
  padding: 18px;
  color: var(--ink);
  box-shadow: none;
}

.estimator label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.estimator output {
  color: var(--blue-deep);
}

.estimator input {
  width: 100%;
  accent-color: var(--blue);
}

.estimator-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  background: #eef6ff;
}

.estimator-result span {
  color: var(--muted);
  font-size: 13px;
}

.estimator-result strong {
  color: var(--blue-deep);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--mint), var(--cyan)),
    var(--mint);
}

.case-card {
  display: grid;
  gap: 18px;
}

.case-art {
  min-height: 120px;
  border: 1px solid #dce7f4;
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 25%, rgba(33, 199, 223, 0.28), transparent 18%),
    linear-gradient(135deg, #edf5ff, #ffffff);
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.case-metrics span {
  display: grid;
  gap: 4px;
  padding: 10px;
  border-radius: 8px;
  background: #f1f6fd;
  color: var(--muted);
  font-size: 12px;
}

.case-metrics b {
  color: var(--blue-deep);
  font-size: 18px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 34px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 900;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 78% 22%, rgba(33, 199, 223, 0.25), transparent 26%),
    linear-gradient(135deg, #06162d, #0a3270);
  box-shadow: var(--shadow-dark);
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.cases-list {
  display: grid;
  gap: 14px;
}

.case-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 22px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.case-tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: #eef6ff;
  font-weight: 800;
  font-size: 12px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 26px;
  align-items: start;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-method {
  min-height: 150px;
  padding: 22px;
}

.contact-method svg {
  width: 24px;
  height: 24px;
  margin-bottom: 16px;
  color: var(--blue);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.map-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(17, 103, 255, 0.12) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 0 48%, rgba(33, 199, 223, 0.12) 49% 51%, transparent 52%),
    repeating-linear-gradient(45deg, #edf4fc 0 1px, transparent 1px 48px),
    #ffffff;
}

.map-card::after {
  content: "";
  position: absolute;
  left: 58%;
  top: 42%;
  width: 26px;
  height: 26px;
  border: 8px solid var(--blue);
  border-radius: 50% 50% 50% 0;
  background: #fff;
  box-shadow: 0 14px 30px rgba(17, 103, 255, 0.25);
  transform: rotate(-45deg);
}

.map-card h3,
.map-card p {
  position: relative;
  z-index: 2;
  max-width: 260px;
}

.page-preview[href],
.service-card[href],
.job-card[href] {
  display: block;
}

.page-preview[href]:hover,
.service-card[href]:hover,
.job-card[href]:hover,
.case-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 103, 255, 0.28);
  box-shadow: 0 22px 46px rgba(27, 61, 116, 0.12);
}

.page-preview,
.service-card,
.job-card,
.case-card,
.feature-card {
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

@keyframes float-device {
  0%,
  100% {
    transform: rotateY(-10deg) rotateX(4deg) translateY(0);
  }
  50% {
    transform: rotateY(-8deg) rotateX(5deg) translateY(-12px);
  }
}

@keyframes button-shine {
  0% {
    left: -55%;
  }
  100% {
    left: 120%;
  }
}

@keyframes bars {
  0%,
  100% {
    transform: scaleY(0.94);
  }
  50% {
    transform: scaleY(1);
  }
}

@media (max-width: 1180px) {
  .site-header {
    left: 16px;
    right: 16px;
    width: auto;
  }

  .nav {
    gap: 12px;
  }

  .nav a {
    font-size: 12px;
  }

  .services-grid,
  .jobs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-total {
    min-height: 260px;
  }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav {
    position: fixed;
    inset: 78px 16px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid #dce7f4;
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 70px rgba(0, 13, 33, 0.22);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 15px 12px;
    color: var(--ink);
    border-radius: 8px;
    font-size: 15px;
  }

  .nav a:hover {
    background: #eef6ff;
  }

  .icon-button {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

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

  .hero-visual {
    min-height: 350px;
  }

  .device {
    margin: 0;
    transform: none;
    animation: none;
  }

  .dna {
    right: 4%;
    left: auto;
  }

  .stats-panel {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 52px;
  }

  .development-layout,
  .insight-card,
  .team-news-section,
  .contact-section,
  .footer-main,
  .service-hero-grid,
  .contact-hero-grid,
  .cases-hero-grid,
  .channel-map,
  .faq-layout,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

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

  .logos-row {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .proof-strip,
  .feature-grid,
  .case-grid,
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-dashboard,
  .contact-dashboard,
  .cases-dashboard {
    max-width: 620px;
  }

  .cta-band,
  .case-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    margin-top: 8px;
    padding: 9px 10px;
  }

  .brand {
    grid-template-columns: 34px auto;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand strong {
    font-size: 12px;
  }

  .brand small {
    font-size: 9px;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    padding: 104px 16px 0;
  }

  h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .video-link {
    justify-content: center;
  }

  .hero-visual {
    min-height: 0;
  }

  .device {
    min-height: 310px;
    padding: 12px;
    border-radius: 10px;
  }

  .dashboard {
    grid-template-columns: 1fr;
    height: auto;
  }

  .chart-panel {
    min-height: 190px;
    grid-row: auto;
  }

  .funnel-panel {
    grid-template-columns: repeat(4, 1fr);
  }

  .funnel-panel span {
    min-height: 34px;
    font-size: 10px;
  }

  .dna {
    display: none;
  }

  .stats-panel {
    grid-template-columns: 1fr;
    margin-bottom: -40px;
  }

  .stat {
    min-height: 100px;
    padding: 20px;
  }

  .section {
    padding: 88px 16px 0;
  }

  .services-section {
    padding-top: 108px;
  }

  .services-grid,
  .project-grid,
  .jobs-grid,
  .pages-grid,
  .logos-row,
  .tech-grid,
  .proof-strip,
  .feature-grid,
  .case-grid,
  .offer-grid,
  .contact-methods,
  .revenue-channels,
  .revenue-funnel {
    grid-template-columns: 1fr;
  }

  .service-hero,
  .contact-hero,
  .cases-hero {
    min-height: 0;
    padding: 104px 16px 64px;
  }

  .service-lead {
    font-size: 17px;
  }

  .service-screen-grid {
    grid-template-columns: 1fr;
  }

  .mini-funnel {
    grid-column: auto;
  }

  .proof-strip {
    margin-top: -30px;
  }

  .proof-card {
    min-height: 108px;
    padding: 20px;
  }

  .channel-map {
    gap: 18px;
  }

  .flow-diagram {
    min-height: 0;
    padding: 18px;
  }

  .flow-node,
  .flow-node:nth-child(2n) {
    width: 100%;
    margin-left: 0;
  }

  .estimate-card,
  .cta-band {
    padding: 22px;
  }

  .faq-list summary {
    padding: 18px;
  }

  .faq-list p {
    padding: 0 18px 18px;
  }

  .map-card {
    min-height: 320px;
  }

  .funnel-step::after {
    top: auto;
    right: auto;
    bottom: -9px;
    left: 22px;
    width: 2px;
    height: 10px;
  }

  .project-card,
  .project-total {
    min-height: 250px;
  }

  .process-item {
    grid-template-columns: 1fr;
  }

  .insight-card,
  .team-panel,
  .news-panel,
  .contact-form,
  .tech-panel {
    padding: 22px;
  }

  .insight-card {
    gap: 20px;
  }

  .insight-visual {
    min-height: 220px;
    padding: 18px;
  }

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

  .avatar {
    height: 118px;
  }

  .news-item {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .news-thumb {
    height: 68px;
  }

  .contact-section {
    padding-bottom: 88px;
  }

  .footer-main {
    gap: 36px;
    padding: 48px 16px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    padding-right: 16px;
    padding-left: 16px;
  }
}

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