*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
img, svg { display: block; max-width: 100%; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea { font: inherit; color: inherit; }

:root {
  --bg: #FDFCFA;
  --bg-linen: #F2EFE9;
  --bg-card: #EAE8E4;
  --bg-dark: #0F1A2C;
  --bg-dark-soft: #162339;
  --text: #0F1A2C;
  --text-emp: #2A3548;
  --text-mute: #5C6573;
  --text-faint: #98A0AB;
  --text-inverse: #FDFCFA;
  --text-inverse-mute: rgba(253, 252, 250, 0.6);
  --line: #D1D5DB;
  --line-soft: #E5E3DE;
  --line-dark: rgba(253, 252, 250, 0.12);
  --accent-blue: #1E5A99;
  --accent-blue-soft: #2A6BB0;
  --accent-teal: #0C7E7D;
  --ease-quiet: cubic-bezier(.22, 1, .36, 1);
  --ease-precise: cubic-bezier(.4, 0, .2, 1);
  --ease-emphasis: cubic-bezier(.16, 1, .3, 1);
  --container: 1280px;
  --nav-h: 76px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* NOISE OVERLAY */
.noise-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
  animation: noise 20s linear infinite;
  mix-blend-mode: multiply;
}
@keyframes noise {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-10%, 5%); }
  50% { transform: translate(-10%, 5%); }
  80% { transform: translate(-15%, 0); }
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
}

.eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 2rem;
  position: relative;
  padding-left: 28px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 1px;
  background: var(--accent-blue);
}
.eyebrow--light { color: rgba(253, 252, 250, 0.7); }
.eyebrow--light::before { background: rgba(253, 252, 250, 0.5); }
.eyebrow--teal { color: var(--accent-teal); }
.eyebrow--teal::before { background: var(--accent-teal); }

