:root {
  --bg: #f7f5ef;
  --surface: #ffffff;
  --surface-strong: #f0eee7;
  --text: #101412;
  --muted: #626b66;
  --line: rgba(16, 20, 18, 0.12);
  --green: #0f9f62;
  --green-dark: #087346;
  --green-soft: #e8f7ef;
  --black: #070908;
  --shadow: 0 24px 70px rgba(20, 27, 23, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1160px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(15, 159, 98, 0.14), transparent 28rem),
    radial-gradient(circle at 88% 10%, rgba(16, 20, 18, 0.08), transparent 22rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial,
    "Noto Sans", sans-serif;
  line-height: 1.5;
}

body::selection {
  background: rgba(15, 159, 98, 0.22);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


@keyframes answerIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalFadeIn {
  from {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes modalFadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes modalDialogIn {
  from {
    opacity: 1;
    transform: translateY(14px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes modalDialogOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
}

@keyframes mobileMenuIn {
  from {
    opacity: 1;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mobileMenuOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(-100%);
  }
}

@keyframes mobileShadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mobileShadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}


a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: var(--header-height);
  background: rgba(247, 245, 239, 0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(16, 20, 18, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.header__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
}

.brand__mark rect {
  fill: var(--black);
}

.brand__mark path,
.brand__mark circle {
  fill: #fff;
}

.brand__mark .brand__tassel {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-width: 4;
}

.brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  transition: color 0.18s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  white-space: normal;
  overflow-wrap: anywhere;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 45%, transparent 66%);
  transform: translateX(-125%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(125%);
}

.button--primary,
.button--small {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 34px rgba(15, 159, 98, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible,
.button--small:hover,
.button--small:focus-visible {
  background: var(--green-dark);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.62);
  border-color: var(--line);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: #fff;
  border-color: rgba(16, 20, 18, 0.2);
}

.button--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.92rem;
}

.menu-toggle {
  display: none;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 0 12px 0 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(15, 159, 98, 0.22);
}

.menu-toggle__label {
  line-height: 1;
}

.menu-toggle__icon {
  display: grid;
  gap: 4px;
  width: 18px;
}

.menu-toggle__icon span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding: 40px 0;
}

.section--tight {
  padding: 10 0;
}

.section--muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.2)),
    rgba(255, 255, 255, 0.34);
  border-block: 1px solid rgba(16, 20, 18, 0.06);
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding-top: 44px;
}

.js .hero__content > .eyebrow,
.js .hero__content > h1,
.js .hero__content > .hero__lead,
.js .hero__actions,
.js .hero__checks,
.js .hero__visual {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  will-change: opacity, transform;
}

.page-ready .hero__content > .eyebrow {
  animation: riseIn 0.72s cubic-bezier(0.2, 0.78, 0.2, 1) forwards;
}

.page-ready .hero__content > h1 {
  animation: riseIn 0.76s cubic-bezier(0.2, 0.78, 0.2, 1) 0.07s forwards;
}

.page-ready .hero__content > .hero__lead {
  animation: riseIn 0.76s cubic-bezier(0.2, 0.78, 0.2, 1) 0.14s forwards;
}

.page-ready .hero__actions {
  animation: riseIn 0.76s cubic-bezier(0.2, 0.78, 0.2, 1) 0.21s forwards;
}

.page-ready .hero__checks {
  animation: riseIn 0.76s cubic-bezier(0.2, 0.78, 0.2, 1) 0.28s forwards;
}

.page-ready .hero__visual {
  animation: riseIn 0.82s cubic-bezier(0.2, 0.78, 0.2, 1) 0.12s forwards;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.3vw, 5.1rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.15rem, 4vw, 4.15rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.hero__lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero__checks {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.hero__checks li {
  position: relative;
  padding-left: 30px;
}

.hero__checks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.24em;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--green);
  border-radius: 50%;
  background: var(--green-soft);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
}

.hero__visual {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}


.hero-flow-card {
  position: relative;
  z-index: 1;
  width: min(100%, 380px);
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 20, 18, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: none;
  will-change: auto;
}

.hero-flow-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.hero-flow-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid rgba(15, 159, 98, 0.16);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-flow-card__title {
  max-width: 310px;
  margin-bottom: 16px;
  color: var(--text);
  font-size: clamp(1.55rem, 2.05vw, 1.98rem);
  font-weight: 950;
  line-height: 1.03;
  letter-spacing: -0.045em;
}


.quick-request-card {
  width: min(100%, 420px);
  padding: 20px;
}

.quick-card-drag {
  position: absolute;
  inset: 10px;
  z-index: 18;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 22px;
  text-align: center;
  color: var(--green-dark);
  background: rgba(224, 246, 235, 0.94);
  border: 2px dashed rgba(15, 159, 98, 0.62);
  border-radius: calc(var(--radius-xl) - 8px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.985);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease,
    background 0.16s ease,
    border-color 0.16s ease;
}

.quick-request-card.is-dragging {
  border-color: rgba(15, 159, 98, 0.28);
}

.quick-request-card.is-dragging .quick-card-drag {
  opacity: 1;
  transform: scale(1);
}

.quick-card-drag span {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 16px 30px rgba(15, 159, 98, 0.22);
}

.quick-card-drag span::before,
.quick-card-drag span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 5px;
  background: #fff;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.quick-card-drag span::after {
  width: 5px;
  height: 26px;
}

.quick-card-drag strong {
  color: var(--green-dark);
  font-size: 1.08rem;
  font-weight: 950;
  line-height: 1.15;
}


.quick-request-form {
  display: grid;
  gap: 10px;
}

.quick-field {
  display: grid;
  gap: 6px;
}

.quick-field span,
.quick-file-drop strong {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
}

.quick-field input,
.quick-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
  font: inherit;
  font-size: 0.92rem;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.quick-field textarea {
  min-height: 86px;
  resize: none;
}

.quick-field input:focus,
.quick-field textarea:focus {
  background: #fff;
  border-color: rgba(15, 159, 98, 0.42);
  box-shadow: 0 0 0 4px rgba(15, 159, 98, 0.1);
}

.quick-field input::placeholder,
.quick-field textarea::placeholder {
  color: rgba(103, 112, 108, 0.82);
}

.quick-contact {
  display: grid;
  gap: 7px;
}

.quick-contact__head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-contact__head > span:first-child {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
}


.quick-contact__body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}

.quick-contact__channels {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  background: rgba(233, 248, 240, 0.76);
  border: 1px solid rgba(15, 159, 98, 0.18);
  border-radius: 16px;
}

.quick-contact__channels label {
  position: relative;
  cursor: pointer;
}

.quick-contact__channels input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.quick-contact__channels span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 34px;
  padding: 0 10px;
  color: var(--green-dark);
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.quick-contact__channels input:checked + span {
  color: #fff;
  background: var(--green);
  box-shadow: 0 8px 18px rgba(15, 159, 98, 0.18);
}

.quick-contact__id {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
  font: inherit;
  font-size: 0.9rem;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.quick-contact__id:focus {
  background: #fff;
  border-color: rgba(15, 159, 98, 0.42);
  box-shadow: 0 0 0 4px rgba(15, 159, 98, 0.1);
}

.quick-contact__id::placeholder {
  color: rgba(103, 112, 108, 0.82);
}

.quick-file-box {
  position: relative;
  transition: transform 0.18s ease;
}

.quick-file-drop {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 2px 12px;
  align-items: center;
  min-height: 76px;
  padding: 13px 14px;
  cursor: pointer;
  background: rgba(233, 248, 240, 0.78);
  border: 1px dashed rgba(15, 159, 98, 0.34);
  border-radius: 18px;
  transition:
    background 0.18s ease,
    border-color 0.18s ease;
}

.quick-file-box:hover .quick-file-drop,
.quick-file-box.is-dragging .quick-file-drop,
.quick-file-drop:focus-within,
.quick-file-drop.has-files {
  background: rgba(224, 246, 235, 0.96);
  border-color: rgba(15, 159, 98, 0.58);
}

.quick-file-box:hover,
.quick-file-box.is-dragging {
  transform: translateY(-1px);
}

.quick-file-box.is-dragging .quick-file-drop {
  opacity: 0;
}

.quick-file-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.quick-file-drop > span {
  grid-row: span 2;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 0;
  line-height: 1;
}

.quick-file-drop > span::before,
.quick-file-drop > span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 4px;
  background: #fff;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.quick-file-drop > span::after {
  width: 4px;
  height: 16px;
}

.quick-file-drop small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.quick-file-drag {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  gap: 7px;
  padding: 10px;
  text-align: center;
  color: var(--green-dark);
  background: rgba(224, 246, 235, 0.96);
  border: 2px dashed rgba(15, 159, 98, 0.58);
  border-radius: 18px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.985);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease;
}

.quick-file-box.is-dragging .quick-file-drag {
  opacity: 1;
  transform: scale(1);
}

.quick-file-drag span {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 12px 22px rgba(15, 159, 98, 0.2);
}

.quick-file-drag span::before,
.quick-file-drag span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 4px;
  background: #fff;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.quick-file-drag span::after {
  width: 4px;
  height: 18px;
}

