:root {
  --bg: #ffffff;
  --bg-2: #e8ecf1;
  --panel: #ffffff;
  --panel-2: #eceff3;
  --ink: #15181c;
  --ink-line: #2b333d;
  --line: #e2e6ec;
  --line-soft: #eef1f4;
  --text: #1b2229;
  --text-2: #3a4654;
  --muted: #586472;
  --accent: #c2470a;
  --accent-btn: #b8430a;
  --accent-bright: #f2741c;
  --accent-press: #9c3908;
  --accent-soft: rgba(194, 71, 10, 0.1);
  --on-accent: #ffffff;
  --wrap: 1180px;
  --sec-y: clamp(64px, 8vw, 108px);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-btn: 8px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Manrope", "Inter", sans-serif;
  --shadow-sm: 0 1px 2px rgba(20, 24, 29, 0.05), 0 14px 30px rgba(20, 24, 29, 0.07);
  --shadow-md: 0 26px 52px rgba(20, 24, 29, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }

h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); text-wrap: balance; }
p { margin: 0; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--wrap); margin-left: auto; margin-right: auto; padding-left: clamp(20px, 4vw, 40px); padding-right: clamp(20px, 4vw, 40px); }
main > section { padding-top: var(--sec-y); padding-bottom: var(--sec-y); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.accent { color: var(--accent); }

.sec-head { max-width: 640px; margin-bottom: clamp(34px, 4vw, 50px); }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head__title { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.sec-head__sub { margin-top: 14px; font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); line-height: 1.5; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 14px 26px; border: 1.5px solid transparent; border-radius: var(--radius-btn); font-family: var(--font); font-size: 16px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.1; text-decoration: none; white-space: nowrap; cursor: pointer; transition: background-color 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 18px; height: 18px; flex: 0 0 18px; fill: currentColor; }
.btn--call { background: var(--accent-btn); color: var(--on-accent); box-shadow: 0 8px 18px rgba(20, 24, 29, 0.14); }
.btn--call:hover { background: var(--accent-press); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(20, 24, 29, 0.2); }
.btn--ghost { background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.16); border-color: #fff; transform: translateY(-2px); }
.btn--line { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--line:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--xl { min-height: 60px; padding: 17px 30px; font-size: 17px; }
.btn--xl .ico { width: 20px; height: 20px; flex-basis: 20px; }
.btn--block { width: 100%; }

.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.ticks li { display: flex; align-items: flex-start; gap: 12px; font-size: 17px; line-height: 1.45; }
.tick { width: 23px; height: 23px; flex: 0 0 23px; margin-top: 2px; border-radius: 6px; background: var(--accent-soft); position: relative; }
.tick::before { content: ""; position: absolute; left: 8px; top: 4px; width: 5px; height: 10px; border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(45deg); }

.topbar { background: var(--ink); color: rgba(255, 255, 255, 0.74); font-size: 14px; }
.topbar__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; flex-wrap: wrap; }
.topbar__akut { display: inline-flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; font-weight: 600; padding: 9px 0; }
.topbar__akut .ico { width: 15px; height: 15px; fill: var(--accent-bright); }
.topbar__akut strong { font-weight: 700; color: var(--accent-bright); letter-spacing: -0.01em; }
.topbar__meta { display: inline-flex; align-items: center; gap: 14px; }
.topbar__sep { width: 1px; height: 14px; background: var(--ink-line); }

.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); transition: box-shadow 0.2s ease; }
.site-header.is-scrolled { box-shadow: 0 6px 22px rgba(20, 24, 29, 0.08); }
.site-header__row { display: flex; align-items: center; gap: 18px; min-height: 64px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; color: var(--ink); }
.brand__word { display: inline-flex; align-items: baseline; gap: 0.32em; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; font-size: 18px; line-height: 1; }
.brand__line1 { color: var(--ink); }
.brand__line2 { color: var(--accent); }

.topnav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.topnav__link { position: relative; padding: 9px 13px; font-size: 15px; font-weight: 500; text-decoration: none; color: var(--ink); border-radius: 6px; }
.topnav__link::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 3px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.18s ease; }
.topnav__link:hover { color: var(--accent); }
.topnav__link:hover::after { transform: scaleX(1); }
.topnav__link.is-active { color: var(--accent); }
.topnav__link.is-active::after { transform: scaleX(1); }
.header__cta { margin-left: 4px; }

