@font-face {
  font-family: "Druk Wide";
  src: url("/fonts/drukwidecyr-medium.woff2") format("woff2");
  font-display: swap;
}

:root {
  --ink: #16141d;
  --muted: #676370;
  --paper: #f7f7f8;
  --line: #dedce3;
  --violet: #7b2ff7;
  --lime: #d8ff45;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: var(--white);
  background: rgba(18, 16, 24, .96);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo img { width: 112px; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 600; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--lime); }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  font-size: 22px;
}
.hero-service {
  min-height: 620px;
  color: var(--white);
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(18,16,24,.97) 0%, rgba(18,16,24,.9) 48%, rgba(18,16,24,.2) 100%),
    url("https://optim.tildacdn.com/tild6134-3232-4864-b565-353230356162/-/format/webp/Flux_Schnell_small_w.jpg.webp") center / cover no-repeat;
}
.hero-service__inner { padding: 84px 0 74px; }
.breadcrumbs { margin: 0 0 30px; color: #c9c5cf; font-size: 13px; }
.breadcrumbs a { text-decoration: none; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
h1, h2, h3 { margin-top: 0; line-height: 1.12; }
h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-family: "Druk Wide", "Montserrat", sans-serif;
  font-size: 64px;
  font-weight: 500;
}
.hero-service p { max-width: 720px; margin: 0 0 32px; color: #e7e4ea; font-size: 19px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.button:hover { background: var(--white); }
.button--dark { background: var(--ink); color: var(--white); }
.section { padding: 88px 0; }
.section--white { background: var(--white); }
.section--dark { color: var(--white); background: var(--ink); }
.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}
.section-heading h2 {
  margin-bottom: 18px;
  font-family: "Druk Wide", "Montserrat", sans-serif;
  font-size: 44px;
  font-weight: 500;
}
.section-heading p { margin: 0; color: var(--muted); font-size: 17px; }
.section--dark .section-heading p { color: #c9c5cf; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.card {
  min-height: 250px;
  padding: 32px;
  background: var(--white);
}
.card-number { display: block; margin-bottom: 48px; color: var(--violet); font: 500 13px "Druk Wide", sans-serif; }
.card h3 { margin-bottom: 14px; font-size: 21px; }
.card p { margin: 0; color: var(--muted); }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: step; }
.process-step { border-top: 1px solid rgba(255,255,255,.3); padding-top: 20px; counter-increment: step; }
.process-step::before { content: "0" counter(step); display: block; margin-bottom: 28px; color: var(--lime); font: 500 13px "Druk Wide", sans-serif; }
.process-step h3 { font-size: 18px; }
.process-step p { margin: 0; color: #c9c5cf; font-size: 14px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col > *,
.hero-service__inner,
.section-heading {
  min-width: 0;
}
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 16px 0 16px 30px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--violet); font-weight: 900; }
.info-panel { padding: 34px; color: var(--white); background: var(--violet); }
.info-panel h3 { font-size: 24px; }
.info-panel p { color: #f1eaff; }
.faq details { padding: 22px 0; border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 800; font-size: 18px; }
.faq details p { max-width: 820px; color: var(--muted); }
.cta-band { padding: 64px 0; background: var(--lime); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-band h2 { max-width: 720px; margin: 0; font: 500 40px/1.15 "Druk Wide", sans-serif; }
.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  margin-top: 28px;
}
.lead-form input {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
}
.lead-form .consent { grid-column: 1 / -1; font-size: 12px; color: #c9c5cf; }
.lead-form .status { grid-column: 1 / -1; min-height: 20px; margin: 0; font-size: 13px; }
.lead-form .status.success { color: var(--lime); }
.lead-form .status.error { color: #ff8f8f; }
.site-footer { padding: 58px 0 24px; color: var(--white); background: #0e0d12; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; }
.footer-contact { font-size: 20px; }
.footer-contact a { text-decoration: none; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; align-content: start; }
.footer-links a { color: #c9c5cf; text-decoration: none; font-size: 14px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); color: #8e8997; font-size: 12px; }
.legal { max-width: 820px; }
.legal h1 { font-size: clamp(32px, 5vw, 54px); }
.legal h2 { margin-top: 40px; font-size: 24px; }
.legal p, .legal li { color: var(--muted); }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    padding: 22px 20px;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .card-grid, .process-list { grid-template-columns: repeat(2, 1fr); }
  .two-col, .footer-grid { grid-template-columns: 1fr; }
  .cta-band__inner { align-items: flex-start; flex-direction: column; }
  h1 { font-size: 48px; }
  .section-heading h2 { font-size: 36px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero-service__inner,
  .hero-service__inner > *,
  .section-heading,
  .two-col,
  .card-grid,
  .process-list {
    width: 100%;
    max-width: calc(100vw - 28px);
  }
  .hero-service { min-height: 560px; background-position: 58% center; }
  .hero-service__inner { padding: 64px 0 54px; }
  h1 {
    width: 100%;
    max-width: 100%;
    font-size: 30px;
    overflow-wrap: anywhere;
  }
  .hero-service p { font-size: 16px; }
  .section { padding: 64px 0; }
  .section-heading h2,
  .cta-band h2 {
    max-width: 100%;
    font-size: 26px;
    overflow-wrap: anywhere;
  }
  .card-grid, .process-list { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .card-number { margin-bottom: 28px; }
  .lead-form { grid-template-columns: 1fr; }
  .lead-form .consent, .lead-form .status { grid-column: auto; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