.quick-file-drag strong {
  color: var(--green-dark);
  font-size: 0.84rem;
  font-weight: 950;
  line-height: 1.15;
}

.quick-file-manage {
  position: absolute;
  right: 12px;
  top: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  cursor: pointer;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid rgba(15, 159, 98, 0.18);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(16, 20, 18, 0.08);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.quick-file-box:hover .quick-file-manage,
.quick-file-box.is-dragging .quick-file-manage {
  background: #fff;
  border-color: rgba(15, 159, 98, 0.36);
  box-shadow: 0 10px 20px rgba(16, 20, 18, 0.1);
}

.quick-file-manage[hidden] {
  display: none;
}

.quick-file-popover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 12;
  display: grid;
  gap: 10px;
  max-height: 220px;
  padding: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(16, 20, 18, 0.16);
}

.quick-file-popover[hidden] {
  display: none;
}

.quick-file-popover__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quick-file-popover__top strong {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 900;
}

.quick-file-close,
.quick-file-remove {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  cursor: pointer;
  color: var(--muted);
  background: rgba(247, 245, 239, 0.9);
  border: 1px solid var(--line);
  border-radius: 50%;
  font: inherit;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  text-indent: -9999px;
  overflow: hidden;
}

.quick-file-close::before,
.quick-file-close::after,
.quick-file-remove::before,
.quick-file-remove::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.quick-file-close::after,
.quick-file-remove::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.quick-file-list {
  display: grid;
  gap: 7px;
  max-height: 156px;
  overflow: auto;
  padding-right: 2px;
}

.quick-file-item {
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 10px;
  align-items: center;
  min-height: 38px;
  padding: 7px 8px 7px 10px;
  background: rgba(233, 248, 240, 0.54);
  border: 1px solid rgba(15, 159, 98, 0.12);
  border-radius: 12px;
}

.quick-file-item span {
  overflow: hidden;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-request-submit {
  width: 100%;
  justify-content: center;
  min-height: 48px;
}

@media (min-width: 1041px) and (max-height: 780px) {
  .hero {
    min-height: calc(100svh - var(--header-height));
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero__grid {
    gap: clamp(30px, 3vw, 44px);
  }

  .eyebrow {
    margin-bottom: 10px;
  }

  h1 {
    max-width: 760px;
    margin-bottom: 16px;
    font-size: clamp(3.25rem, 4.55vw, 4.65rem);
    line-height: 0.98;
  }

  .hero__lead {
    max-width: 650px;
    margin-bottom: 18px;
    font-size: clamp(1rem, 1.35vw, 1.14rem);
    line-height: 1.46;
  }

  .hero__actions {
    margin-bottom: 16px;
  }

  .hero__checks {
    gap: 7px;
    font-size: 0.95rem;
  }

  .hero-flow-card {
    padding: 17px;
  }

  .hero-flow-card__top {
    margin-bottom: 11px;
  }

  .hero__visual {
    min-height: 520px;
  }

  

  .quick-request-card {
    width: min(100%, 392px);
    padding: 17px;
  }

  .quick-card-drag {
    inset: 8px;
    gap: 10px;
    border-radius: 28px;
  }

  .quick-card-drag span {
    width: 50px;
    height: 50px;
  }

  .quick-card-drag span::before {
    width: 22px;
    height: 5px;
  }

  .quick-card-drag span::after {
    width: 5px;
    height: 22px;
  }

  .quick-card-drag strong {
    font-size: 0.98rem;
  }

  .quick-request-card .hero-flow-card__title {
    margin-bottom: 11px;
    line-height: 0.98;
  }

  

  .quick-request-form {
    gap: 8px;
  }

  .quick-field {
    gap: 5px;
  }

  .quick-field span,
.quick-file-drop strong,
.quick-contact__head > span:first-child {
    font-size: 0.78rem;
  }

  .quick-field input,
.quick-field textarea,
.quick-contact__id {
    min-height: 40px;
    padding: 9px 12px;
    border-radius: 14px;
    font-size: 0.86rem;
  }

  .quick-field textarea {
    min-height: 78px;
  }

  .quick-contact {
    gap: 5px;
  }

  

  

  .quick-contact__body {
    gap: 8px;
  }

  .quick-contact__channels {
    padding: 3px;
    border-radius: 14px;
  }

  .quick-contact__channels span {
    min-width: 38px;
    min-height: 32px;
    padding: 0 8px;
    border-radius: 11px;
    font-size: 0.78rem;
  }

  .quick-file-drop {
    min-height: 62px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .quick-file-drop > span {
    width: 32px;
    height: 32px;
  }

  .quick-file-drop > span::before {
    width: 14px;
    height: 4px;
  }

  .quick-file-drop > span::after {
    width: 4px;
    height: 14px;
  }

  .quick-file-drop small {
    font-size: 0.78rem;
  }

  .quick-file-manage {
    right: 10px;
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .quick-file-popover {
    bottom: calc(100% + 8px);
    max-height: 192px;
    padding: 10px;
    border-radius: 16px;
  }

  .quick-file-list {
    max-height: 132px;
  }

  .quick-request-submit {
    min-height: 42px;
  }
}


.trust {
  padding: 5px 0;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust__grid div {
  min-height: 116px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(16, 20, 18, 0.08);
  border-radius: var(--radius-lg);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.trust__grid div:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 159, 98, 0.2);
  box-shadow: 0 16px 34px rgba(16, 20, 18, 0.06);
}

.trust__grid strong {
  display: block;
  margin-bottom: 5px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.trust__grid span {
  color: var(--muted);
}

.reviews-showcase {
  overflow: hidden;
}

.reviews-showcase__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: 48px;
}

.reviews-showcase .section-heading {
  max-width: 470px;
  margin-bottom: 0;
}

.reviews-showcase .section-heading .button {
  margin-top: 10px;
}

.reviews-cloud {
  position: relative;
  isolation: isolate;
  height: 740px;
  display: block;
  padding: 38px 24px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.reviews-cloud.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.reviews-cloud.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reviews-cloud::before {
  display: none;
}

.reviews-cloud::after {
  display: none;
}

.review-bubble {
  position: absolute;
  left: var(--mt);
  top: var(--ml);
  z-index: calc(var(--z) + 10);
  width: var(--w);
  max-width: 56vw;
  margin: 0;
  filter: drop-shadow(0 14px 18px rgba(16, 20, 18, 0.13));
  box-shadow: none;
  border-radius: 0;
  transform: rotate(var(--r));
  transform-origin: 50% 50%;
  animation: none;
  animation-delay: var(--d);
  backface-visibility: hidden;
  contain: layout paint;
  opacity: 1;
  transition:
    filter 0.18s ease,
    transform 0.18s ease;
}

.review-bubble img {
  display: block;
  width: 100%;
  height: auto;
}

.review-bubble:hover,
.review-bubble:focus-within {
  z-index: 200;
  filter: drop-shadow(0 18px 24px rgba(16, 20, 18, 0.17));
  transform: translateY(-6px) rotate(var(--r)) scale(1.035);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.section-heading--left {
  margin-inline: 0;
  text-align: left;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.62s ease,
    transform 0.62s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cards {
  display: grid;
  gap: 16px;
}

.cards--services {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  min-height: 272px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 20, 18, 0.08);
  border-radius: var(--radius-lg);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background-color 0.24s ease;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid rgba(15, 159, 98, 0.12);
  border-radius: 14px;
  transition:
    transform 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease;
}

.card-icon::before {
  content: "";
  display: block;
  width: 29px;
  height: 29px;
  background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.card-icon:has(img)::before {
  display: none;
}

.card-icon img {
  display: block;
  width: 31px;
  height: 31px;
  max-width: 31px;
  max-height: 31px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(27%) sepia(69%) saturate(728%) hue-rotate(108deg) brightness(88%) contrast(94%);
}

.card-icon img[src*="calculation.svg"] {
  width: 34px;
  height: 34px;
  max-width: 34px;
  max-height: 34px;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 159, 98, 0.24);
  box-shadow: 0 22px 52px rgba(16, 20, 18, 0.1);
}

.service-card:hover .card-icon,
.guarantees article:hover .card-icon,
.link-card:hover .card-icon {
  transform: translateY(-2px) rotate(-3deg);
  background: #dff4ea;
  border-color: rgba(15, 159, 98, 0.22);
}

.service-card p {
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.service-card strong {
  margin-top: auto;
  font-size: 1.45rem;
  letter-spacing: -0.05em;
}

.service-card--accent {
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.22), transparent 14rem),
    var(--black);
}

.service-card--accent p {
  color: rgba(255, 255, 255, 0.7);
}

.service-card--accent .card-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.price-note {
  max-width: 820px;
  margin: 22px auto 0;
  color: var(--muted);
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: steps;
}

.step {
  min-height: 190px;
  padding: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  gap: 14px 14px;
  align-items: start;
  background: var(--surface);
  border: 1px solid rgba(16, 20, 18, 0.08);
  border-radius: var(--radius-lg);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 159, 98, 0.18);
  box-shadow: 0 18px 42px rgba(16, 20, 18, 0.07);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--green-dark);
  background: rgba(233, 248, 240, 0.9);
  border: 1px solid rgba(15, 159, 98, 0.16);
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
}

.step h3 {
  align-self: center;
  margin: 0;
  font-size: clamp(1.08rem, 1.25vw, 1.28rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.step p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.guarantees__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 52px;
  align-items: start;
}

.guarantees {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.guarantees article {
  min-height: 190px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 20, 18, 0.08);
  border-radius: var(--radius-lg);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.guarantees article:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 159, 98, 0.18);
  box-shadow: 0 18px 42px rgba(16, 20, 18, 0.07);
}

.guarantees p {
  color: var(--muted);
  line-height: 1.58;
}

.guarantees h3 {
  margin-bottom: 12px;
}

.offer-panel {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(15, 159, 98, 0.34), transparent 22rem),
    var(--black);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.offer-panel .eyebrow {
  color: #8df0bd;
}

.offer-panel h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.offer-list span {
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  font-weight: 800;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 48px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--surface);
  border: 1px solid rgba(16, 20, 18, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

details:hover,
details[open] {
  border-color: rgba(15, 159, 98, 0.2);
  box-shadow: 0 12px 28px rgba(16, 20, 18, 0.05);
}

summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 22px 60px 22px 22px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.02em;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  line-height: 1;
}

details[open] summary::after {
  content: "\2013";
}

details p {
  margin: -6px 22px 22px;
  color: var(--muted);
}

details[open] p {
  animation: answerIn 0.24s ease both;
}

.final-cta {
  padding-top: 86px;
}

.final-cta__panel {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(230px, 280px);
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 38px 40px;
  background: linear-gradient(135deg, var(--green-soft), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(16, 20, 18, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 50px rgba(16, 20, 18, 0.08);
}

.final-cta__panel h2 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.45vw, 3.35rem);
  line-height: 1.08;
}

.final-cta__panel p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.final-cta__panel .button {
  min-width: 230px;
  max-width: 280px;
  line-height: 1.22;
  white-space: normal;
}

.footer {
  padding: 48px 0 34px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--black);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px 44px;
  align-items: start;
}

.brand--footer .brand__mark rect {
  fill: #fff;
}

.brand--footer .brand__mark path,
.brand--footer .brand__mark circle {
  fill: var(--black);
}

.brand--footer .brand__mark .brand__tassel {
  stroke: var(--black);
}

.brand--footer strong {
  color: #fff;
}

.brand--footer small {
  color: rgba(255, 255, 255, 0.62);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
}

.footer__links a[aria-disabled="true"] {
  opacity: 0.72;
}

.social-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: block;
  object-fit: contain;
}

.footer__links .social-icon {
  filter: invert(1);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  grid-column: 1 / -1;
  padding-top: 6px;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.footer__disclaimer {
  max-width: 720px;
  margin: 0;
}

.footer__copy {
  margin: 0;
  text-align: right;
}

.mobile-cta {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 19;
  display: block;
  overflow: hidden;
  pointer-events: none;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__shade {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(16, 20, 18, 0.18);
  backdrop-filter: blur(2px);
  pointer-events: auto;
  animation: mobileShadeIn 0.18s ease both;
}

.mobile-menu__surface {
  position: relative;
  z-index: 1;
  padding: 0;
  background: rgba(247, 245, 239, 0.98);
  border-bottom: 1px solid rgba(16, 20, 18, 0.08);
  box-shadow: 0 18px 40px rgba(16, 20, 18, 0.1);
  backdrop-filter: blur(18px);
  pointer-events: auto;
  will-change: transform;
  animation: mobileMenuIn 0.24s cubic-bezier(0.22, 0.78, 0.2, 1) both;
}

.mobile-menu__panel {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 14px 0 0;
}

.mobile-menu.is-closing .mobile-menu__shade {
  animation: mobileShadeOut 0.18s ease both;
}

.mobile-menu.is-closing .mobile-menu__surface {
  animation: mobileMenuOut 0.2s cubic-bezier(0.42, 0, 0.2, 1) both;
}

.mobile-menu__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}

.mobile-menu__nav a {
  display: grid;
  gap: 2px;
  padding: 13px 0;
  color: var(--text);
  border-bottom: 1px solid rgba(16, 20, 18, 0.08);
  transition:
    color 0.18s ease,
    border-color 0.18s ease;
}

.mobile-menu__nav a:last-child {
  border-bottom: 0;
}

.mobile-menu__nav a span {
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.mobile-menu__nav a small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.mobile-menu__nav a:hover,
.mobile-menu__nav a:focus-visible {
  color: var(--green-dark);
  border-color: rgba(15, 159, 98, 0.2);
}

.mobile-menu__nav a[aria-current="page"] {
  color: var(--green-dark);
  border-color: rgba(15, 159, 98, 0.34);
}

.mobile-menu__contact {
  justify-self: stretch;
  margin-bottom: 14px;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 9, 8, 0.54);
  backdrop-filter: blur(8px);
  animation: modalFadeIn 0.2s ease both;
}

.contact-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 30px;
  background: var(--surface);
  border: 1px solid rgba(16, 20, 18, 0.08);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(16, 20, 18, 0.28);
  animation: modalDialogIn 0.24s ease both;
}

.contact-modal.is-closing .contact-modal__overlay {
  animation: modalFadeOut 0.16s ease both;
}

.contact-modal.is-closing .contact-modal__dialog {
  animation: modalDialogOut 0.16s ease both;
}

.contact-modal__dialog h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  line-height: 1.06;
}

