:root {
  --c-primary: #2365ed;
  --c-primary-dark: #1c50d8;
  --c-primary-soft: rgba(37, 99, 235, .08);
  --c-text: #171c1d;
  --c-muted: #5b6370;
  --c-bg: #fefdff;
  --c-bg-soft: #f6f9f9;
  --c-border: #e3e4e9;
  --c-accent: #f39c09;

  --font-head: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 9px;
  --radius-lg: 17px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow:    0 6px 19px rgba(15, 23, 42, .08);
  --shadow-lg: 0 11px 35px rgba(15, 23, 42, .14);

  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 64px;
  --s-7: 96px;

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg, video { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

/* === Typography === */
body {
  font-family: var(--font-body);
  font-size: clamp(16px, 0.4vw + 14.5px, 18px);
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-text);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(32px, 4vw + 12px, 56px); margin-bottom: var(--s-3); }
h2 { font-size: clamp(26px, 2vw + 14px, 40px); margin-bottom: var(--s-3); margin-top: var(--s-5); }
h3 { font-size: clamp(20px, 1vw + 14px, 26px); margin-bottom: var(--s-2); margin-top: var(--s-4); }
h4 { font-size: clamp(18px, 0.5vw + 14px, 22px); margin-bottom: var(--s-2); margin-top: var(--s-3); }

p { margin-bottom: var(--s-2); max-width: 75ch; }
.banner p, .testimonial p { max-width: none; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4em; margin-bottom: var(--s-2); }
li { margin-bottom: var(--s-1); }
li > ul, li > ol { margin-top: var(--s-1); }

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color .15s;
}
a:hover { color: var(--c-primary-dark); text-decoration: underline; }

strong, b { font-weight: 700; }

hr, .band { border: none; }
hr.band-divider { height: 1px; background: var(--c-border); margin-block: var(--s-4); }

/* === Layout === */
.wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section, .band {
  padding-block: clamp(40px, 6vw, 96px);
}
.band-pale { background: var(--c-bg-soft); }

/* === Header === */
.root-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--c-bg) 92%, transparent);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--c-border);
}
.root-topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding-block: var(--s-2);
}
.root-topbar .b-logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
.root-topbar .b-logo img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.topbar-contact {
  color: var(--c-text);
  font-weight: 600;
  white-space: nowrap;
}
.topbar-contact:hover { color: var(--c-primary); text-decoration: none; }

.root-bar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.root-bar li { margin: 0; }
.root-bar a {
  color: var(--c-text);
  font-weight: 500;
  padding-block: var(--s-1);
}
.root-bar a:hover { color: var(--c-primary); text-decoration: none; }


.bar-contact-mob { display: none; }

.drawer-btn {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-text);
}
.drawer-btn::before {
  content: "";
  width: 22px; height: 2px;
  background: currentColor;
  box-shadow: 0 -7px 0 currentColor, 0 7px 0 currentColor;
}

/* === Hero === */
.banner {
  padding-block: clamp(48px, 7vw, 120px);
  background:
    radial-gradient(ellipse 90% 60% at 70% 0%, var(--c-primary-soft), transparent 70%),
    var(--c-bg);
}
.banner-body { max-width: 880px; }
.banner h1 { margin-top: 0; }


.works-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: var(--s-3);
  margin-top: var(--s-3);
}
.works-cell {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--c-bg-soft);
  aspect-ratio: 16 / 10;
}
.works-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.works-cell:hover img { transform: scale(1.04); }


.helpdesk-items { display: flex; flex-direction: column; gap: var(--s-2); margin-top: var(--s-3); max-width: 880px; }
.helpdesk-cell {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.helpdesk-cell[open] {
  border-color: color-mix(in srgb, var(--c-primary) 35%, var(--c-border));
  box-shadow: var(--shadow-sm);
}
.helpdesk-cell summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-3);
  padding-right: 56px;
  font-weight: 600;
  font-size: 1.05em;
  position: relative;
  user-select: none;
}
.helpdesk-cell summary::-webkit-details-marker { display: none; }
.helpdesk-cell summary::after {
  content: "+";
  position: absolute;
  right: var(--s-3);
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  line-height: 1;
  color: var(--c-primary);
  transition: transform .25s;
}
.helpdesk-cell[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.helpdesk-cell .reply {
  padding: 0 var(--s-3) var(--s-3);
  color: var(--c-muted);
}
.helpdesk-cell .reply p { color: var(--c-text); }


.product table {
  width: 100%;
  border-collapse: collapse;
  margin-block: var(--s-3);
  font-size: .95em;
  background: var(--c-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.product th, .product td {
  padding: var(--s-2);
  border-bottom: 1px solid var(--c-border);
  text-align: left;
  vertical-align: top;
}
.product th {
  background: var(--c-bg-soft);
  font-weight: 600;
  color: var(--c-text);
}
.product tr:last-child td { border-bottom: none; }
.product tbody tr:hover td { background: var(--c-primary-soft); }
.product-data-shell { overflow-x: auto; }

/* === Team === */
.people-band { padding-block: clamp(40px, 6vw, 96px); background: var(--c-bg-soft); }
.people-topline { text-align: center; margin-bottom: var(--s-4); }
.people-topline h2 { margin-top: 0; }
.people-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: var(--s-3);
  max-width: 960px;
  margin-inline: auto;
}
.people-box {
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.people-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.people-box img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--c-bg-soft);
}
.people-data {
  padding: var(--s-3);
  text-align: center;
}
.people-sign { font-weight: 700; font-size: 1.1em; margin-bottom: 4px; }
.people-job { color: var(--c-muted); font-size: .92em; }

/* === Reviews === */
.voices-band { padding-block: clamp(40px, 6vw, 96px); }
.voices-topline { text-align: center; margin-bottom: var(--s-4); }
.voices-topline h2 { margin-top: 0; }
.voices-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--s-3);
}
.testimonial {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--s-4);
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: -8px;
  left: var(--s-3);
  font-size: 64px;
  line-height: 1;
  color: var(--c-primary);
  font-family: Georgia, serif;
  opacity: .35;
}
.testimonial p { margin-bottom: var(--s-2); color: var(--c-text); }
.testimonial-by { font-weight: 600; color: var(--c-primary); }