.burger { display: none; width: 48px; height: 48px; margin-left: auto; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: transparent; border: 1px solid var(--line); border-radius: 9px; cursor: pointer; }
.burger span { display: block; width: 21px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mmenu { position: fixed; inset: 0; z-index: 70; background: #fff; display: flex; flex-direction: column; padding: 18px clamp(20px, 5vw, 32px) 28px; transform: translateX(100%); transition: transform 0.28s ease; visibility: hidden; }
.mmenu.is-open { transform: translateX(0); visibility: visible; }
.mmenu__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.brand--menu .brand__word { font-size: 18px; }
.mclose { width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; background: var(--bg-2); border: 1px solid var(--line); border-radius: 9px; cursor: pointer; }
.mclose svg { width: 20px; height: 20px; fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; }
.mmenu__nav { display: flex; flex-direction: column; margin-top: 8px; }
.mmenu__nav a { padding: 17px 2px; font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
.mmenu__nav a:hover { color: var(--accent); }
.mmenu__cta { margin-top: auto; }

.hero { position: relative; display: flex; align-items: center; justify-content: center; text-align: center; min-height: clamp(540px, 80vh, 780px); padding: clamp(72px, 9vw, 120px) 0; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; z-index: 1; background: rgba(15, 18, 22, 0.62); }
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: 820px; margin: 0 auto; padding-left: clamp(20px, 4vw, 40px); padding-right: clamp(20px, 4vw, 40px); }
.hero__title { color: #fff; font-size: clamp(1.85rem, 5.6vw, 4.3rem); letter-spacing: -0.03em; line-height: 1.06; }
.hero__title .accent { color: var(--accent-bright); }
.hero__lead { margin: 22px auto 0; color: rgba(255, 255, 255, 0.85); font-size: clamp(1.1rem, 1.9vw, 1.35rem); max-width: 52ch; line-height: 1.55; }
.hero__lead--lg { margin: 18px auto 0; font-size: clamp(1.3rem, 2.4vw, 1.75rem); font-weight: 600; color: #fff; max-width: none; }
.hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.hero__note { margin-top: 20px; font-size: 15.5px; color: rgba(255, 255, 255, 0.72); }
.hero__note a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.proof { background: #fff; border-bottom: 1px solid var(--line); padding-top: clamp(38px, 4.5vw, 58px); padding-bottom: clamp(38px, 4.5vw, 58px); }
.proof__row { display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.proof__item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 5px; padding: 4px clamp(14px, 2vw, 24px); border-left: 1px solid var(--line); }
.proof__item:first-child { border-left: none; }
.proof__num { font-family: var(--font-display); font-size: clamp(1.5rem, 2.7vw, 2.15rem); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); line-height: 1.05; }
.proof__label { font-size: 14.5px; color: var(--muted); }

.services { background: var(--bg-2); }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2vw, 26px); }
.svc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.svc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); display: flex; flex-direction: column; }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc__media { aspect-ratio: 16 / 10; background: var(--panel-2); overflow: hidden; }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.svc:hover .svc__media img { transform: scale(1.04); }
.svc__body { padding: clamp(22px, 2.5vw, 28px); display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.svc h3 { font-size: clamp(1.25rem, 1.9vw, 1.5rem); }
.svc p { color: var(--text-2); font-size: 16.5px; line-height: 1.55; }
.svc__link { margin-top: 4px; padding: 10px 0; font-weight: 700; font-size: 15.5px; color: var(--accent-press); text-decoration: none; }
.svc__link:hover { text-decoration: underline; text-underline-offset: 3px; }
.svc-note { margin-top: clamp(26px, 3vw, 36px); text-align: center; font-size: 16px; color: var(--muted); }
.svc-note--lead { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 700; color: var(--ink); }
.svc-note .svc__link { display: inline; }

.svc-featured { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; align-items: stretch; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: clamp(18px, 2vw, 26px); transition: box-shadow 0.25s var(--ease); }
.svc-featured:hover { box-shadow: var(--shadow-md); }
.svc-featured__media { min-height: 300px; overflow: hidden; }
.svc-featured__media img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; transition: transform 0.5s var(--ease); }
.svc-featured:hover .svc-featured__media img { transform: scale(1.03); }
.svc-featured__body { padding: clamp(28px, 3.2vw, 46px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 14px; }
.svc-featured__body h3 { font-size: clamp(1.6rem, 2.6vw, 2.15rem); }
.svc-featured__body > p { color: var(--text-2); font-size: 17px; line-height: 1.55; max-width: 46ch; }
.svc-featured__body .ticks { margin: 2px 0; }
.svc-featured__body .btn { margin-top: 6px; }

.deadlock { position: relative; overflow: hidden; }
.deadlock__bg { position: absolute; inset: 0; z-index: 0; }
.deadlock__bg img { width: 100%; height: 100%; object-fit: cover; }
.deadlock__scrim { position: absolute; inset: 0; z-index: 1; background: rgba(15, 18, 22, 0.8); }
.deadlock__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.deadlock__sigill { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: clamp(28px, 4vw, 40px); border: 1px solid rgba(242, 116, 28, 0.5); border-radius: 50%; aspect-ratio: 1; justify-content: center; max-width: 300px; margin: 0 auto; }
.deadlock__big { font-family: var(--font-display); font-weight: 700; font-size: clamp(3.2rem, 7vw, 5rem); line-height: 0.9; color: var(--accent-bright); letter-spacing: -0.03em; }
.deadlock__big span { font-size: 0.42em; color: rgba(255, 255, 255, 0.75); }
.deadlock__cap { font-size: 14px; line-height: 1.45; color: rgba(255, 255, 255, 0.78); max-width: 30ch; }
.deadlock__title { font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: #fff; }
.deadlock__body { margin-top: 16px; font-size: 17.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.8); max-width: 52ch; }
.deadlock .ticks { margin-top: 26px; }
.deadlock .ticks li { color: rgba(255, 255, 255, 0.9); }
.deadlock .tick { background: rgba(255, 255, 255, 0.14); }
.deadlock .tick::before { border-right-color: #fff; border-bottom-color: #fff; }
.deadlock__actions { margin-top: 30px; }

.about { background: #fff; }
.about__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 4.5vw, 60px); align-items: center; }
.about__media { order: 2; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); min-height: 380px; }
.about__media img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.about__h { font-size: clamp(1.85rem, 3.2vw, 2.6rem); }
.about__lead { margin-top: 18px; font-size: 18px; line-height: 1.6; color: var(--text-2); max-width: 46ch; }
.about .ticks { margin-top: 26px; margin-bottom: 30px; }