.section-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
}
.section-headline--light { color: var(--text-inverse); }
.section-lead {
  font-size: 1.05rem;
  color: var(--text-mute);
  max-width: 660px;
  line-height: 1.75;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 14px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 200ms var(--ease-quiet);
  letter-spacing: 0.01em;
}
.btn--primary { background: var(--accent-blue); color: var(--text-inverse); }
.btn--primary:hover { background: var(--accent-blue-soft); transform: translateY(-1px); }
.btn--primary:active { transform: scale(0.98); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--text); background: var(--bg-card); }
.btn--ghost:active { transform: scale(0.98); }
.btn--inverse { background: var(--text-inverse); color: var(--bg-dark); }
.btn--inverse:hover { transform: translateY(-1px); }
.btn--inverse:active { transform: scale(0.98); }
.btn--telegram { background: transparent; color: var(--text-inverse); border-color: rgba(253,252,250,0.3); }
.btn--telegram:hover { border-color: var(--text-inverse); background: rgba(253,252,250,0.08); }
.btn--whatsapp { background: #25D366; color: #fff; }
.btn--whatsapp:hover { background: #1da851; }
.btn--viber { background: #7360F2; color: #fff; }
.btn--viber:hover { background: #5a48d6; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(253, 252, 250, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  z-index: 100;
}
.nav__inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}
.nav__logo { display: flex; align-items: baseline; gap: 0.6rem; }
.nav__logo-mark {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--text);
}
.nav__logo-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}
.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  justify-self: center;
}
.nav__links a {
  font-size: 0.92rem;
  color: var(--text-emp);
  transition: color 200ms;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--accent-blue);
  transition: width 300ms var(--ease-quiet);
}
.nav__links a:hover { color: var(--accent-blue); }
.nav__links a:hover::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 1.5rem; }
.nav__socials { display: flex; align-items: center; gap: 0.5rem; }
.nav__social {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text-emp);
  transition: border-color 200ms, background-color 200ms, transform 200ms;
}
.nav__social:hover { transform: translateY(-2px); }
.nav__social--tg:hover { border-color: #229ED9; background: #EBF7FF; color: #229ED9; }
.nav__social--wa:hover { border-color: #25D366; background: #EAFBF0; color: #25D366; }
.nav__social--vb:hover { border-color: #7360F2; background: #F2F0FE; color: #7360F2; }
.nav__phone {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--text);
  letter-spacing: 0.02em;
}
.nav__cta {
  padding: 10px 18px;
  background: var(--accent-blue);
  color: var(--text-inverse);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 200ms var(--ease-quiet);
}
.nav__cta:hover { background: var(--accent-blue-soft); }
.nav__cta:active { transform: scale(0.97); }

@media (max-width: 980px) {
  .nav__inner { gap: 1rem; padding: 0 1.2rem; }
  .nav__links { display: none; }
  .nav__phone { font-size: 0.78rem; }
  .nav__cta { padding: 8px 14px; font-size: 0.82rem; }
  .nav__socials { display: none; }
}
@media (max-width: 580px) {
  .nav__phone { display: none; }
  .nav__logo-tag { display: none; }
}

/* === Call Widget === */
.cw { position: fixed; bottom: 28px; right: 28px; z-index: 10000; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cw__panel { display: flex; flex-direction: column; gap: 6px; background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; box-shadow: 0 12px 40px rgba(15,26,44,0.15); opacity: 0; pointer-events: none; transform: translateY(10px) scale(0.97); transition: opacity 0.22s ease, transform 0.22s ease; min-width: 210px; }
.cw.is-open .cw__panel { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.cw__label { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--text-mute); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.cw__panel a { display: flex; align-items: center; gap: 10px; font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--text); padding: 8px 0; border-bottom: 1px solid var(--line-soft); transition: color 0.2s; }
.cw__panel a:last-child { border-bottom: none; }
.cw__panel a:hover { color: var(--accent-blue); }
.cw__btn { width: 54px; height: 54px; border-radius: 50%; background: var(--accent-blue); color: var(--text-inverse); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(30,90,153,0.45); transition: background 0.2s, transform 0.2s; cursor: pointer; border: none; }
.cw__btn:hover { background: var(--accent-blue-soft); transform: scale(1.07); }
.cw.is-open .cw__btn .icon-phone { display: none; }
.cw:not(.is-open) .cw__btn .icon-close { display: none; }
@media (max-width: 640px) { .cw { bottom: 20px; right: 16px; } }

/* HERO */
.hero {
  padding: calc(var(--nav-h) + 80px) 2rem 100px;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero__left { position: relative; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 2rem;
}
.hero__eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-teal);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero__headline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.018em;
  margin-bottom: 2rem;
  color: var(--text);
}
.hero__headline .line-mask {
  display: block;
  overflow: hidden;
  padding-bottom: 4px;
}
.hero__headline .line {
  display: block;
  transform: translateY(110%);
  will-change: transform;
}
.hero__headline .line.italic {
  font-style: italic;
  font-weight: 200;
  color: var(--accent-blue);
}
.no-js .hero__headline .line { transform: translateY(0); }
.hero.is-in .hero__headline .line { transform: translateY(0); transition: transform 1100ms var(--ease-quiet); }
.hero.is-in .line-mask:nth-child(1) .line { transition-delay: 200ms; }
.hero.is-in .line-mask:nth-child(2) .line { transition-delay: 330ms; }
.hero.is-in .line-mask:nth-child(3) .line { transition-delay: 460ms; }

.hero__sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mute);
  max-width: 540px;
  margin-bottom: 2.5rem;
}
.js .hero__sub { opacity: 0; transform: translateY(20px); transition: opacity 1000ms 800ms var(--ease-quiet), transform 1000ms 800ms var(--ease-quiet); }
.hero.is-in .hero__sub { opacity: 1; transform: none; }

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.js .hero__cta { opacity: 0; transform: translateY(20px); transition: opacity 1000ms 1000ms var(--ease-quiet), transform 1000ms 1000ms var(--ease-quiet); }
.hero.is-in .hero__cta { opacity: 1; transform: none; }