/* === Tag cloud (footer) === */
.tag-cloud-shell { margin-top: var(--s-4); }
.b-tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-1);
  justify-content: center;
}
.b-tagcloud .tag-cloud-anchor {
  display: inline-block;
  padding: 6px 14px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: 1001px;
  color: var(--c-text);
  font-size: .85em;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}
.b-tagcloud .tag-cloud-anchor:hover {
  background: var(--c-primary);
  color: #fffffd;
  border-color: var(--c-primary);
  text-decoration: none;
}


.product.band .wrap > .b-row > h2,
.product.band .wrap > .b-row > p {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.b-forma {
  max-width: 640px;
  margin: var(--s-4) auto 0;
  background: var(--c-bg);
  padding: var(--s-4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--c-border);
}
.order-at {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-2);
}
.b-validate-input-at { position: relative; }
.b-input-at {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 1em;
  transition: border-color .15s, box-shadow .15s;
}
.b-input-at::placeholder { color: var(--c-muted); }
.b-input-at:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px var(--c-primary-soft);
}
textarea.b-input-at { min-height: 120px; resize: vertical; }
.b-input-at[type="checkbox"] {
  width: 18px; height: 18px;
  padding: 0;
  accent-color: var(--c-primary);
  vertical-align: middle;
  margin-right: 8px;
}
.order-at label {
  font-size: .88em;
  color: var(--c-muted);
  line-height: 1.5;
}
.order-at label a { color: var(--c-primary); }
.order-at-btn {
  padding: 14px 28px;
  background: var(--c-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius);
  font-size: 1em;
  font-weight: 600;
  letter-spacing: .01em;
  transition: background .15s, transform .1s;
  width: 100%;
}
.order-at-btn:hover:not(:disabled) { background: var(--c-primary-dark); }
.order-at-btn:active { transform: translateY(1px); }
.order-at-btn:disabled { opacity: .5; cursor: not-allowed; }
.b-focus-input-at { display: none; }
.b-result-at { color: var(--c-primary); font-weight: 500; }


@media (min-width: 600px) {
  .order-at {
    grid-template-columns: 1fr 1fr;
  }
  .order-at > textarea,
  .order-at > .b-input-at[type="checkbox"],
  .order-at > label,
  .order-at > .order-at-btn,
  .order-at > [type="hidden"],
  .order-at > .b-result-at,
  .order-at > .b-validate-input-at:not(.b-w-50) {
    grid-column: 1 / -1;
  }
}

/* === Footer === */
.root-bottom {
  background: var(--c-bg-soft);
  padding-block: var(--s-4);
  margin-top: var(--s-6);
  border-top: 1px solid var(--c-border);
}
.root-bottom .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: space-between;
  align-items: center;
}
.root-bottom p { color: var(--c-muted); margin: 0; }