.reviews { background: var(--bg-2); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 26px); }
.review { display: flex; flex-direction: column; margin: 0; padding: clamp(24px, 2.6vw, 32px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.review__stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--accent); }
.review__stars svg { width: 18px; height: 18px; fill: currentColor; }
.review blockquote { margin: 0; font-size: 17px; line-height: 1.55; color: var(--text); }
.review figcaption { margin-top: 18px; font-size: 15px; font-weight: 700; color: var(--ink); }

.contact { background: #fff; }
.contact__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(32px, 4vw, 56px); align-items: start; }
.phone-card { display: flex; flex-direction: column; gap: 4px; padding: 22px 26px; background: var(--ink); border-radius: var(--radius); text-decoration: none; color: #fff; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.phone-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.phone-card__label { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, 0.72); }
.phone-card__label .ico { width: 14px; height: 14px; fill: var(--accent-bright); }
.phone-card__num { font-family: var(--font-display); font-size: clamp(1.7rem, 3.2vw, 2.2rem); font-weight: 700; letter-spacing: -0.02em; color: #fff; }

.info-list { display: grid; gap: 0; margin-top: 24px; }
.info-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-item:last-child { border-bottom: none; }
.info-item__ico { width: 44px; height: 44px; flex: 0 0 44px; display: inline-flex; align-items: center; justify-content: center; background: var(--accent-soft); border: 1px solid rgba(194, 71, 10, 0.2); border-radius: 10px; color: var(--accent); }
.info-item__ico svg { width: 19px; height: 19px; }
.info-item__txt { display: flex; flex-direction: column; min-width: 0; }
.info-item__label { font-size: 13px; font-weight: 600; color: var(--muted); }
.info-item__val { font-size: 16.5px; font-weight: 700; color: var(--ink); text-decoration: none; overflow-wrap: anywhere; padding: 4px 0; }
.info-item__val:hover { color: var(--accent); }

.area-block { margin-top: 30px; }
.area__h { font-size: 1.15rem; margin-bottom: 14px; }
.area__tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.area__tags li { padding: 9px 14px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; color: var(--ink); }
.area__tags a { color: inherit; text-decoration: none; }
.area__tags li:hover { border-color: var(--accent); }

.contact__form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-md); }
.form__h { font-size: 1.4rem; margin-bottom: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; font-family: inherit; font-size: 16px; color: var(--text); padding: 13px 14px; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-sm); transition: border-color 0.16s ease, box-shadow 0.16s ease; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.form-note { margin-top: 14px; font-size: 14px; color: var(--muted); text-align: center; }
.form-note a { color: var(--accent-press); font-weight: 700; text-decoration: none; }