.hero__meta {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
}
.js .hero__meta { opacity: 0; transition: opacity 1000ms 1200ms var(--ease-quiet); }
.hero.is-in .hero__meta { opacity: 1; }
.hero__meta-item { display: flex; flex-direction: column; gap: 0.3rem; }
.hero__meta-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-faint);
}
.hero__meta-item a, .hero__meta-item span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.92rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.hero__right {
  position: relative;
  aspect-ratio: 6 / 5;
}
.hero__right::before {
  content: '';
  position: absolute;
  inset: -8%;
  background: radial-gradient(ellipse at center, rgba(30, 90, 153, 0.05), transparent 70%);
  z-index: -1;
}
.hero-svg { width: 100%; height: 100%; }
.js .hero-svg { opacity: 0; transform: scale(0.96); transition: opacity 1400ms 400ms var(--ease-quiet), transform 1400ms 400ms var(--ease-quiet); }
.hero.is-in .hero-svg { opacity: 1; transform: none; }
.hero-svg .led--blink { animation: led-blink 2.4s ease-in-out infinite; }
.hero-svg .led--blink-2 { animation: led-blink 2.8s 0.6s ease-in-out infinite; }
.hero-svg .led--blink-3 { animation: led-blink 3.2s 1.2s ease-in-out infinite; }
@keyframes led-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

@media (max-width: 980px) {
  .hero { padding: calc(var(--nav-h) + 40px) 1.5rem 60px; }
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__right { aspect-ratio: 5 / 4; max-width: 540px; }
  .hero__meta { gap: 1.5rem; }
}

/* TRUST */
.trust {
  padding: 0 2rem;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-linen);
}
.trust__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.trust__item {
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  border-right: 1px solid var(--line-soft);
  transition: background 300ms var(--ease-quiet);
}
.trust__item:last-child { border-right: none; }
.trust__item:hover { background: var(--bg); }

.js .trust__item { opacity: 0; transform: translateY(20px) scale(0.96); }
.trust.is-in .trust__item { animation: fade-up 800ms var(--ease-quiet) forwards; }
.trust.is-in .trust__item:nth-child(1) { animation-delay: 100ms; }
.trust.is-in .trust__item:nth-child(2) { animation-delay: 200ms; }
.trust.is-in .trust__item:nth-child(3) { animation-delay: 300ms; }
.trust.is-in .trust__item:nth-child(4) { animation-delay: 400ms; }
.trust.is-in .trust__item:nth-child(5) { animation-delay: 500ms; }
@keyframes fade-up { to { opacity: 1; transform: none; } }

.trust__icon { width: 36px; height: 36px; color: var(--accent-blue); }
.trust__icon svg { width: 100%; height: 100%; }
.trust__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-faint);
  letter-spacing: 0.08em;
}
.trust__label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-emp);
  line-height: 1.4;
}

@media (max-width: 980px) {
  .trust__inner { grid-template-columns: repeat(2, 1fr); }
  .trust__item { border-bottom: 1px solid var(--line-soft); }
  .trust__item:nth-child(odd) { border-right: 1px solid var(--line-soft); }
  .trust__item:nth-child(even) { border-right: none; }
  .trust__item:nth-child(5) { grid-column: span 2; border-right: none; }
}
@media (max-width: 580px) {
  .trust__inner { grid-template-columns: 1fr; }
  .trust__item { border-right: none !important; }
  .trust__item:nth-child(5) { grid-column: auto; }
}

/* SERVICES */
.services { padding: 120px 2rem; background: var(--bg); }
.services__head { max-width: var(--container); margin: 0 auto 5rem; }
.services__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.service-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: background 300ms var(--ease-quiet), transform 300ms var(--ease-quiet);
  min-height: 320px;
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent-blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 400ms var(--ease-quiet);
}
.service-card:hover {
  background: var(--bg-linen);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover .service-card__detail {
  max-height: 200px;
  opacity: 1;
  margin-top: 0.5rem;
}
.service-card.is-expanded .service-card__detail {
  max-height: 200px;
  opacity: 1;
  margin-top: 0.5rem;
}
.service-card.is-expanded::before { transform: scaleY(1); }
.service-card.is-expanded { background: var(--bg-linen); }

.service-card__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: 0.15em;
}
.service-card__icon {
  width: 40px; height: 40px;
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.005em;
}
.service-card__excerpt {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-mute);
}
.service-card__detail {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-mute);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease-quiet), opacity 300ms var(--ease-quiet), margin-top 400ms var(--ease-quiet);
}
.service-card__detail::before {
  content: 'Включает: ';
  color: var(--accent-teal);
  font-weight: 500;
}
.service-card__tag {
  margin-top: auto;
  padding-top: 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--accent-teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-card__tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent-teal);
  border-radius: 50%;
}

