:root {
  --ink: #16212e;
  --ink-2: #223140;
  --paper: #f6f1e7;
  --kraft: #ece3d2;
  --kraft-2: #d9cbb0;
  --white: #ffffff;
  --amber: #ffb020;
  --amber-2: #f29200;
  --acc-text: #b04400;
  --muted: #5b6672;
  --line: #e0d6c2;
  --ok: #2e7d43;
  --radius: 8px;
  --shadow-box: 6px 6px 0 var(--kraft-2);
  --shadow-soft: 0 10px 30px rgba(22, 33, 46, .14);
  --maxw: 1140px;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 { line-height: 1.12; font-weight: 800; letter-spacing: -.01em; }
h1, h2 { text-transform: uppercase; font-weight: 900; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }

:focus-visible { outline: 3px solid var(--acc-text); outline-offset: 2px; }
.na-tmave :focus-visible, .nav :focus-visible, .mobile-menu :focus-visible, footer :focus-visible { outline-color: var(--amber); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 500;
  background: var(--ink); color: #fff; font-weight: 700;
  padding: 12px 18px; border-radius: 0 0 var(--radius) var(--radius);
  transition: top .2s ease;
}
.skip:focus { top: 0; }

.tape {
  display: inline-block;
  background: var(--amber);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 16px;
  transform: rotate(-1.4deg);
  box-shadow: 3px 3px 0 rgba(22, 33, 46, .14);
  margin-bottom: 16px;
}
.tape.rovne { transform: none; }

.stripes {
  height: 8px;
  background: repeating-linear-gradient(-45deg, var(--amber) 0 14px, var(--ink) 14px 28px);
}

.section { padding: 64px 0; }
.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section h2 { font-size: clamp(1.7rem, 5vw, 2.5rem); }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }
.bg-white { background: var(--white); }
.bg-darkVar { background: var(--ink); color: #eef1f4; }
.bg-darkVar .section-head p { color: rgba(238, 241, 244, .72); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-family: inherit;
  font-weight: 800;
  font-size: .98rem;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--amber); color: var(--ink); border-color: var(--ink); box-shadow: 4px 4px 0 rgba(22, 33, 46, .28); }
.btn-primary:hover { background: var(--amber-2); transform: translate(-1px, -1px); box-shadow: 6px 6px 0 rgba(22, 33, 46, .28); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .6); }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: .88rem; }

.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink); color: #fff;
  border-bottom: 3px solid var(--amber);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 11px; min-width: 0; }