.contact-modal__dialog > p:not(.eyebrow) {
  max-width: 420px;
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.56;
}

.contact-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--text);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.contact-modal__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 16px;
  color: var(--text);
  background: rgba(246, 244, 239, 0.75);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease;
}

.contact-option:hover,
.contact-option:focus-visible {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(15, 159, 98, 0.28);
  box-shadow: 0 12px 28px rgba(16, 20, 18, 0.06);
}

.contact-option .social-icon {
  color: var(--green-dark);
}

.contact-option span {
  display: grid;
  gap: 2px;
}

.contact-option strong {
  line-height: 1.15;
}

.contact-option small {
  color: var(--muted);
  font-weight: 700;
}

.contact-option[aria-disabled="true"] {
  opacity: 0.7;
}

.contact-option.is-attention {
  border-color: rgba(15, 159, 98, 0.46);
  background: var(--green-soft);
}

.nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 800;
}

.page-hero {
  padding-bottom: 34px;
}

.page-hero h1 {
  max-width: 980px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.94rem;
}

.breadcrumbs a {
  color: var(--green-dark);
  font-weight: 800;
}

.breadcrumbs strong {
  color: var(--text);
}

.service-card--link,
.link-card,
.price-row {
  color: inherit;
}

.service-card--link:focus-visible,
.link-card:focus-visible,
.price-row:focus-visible {
  outline: 3px solid rgba(15, 159, 98, 0.35);
  outline-offset: 4px;
}

.info-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: 34px 46px;
  align-items: start;
  padding: 40px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 20, 18, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 50px rgba(16, 20, 18, 0.07);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.info-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 159, 98, 0.16);
  box-shadow: 0 22px 56px rgba(16, 20, 18, 0.09);
}

.info-panel__intro {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.info-panel__intro .button {
  min-width: 300px;
  margin-top: 8px;
}

.info-panel__content {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 0.95fr);
  gap: 24px;
  align-items: start;
}

.info-panel h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.04;
}

.info-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 950;
}

.template-box {
  padding: 18px;
  background: var(--green-soft);
  border: 1px solid rgba(15, 159, 98, 0.18);
  border-radius: 20px;
}

.template-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.template-box p {
  color: var(--green-dark);
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-page-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) repeat(2, minmax(260px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.info-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 20, 18, 0.08);
  border-radius: var(--radius-lg);
}

.info-card h2 {
  margin-bottom: 20px;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
}

.info-card p {
  color: var(--muted);
}

.info-card--price {
  color: #fff;
  background:
    radial-gradient(circle at 80% 0%, rgba(15, 159, 98, 0.35), transparent 16rem),
    var(--black);
}

.info-card--price .eyebrow {
  color: #8df0bd;
}

.info-card--price p {
  color: rgba(255, 255, 255, 0.72);
}

.info-card--price h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.link-card {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 20, 18, 0.08);
  border-radius: var(--radius-lg);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.link-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 159, 98, 0.24);
  box-shadow: 0 20px 48px rgba(16, 20, 18, 0.09);
}

.link-card span {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-weight: 900;
}

.link-card .card-icon {
  margin-bottom: 16px;
}