.js .service-card { opacity: 0; transform: translateY(30px); }
.services.is-in .service-card { animation: fade-up 900ms var(--ease-quiet) forwards; }
.services.is-in .service-card:nth-child(1) { animation-delay: 50ms; }
.services.is-in .service-card:nth-child(2) { animation-delay: 120ms; }
.services.is-in .service-card:nth-child(3) { animation-delay: 190ms; }
.services.is-in .service-card:nth-child(4) { animation-delay: 260ms; }
.services.is-in .service-card:nth-child(5) { animation-delay: 330ms; }
.services.is-in .service-card:nth-child(6) { animation-delay: 400ms; }
.services.is-in .service-card:nth-child(7) { animation-delay: 470ms; }
.services.is-in .service-card:nth-child(8) { animation-delay: 540ms; }
.services.is-in .service-card:hover { animation: none; opacity: 1; transform: translateY(-4px); }

@media (max-width: 980px) {
  .services { padding: 80px 1.5rem; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .services__grid { grid-template-columns: 1fr; }
  .service-card { padding: 2rem 1.5rem; min-height: auto; }
}

/* PROCESS (dark) */
.process {
  padding: 140px 2rem;
  background: var(--bg-dark);
  background-image: radial-gradient(circle, rgba(253, 252, 250, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  color: var(--text-inverse);
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253, 252, 250, 0.2), transparent);
}
.process__head { max-width: var(--container); margin: 0 auto 5rem; }
.process__timeline { max-width: 900px; margin: 0 auto; position: relative; }
.process__line {
  position: absolute;
  left: 32px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: rgba(253, 252, 250, 0.1);
  overflow: hidden;
}
.process__line-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--accent-blue), var(--accent-teal));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1500ms var(--ease-quiet);
}
.process.is-in .process__line-fill { transform: scaleY(1); }

.process__step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 2rem;
  padding: 1.5rem 0 3rem;
  position: relative;
}
.js .process__step { opacity: 0; transform: translateY(20px); }
.process.is-in .process__step { animation: fade-up-dark 900ms var(--ease-quiet) forwards; }
.process.is-in .process__step:nth-child(2) { animation-delay: 200ms; }
.process.is-in .process__step:nth-child(3) { animation-delay: 400ms; }
.process.is-in .process__step:nth-child(4) { animation-delay: 600ms; }
.process.is-in .process__step:nth-child(5) { animation-delay: 800ms; }
@keyframes fade-up-dark { to { opacity: 1; transform: none; } }

.process__step-marker {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 1px solid rgba(253, 252, 250, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-inverse);
  position: relative;
  z-index: 2;
  transition: box-shadow 600ms var(--ease-quiet), border-color 600ms var(--ease-quiet);
}
.process__step-marker.pulsed {
  box-shadow: 0 0 0 12px rgba(30, 90, 153, 0.2), 0 0 0 24px rgba(30, 90, 153, 0.08);
  border-color: var(--accent-blue);
}
.process__step-content { padding-top: 1rem; }
.process__step-content h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--text-inverse);
  margin-bottom: 0.6rem;
  letter-spacing: -0.005em;
}
.process__step-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-inverse-mute);
  max-width: 580px;
}
.process__step-content .meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(253, 252, 250, 0.5);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .process { padding: 80px 1.5rem; }
  .process__step { grid-template-columns: 48px 1fr; gap: 1.2rem; padding-bottom: 2rem; }
  .process__step-marker { width: 48px; height: 48px; font-size: 0.75rem; }
  .process__line { left: 24px; }
  .process__step-content { padding-top: 0.6rem; }
  .process__step-content h3 { font-size: 1.25rem; }
}