.page-hero { position: relative; display: flex; align-items: center; justify-content: center; text-align: center; min-height: clamp(280px, 42vh, 380px); padding: clamp(48px, 7vw, 84px) 0; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__scrim { position: absolute; inset: 0; z-index: 1; background: rgba(15, 18, 22, 0.64); }
.page-hero__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding-left: clamp(20px, 4vw, 40px); padding-right: clamp(20px, 4vw, 40px); }
.page-hero__title { color: #fff; font-size: clamp(2rem, 4.6vw, 3.2rem); letter-spacing: -0.025em; line-height: 1.06; }
.page-hero__sub { margin: 16px auto 0; color: rgba(255, 255, 255, 0.86); font-size: clamp(1.05rem, 1.7vw, 1.25rem); max-width: 48ch; line-height: 1.5; }

.sec--mist { background: var(--bg-2); }

.vgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 24px); }
.vcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 2.6vw, 32px); box-shadow: var(--shadow-sm); }
.vcard h3 { font-size: 1.3rem; margin-bottom: 10px; }
.vcard p { color: var(--text-2); font-size: 16.5px; line-height: 1.55; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 26px); }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 2.6vw, 32px); box-shadow: var(--shadow-sm); }
.step__node { display: block; width: 40px; height: 40px; margin-bottom: 16px; border-radius: 50%; background: var(--accent-soft); border: 1px solid rgba(194, 71, 10, 0.25); position: relative; }
.step__node::after { content: ""; position: absolute; inset: 0; margin: auto; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); }
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--text-2); font-size: 16px; line-height: 1.55; }

.cta-band { background: #fff; text-align: center; }
.cta-band__title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--ink); }
.cta-band__sub { margin: 14px auto 0; color: var(--muted); font-size: 18px; max-width: 48ch; line-height: 1.5; }
.cta-band__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.cta-band--photo { position: relative; overflow: hidden; background: var(--ink); }
.cta-band--photo .cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band--photo .cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band--photo .cta-band__scrim { position: absolute; inset: 0; z-index: 1; background: rgba(15, 18, 22, 0.72); }
.cta-band--photo .wrap { position: relative; z-index: 2; }
.cta-band--photo .cta-band__title { color: #fff; }
.cta-band--photo .cta-band__sub { color: rgba(255, 255, 255, 0.82); }

.lp-prose { max-width: 760px; margin: 0 auto; text-align: left; }
.lp-prose p { margin-bottom: 16px; color: var(--text-2); font-size: 17px; line-height: 1.65; }
.lp-prose p:last-child { margin-bottom: 0; }
.lp-prose .ticks { margin: 20px 0; }
.faq { display: grid; gap: 14px; max-width: 820px; margin: 0 auto; text-align: left; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 2.4vw, 28px); box-shadow: var(--shadow-sm); }
.faq-item h3 { font-size: 1.15rem; margin-bottom: 8px; }
.faq-item p { color: var(--text-2); font-size: 16.5px; line-height: 1.6; }
.lp-highlight { position: relative; background: var(--ink); overflow: hidden; }
.lp-highlight__inner { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.lp-highlight__figure { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 12px; aspect-ratio: 1; max-width: 280px; margin: 0 auto; padding: clamp(24px, 4vw, 40px); border: 1px solid rgba(242, 116, 28, 0.5); border-radius: 50%; }
.lp-highlight__stat { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.8rem, 6.5vw, 4.4rem); line-height: 0.9; letter-spacing: -0.03em; color: var(--accent-bright); }
.lp-highlight__cap { font-size: 14px; line-height: 1.45; color: rgba(255, 255, 255, 0.78); max-width: 26ch; }
.lp-highlight__title { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.lp-highlight__sub { margin-top: 16px; color: rgba(255, 255, 255, 0.82); font-size: 17.5px; line-height: 1.6; max-width: 54ch; }
@media (max-width: 980px) { .lp-highlight__inner { grid-template-columns: 1fr; gap: 30px; } .lp-highlight__figure { max-width: 220px; } }
.lp-intro { align-items: stretch; }
.lp-intro .about__media { min-height: 100%; }
.lp-intro .ticks { grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-top: 22px; }
@media (max-width: 600px) { .lp-intro .ticks { grid-template-columns: 1fr; } }
.topnav__item { position: relative; display: inline-flex; align-items: center; }
.topnav__dropdown { position: absolute; top: 100%; left: 0; min-width: 252px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-md); padding: 8px; display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s; z-index: 60; }
.topnav__item:hover .topnav__dropdown, .topnav__item:focus-within .topnav__dropdown { opacity: 1; visibility: visible; transform: none; }
.topnav__dropdown a { display: block; padding: 10px 12px; border-radius: 7px; font-size: 14.5px; font-weight: 500; color: var(--ink); text-decoration: none; white-space: nowrap; }
.topnav__dropdown a:hover { background: var(--bg-2); color: var(--accent-press); }