/* === Hero variants === */
.banner-split {
  background:
    linear-gradient(135deg, var(--c-primary-soft), transparent 60%),
    var(--c-bg);
}
.banner-split .wrap {
  display: grid;
  gap: var(--s-5);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .banner-split .wrap { grid-template-columns: 2.4fr 1fr; }
}
.banner-aside {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--s-3);
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 320px;
  margin-inline: auto;
  width: 100%;
}
.banner-aside-note {
  color: var(--c-muted);
  font-size: .82em;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.banner-aside-contact {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(20px, 1vw + 14px, 24px);
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: var(--s-1);
  text-decoration: none;
  white-space: nowrap;
}
.banner-aside-contact:hover { text-decoration: underline; }
.banner-aside-body {
  color: var(--c-muted);
  font-size: .85em;
  margin-bottom: var(--s-2);
  max-width: none;
}
.banner-aside .b-btn-primary {
  display: block;
  text-align: center;
  padding: 10px 20px;
  font-size: .95em;
}
.banner-bold {
  background: linear-gradient(160deg, var(--c-primary), var(--c-primary-dark));
  color: #ffffff;
  text-align: center;
}
.banner-bold h1, .banner-bold h2, .banner-bold h3 { color: #fdfeff; }
.banner-bold p, .banner-bold li { color: rgba(255,255,255,.92); }
.banner-bold .banner-body { margin-inline: auto; }

/* === Stats === */
.metrics { padding-block: clamp(40px, 5vw, 72px); }
.metrics-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: var(--s-3);
  text-align: center;
}
.counter {
  padding: var(--s-3);
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
}
.counter-digit {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw + 8px, 56px);
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: var(--s-1);
  letter-spacing: -0.02em;
}
.counter-note { color: var(--c-muted); font-size: .95em; }

/* === CTA banner === */
.callout { padding-block: clamp(40px, 5vw, 80px); }
.callout-box {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
  color: #fdfdfd;
  padding: clamp(24px, 4vw, 56px);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.callout-box h2 {
  color: #feffff;
  margin-top: 0;
  font-size: clamp(22px, 2vw + 14px, 32px);
}
.callout-box p {
  color: rgba(255,255,255,.92);
  margin-inline: auto;
  margin-bottom: var(--s-3);
  max-width: 60ch;
}
.b-btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--c-bg);
  color: var(--c-primary);
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.b-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.2); text-decoration: none; }

/* === Features === */
.benefits-topline { text-align: center; margin-bottom: var(--s-4); }
.benefits-topline h2 { margin-top: 0; }
.benefits-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: var(--s-3);
}
.perk {
  padding: var(--s-4);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
}
.perk .f-badge {
  width: 40px; height: 40px;
  color: var(--c-primary);
  margin-bottom: var(--s-2);
  background: var(--c-primary-soft);
  padding: 8px;
  border-radius: var(--radius);
  box-sizing: content-box;
}
.perk h3 { margin-top: 0; font-size: 1.15em; }
.perk p { color: var(--c-muted); margin-bottom: 0; max-width: none; }

/* === Process flow (How we work — index_process_first) === */
.flow-topline { text-align: center; margin-bottom: var(--s-4); }
.flow-topline h2 { margin-top: 0; }
.flow-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: var(--s-3);
}
.b-step {
  padding: var(--s-4);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.step-digit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c-primary-soft);
  color: var(--c-primary);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4em;
  line-height: 1;
  margin-bottom: var(--s-2);
}
.b-step h4 { margin: var(--s-1) 0 var(--s-2); font-size: 1.1em; }
.b-step p { color: var(--c-muted); margin-bottom: 0; max-width: none; }

/* === Guarantees (index_process_first) === */
.assurance-topline { text-align: center; margin-bottom: var(--s-4); }
.assurance-topline h2 { margin-top: 0; }
.assurance-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: var(--s-3);
}
.b-guarantee {
  padding: var(--s-3);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.b-guarantee .g-badge {
  width: 36px; height: 36px;
  color: var(--c-primary);
  background: var(--c-primary-soft);
  padding: 8px;
  border-radius: var(--radius);
  margin-bottom: var(--s-2);
  box-sizing: content-box;
}
.b-guarantee p { margin: 0; font-weight: 600; color: var(--c-text); max-width: none; }


.body-middle { text-align: center; }
.b-row { display: block; }

/* === Mobile === */
@media (max-width: 860px) {
  .drawer-btn { display: inline-flex; }
  .root-bar {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 82vw);
    background: var(--c-bg);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform .25s ease;
    padding: calc(var(--s-5) + 12px) var(--s-3) var(--s-3);
    z-index: 60;
    overflow-y: auto;
  }
  .root-bar.on { transform: translateX(0); }
  .root-bar ul { flex-direction: column; gap: var(--s-2); }
  .root-bar a { font-size: 1.1em; display: block; padding-block: var(--s-2); }
  .bar-shade {
    position: fixed; inset: 0;
    background: rgba(8, 12, 20, .45);
    z-index: 55;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
  }
  .bar-shade.on { opacity: 1; pointer-events: auto; }
  body.bar-on { overflow: hidden; }
  .topbar-contact { display: none; }
  .bar-contact-mob { display: list-item; }
}

@media (max-width: 480px) {
  .banner { padding-block: var(--s-5); }
  .b-forma { padding: var(--s-3); }
  .testimonial { padding: var(--s-3); }
  .testimonial::before { font-size: 48px; }
}

/* === Reduced motion === */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

a[href^="mailto:"] { overflow-wrap: anywhere; }