.link-card strong {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.link-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.price-grid {
  display: grid;
  gap: 12px;
}

.price-row {
  --price-icon: url("/assets/icons/pencils.svg");
  display: grid;
  grid-template-columns: 48px minmax(180px, 0.8fr) minmax(130px, 0.28fr) minmax(260px, 1fr);
  gap: 18px 20px;
  align-items: center;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 20, 18, 0.08);
  border-radius: 20px;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.price-row::before,
.price-row::after {
  content: "";
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
}

.price-row::before {
  width: 44px;
  height: 44px;
  background: var(--green-soft);
  border: 1px solid rgba(15, 159, 98, 0.12);
  border-radius: 14px;
}

.price-row::after {
  width: 27px;
  height: 27px;
  background: var(--green-dark);
  -webkit-mask: var(--price-icon) center / contain no-repeat;
  mask: var(--price-icon) center / contain no-repeat;
}

.price-row:nth-child(1) {
  --price-icon: url("/assets/icons/drawing.svg");
}

.price-row:nth-child(2) {
  --price-icon: url("/assets/icons/lab.svg");
}

.price-row:nth-child(3) {
  --price-icon: url("/assets/icons/calculation.svg?v=20260626-1823");
}

.price-row:nth-child(4) {
  --price-icon: url("/assets/icons/book.svg");
}

.price-row:nth-child(5) {
  --price-icon: url("/assets/icons/pen.svg");
}

.price-row:nth-child(6) {
  --price-icon: url("/assets/icons/presentation.svg");
}

.price-row:nth-child(7) {
  --price-icon: url("/assets/icons/diploma-work.svg");
}

.price-row:nth-child(8) {
  --price-icon: url("/assets/icons/practice-report.svg");
}

.price-row:nth-child(9) {
  --price-icon: url("/assets/icons/bell.svg");
}

.price-row:nth-child(3)::after {
  width: 32px;
  height: 32px;
}

.price-row > span:not(.card-icon) {
  grid-column: 2;
}

.price-row > strong {
  grid-column: 3;
}

.price-row > p {
  grid-column: 4;
}

.price-row .card-icon {
  margin-bottom: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.price-row .card-icon::before {
  width: 27px;
  height: 27px;
}

.price-row:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: rgba(15, 159, 98, 0.2);
  box-shadow: 0 16px 36px rgba(16, 20, 18, 0.07);
}

.price-row span,
.price-row strong {
  font-weight: 900;
  line-height: 1.22;
}

.price-row strong {
  color: var(--green-dark);
  font-size: 1.25rem;
  text-align: right;
}

.price-row p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.price-row--accent {
  color: #fff;
  background: var(--black);
  cursor: pointer;
}

.price-row--accent * {
  cursor: pointer;
}

.price-row--accent:hover {
  color: #fff;
  background: #050807;
  border-color: rgba(141, 240, 189, 0.26);
  box-shadow: 0 18px 42px rgba(16, 20, 18, 0.18);
}

.price-row--accent .card-icon {
  color: #8df0bd;
  background: rgba(141, 240, 189, 0.12);
  border-color: rgba(141, 240, 189, 0.24);
}

.price-row--accent::before {
  background: rgba(141, 240, 189, 0.12);
  border-color: rgba(141, 240, 189, 0.24);
}

.price-row--accent::after {
  background: #8df0bd;
}

.price-row--accent p {
  color: rgba(255, 255, 255, 0.72);
}

.price-row--accent strong {
  color: #8df0bd;
}

.guarantees--wide {
  grid-template-columns: repeat(3, 1fr);
}

.narrow {
  max-width: 840px;
}

.article-content {
  display: grid;
  gap: 22px;
}

.article-content section {
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 20, 18, 0.08);
  border-radius: var(--radius-lg);
}

.article-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