.brand-mark { width: 44px; height: 44px; flex: 0 0 44px; }
.brand-name { font-size: 1.06rem; font-weight: 900; text-transform: uppercase; letter-spacing: .02em; line-height: 1.05; }
.brand-sub { display: block; font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--amber); font-weight: 700; margin-top: 2px; }
.nav-links { display: none; align-items: center; gap: 24px; }
.nav-links > a { color: rgba(255, 255, 255, .88); font-size: .95rem; font-weight: 600; padding: 6px 0; border-bottom: 2px solid transparent; }
.nav-links > a:hover { color: var(--amber); }
.nav-links > a[aria-current="page"] { color: var(--amber); border-bottom-color: var(--amber); }
.nav-tel { display: inline-flex; align-items: center; gap: 7px; font-weight: 800 !important; white-space: nowrap; }
.nav-tel svg { color: var(--amber); }
.nav-cta { border-width: 2px; }
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; justify-content: center; align-items: center;
  background: rgba(255, 255, 255, .12); border: 0; cursor: pointer;
  padding: 11px; border-radius: var(--radius); min-width: 44px; min-height: 44px;
}
.nav-toggle span { width: 22px; height: 2px; background: #fff; display: block; }

.mobile-menu {
  position: fixed; inset: 0 0 0 auto; z-index: 200;
  width: min(84vw, 330px);
  background: var(--ink);
  color: #fff;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  padding: 84px 28px 28px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: -20px 0 40px rgba(0, 0, 0, .3);
  border-left: 3px solid var(--amber);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu > a.btn-primary { color: var(--ink); }
.mobile-menu > a { color: #eef1f4; font-size: 1.12rem; font-weight: 700; padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.mobile-menu > a[aria-current="page"] { color: var(--amber); }
.mobile-menu .btn { margin-top: 20px; border-bottom: 0; }
.mm-tel { font-size: .95rem !important; color: var(--amber) !important; border-bottom: 0 !important; }
.menu-close { position: absolute; top: 20px; right: 20px; background: rgba(255, 255, 255, .12); border: 0; color: #fff; min-width: 44px; min-height: 44px; border-radius: var(--radius); font-size: 1.6rem; cursor: pointer; line-height: 1; }
.backdrop { position: fixed; inset: 0; background: rgba(10, 16, 23, .55); z-index: 150; opacity: 0; visibility: hidden; transition: .3s; }
.backdrop.open { opacity: 1; visibility: visible; }

.hero { position: relative; display: flex; align-items: center; color: #fff; overflow: hidden; min-height: 76vh; background: var(--ink); }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: linear-gradient(160deg, #223140, #16212e); }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(16, 24, 33, .78) 0%, rgba(16, 24, 33, .45) 45%, rgba(16, 24, 33, .85) 100%); }
.hero-inner { position: relative; z-index: 2; padding-block: 72px 64px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .3); padding: 7px 15px; border-radius: 999px; font-size: .82rem; font-weight: 700; margin-bottom: 20px; }
.hero-badge .starRow { color: var(--amber); letter-spacing: 2px; }
.hero h1 { font-size: clamp(2.1rem, 7.4vw, 3.9rem); max-width: 17ch; text-shadow: 0 2px 20px rgba(0, 0, 0, .4); }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero-lead { font-size: clamp(1.02rem, 3.2vw, 1.25rem); max-width: 52ch; margin-top: 18px; color: rgba(255, 255, 255, .93); text-shadow: 0 1px 12px rgba(0, 0, 0, .35); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 20px 40px; margin-top: 44px; }
.hero-fact strong { display: block; font-size: 1.9rem; font-weight: 900; line-height: 1; color: var(--amber); }
.hero-fact span { font-size: .85rem; opacity: .88; }

.page-head { background: var(--ink); color: #fff; padding: 52px 0 46px; }
.page-head h1 { font-size: clamp(1.9rem, 6vw, 3rem); max-width: 20ch; }
.page-head p { color: rgba(238, 241, 244, .78); margin-top: 14px; max-width: 62ch; font-size: 1.05rem; }
.drobky { font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.drobky a { border-bottom: 1px solid rgba(255, 176, 32, .5); }
.drobky a:hover { border-bottom-color: var(--amber); }
.drobky span[aria-hidden] { color: rgba(255, 255, 255, .4); margin: 0 6px; }

.benefits { background: var(--ink); color: #eef1f4; padding: 30px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 20px; }
.benefits-grid > * { min-width: 0; }
.benefit { display: flex; gap: 12px; align-items: flex-start; }
.benefit svg { flex: 0 0 28px; color: var(--amber); margin-top: 2px; }
.benefit h3 { font-size: .96rem; font-weight: 800; margin-bottom: 2px; }
.benefit p { font-size: .84rem; color: rgba(238, 241, 244, .68); line-height: 1.45; }

.services-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.services-grid > * { min-width: 0; }
.serviceItem-cardEl {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-box);
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.serviceItem-cardEl:hover { transform: translate(-2px, -2px); box-shadow: 9px 9px 0 var(--kraft-2); }
.serviceItem-photo { position: relative; aspect-ratio: 4 / 3; background: linear-gradient(160deg, var(--kraft), var(--kraft-2)); overflow: hidden; border-bottom: 2px solid var(--ink); }
.serviceItem-photo img { width: 100%; height: 100%; object-fit: cover; }
.serviceItem-tag { position: absolute; top: 12px; left: 12px; background: var(--amber); color: var(--ink); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; transform: rotate(-1.2deg); box-shadow: 2px 2px 0 rgba(22, 33, 46, .2); }
.serviceItem-bodyEl { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.serviceItem-bodyEl h3 { font-size: 1.28rem; }
.serviceItem-bodyEl p { color: var(--muted); font-size: .94rem; margin-top: 10px; }
.serviceItem-bodyEl .from-price { margin-top: 14px; font-weight: 800; color: var(--acc-text); font-size: .95rem; }
.serviceItem-bodyEl .linkEl { margin-top: auto; padding-top: 16px; font-weight: 800; color: var(--ink); display: inline-flex; align-items: center; gap: 7px; }
.serviceItem-bodyEl .linkEl:hover { color: var(--acc-text); }

.calc-wrapEl { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: start; }
.calc-wrapEl > * { min-width: 0; }
.calc-form {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-box);
  padding: 26px 22px;
}
.calc-form fieldset { border: 0; margin: 0 0 20px; padding: 0; }
.calc-form legend { font-weight: 800; font-size: .95rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .05em; }
.calc-form legend .stepBox-c { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; background: var(--amber); color: var(--ink); border-radius: 50%; font-size: .8rem; margin-right: 8px; vertical-align: -4px; }
.fieldEl { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.fieldEl:last-child { margin-bottom: 0; }
.fieldEl label { font-size: .86rem; font-weight: 700; }
.fieldEl .hintText { font-size: .78rem; color: var(--muted); font-weight: 500; }
.fieldEl input, .fieldEl select, .fieldEl textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 2px solid var(--line); border-radius: var(--radius);
  background: #fdfbf6; transition: border-color .2s, box-shadow .2s; width: 100%;
  min-width: 0; max-width: 100%;
}
.fieldEl input:focus, .fieldEl select:focus, .fieldEl textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(255, 176, 32, .4); }
.fieldEl-seriesName { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fieldEl-seriesName > * { min-width: 0; }
.tickBox { display: flex; align-items: flex-start; gap: 9px; font-size: .88rem; font-weight: 600; cursor: pointer; }
.tickBox input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--acc-text); flex: 0 0 19px; }
.switcher { display: flex; flex-wrap: wrap; gap: 10px; }
.switcher label {
  flex: 1 1 140px; display: flex; align-items: center; gap: 8px; cursor: pointer;
  border: 2px solid var(--line); border-radius: var(--radius); padding: 11px 13px;
  font-size: .9rem; font-weight: 700; background: #fdfbf6; transition: border-color .2s, background .2s;
  min-width: 0;
}
.switcher input { accent-color: var(--acc-text); width: 17px; height: 17px; flex: 0 0 17px; }
.switcher label:has(input:checked) { border-color: var(--ink); background: rgba(255, 176, 32, .18); }

.calc-result {
  background: var(--ink); color: #eef1f4;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(22, 33, 46, .22);
  padding: 26px 22px;
  position: sticky; top: 86px;
}
.calc-result h3 { font-size: 1.15rem; text-transform: uppercase; letter-spacing: .04em; display: flex; align-items: center; gap: 9px; }
.calc-result h3 svg { color: var(--amber); flex: 0 0 22px; }
.calc-tym { margin-top: 14px; background: rgba(255, 176, 32, .14); border: 1px solid rgba(255, 176, 32, .45); border-radius: var(--radius); padding: 12px 14px; font-size: .92rem; }
.calc-tym strong { color: var(--amber); }
.calc-breakdownBox { list-style: none; margin: 18px 0 0; }
.calc-breakdownBox li { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-bottom: 1px dashed rgba(255, 255, 255, .2); font-size: .9rem; }
.calc-breakdownBox li span:first-child { color: rgba(238, 241, 244, .82); min-width: 0; }
.calc-breakdownBox li span:last-child { font-weight: 800; white-space: nowrap; }
.calc-breakdownBox li.isZero span { color: rgba(238, 241, 244, .45); font-weight: 500; }
.calc-total { margin-top: 16px; padding-top: 14px; border-top: 2px solid var(--amber); }
.calc-total .caption { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(238, 241, 244, .65); font-weight: 700; }
.calc-total .priceVal { font-size: clamp(1.5rem, 5vw, 2rem); font-weight: 900; color: var(--amber); line-height: 1.15; }
.calc-note { margin-top: 12px; font-size: .8rem; color: rgba(238, 241, 244, .6); }
.calc-result .btn { margin-top: 18px; }

.stepGrid { counter-reset: stepBox; display: grid; grid-template-columns: 1fr; gap: 18px; }
.stepGrid > * { min-width: 0; }
.stepBox {
  background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow-box); padding: 22px 20px 22px 20px; position: relative;
}
.stepBox::before {
  counter-increment: stepBox; content: counter(stepBox);
  position: absolute; top: -14px; left: 16px;
  background: var(--amber); color: var(--ink); border: 2px solid var(--ink);
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.05rem;
}
.stepBox h3 { font-size: 1.08rem; margin-top: 8px; }
.stepBox p { color: var(--muted); font-size: .92rem; margin-top: 8px; }
.bg-darkVar .stepBox { background: var(--ink-2); border-color: rgba(255, 255, 255, .25); box-shadow: 6px 6px 0 rgba(0, 0, 0, .3); }
.bg-darkVar .stepBox h3 { color: #fff; }
.bg-darkVar .stepBox p { color: rgba(238, 241, 244, .7); }

.stepBox-big { display: grid; grid-template-columns: 1fr; gap: 10px 26px; padding: 26px 0; border-bottom: 2px dashed var(--line); }
.stepBox-big:last-of-type { border-bottom: 0; }
.stepBox-big .figure { font-size: 3rem; font-weight: 900; line-height: 1; color: var(--kraft-2); }
.stepBox-big h3 { font-size: 1.35rem; }
.stepBox-big p { color: var(--muted); margin-top: 10px; }
.stepBox-big ul { margin: 12px 0 0 0; padding-left: 20px; color: var(--muted); }
.stepBox-big li { margin-bottom: 5px; }

.about-grid { display: grid; grid-template-columns: 1fr; gap: 34px; align-items: center; }
.about-grid > * { min-width: 0; }
.about-photo { position: relative; }
.about-photo .ram { border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-box); aspect-ratio: 4 / 3; background: linear-gradient(160deg, var(--kraft), var(--kraft-2)); }
.about-photo .ram img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .tag {
  position: absolute; bottom: -16px; right: 10px;
  background: var(--ink); color: #fff; border-radius: var(--radius);
  padding: 14px 18px; box-shadow: var(--shadow-soft); text-align: center;
}
.about-photo .tag strong { display: block; font-size: 1.7rem; font-weight: 900; line-height: 1; color: var(--amber); }
.about-photo .tag span { font-size: .72rem; opacity: .85; letter-spacing: .04em; }
.about-text p { color: var(--muted); margin-top: 14px; font-size: 1.02rem; }
.about-figures { display: flex; flex-wrap: wrap; gap: 20px 34px; margin-top: 26px; }
.about-figure strong { display: block; font-size: 1.8rem; font-weight: 900; color: var(--acc-text); line-height: 1; }
.about-figure span { font-size: .85rem; color: var(--muted); }

.promise-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.promise-grid > * { min-width: 0; }
.promise {
  background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-box);
}
.starRow { color: var(--acc-text); letter-spacing: 3px; font-size: 1rem; margin-bottom: 12px; }
.promise blockquote { font-size: 1rem; line-height: 1.6; }
.promise-autor { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.promise-avatar { width: 44px; height: 44px; border-radius: 50%; flex: 0 0 44px; display: flex; align-items: center; justify-content: center; background: var(--ink); color: var(--amber); font-weight: 900; font-size: 1rem; }
.promise-autor strong { display: block; font-size: .95rem; }
.promise-autor span { font-size: .82rem; color: var(--muted); }

.area-chipList { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.area-chip { background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .28); border-radius: 999px; padding: 8px 16px; font-size: .9rem; font-weight: 700; }
.area-chip.mainCol { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.area-note { margin-top: 20px; font-size: .92rem; color: rgba(238, 241, 244, .75); display: flex; gap: 10px; align-items: flex-start; max-width: 60ch; }
.area-note svg { flex: 0 0 20px; color: var(--amber); margin-top: 3px; }

.tab-wrapEl { overflow-x: auto; border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow-box); background: var(--white); }
.priceList-tab { width: 100%; min-width: 480px; border-collapse: collapse; font-size: .95rem; }
.priceList-tab caption { text-align: left; font-weight: 800; font-size: 1.05rem; padding: 16px 18px 6px; }
.priceList-tab th, .priceList-tab td { padding: 12px 18px; text-align: left; border-top: 1px solid var(--line); }
.priceList-tab thead th { background: var(--ink); color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; border-top: 0; }
.priceList-tab td:last-child, .priceList-tab th:last-child { text-align: right; white-space: nowrap; font-weight: 700; }
.priceList-tab tbody tr:nth-child(even) { background: var(--paper); }
.priceList-note { margin-top: 14px; font-size: .86rem; color: var(--muted); }

.serviceItem-panelBlock { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: center; padding: 36px 0; border-bottom: 2px dashed var(--line); }
.serviceItem-panelBlock:last-of-type { border-bottom: 0; }
.serviceItem-panelBlock > * { min-width: 0; }
.serviceItem-panelBlock .photo { border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-box); aspect-ratio: 4 / 3; background: linear-gradient(160deg, var(--kraft), var(--kraft-2)); }
.serviceItem-panelBlock .photo img { width: 100%; height: 100%; object-fit: cover; }
.serviceItem-panelBlock h3 { font-size: 1.5rem; }
.serviceItem-panelBlock .text p { color: var(--muted); margin-top: 12px; }
.serviceItem-panelBlock .text ul { margin: 14px 0 0; padding-left: 0; list-style: none; display: grid; gap: 9px; }
.serviceItem-panelBlock .text li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; }
.serviceItem-panelBlock .text li svg { flex: 0 0 18px; color: var(--ok); margin-top: 4px; }
.serviceItem-panelBlock .from-price { margin-top: 16px; font-weight: 800; color: var(--acc-text); }

.checklist-cardEl {
  background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, .35); padding: 26px 22px;
  color: var(--ink);
}
.chk-headRow { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.chk-headRow h3 { font-size: 1.2rem; }
.chk-actionName { display: flex; gap: 10px; flex-wrap: wrap; }
.chk-progress { font-weight: 800; font-size: .9rem; color: var(--acc-text); }
.chk-bar { height: 10px; background: var(--kraft); border-radius: 999px; overflow: hidden; margin: 12px 0 20px; border: 1px solid var(--line); }
.chk-bar-fill { height: 100%; width: 0; background: repeating-linear-gradient(-45deg, var(--amber) 0 10px, var(--amber-2) 10px 20px); transition: width .3s ease; }
.chk-group { margin-bottom: 22px; }
.chk-group:last-child { margin-bottom: 0; }
.chk-group h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); border-bottom: 2px solid var(--line); padding-bottom: 7px; margin-bottom: 10px; }
.chk-group ul { list-style: none; }
.chk-group li { border-bottom: 1px dashed var(--line); }
.chk-group li:last-child { border-bottom: 0; }
.chk-row { display: flex; gap: 11px; align-items: flex-start; padding: 10px 4px; cursor: pointer; font-size: .96rem; }
.chk-row:hover { background: rgba(255, 176, 32, .1); }
.chk-row input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--acc-text); flex: 0 0 20px; }
.chk-row input:checked ~ .chk-text { text-decoration: line-through; color: var(--muted); }