/* CLIENTS */
.clients { padding: 120px 2rem; background: var(--bg); }
.clients__head { max-width: var(--container); margin: 0 auto 4rem; }
.clients__mosaic {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  grid-auto-flow: dense;
}
.client-tile {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  cursor: pointer;
  color: var(--text-mute);
  transition: opacity 400ms var(--ease-quiet), transform 400ms var(--ease-quiet), background 400ms var(--ease-quiet), color 400ms var(--ease-quiet);
}
.client-tile__name {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.005em;
  line-height: 1.2;
  transition: color 400ms var(--ease-quiet);
}
.client-tile__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--text-faint);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 400ms var(--ease-quiet), transform 400ms var(--ease-quiet);
}
.client-tile.size-big { grid-column: span 2; grid-row: span 2; }
.client-tile.size-wide { grid-column: span 2; }
.client-tile.size-big .client-tile__name { font-size: 2rem; font-weight: 300; }
.client-tile.size-wide .client-tile__name { font-size: 1.4rem; }

.js .client-tile { opacity: 0; transform: translateY(20px) scale(1.02); }
.clients.is-in .client-tile { animation: tile-in 1000ms var(--ease-quiet) forwards; }
.clients.is-in .client-tile:nth-child(1) { animation-delay: 0ms; }
.clients.is-in .client-tile:nth-child(2) { animation-delay: 80ms; }
.clients.is-in .client-tile:nth-child(3) { animation-delay: 160ms; }
.clients.is-in .client-tile:nth-child(4) { animation-delay: 240ms; }
.clients.is-in .client-tile:nth-child(5) { animation-delay: 320ms; }
.clients.is-in .client-tile:nth-child(6) { animation-delay: 400ms; }
.clients.is-in .client-tile:nth-child(7) { animation-delay: 480ms; }
.clients.is-in .client-tile:nth-child(8) { animation-delay: 560ms; }
@keyframes tile-in { to { opacity: 0.55; transform: none; } }

.clients__mosaic.has-hover .client-tile:not(:hover) {
  opacity: 0.3;
  transform: scale(0.985);
}
.client-tile:hover {
  opacity: 1 !important;
  color: var(--text);
  background: var(--bg-linen);
  transform: scale(1.01) !important;
}
.client-tile:hover .client-tile__tag { opacity: 1; transform: none; }
.client-tile:hover .client-tile__name { color: var(--accent-blue); }

.clients__caption {
  max-width: var(--container);
  margin: 2rem auto 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--text-mute);
  letter-spacing: 0.02em;
  text-align: center;
}
.clients__caption::before { content: '— '; color: var(--text-faint); }

@media (max-width: 980px) {
  .clients { padding: 80px 1.5rem; }
  .clients__mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .client-tile.size-big { grid-column: span 2; grid-row: span 1; }
  .client-tile.size-big .client-tile__name { font-size: 1.4rem; }
  .client-tile.size-wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .clients__mosaic { grid-template-columns: 1fr; }
  .client-tile, .client-tile.size-big, .client-tile.size-wide { grid-column: auto; grid-row: auto; }
}

/* REVIEWS */
.reviews { padding: 120px 2rem; background: var(--bg-linen); }
.reviews__head { max-width: var(--container); margin: 0 auto 4rem; }

.pull-quote {
  max-width: var(--container);
  margin: 0 auto 5rem;
  text-align: center;
  padding: 3rem 0;
  position: relative;
}
.pull-quote::before, .pull-quote::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 60px;
  height: 1px;
  background: var(--accent-blue);
  transform: translateX(-50%);
}
.pull-quote::before { top: 0; }
.pull-quote::after { bottom: 0; }
.pull-quote p {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.01em;
  max-width: 880px;
  margin: 0 auto 1.5rem;
}
.pull-quote footer {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}