@media (max-width: 1040px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero__grid,
.guarantees__grid,
.faq__grid,
.reviews-showcase__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__visual {
    min-height: 430px;
  }

  .cards--services,
.steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-panel,
.final-cta__panel,
.info-panel,
.info-panel__content {
    grid-template-columns: 1fr;
  }

  .final-cta__panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-page-grid,
.link-grid,
.guarantees--wide {
    grid-template-columns: 1fr 1fr;
  }

  .price-row {
    grid-template-columns: 48px 1fr;
    align-items: start;
  }

  .price-row span,
.price-row strong {
    grid-column: 2;
    text-align: left;
  }

  .price-row p {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  body {
    padding-bottom: 82px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header .button {
    display: none;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .section,
.section--tight {
    padding: 50px 0;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 12.4vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
  }

  .hero__grid {
    gap: 32px;
  }

  .hero__lead {
    margin-bottom: 24px;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding-inline: 18px;
    text-align: center;
  }

  

  .hero__visual {
    min-height: 390px;
  }

  

  .hero-flow-card {
    width: min(100%, 370px);
    padding: 18px;
    border-radius: 26px;
  }

  .hero-flow-card__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .trust__grid,
.cards--services,
.steps,
.guarantees,
.offer-list,
.footer__grid,
.service-page-grid,
.link-grid,
.guarantees--wide {
    grid-template-columns: 1fr;
  }

  .trust__grid div,
.service-card,
.step,
.guarantees article {
    min-height: auto;
  }

  .reviews-showcase__grid {
    gap: 24px;
  }

  .reviews-showcase .section-heading {
    max-width: none;
  }

  .reviews-cloud {
    display: grid;
    height: auto;
    min-height: 0;
    gap: 12px;
    margin: 4px 0 0;
    padding: 4px 0 2px;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .reviews-cloud::before,
.reviews-cloud::after {
    display: none;
  }

  .review-bubble {
    position: relative;
    left: auto;
    top: auto;
    justify-self: start;
    width: min(88%, 340px);
    max-width: 100%;
    margin: 0;
    animation: none;
    transform: rotate(-1.4deg);
  }

  .review-bubble:nth-child(even) {
    justify-self: end;
    transform: rotate(1.2deg);
  }

  .review-bubble:nth-child(n + 8) {
    display: none;
  }

  .review-bubble:hover {
    transform: rotate(var(--r));
  }

  .step span {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .offer-panel,
.final-cta__panel,
.info-panel,
.article-content section {
    padding: 24px;
    border-radius: 24px;
  }

  .footer__links {
    justify-content: flex-start;
  }

  .footer__nav {
    gap: 10px 14px;
  }

  .footer__copy {
    text-align: left;
  }

  .mobile-menu__nav {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mobile-menu__nav a {
    padding: 12px 0;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: block;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    background: rgba(247, 245, 239, 0.88);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(18px);
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.22s ease,
      opacity 0.22s ease;
  }

  .mobile-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open .mobile-cta,
body.modal-open .mobile-cta {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 760px) {
  .contact-modal__dialog {
    padding: 24px;
    border-radius: 24px;
  }

  .contact-modal__actions {
    grid-template-columns: 1fr;
  }

  .info-panel__intro .button {
    min-width: 0;
  }

  .final-cta__panel .button {
    max-width: none;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: clamp(2.35rem, 11.4vw, 3.05rem);
    line-height: 1.05;
  }

  .hero-flow-card {
    padding: 16px;
  }

  .hero-flow-card__title {
    font-size: 1.42rem;
  }
}

.examples-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.examples-preview {
  align-items: center;
}

.pdf-examples-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pdf-examples-grid--preview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pdf-card {
  width: 100%;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 22px;
  color: inherit;
  text-align: left;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 20, 18, 0.08);
  border-radius: var(--radius-lg);
  cursor: pointer;
  box-shadow: none;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.pdf-card:hover {
  transform: translateY(-4px);
  background: #fff;
  border-color: rgba(15, 159, 98, 0.22);
  box-shadow: 0 18px 42px rgba(16, 20, 18, 0.08);
}

.pdf-card:focus-visible {
  outline: 3px solid rgba(15, 159, 98, 0.34);
  outline-offset: 4px;
}

.pdf-card .card-icon {
  margin-bottom: 18px;
}

.pdf-card:hover .card-icon {
  transform: translateY(-2px) rotate(-3deg);
  background: #dff4ea;
  border-color: rgba(15, 159, 98, 0.22);
}

.pdf-card h3 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.pdf-card--compact {
  min-height: 168px;
}

.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 20px;
}

.pdf-modal[hidden] {
  display: none;
}

.pdf-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 9, 8, 0.58);
  backdrop-filter: blur(8px);
  animation: modalFadeIn 0.18s ease both;
}

.pdf-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  height: min(88vh, 860px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid rgba(16, 20, 18, 0.08);
  border-radius: 28px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
  animation: modalDialogIn 0.2s ease both;
}

.pdf-modal.is-closing .pdf-modal__overlay {
  animation: modalFadeOut 0.16s ease both;
}

.pdf-modal.is-closing .pdf-modal__dialog {
  animation: modalDialogOut 0.16s ease both;
}

.pdf-modal__header {
  min-height: 54px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-right: 46px;
}

.pdf-modal__header h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.pdf-modal__header .eyebrow {
  margin-bottom: 8px;
}

.pdf-modal__new-tab {
  flex: 0 0 auto;
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(16, 20, 18, 0.12);
}

.pdf-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--text);
  background: rgba(247, 245, 239, 0.9);
  border: 1px solid rgba(16, 20, 18, 0.12);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.pdf-modal__frame {
  width: 100%;
  min-height: 0;
  flex: 1 1 auto;
  border: 1px solid rgba(16, 20, 18, 0.08);
  border-radius: 18px;
  background: #f4f2ec;
}

@media (max-width: 1040px) {
  .pdf-examples-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .pdf-examples-grid,
.pdf-examples-grid--preview {
    grid-template-columns: 1fr;
  }

  .pdf-card {
    min-height: 140px;
    padding: 20px;
  }

  .pdf-modal {
    padding: 10px;
  }

  .pdf-modal__dialog {
    height: calc(100vh - 20px);
    padding: 16px;
    border-radius: 22px;
  }

  .pdf-modal__header {
    display: grid;
    padding-right: 44px;
  }

  .pdf-modal__new-tab {
    width: max-content;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
*::before,
*::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .hero__content > .eyebrow,
.js .hero__content > h1,
.js .hero__content > .hero__lead,
.js .hero__actions,
.js .hero__checks,
.js .hero__visual {
    opacity: 1;
    transform: none;
    animation: none;
  }

}
/* Premium-tech visual system, 2026-07-13 */
@font-face {
  font-family: "Onest";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/assets/fonts/onest-cyrillic-variable.woff2") format("woff2-variations");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/assets/fonts/onest-latin-variable.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #f4f5f1;
  --surface: #ffffff;
  --surface-strong: #e9eeea;
  --text: #101613;
  --muted: #66716b;
  --line: rgba(16, 22, 19, 0.14);
  --green: #0da568;
  --green-dark: #087347;
  --green-soft: #e2f5ea;
  --blue: #315bff;
  --blue-soft: #e8edff;
  --yellow: #ffd84d;
  --black: #101613;
  --shadow: 0 18px 48px rgba(19, 37, 28, 0.12);
  --shadow-small: 0 9px 24px rgba(19, 37, 28, 0.09);
  --radius-xl: 8px;
  --radius-lg: 8px;
  --radius-md: 6px;
  --container: 1240px;
  --header-height: 74px;
}

*,
*::before,
*::after {
  letter-spacing: 0 !important;
}

html {
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  overflow-x: clip;
  background: var(--bg);
  caret-color: transparent;
  color: var(--text);
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

input,
textarea,
[contenteditable]:not([contenteditable="false"]) {
  caret-color: auto;
}

body::before,
body::after {
  content: none;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: 68px;
  font-weight: 780;
  line-height: 1.01;
}

h2 {
  margin-bottom: 16px;
  font-size: 48px;
  font-weight: 760;
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 720;
  line-height: 1.2;
}

.container {
  width: min(calc(100% - 48px), var(--container));
}

.section {
  padding: 68px 0;
}

.section--tight {
  padding: 44px 0;
}

main > .section:not(.hero):not(.page-hero) {
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

.section--muted {
  background: #edf0ec;
  border-block: 1px solid rgba(16, 22, 19, 0.08);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.section-heading--split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.section-heading--split > div {
  max-width: 760px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow--signal::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 216, 77, 0.24);
}

.site-header {
  min-height: var(--header-height);
  background: rgba(244, 245, 241, 0.96);
  border-bottom: 1px solid rgba(16, 22, 19, 0.08);
  backdrop-filter: none;
}

.mobile-menu__shade,
.mobile-menu__surface,
.contact-modal,
.contact-modal__overlay,
.contact-modal__dialog,
.pdf-modal,
.pdf-modal__overlay,
.pdf-modal__dialog,
.review-gallery-modal,
.review-gallery-modal__overlay,
.review-gallery-modal__dialog {
  backdrop-filter: none !important;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 22px rgba(16, 22, 19, 0.07);
}

.header__inner {
  min-height: var(--header-height);
}

.brand {
  gap: 12px;
}

.brand__mark {
  width: 48px;
  height: 48px;
}

.brand strong {
  font-size: 18px;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 620;
  text-transform: uppercase;
}

.nav {
  gap: 30px;
}

.nav a,
.footer__nav a {
  color: var(--muted);
  font-weight: 570;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: var(--text);
}

.nav a[aria-current="page"]::after {
  height: 2px;
  background: var(--green);
}

.button {
  min-height: 50px;
  max-width: 100%;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 760;
  white-space: normal;
  overflow-wrap: anywhere;
  box-shadow: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.button--small {
  min-height: 42px;
  padding-inline: 19px;
  font-size: 14px;
}

.button--primary {
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green);
}

.button--primary:hover,
.button--primary:focus-visible,
.button--small:hover,
.button--small:focus-visible {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 9px 22px rgba(13, 165, 104, 0.2);
  transform: translateY(-2px);
}

.button--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  color: var(--green-dark);
  background: #fff;
  border-color: rgba(13, 165, 104, 0.42);
  box-shadow: var(--shadow-small);
  transform: translateY(-2px);
}

.button--light {
  color: var(--text);
  background: #fff;
  border: 1px solid #fff;
}

.button--light:hover,
.button--light:focus-visible {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green-dark);
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero--premium {
  min-height: calc(100svh - var(--header-height));
  padding: 30px 0 28px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(16, 22, 19, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 22, 19, 0.035) 1px, transparent 1px),
    #f4f5f1;
  background-size: 56px 56px;
}

.hero--premium .hero__grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(510px, 1.04fr);
  gap: 58px;
  align-items: center;
}

.hero--premium .hero__content {
  padding-block: 24px;
}

.hero--premium .hero__lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero--premium .hero__actions {
  gap: 12px;
  margin-bottom: 24px;
}

.hero--premium .hero__checks {
  gap: 8px;
  font-size: 15px;
}

.hero--premium .hero__checks li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  column-gap: 9px;
  padding-left: 0;
  line-height: 1.45;
}

.hero--premium .hero__checks li::before {
  position: static;
  top: auto;
  left: auto;
  width: 18px;
  height: 18px;
  margin-top: 0;
  background: #fff;
  border: 1px solid rgba(13, 165, 104, 0.26);
}

.page-ready .hero__content > .eyebrow,
.page-ready .hero__content > h1,
.page-ready .hero__content > .hero__lead,
.page-ready .hero__actions,
.page-ready .hero__checks,
.page-ready .hero__visual,
.reveal,
.reveal.is-visible {
  will-change: auto;
}

.hero-studio {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.hero-studio::before {
  content: none;
}

.hero-artifact {
  position: absolute;
  z-index: -2;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 22, 19, 0.14);
  border-radius: 6px;
  box-shadow: var(--shadow-small);
}

.hero-artifact img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-artifact--cad {
  top: 8px;
  right: 4px;
  width: 220px;
  height: 174px;
  transform: rotate(3deg);
}

.hero-artifact--drawing {
  top: 62px;
  left: -4px;
  width: 252px;
  height: 177px;
  transform: rotate(-2deg);
}

.hero-artifact--paper {
  bottom: 6px;
  left: 0;
  width: 196px;
  height: 260px;
  transform: rotate(-3deg);
}

.hero-artifact--slide {
  right: 0;
  bottom: 32px;
  width: 245px;
  height: 138px;
  transform: rotate(2deg);
}

.hero-flow-card.quick-request-card {
  position: relative;
  z-index: 2;
  width: min(100%, 438px);
  margin-left: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.985);
  border: 1px solid rgba(16, 22, 19, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(15, 36, 25, 0.16);
}


.hero-flow-card.quick-request-card .hero-flow-card__tag {
  font-size: 12px;
}


.hero-flow-card.quick-request-card .hero-flow-card__title {
  font-size: 28px;
}

.hero-flow-card__top {
  margin-bottom: 14px;
}

.hero-flow-card__tag {
  min-height: 30px;
  padding: 0 11px;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid rgba(13, 165, 104, 0.2);
  border-radius: 999px;
  font-size: 12px;
}


.hero-flow-card__title {
  max-width: 340px;
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 780;
  line-height: 1.08;
}

.quick-request-intro {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
}

.quick-request-form {
  gap: 12px;
}

.quick-field {
  gap: 6px;
}

.quick-field > span,
.quick-contact__head > span:first-child {
  font-size: 13px;
  font-weight: 720;
}

.quick-field input,
.quick-field textarea,
.quick-contact__id {
  padding: 12px 14px;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(16, 22, 19, 0.16);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: none;
}

.quick-field input {
  min-height: 48px;
}

.quick-field textarea {
  min-height: 88px;
  resize: vertical;
}

.quick-field input:focus,
.quick-field textarea:focus,
.quick-contact__id:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(13, 165, 104, 0.12);
  outline: none;
}

.quick-contact__body {
  gap: 10px;
}

.quick-contact__channels {
  padding: 3px;
  background: var(--green-soft);
  border: 1px solid rgba(13, 165, 104, 0.2);
  border-radius: 6px;
}

.quick-contact__channels label span {
  min-width: 45px;
  min-height: 40px;
  border-radius: 4px;
  font-size: 13px;
}

.quick-contact__channels input:checked + span {
  color: #fff;
  background: var(--green);
  box-shadow: none;
}


.quick-file-box {
  border-radius: 6px;
}

.quick-file-drop {
  min-height: 76px;
  padding: 12px 14px;
  border: 1px dashed rgba(13, 165, 104, 0.48);
  border-radius: 6px;
  background: rgba(226, 245, 234, 0.64);
}

.quick-file-drop > span,
.quick-file-drag > span,
.quick-card-drag > span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.quick-file-drop > span::before,
.quick-file-drop > span::after,
.quick-file-drag > span::before,
.quick-file-drag > span::after,
.quick-card-drag > span::before,
.quick-card-drag > span::after {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.quick-file-drop strong {
  font-size: 14px;
}

.quick-file-drop small {
  font-size: 12px;
}

.quick-file-manage {
  border-radius: 4px;
}

.quick-file-popover {
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.quick-file-item {
  border-radius: 4px;
}

.quick-file-close,
.quick-file-remove,
.contact-modal__close,
.pdf-modal__close,
.review-gallery-modal__close {
  display: inline-grid;
  place-items: center;
  padding: 0;
  line-height: 1;
}

.quick-file-close,
.quick-file-remove {
  position: relative;
  flex: 0 0 auto;
  color: transparent;
  font-size: 0;
}

.quick-file-close::before,
.quick-file-close::after,
.quick-file-remove::before,
.quick-file-remove::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 2px;
  background: var(--muted);
  border-radius: 999px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.quick-file-close::after,
.quick-file-remove::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.quick-request-submit {
  width: 100%;
  min-height: 50px;
}

.quick-request-note {
  display: block;
  margin-top: -3px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.quick-card-drag {
  inset: 8px;
  border-radius: 6px;
  background: rgba(226, 245, 234, 0.98);
  box-shadow: none;
}

.proof-rail {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.proof-rail__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-rail__grid > div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 22px 28px;
  border-right: 1px solid var(--line);
}

.proof-rail__grid > div:first-child {
  border-left: 1px solid var(--line);
}

.proof-rail strong {
  font-size: 22px;
  font-weight: 780;
}

.proof-rail span {
  color: var(--muted);
  font-size: 13px;
}

.work-showcase {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 276px;
  gap: 16px;
}

.work-preview {
  grid-column: span 3;
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.work-preview--wide {
  grid-column: span 6;
  grid-row: span 2;
}

.work-preview--landscape {
  grid-column: span 3;
}

.work-preview:hover,
.work-preview:focus-visible {
  border-color: rgba(49, 91, 255, 0.42);
  box-shadow: var(--shadow-small);
  transform: translateY(-3px);
}

.work-preview__media {
  min-height: 0;
  overflow: hidden;
  background: #eef0ed;
}

.work-preview__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.28s ease;
}

.work-preview:hover .work-preview__media img {
  transform: scale(1.025);
}

.work-preview__meta {
  display: grid;
  gap: 7px;
  padding: 16px;
  background: #fff;
}

.work-preview__meta small,
.example-work__body small {
  color: var(--blue);
  font-size: 11px;
  font-weight: 780;
  text-transform: uppercase;
}

.work-preview__meta strong {
  font-size: 16px;
  line-height: 1.25;
}

.work-preview__meta > span:last-child,
.example-work__body > span:last-child {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 720;
}

#services,
.reviews-showcase {
  padding-block: 72px;
}

#services .section-heading,
.reviews-showcase .section-heading {
  max-width: none;
  margin-bottom: 30px;
  text-align: left;
}

.premium-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service-card,
.link-card,
.info-card,
.guarantees article,
.step,
.pdf-card,
.article-card {
  border-radius: 8px;
}

.premium-services-grid .service-card {
  min-height: 166px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "icon title"
    "icon copy"
    "icon price";
  column-gap: 14px;
  row-gap: 4px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.premium-services-grid .service-card:hover {
  border-color: rgba(13, 165, 104, 0.44);
  box-shadow: var(--shadow-small);
  transform: translateY(-3px);
}

.premium-services-grid .card-icon {
  grid-area: icon;
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 6px;
  background: var(--green-soft);
}

.premium-services-grid .service-card h3 {
  grid-area: title;
  margin: 0;
  font-size: 18px;
}

.premium-services-grid .service-card p {
  grid-area: copy;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.premium-services-grid .service-card > strong {
  grid-area: price;
  align-self: end;
  margin: 8px 0 0;
  color: var(--green-dark);
  font-size: 15px;
  letter-spacing: 0;
}

.premium-services-grid .service-card--accent {
  color: #fff;
  background: var(--text);
  border-color: var(--text);
}

.premium-services-grid .service-card--accent p,
.premium-services-grid .service-card--accent > strong {
  color: rgba(255, 255, 255, 0.74);
}

.premium-services-grid .service-card--accent .card-icon {
  background: var(--yellow);
}

.cards--services {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.cards--services .service-card {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.cards--services .service-card .card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
  border-radius: 6px;
  background: var(--green-soft);
}

.cards--services .service-card p {
  color: var(--muted);
  font-size: 14px;
}

.cards--services .service-card > strong {
  margin-top: auto;
  color: var(--green-dark);
  font-size: 15px;
}

.cards--services .service-card:hover,
.cards--services .service-card:focus-visible {
  border-color: rgba(13, 165, 104, 0.42);
  box-shadow: var(--shadow-small);
  transform: translateY(-3px);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.price-row {
  min-height: 180px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: start;
  gap: 12px 24px;
  padding: 26px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.price-row > span {
  font-size: 20px;
  font-weight: 730;
}

.price-row > strong {
  color: var(--green-dark);
  font-size: 18px;
  white-space: nowrap;
}

.price-row > p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

a.price-row:hover,
a.price-row:focus-visible {
  border-color: rgba(13, 165, 104, 0.42);
  box-shadow: var(--shadow-small);
  transform: translateY(-3px);
}

.price-row--accent {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.price-row--accent > strong,
.price-row--accent > p {
  color: rgba(255, 255, 255, 0.82);
}

.price-note {
  max-width: 820px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.guarantees--wide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.guarantees--wide article {
  min-height: 250px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
}

.guarantees--wide article:nth-child(4),
.guarantees--wide article:nth-child(5) {
  grid-column: span 1;
}

.guarantees--wide .card-icon,
.link-card .card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 6px;
  background: var(--green-soft);
}

.guarantees--wide article p {
  color: var(--muted);
  font-size: 14px;
}

.link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.link-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.link-card > span:not(.card-icon) {
  color: var(--blue);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.link-card > strong {
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.link-card > p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.promise-band {
  color: #fff;
  background: var(--text);
}

.promise-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 80px;
  align-items: start;
}

.promise-band .eyebrow {
  color: var(--yellow);
}

.promise-band h2 {
  max-width: 520px;
}

.promise-band__heading > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.promise-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 28px;
}

.promise-list article {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.promise-list article > span {
  display: block;
  margin-bottom: 24px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
}

.promise-list h3 {
  color: #fff;
}

.promise-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.reviews-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  align-items: start;
}

.reviews-mosaic figure {
  width: 100%;
  margin: 0;
  background: transparent;
}

.reviews-mosaic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 8px 10px rgba(16, 22, 19, 0.13));
}

.process-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.steps {
  gap: 14px;
}

.step {
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 17px 18px 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.step:hover {
  border-color: rgba(13, 165, 104, 0.34);
  box-shadow: var(--shadow-small);
  transform: translateY(-3px);
}

.step span {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 9px;
  color: var(--green-dark);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1;
}

.step span::before {
  content: "Этап";
  color: var(--muted);
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
}

.step span::after {
  content: "";
  flex: 1;
  height: 1px;
  margin-left: 4px;
  background: var(--line);
}

.step h3 {
  min-height: 0;
  align-self: auto;
  margin: 0 0 7px;
  font-size: 18px;
}

.step p {
  grid-column: auto;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.faq__grid {
  gap: 64px;
}

.faq-list {
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.faq-list summary {
  padding: 20px 22px;
  font-size: 17px;
}

.faq-list details p {
  padding: 0 22px 20px;
  color: var(--muted);
}

.final-cta__panel {
  gap: 54px;
  padding: 54px;
  color: #fff;
  background: var(--blue);
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.final-cta__panel .eyebrow {
  color: var(--yellow);
}

.final-cta__panel h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: 42px;
}

.final-cta__panel p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.final-cta__panel .button--primary {
  color: var(--text);
  background: #fff;
  border-color: #fff;
}

.final-cta__panel .button--primary:hover,
.final-cta__panel .button--primary:focus-visible {
  background: var(--yellow);
  border-color: var(--yellow);
}

.footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--text);
  border-top: 0;
}

.footer .brand strong,
.footer__nav a:hover,
.footer__nav a:focus-visible {
  color: #fff;
}

.footer .brand small,
.footer__nav a,
.footer__disclaimer,
.footer__copy {
  color: rgba(255, 255, 255, 0.58);
}

.footer__links:empty {
  display: none;
}

.social-link {
  border-radius: 6px;
}

.mobile-cta {
  background: rgba(244, 245, 241, 0.97);
  border-top-color: var(--line);
  backdrop-filter: none;
}

.contact-modal__dialog,
.pdf-modal__dialog {
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}

.contact-option {
  border-radius: 8px;
}

.pdf-modal__frame {
  border-radius: 6px;
}

.review-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 18px;
}

.review-gallery-modal[hidden] {
  display: none;
}

.review-gallery-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 12, 0.72);
}

.review-gallery-modal__dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100svh - 36px);
  overflow: auto;
  padding: 34px;
  background: var(--bg);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.review-gallery-modal__close {
  position: sticky;
  top: 0;
  z-index: 2;
  float: right;
  width: 42px;
  height: 42px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
}

.review-gallery-modal__header {
  max-width: 680px;
  margin-bottom: 22px;
}

.review-gallery-modal__header h2 {
  font-size: 40px;
}

.review-gallery-modal__header > p:last-child {
  color: var(--muted);
}

.review-gallery-modal__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  padding: 4px 0 16px;
}

.review-gallery-modal__list figure {
  flex: 0 1 auto;
  display: flex;
  max-width: 100%;
  margin: -2px -4px;
  background: transparent;
}

.review-gallery-modal__list img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(500px, 100%);
  max-height: 112px;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 6px 8px rgba(16, 22, 19, 0.13));
}

.page-hero {
  padding: 48px 0 44px;
  background:
    linear-gradient(rgba(16, 22, 19, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 22, 19, 0.035) 1px, transparent 1px),
    #f4f5f1;
  background-size: 56px 56px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 940px;
  margin-bottom: 20px;
  font-size: 64px;
}

.page-hero .hero__lead,
.page-hero__lead {
  max-width: 780px;
  color: var(--muted);
  font-size: 19px;
}

.page-hero > .container > .hero__lead:last-child,
.page-hero > .container > .page-hero__lead:last-child {
  margin-bottom: 0;
}

.breadcrumbs {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--green-dark);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 64px;
  align-items: end;
}

.page-hero__facts {
  display: grid;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.page-hero__facts > div {
  display: grid;
  gap: 2px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.page-hero__facts > div:last-child {
  border-bottom: 0;
}

.page-hero__facts strong {
  font-size: 20px;
}

.page-hero__facts span {
  color: var(--muted);
  font-size: 12px;
}

.service-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 64px;
  align-items: center;
}

.service-hero-layout--solo {
  grid-template-columns: minmax(0, 900px);
}

.service-hero-copy .hero__lead {
  max-width: 720px;
}

.service-hero-preview {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(160px, 0.96fr);
  min-height: 380px;
  overflow: hidden;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-small);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-hero-preview:hover,
.service-hero-preview:focus-visible {
  border-color: rgba(49, 91, 255, 0.4);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-hero-preview__media {
  min-width: 0;
  overflow: hidden;
  background: #e8ece8;
}

.service-hero-preview__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.service-hero-preview__body {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 10px;
  padding: 24px;
}

.service-hero-preview__body small {
  color: var(--blue);
  font-size: 11px;
  font-weight: 780;
  text-transform: uppercase;
}

.service-hero-preview__body strong {
  font-size: 18px;
  line-height: 1.28;
}

.service-hero-preview__body > span:last-child {
  margin-top: 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 720;
}

.examples-library {
  background: #fff;
}

.example-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.example-filters button {
  min-height: 42px;
  padding: 0 16px;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 680;
}

.example-filters button[aria-selected="true"] {
  color: #fff;
  background: var(--text);
  border-color: var(--text);
}

.work-library {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.example-work {
  min-width: 0;
  display: grid;
  grid-template-rows: 360px auto;
  padding: 0;
  overflow: hidden;
  color: var(--text);
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.example-work[hidden] {
  display: none;
}

.example-work:hover,
.example-work:focus-visible {
  border-color: rgba(49, 91, 255, 0.42);
  box-shadow: var(--shadow-small);
  transform: translateY(-3px);
}

.example-work__media {
  overflow: hidden;
  background: #edf0ec;
}

.example-work__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.example-work--landscape .example-work__media img {
  object-fit: contain;
}

.example-work__body {
  display: grid;
  gap: 9px;
  padding: 20px;
}

.example-work__body strong {
  font-size: 18px;
  line-height: 1.25;
}

.service-page-grid {
  gap: 16px;
}

.info-card,
.link-card,
.article-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.info-card {
  padding: 28px;
}

.info-card h2 {
  font-size: 32px;
}

.info-card--price {
  color: #fff;
  background: var(--text);
  border-color: var(--text);
}

.info-card--price .eyebrow {
  color: var(--yellow);
}

.info-card--price p {
  color: rgba(255, 255, 255, 0.66);
}

.link-card:hover,
.link-card:focus-visible,
.article-card:hover,
.article-card:focus-visible {
  border-color: rgba(13, 165, 104, 0.42);
  box-shadow: var(--shadow-small);
  transform: translateY(-3px);
}

.price-row,
.guide-card,
.guarantees article {
  border-radius: 8px;
  box-shadow: none;
}

.article-layout,
.article-shell {
  max-width: 1160px;
}

.article-content,
.prose {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.72;
}

.narrow {
  width: min(calc(100% - 48px), 860px);
}

.article-content {
  padding: 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-content section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.article-content section:first-child {
  padding-top: 0;
}

.article-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.article-content h2 {
  font-size: 30px;
}

@media (max-width: 1120px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 42px;
  }

  .hero--premium .hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
    gap: 34px;
  }

  .hero-studio {
    min-height: 650px;
  }

  .premium-services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .premium-services-grid .service-card h3 {
    font-size: 17px;
  }

  .cards--services,
.guarantees--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-library {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 901px) and (max-height: 820px) {
  .hero--premium {
    min-height: calc(100svh - var(--header-height));
    padding-block: 10px;
  }

  .hero--premium h1 {
    margin-bottom: 14px;
    font-size: 52px;
  }

  .hero--premium .hero__content {
    padding-block: 0;
  }

  .hero--premium .hero__lead {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.45;
  }

  .hero--premium .hero__actions {
    margin-bottom: 14px;
  }

  .hero--premium .hero__checks {
    gap: 3px;
    font-size: 13px;
  }

  .hero-studio {
    min-height: calc(100svh - var(--header-height) - 20px);
  }

  .hero-studio::before {
    inset-block: 4%;
  }

  .hero-artifact--cad {
    width: 196px;
    height: 155px;
  }

  .hero-artifact--drawing {
    top: 52px;
    width: 218px;
    height: 153px;
  }

  .hero-artifact--paper {
    width: 168px;
    height: 218px;
  }

  .hero-artifact--slide {
    width: 208px;
    height: 117px;
  }

  .hero-flow-card.quick-request-card {
    padding: 17px;
  }

  .hero-flow-card__top {
    margin-bottom: 9px;
  }

  .hero-flow-card.quick-request-card .hero-flow-card__title {
    margin-bottom: 5px;
    font-size: 24px;
  }

  .quick-request-intro {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .quick-request-form {
    gap: 8px;
  }

  .quick-field {
    gap: 4px;
  }

  .quick-field input {
    min-height: 42px;
  }

  .quick-field textarea {
    min-height: 68px;
  }

  .quick-field input,
.quick-field textarea,
.quick-contact__id {
    padding: 9px 12px;
  }

  .quick-contact__channels label span {
    min-height: 36px;
  }

  .quick-file-drop {
    min-height: 62px;
    padding-block: 8px;
  }

  .quick-file-drop > span,
.quick-file-drag > span,
.quick-card-drag > span {
    width: 38px;
    height: 38px;
  }

  .quick-request-submit {
    min-height: 44px;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .hero--premium h1 {
    font-size: 44px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 56px 0;
  }

  .section--tight {
    padding: 44px 0;
  }

  .page-hero {
    padding: 44px 0 42px;
  }

  .hero--premium {
    min-height: auto;
    padding: 52px 0 46px;
  }

  .hero--premium .hero__grid,
.promise-band__inner,
.page-hero__grid {
    grid-template-columns: 1fr;
  }

  .hero--premium .hero__content {
    padding: 0;
  }

  .hero--premium h1 {
    max-width: 760px;
  }

  .hero-studio {
    min-height: 650px;
  }

  .hero-flow-card.quick-request-card {
    margin-left: 0;
  }

  .premium-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-rail__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-rail__grid > div:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .work-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .work-preview,
.work-preview--wide,
.work-preview--landscape {
    grid-column: auto;
    grid-row: auto;
    min-height: 380px;
  }

  .work-preview__media {
    min-height: 260px;
  }

  .section-heading--split {
    align-items: start;
  }

  .promise-band__inner {
    gap: 54px;
  }

  .reviews-mosaic figure,
.reviews-mosaic figure:nth-child(2),
.reviews-mosaic figure:nth-child(3),
.reviews-mosaic figure:nth-child(6),
.reviews-mosaic figure:nth-child(7) {
    grid-column: span 6;
  }

  .reviews-mosaic figure:nth-child(4),
.reviews-mosaic figure:nth-child(5),
.reviews-mosaic figure:nth-child(8),
.reviews-mosaic figure:nth-child(9) {
    transform: none;
  }

  .page-hero__grid {
    gap: 34px;
  }

  .service-hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-hero-preview {
    min-height: 330px;
  }

  .page-hero__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-hero__facts > div {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .page-hero__facts > div:last-child {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  h1,
.page-hero h1 {
    font-size: 42px;
    line-height: 1.04;
  }

  h2,
.final-cta__panel h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  h3 {
    font-size: 18px;
  }

  .section {
    padding: 48px 0;
  }

  .section--tight {
    padding: 36px 0;
  }

  #services,
.reviews-showcase {
    padding-block: 48px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading--split {
    display: grid;
    gap: 20px;
  }

  .section-heading p:last-child {
    font-size: 16px;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .header__inner {
    min-height: var(--header-height);
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 9px;
  }

  .menu-toggle {
    min-height: 42px;
    border-radius: 6px;
  }

  .hero--premium {
    padding: 38px 0 42px;
    background-size: 42px 42px;
  }

  .hero--premium .hero__grid {
    gap: 38px;
  }

  .hero--premium .hero__lead {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .hero--premium .hero__actions {
    display: grid;
  }

  .hero--premium .hero__actions .button {
    width: 100%;
  }

  .hero--premium .hero__checks {
    font-size: 14px;
  }

  .hero-studio {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-studio::before {
    inset: 24px 2px 0;
  }

  .hero-artifact--cad {
    display: none;
  }

  .hero-artifact--drawing {
    display: block;
    top: 0;
    right: 4px;
    left: auto;
    width: 156px;
    height: 104px;
    transform: rotate(2deg);
  }

  .hero-artifact--paper,
.hero-artifact--slide {
    display: none;
  }

  .hero-flow-card.quick-request-card {
    width: 100%;
    padding: 18px;
  }

  .hero-flow-card__title {
    font-size: 25px;
  }

  .quick-contact__body {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .proof-rail__grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-rail__grid > div {
    min-height: 102px;
    padding: 18px 14px;
  }

  .proof-rail strong {
    font-size: 17px;
  }

  .work-showcase,
.premium-services-grid,
.cards--services,
.price-grid,
.guarantees--wide,
.link-grid,
.work-library,
.promise-list,
.review-gallery-modal__list {
    justify-content: flex-start;
    gap: 7px 6px;
  }

  .cards--services,
.price-grid,
.guarantees--wide,
.link-grid,
.promise-list {
    grid-template-columns: 1fr;
  }

  .review-gallery-modal__list figure {
    margin: 0;
  }

  .review-gallery-modal__list figure:nth-child(even) {
    margin-left: auto;
  }

  .review-gallery-modal__list img {
    max-width: 100%;
    max-height: 96px;
  }

  .work-preview,
.work-preview--wide,
.work-preview--landscape {
    min-height: 0;
  }

  .work-preview__media {
    min-height: 250px;
    max-height: 330px;
  }

  .premium-services-grid .service-card {
    min-height: 72px;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    grid-template-rows: auto;
    grid-template-areas: "icon title price";
    align-items: center;
    column-gap: 12px;
    padding: 14px;
  }

  .premium-services-grid .card-icon {
    width: 38px;
    height: 38px;
  }

  .premium-services-grid .card-icon img {
    width: 27px;
    height: 27px;
  }

  .premium-services-grid .service-card h3 {
    font-size: 16px;
  }

  .premium-services-grid .service-card p {
    display: none;
  }

  .premium-services-grid .service-card > strong {
    align-self: center;
    margin: 0;
    font-size: 12px;
    white-space: nowrap;
  }

  #services .premium-services-grid .service-card:nth-child(n + 5) {
    display: none;
  }

  .cards--services .service-card,
.link-card,
.guarantees--wide article {
    min-height: 0;
  }

  .promise-band__inner {
    gap: 42px;
  }

  .promise-list {
    gap: 24px;
  }

  .reviews-mosaic {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .reviews-mosaic figure,
.reviews-mosaic figure:nth-child(2),
.reviews-mosaic figure:nth-child(3),
.reviews-mosaic figure:nth-child(6),
.reviews-mosaic figure:nth-child(7) {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
    margin: 0;
  }

  .reviews-mosaic figure:nth-child(n + 3) {
    display: none;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: 0;
  }

  .step h3 {
    min-height: 0;
  }

  .faq__grid {
    gap: 28px;
  }

  .final-cta__panel {
    padding: 30px 22px;
  }

  .page-hero {
    padding: 34px 0 36px;
    background-size: 42px 42px;
  }

  .breadcrumbs {
    margin-bottom: 24px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .page-hero__facts {
    grid-template-columns: 1fr;
  }

  .page-hero__facts > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-hero-preview {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-hero-preview__media {
    height: 260px;
  }

  .service-hero-preview__body {
    padding: 20px;
  }

  .example-filters {
    flex-wrap: nowrap;
    margin-inline: -12px;
    padding-inline: 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .example-filters::-webkit-scrollbar {
    display: none;
  }

  .example-filters button {
    flex: 0 0 auto;
  }

  .example-work {
    grid-template-rows: 330px auto;
  }

  .pdf-modal {
    display: none !important;
  }

  .review-gallery-modal {
    padding: 8px;
  }

  .review-gallery-modal__dialog {
    max-height: calc(100svh - 16px);
    padding: 20px 14px;
  }

  .review-gallery-modal__header h2 {
    font-size: 32px;
  }

  .footer__grid {
    gap: 26px;
  }

  .narrow {
    width: min(calc(100% - 24px), 860px);
  }

  .article-content {
    padding: 24px 20px;
  }
}

@media (max-width: 420px) {
  h1,
.page-hero h1 {
    font-size: 32px;
  }

  h2,
.final-cta__panel h2 {
    font-size: 31px;
  }

  .quick-contact__body {
    grid-template-columns: 1fr;
  }

  .quick-contact__channels {
    width: 100%;
  }

  .quick-contact__channels label {
    flex: 1 1 0;
  }

  .quick-contact__channels label span {
    width: 100%;
  }

  .proof-rail__grid {
    grid-template-columns: 1fr;
  }

  .premium-services-grid {
    grid-template-columns: 1fr;
  }

  .proof-rail__grid > div,
.proof-rail__grid > div:first-child {
    min-height: 84px;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .example-work {
    grid-template-rows: 292px auto;
  }

  .example-work__body {
    gap: 8px;
    padding: 14px 12px;
  }

  .example-work__body strong {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-preview:hover,
.example-work:hover,
.premium-services-grid .service-card:hover,
.step:hover,
.link-card:hover,
.article-card:hover {
    transform: none;
  }
}

/* Compact explanatory sections used on service, price and guide pages. */
.section--service-detail {
  padding-block: 42px;
  background: #fff;
  border-block: 1px solid var(--line);
}

.service-detail__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 56px;
  align-items: start;
}

.service-detail__grid h2 {
  max-width: 560px;
  margin: 8px 0 0;
  font-size: 34px;
  line-height: 1.12;
}

.service-detail__copy {
  max-width: 760px;
}

.service-detail__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.service-detail__copy p + p {
  margin-top: 12px;
}

.service-detail__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.service-detail__links a,
.article-links a {
  color: var(--green-dark);
  font-weight: 740;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.service-detail__links a:hover,
.service-detail__links a:focus-visible,
.article-links a:hover,
.article-links a:focus-visible {
  color: var(--blue);
}

.article-content p {
  margin: 12px 0 0;
  color: var(--muted);
}

.article-content section {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.article-content section:last-child {
  border-bottom: 0;
}

.article-content .check-list {
  margin-top: 16px;
}

.article-note {
  margin-top: 20px;
  padding: 16px 18px;
  color: var(--text);
  line-height: 1.6;
  background: var(--green-soft);
  border-left: 3px solid var(--green);
}

.article-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}

.example-work {
  text-decoration: none;
}

@media (max-width: 900px) {
  .section--service-detail {
    padding-block: 36px;
  }

  .service-detail__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-detail__grid h2 {
    font-size: 30px;
  }
}

@media (max-width: 760px) {
  .section--service-detail {
    padding-block: 30px;
  }

  .service-detail__grid {
    gap: 18px;
  }

  .service-detail__grid h2 {
    font-size: 26px;
  }

  .service-detail__copy p {
    font-size: 16px;
  }

  .service-detail__links,
.article-links {
    display: grid;
    gap: 10px;
  }

  .article-content section {
    padding-block: 26px;
  }

  .article-content h2 {
    font-size: 25px;
  }

  .article-note {
    padding: 14px 15px;
  }
}


@media (max-width: 760px) {
  html,
body {
    width: 100%;
    max-width: 100%;
    padding-bottom: 0;
    overflow-x: hidden;
  }

  .container {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    margin-right: 12px;
    margin-left: 12px;
  }

  .header__inner {
    gap: 10px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand > span {
    min-width: 0;
  }

  .brand strong,
.brand small {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .header__actions,
.menu-toggle {
    flex: 0 0 auto;
  }

  .header__inner,
.header__actions,
.hero--premium .hero__grid,
.hero--premium .hero__content,
.hero--premium .hero__visual,
.hero--premium .hero__actions,
.hero-flow-card.quick-request-card,
.quick-request-form,
.quick-contact,
.quick-contact__body,
.quick-file-box,
.quick-file-drop,
.service-detail__grid,
.final-cta__panel {
    min-width: 0;
    max-width: 100%;
  }

  .hero--premium .hero__actions .button,
.hero-flow-card.quick-request-card,
.quick-request-form input,
.quick-request-form textarea,
.quick-contact__body input,
.quick-file-box,
.quick-file-drop {
    width: 100%;
    box-sizing: border-box;
  }

  .example-filters {
    flex-wrap: wrap;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
    overflow-x: visible;
  }
}