.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.72); padding-top: clamp(48px, 5vw, 68px); }
.site-footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(24px, 3vw, 44px); padding-bottom: clamp(32px, 4vw, 48px); }
.site-footer__brand .brand--footer { display: inline-flex; align-items: center; padding: 12px 16px; background: #fff; border-radius: var(--radius-sm); }
.site-footer__brand > p { margin-top: 18px; font-size: 15px; line-height: 1.55; max-width: 32ch; }
.site-footer__brand .btn { margin-top: 18px; }
.site-footer__col { display: flex; flex-direction: column; gap: 11px; }
.site-footer__col h3 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.01em; margin-bottom: 3px; }
.site-footer__col a, .site-footer__col span { color: rgba(255, 255, 255, 0.66); text-decoration: none; font-size: 15px; }
.site-footer__col a { padding: 7px 0; }
.site-footer__col a:hover { color: var(--accent-bright); }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 20px; padding-bottom: 26px; border-top: 1px solid var(--ink-line); font-size: 13px; color: rgba(255, 255, 255, 0.48); }
.site-footer__bottom a { color: rgba(255, 255, 255, 0.72); }

.rv { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.rv.is-in { opacity: 1; transform: none; }

.callbar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; align-items: center; justify-content: center; gap: 10px; padding: 14px 18px; background: var(--accent-btn); color: var(--on-accent); text-decoration: none; font-size: 16px; font-weight: 700; box-shadow: 0 -4px 20px rgba(20, 24, 29, 0.16); }
.callbar .ico { width: 18px; height: 18px; fill: currentColor; }
.callbar__text { font-weight: 600; opacity: 0.9; }

#contact-form { max-width: 100%; min-width: 0; }
.ms-recaptcha-notice { text-align: center; }

@media (max-width: 980px) {
  .topnav { display: none; }
  .burger { display: flex; }
  .header__cta { display: none; }
  .deadlock__inner { grid-template-columns: 1fr; gap: 32px; }
  .deadlock__sigill { max-width: 240px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { order: -1; min-height: 280px; }
  .about__media img { min-height: 280px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: repeat(3, 1fr); }
  .site-footer__brand { grid-column: 1 / -1; }
  .svc-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .svc-featured { grid-template-columns: 1fr; }
  .svc-featured__media { order: -1; min-height: 240px; }
  .svc-featured__media img { min-height: 240px; }
  .callbar { display: flex; }
  .site-footer__bottom { padding-bottom: 78px; }
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  .topbar__meta { display: none; }
  .brand__word { font-size: 16px; }
  .hero { min-height: clamp(500px, 78vh, 640px); }
  .hero__cta .btn { width: 100%; }
  .proof__row { grid-template-columns: 1fr 1fr; gap: 26px 0; }
  .proof__item { border-left: none; padding: 0 12px; }
  .proof__item:nth-child(even) { border-left: 1px solid var(--line); }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-grid--3 { grid-template-columns: 1fr; }
  .vgrid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cta-band__actions .btn { width: 100%; max-width: 360px; }
}

@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  .callbar__text { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .btn, .svc, .svc__media img, .phone-card, .topnav__link::after { transition: none; }
}