.reviews__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: box-shadow 400ms var(--ease-quiet), transform 400ms var(--ease-quiet);
}
.js .review-card { opacity: 0; transform: translateY(30px); }
.reviews.is-in .review-card { animation: fade-up 900ms var(--ease-quiet) forwards; }
.reviews.is-in .review-card:nth-child(1) { animation-delay: 100ms; }
.reviews.is-in .review-card:nth-child(2) { animation-delay: 250ms; }
.reviews.is-in .review-card:nth-child(3) { animation-delay: 400ms; }
.reviews.is-in .review-card:hover {
  animation: none;
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(15, 26, 44, 0.15);
}

.review-card__quote-mark {
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  line-height: 0.7;
  color: var(--accent-blue);
  opacity: 0.25;
  height: 30px;
}
.review-card__text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-emp);
  flex: 1;
}
.review-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--accent-teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid var(--accent-teal);
  border-radius: 3px;
  align-self: flex-start;
}
.review-card__verified svg { width: 10px; height: 10px; }
.review-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}
.review-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  overflow: hidden;
  filter: grayscale(100%);
  flex-shrink: 0;
}
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card__meta { display: flex; flex-direction: column; }
.review-card__name {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--text);
}
.review-card__role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}

.reviews__dots { display: none; }

@media (max-width: 980px) {
  .reviews { padding: 80px 1.5rem; }
  .reviews__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    scrollbar-width: none;
    padding-bottom: 1rem;
  }
  .reviews__grid::-webkit-scrollbar { display: none; }
  .review-card {
    min-width: 85%;
    scroll-snap-align: center;
    flex-shrink: 0;
  }
  .reviews__dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
  }
  .reviews__dots button {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--line);
    transition: all 300ms;
    cursor: pointer;
  }
  .reviews__dots button.active {
    background: var(--accent-blue);
    width: 24px;
    border-radius: 4px;
  }
}

/* CONTACT */
.contact {
  padding: 120px 2rem;
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
}
.contact__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact__address {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-top: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-soft);
}
.contact__pin { width: 48px; height: 48px; flex-shrink: 0; color: var(--accent-blue); }
.contact__address-text { display: flex; flex-direction: column; gap: 0.3rem; }
.contact__address-text strong {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--text);
}
.contact__address-text span {
  font-size: 0.92rem;
  color: var(--text-mute);
}
.contact__hours {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 2rem;
}
.contact__hours-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-faint);
}
.contact__hours-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.05rem;
  color: var(--text);
}

.contact__right {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: 3rem;
  border-radius: 12px;
  position: relative;
  background-image: radial-gradient(circle, rgba(253, 252, 250, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.contact__right-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.contact__right-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--accent-teal);
  border-radius: 50%;
  animation: pulse-dot 2.4s ease-in-out infinite;
}
.contact__right h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--text-inverse);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.contact__phone-wrap {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 2rem;
}
.contact__phone-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(30, 90, 153, 0.15);
  border: 1px solid rgba(30, 90, 153, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.contact__phone-icon svg { width: 22px; height: 22px; color: var(--text-inverse); }
.contact__phone-icon.ringing::before,
.contact__phone-icon.ringing::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid var(--accent-blue);
  animation: ring 1.6s var(--ease-quiet) infinite;
}
.contact__phone-icon.ringing::after { animation-delay: 0.5s; }
@keyframes ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}
.contact__phone-info { display: flex; flex-direction: column; gap: 0.2rem; }
.contact__phone-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-inverse-mute);
}
.contact__phone-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-inverse);
  letter-spacing: 0.02em;
  transition: color 200ms;
}
.contact__phone-number:hover { color: var(--accent-teal); }

.contact__cta-group {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.contact__cta-group .btn { flex: 1; min-width: 180px; justify-content: center; }

.contact__reassure {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-inverse-mute);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
}
.contact__reassure strong { color: var(--text-inverse); font-weight: 500; }

@media (max-width: 980px) {
  .contact { padding: 80px 1.5rem; }
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact__right { padding: 2rem; }
  .contact__phone-number { font-size: 1.2rem; }
}
@media (max-width: 580px) {
  .contact__cta-group { flex-direction: column; }
  .contact__cta-group .btn { min-width: auto; }
}