.faq { display: grid; gap: 12px; }
.faq details { background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: 4px 4px 0 var(--kraft-2); overflow: hidden; }
.faq summary { padding: 16px 18px; font-weight: 800; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; font-weight: 900; color: var(--acc-text); flex: 0 0 auto; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 18px 16px; color: var(--muted); font-size: .95rem; }

.enquiry-wrapEl { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
.enquiry-wrapEl > * { min-width: 0; }
.contactId-listEl { list-style: none; margin-top: 24px; display: grid; gap: 16px; }
.contactId-listEl li { display: flex; gap: 12px; align-items: flex-start; }
.contactId-listEl svg { flex: 0 0 24px; color: var(--acc-text); margin-top: 3px; }
.contactId-listEl strong { display: block; font-size: .94rem; }
.contactId-listEl span, .contactId-listEl a { font-size: .92rem; color: var(--muted); }
.contactId-listEl a { font-weight: 700; color: var(--ink); }
.contactId-listEl a:hover { color: var(--acc-text); }
.form-cardEl { background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-box); }
.form-cardEl h3 { font-size: 1.35rem; margin-bottom: 4px; }
.form-cardEl .form-pod { color: var(--muted); font-size: .93rem; margin-bottom: 20px; }
.form-seriesName { display: grid; grid-template-columns: 1fr; gap: 0 14px; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 8px; }
.form-noticeBox { display: none; margin-top: 16px; padding: 14px 16px; border-radius: var(--radius); background: rgba(255, 176, 32, .16); border: 2px solid var(--amber); font-size: .94rem; }
.form-noticeBox.revealIt { display: block; }
.req { color: #b23a2e; }

.cta-band { background: var(--ink); color: #fff; }
.cta-band-inner { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; padding: 40px 0; }
.cta-band h2 { font-size: clamp(1.4rem, 4.4vw, 2rem); max-width: 22ch; }
.cta-band p { color: rgba(238, 241, 244, .72); margin-top: 8px; max-width: 52ch; }

.toast { position: fixed; left: 50%; bottom: 90px; transform: translate(-50%, 200%); background: var(--ink); color: #fff; padding: 13px 22px; border-radius: var(--radius); border: 2px solid var(--amber); box-shadow: var(--shadow-soft); font-size: .92rem; font-weight: 700; z-index: 250; display: flex; align-items: center; gap: 9px; transition: transform .35s cubic-bezier(.4, 0, .2, 1); max-width: 90vw; }
.toast.revealIt { transform: translate(-50%, 0); }
.toast svg { color: var(--amber); flex: 0 0 18px; }

footer { background: var(--ink); color: rgba(238, 241, 244, .8); padding: 0 0 120px; }
footer .wrap { padding-top: 50px; }
.foot-disclaimer { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .16); border-radius: var(--radius); padding: 14px 18px; margin-bottom: 30px; font-size: .86rem; display: flex; gap: 10px; align-items: flex-start; }
.foot-disclaimer svg { flex: 0 0 20px; color: var(--amber); margin-top: 2px; }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
.foot-grid > * { min-width: 0; }
.foot-brand .brand-name { color: #fff; }
.foot-brand p { margin-top: 14px; font-size: .92rem; max-width: 44ch; }
.foot-insurance { display: inline-flex; align-items: center; gap: 9px; margin-top: 16px; font-size: .84rem; background: rgba(255, 176, 32, .12); border: 1px solid rgba(255, 176, 32, .4); border-radius: var(--radius); padding: 9px 13px; }
.foot-insurance svg { color: var(--amber); flex: 0 0 18px; }
.foot-col h3 { color: #fff; font-size: .95rem; margin-bottom: 14px; letter-spacing: .05em; text-transform: uppercase; }
.foot-col a, .foot-col p { display: block; font-size: .92rem; padding: 4px 0; color: rgba(238, 241, 244, .78); }
.foot-col a:hover { color: var(--amber); }
.foot-bottom { border-top: 1px solid rgba(255, 255, 255, .16); padding-top: 22px; font-size: .84rem; color: rgba(238, 241, 244, .6); }

.callbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--ink); color: #fff;
  display: grid; grid-template-columns: 1fr 1fr;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, .22);
  border-top: 2px solid var(--amber);
}
.callbar a { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 8px; font-weight: 800; font-size: .95rem; }
.callbar a.callNow { background: var(--amber); color: var(--ink); }
.callbar a svg { width: 19px; height: 19px; flex: 0 0 19px; }

@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; }
}

@media (min-width: 620px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
  .stepGrid { grid-template-columns: repeat(2, 1fr); }
  .form-seriesName { grid-template-columns: 1fr 1fr; }
  .stepBox-big { grid-template-columns: 90px 1fr; }
  .stepBox-big .figure { font-size: 3.6rem; }
}

@media (min-width: 900px) {
  .section { padding: 88px 0; }
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .stepGrid { grid-template-columns: repeat(5, 1fr); }
  .calc-wrapEl { grid-template-columns: 1.15fr .85fr; }
  .enquiry-wrapEl { grid-template-columns: .9fr 1.1fr; }
  .about-grid { grid-template-columns: 1fr 1.1fr; }
  .serviceItem-panelBlock { grid-template-columns: 1fr 1.2fr; padding: 44px 0; }
  .serviceItem-panelBlock.obracene .photo { order: 2; }
  .callbar { display: none; }
  footer { padding-bottom: 50px; }
  .foot-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

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

@media print {
  .nav, .callbar, .toast, .backdrop, .mobile-menu, .cta-band, footer .foot-disclaimer { display: none !important; }
  body { background: #fff; }
}

.hero-badge .starRow { color: #FFCE73; }
.stepBox-big .figure { color: #938A78; }
.stepBox-big p { color: #EAECED; }
.nav-links .btn.btn-primary.btn-sm.nav-cta { color: var(--ink); }
.benefit h3 { color: #757778; }
.wrap em { color: #FFBB3E; }