/* FOOTER */
.footer {
  padding: 5rem 2rem 2rem;
  background: var(--bg-dark);
  color: var(--text-inverse);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-dark);
}
.footer__services-row {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 3rem;
}
.footer__services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2.2rem;
  list-style: none;
}
.footer__services-list li, .footer__services-list a {
  font-size: 0.95rem;
  color: var(--text-inverse-mute);
  transition: color 200ms;
}
.footer__services-list a:hover { color: var(--text-inverse); }
.footer__brand { display: flex; flex-direction: column; gap: 1rem; }
.footer__logo {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}
.footer__descriptor {
  font-size: 0.92rem;
  color: var(--text-inverse-mute);
  line-height: 1.65;
  max-width: 280px;
}
.footer__col-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253, 252, 250, 0.5);
  margin-bottom: 1.2rem;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col li, .footer__col a {
  font-size: 0.92rem;
  color: var(--text-inverse-mute);
  transition: color 200ms;
}
.footer__col a:hover { color: var(--text-inverse); }
.footer__col .phone {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  color: var(--text-inverse);
  letter-spacing: 0.02em;
}
.footer__bottom {
  max-width: var(--container);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(253, 252, 250, 0.4);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom .trust-note {
  color: rgba(253, 252, 250, 0.65);
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 200;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 980px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__services-list { gap: 0.7rem 1.8rem; }
}
@media (max-width: 580px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__services-list { flex-direction: column; gap: 0.6rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* MODAL (KP form) */
.modal {
  position: fixed; inset: 0;
  background: rgba(15, 26, 44, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--ease-quiet);
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal__panel {
  background: var(--bg);
  max-width: 480px;
  width: 100%;
  padding: 3rem;
  border-radius: 8px;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 400ms var(--ease-quiet);
}
.modal.is-open .modal__panel { transform: none; }
.modal__close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 200ms;
}
.modal__close:hover { background: var(--bg-card); }
.modal__close svg { width: 14px; height: 14px; }
.modal__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 1rem;
}
.modal__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.15;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}
.modal__sub {
  font-size: 0.92rem;
  color: var(--text-mute);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.modal__form { display: flex; flex-direction: column; gap: 1rem; }
.modal__field { display: flex; flex-direction: column; gap: 0.4rem; }
.modal__field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.modal__field input {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg);
  font-size: 0.95rem;
  transition: border-color 200ms;
}
.modal__field input:focus {
  outline: none;
  border-color: var(--accent-blue);
}
.modal__submit {
  margin-top: 0.5rem;
  padding: 14px;
  background: var(--accent-blue);
  color: var(--text-inverse);
  font-weight: 500;
  border-radius: 4px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 200ms, transform 200ms;
}
.modal__submit:hover { background: var(--accent-blue-soft); }
.modal__submit:active { transform: scale(0.98); }
.modal__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 1rem 0;
}
.modal__success.is-shown { display: flex; animation: fade-up 600ms var(--ease-quiet); }
.modal__success-shield {
  width: 88px; height: 88px;
  color: var(--accent-teal);
}
.modal__success-shield svg { width: 100%; height: 100%; }
.modal__success-shield path { stroke-dasharray: 100; stroke-dashoffset: 100; animation: draw-check 800ms 200ms var(--ease-quiet) forwards; }
@keyframes draw-check { to { stroke-dashoffset: 0; } }
.modal__success-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--text);
}
.modal__success-text {
  font-size: 0.92rem;
  color: var(--text-mute);
  line-height: 1.6;
}

@media (max-width: 480px) {
  .modal__panel { padding: 2rem 1.5rem; }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__headline .line { transform: translateY(0) !important; }
  .noise-overlay { animation: none; }
}

/* TOUCH FALLBACK */
@media (pointer: coarse) {
  .client-tile:hover { transform: none !important; }
  .clients__mosaic.has-hover .client-tile:not(:hover) { opacity: 0.55; transform: none; }
}
