:root {
  --bg: #0b1220;
  --panel: #0f1a33;
  --panel2: #0b1630;
  --card: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: #eaf2ff;
  --muted: rgba(234, 242, 255, 0.75);
  --accent: #ffb020;
  --accent2: #ff5c5c;
  --ok: #27d17f;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  --shadow2: 0 14px 40px rgba(0, 0, 0, 0.35);
  --r: 18px;

  /* spacing scale */
  --gap-1: 10px;
  --gap-2: 14px;
  --gap-3: 18px;
  --pad-1: 12px;
  --pad-2: 14px;
  --pad-3: 16px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
      overflow-x: hidden;
}
body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    "Noto Sans",
    "Helvetica Neue",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      1200px 600px at 12% -10%,
      rgba(255, 176, 32, 0.16),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 90% 10%,
      rgba(255, 92, 92, 0.14),
      transparent 62%
    ),
    radial-gradient(
      900px 520px at 40% 110%,
      rgba(58, 175, 255, 0.14),
      transparent 60%
    ),
    var(--bg);
  overflow-x: hidden;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ---------- Topbar ---------- */
.topbar {
  background: linear-gradient(
    180deg,
    rgba(255, 176, 32, 0.1),
    rgba(255, 255, 255, 0.02)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}
.topbar__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(234, 242, 255, 0.92);
  font-size: 13px;
  letter-spacing: 0.2px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 176, 32, 0.18);
}
.topbar__link {
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.topbar__link:hover {
  background: rgba(255, 255, 255, 0.07);
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(11, 18, 32, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header--compact {
  background: rgba(11, 18, 32, 0.72);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}
.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(255, 176, 32, 0.18),
    rgba(255, 92, 92, 0.12)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow2);
  flex: 0 0 auto;
}
.brand__svg {
  width: 22px;
  height: 22px;
  color: var(--text);
}
.brand__name {
  font-weight: 900;
  letter-spacing: 0.4px;
}
.brand__sub {
  display: block;
  font-size: 12px;
  color: rgba(234, 242, 255, 0.7);
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav__link {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 14px;
  color: rgba(234, 242, 255, 0.85);
  border: 1px solid transparent;
  transition: 0.2s ease;
  white-space: nowrap;
}
.nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}
.nav__link.is-active {
  background: rgba(255, 176, 32, 0.12);
  border-color: rgba(255, 176, 32, 0.3);
  color: #fff;
}

.header__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ---------- Buttons ---------- */
.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 16px;
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    opacity 0.18s ease;
  user-select: none;
  line-height: 1;
}
.btn--lg {
  padding: 14px 16px;
  border-radius: 18px;
}
.btn--primary {
  color: #0b1220;
  background: linear-gradient(135deg, var(--accent), #ffd37a);
  box-shadow: 0 18px 48px rgba(255, 176, 32, 0.22);
}
.btn--primary:hover {
  transform: translateY(-1px);
  opacity: 0.98;
}
.btn--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 4px auto;
  border-radius: 2px;
  opacity: 0.9;
}

/* ---------- Icons (mask) ---------- */
.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  background: currentColor;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  opacity: 0.95;
}
/* (залишай всі твої .i-... як було — я не чіпаю, бо вони вже є в файлі) */

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 34px 0 26px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: stretch;
  position: relative;
}
.hero__bg {
  position: absolute;
  inset: -120px -40px auto -40px;
  height: 560px;
  background:
    radial-gradient(
      900px 420px at 20% 20%,
      rgba(255, 176, 32, 0.22),
      transparent 60%
    ),
    radial-gradient(
      800px 420px at 90% 25%,
      rgba(255, 92, 92, 0.18),
      transparent 62%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 60%);
  pointer-events: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(234, 242, 255, 0.92);
  font-size: 13px;
  margin-bottom: 14px;
}
.hero__title {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: 0.2px;
}
.grad {
  background: linear-gradient(135deg, #ffd37a, #ff5c5c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__text {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 60ch;
}

.hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 16px;
}
.hero__stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.stat {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  min-width: 160px;
}
.stat__n {
  font-weight: 900;
  font-size: 18px;
}
.stat__t {
  color: rgba(234, 242, 255, 0.72);
  font-size: 12px;
  margin-top: 2px;
}

.hero__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-content: start;
  padding-top: 18px;
}
.glass {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-shadow: var(--shadow2);
}
.glass__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 176, 32, 0.12);
  border: 1px solid rgba(255, 176, 32, 0.25);
  margin-bottom: 10px;
}
.glass h3 {
  margin: 0 0 6px;
  font-size: 16px;
}
.glass p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Sections ---------- */
.section {
  padding: 54px 0;
}
.section--alt {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.section__head {
  max-width: 760px;
  margin: 0 0 18px;
}
.section__head h2 {
  margin: 0 0 6px;
  font-size: 28px;
}
.section__head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.section__foot {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow2);
}
.feature__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.feature__badge {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 92, 92, 0.12);
  border: 1px solid rgba(255, 92, 92, 0.25);
  font-weight: 900;
}
.feature h3 {
  margin: 0 0 6px;
}
.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.svc {
  display: block;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow2);
}
.svc__img {
  height: 170px;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
}
.svc__body {
  padding: 14px;
}
.svc__body h3 {
  margin: 0 0 6px;
}
.svc__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.svc__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-weight: 900;
  color: #fff;
}
.arrow {
  opacity: 0.9;
}

/* ---------- CTA ---------- */
.cta {
  padding: 34px 0 48px;
}
.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(
      600px 260px at 20% 20%,
      rgba(255, 176, 32, 0.18),
      transparent 60%
    ),
    radial-gradient(
      600px 260px at 80% 20%,
      rgba(255, 92, 92, 0.14),
      transparent 60%
    ),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}
.cta__text h2 {
  margin: 0 0 6px;
}
.cta__text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  padding: 34px 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.12);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr 1.2fr;
  gap: 14px;
  padding-bottom: 18px;
}
.footer__title {
  font-weight: 900;
  margin-bottom: 10px;
}
.footer__name {
  font-weight: 900;
}
.footer__sub {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}
.footer__text {
  color: var(--muted);
  line-height: 1.6;
  margin: 12px 0 0;
}
.footer__link {
  display: block;
  text-decoration: none;
  color: rgba(234, 242, 255, 0.86);
  padding: 6px 0;
}
.footer__link:hover {
  color: #fff;
}
.footer__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(234, 242, 255, 0.86);
  padding: 6px 0;
  text-decoration: none;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(234, 242, 255, 0.72);
  font-size: 13px;
}
.to-top {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  text-decoration: none;
}
.to-top:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- Pages ---------- */
.page {
  padding-bottom: 12px;
}
.pagehero {
  padding: 26px 0 6px;
}
.pagehero__inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 14px;
  align-items: stretch;
}
.pagehero h1 {
  margin: 6px 0 10px;
  font-size: 34px;
  line-height: 1.1;
}
.pagehero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.pagehero__media {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-size: cover;
  background-position: center;
  min-height: 240px;
  box-shadow: var(--shadow2);
}
.crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(234, 242, 255, 0.7);
  font-size: 13px;
}
.crumbs a {
  text-decoration: none;
}
.crumbs a:hover {
  color: #fff;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow2);
}
.h3 {
  margin: 0 0 10px;
}
.muted {
  color: var(--muted);
}
.steps {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(234, 242, 255, 0.86);
  line-height: 1.75;
}
.checks {
  display: grid;
  gap: 10px;
}
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(234, 242, 255, 0.86);
}
.note {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 176, 32, 0.22);
  background: rgba(255, 176, 32, 0.08);
}
.mini {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(234, 242, 255, 0.82);
  line-height: 1.75;
}
.mini li {
  margin: 2px 0;
}

.contactlist {
  display: grid;
  gap: 12px;
}
.contactitem {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}
.contactitem--link:hover {
  background: rgba(255, 255, 255, 0.08);
}
.mapbox {
  margin-top: 12px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 260px;
}
.mapbox iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.form {
  margin-top: 10px;
  display: grid;
  gap: 12px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field {
  display: grid;
  gap: 8px;
}
.field span {
  font-weight: 800;
  font-size: 13px;
  color: rgba(234, 242, 255, 0.86);
}
input,
select,
textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 12px 12px;
  color: var(--text);
  outline: none;
  font-size: 16px; /* важливо для iOS щоб не робив zoom */
}
textarea {
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 176, 32, 0.45);
  box-shadow: 0 0 0 6px rgba(255, 176, 32, 0.1);
}
.checkline {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(234, 242, 255, 0.82);
  font-size: 13px;
}
.checkline a {
  color: #fff;
}
.form__note {
  min-height: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

/* ---------- Docs ---------- */
.doc {
  padding: 26px 0 26px;
}
.doc__inner {
  max-width: 920px;
}
.doc__card {
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px;
  line-height: 1.7;
  color: rgba(234, 242, 255, 0.86);
}
.doc__card h2 {
  margin: 14px 0 8px;
}
.doc__card ul {
  margin: 8px 0 0;
  padding-left: 18px;
}
.doc__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* ---------- Cookie ---------- */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: none;
  z-index: 80;
}
.cookie.is-show {
  display: block;
  animation: pop 0.22s ease-out;
}
.cookie__inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 14px;
  border-radius: 18px;
  background: rgba(15, 26, 51, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.cookie__text {
  max-width: 620px;
  color: rgba(234, 242, 255, 0.86);
  line-height: 1.45;
}
.cookie__text strong {
  color: #fff;
}
.cookie__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 90;
}
.modal.is-show {
  display: block;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}
.modal__panel {
  position: relative;
  width: min(560px, calc(100% - 32px));
  margin: 10vh auto 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(15, 26, 51, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.modal__title {
  font-weight: 900;
}
.modal__sub {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}
.modal__close {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.modal__body {
  padding: 12px 14px;
  display: grid;
  gap: 10px;
}
.modal__foot {
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.switch {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}
.switch input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.switch__ui {
  width: 44px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.22);
  position: relative;
}
.switch__ui::after {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  transition: 0.18s ease;
}
.switch input:checked + .switch__ui {
  background: rgba(39, 209, 127, 0.18);
  border-color: rgba(39, 209, 127, 0.35);
}
.switch input:checked + .switch__ui::after {
  left: 19px;
  background: #fff;
}
.switch small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 600;
}

/* ---------- Mobile nav ---------- */
.mnav {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 70;
}
.mnav.is-show {
  display: block;
}
.mnav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.mnav__panel {
  position: absolute;
  right: 14px;
  top: 14px;
  bottom: 14px;
  width: min(380px, calc(100% - 28px));
  background: rgba(15, 26, 51, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mnav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mnav__title {
  font-weight: 900;
}
.mnav__close {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
.mnav__link {
  text-decoration: none;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(234, 242, 255, 0.9);
}
.mnav__link:hover {
  background: rgba(255, 255, 255, 0.08);
}
.mnav__link.is-active {
  border-color: rgba(255, 176, 32, 0.35);
  background: rgba(255, 176, 32, 0.12);
}
.mnav__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 6px 0;
}
.mnav__note {
  color: var(--muted);
  font-size: 13px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---------- Animations ---------- */
@keyframes pop {
  from {
    transform: translateY(8px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cardlift {
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}
.cardlift:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

/* =========================================================
   ✅ MOBILE / TABLET ADAPTATION (власне головне)
   ========================================================= */

/* Tablet */
@media (max-width: 980px) {
  .container {
    padding: 0 16px;
  }
  .nav {
    display: none;
  }
  .burger {
    display: inline-block;
  }

  .header__inner {
    gap: 10px;
  }
  .brand {
    min-width: auto;
  }
  .brand__sub {
    display: none;
  } /* щоб не ламало шапку */

  .hero {
    padding: 22px 0 16px;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero__cards {
    padding-top: 0;
  }

  .section {
    padding: 38px 0;
  }
  .section__head h2 {
    font-size: 24px;
  }

  .grid3 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .grid2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .svc__img {
    height: 190px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .pagehero__inner {
    grid-template-columns: 1fr;
  }
  .pagehero__media {
    min-height: 210px;
  }
}

/* Phone */
@media (max-width: 560px) {
  .topbar__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .topbar__badge {
    font-size: 12px;
  }
  .topbar__link {
    justify-content: center;
  }

  .header__inner {
    padding: 12px 0;
  }
  .brand__mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
  .brand__name {
    font-size: 15px;
  }
  .header__cta .btn {
    display: none;
  } /* лишаємо бургер, щоб не тиснуло */
  .header__cta .burger {
    display: inline-block;
  }

  .pill {
    font-size: 12px;
    padding: 9px 11px;
  }
  .hero__title {
    font-size: 30px;
  }
  .hero__text {
    font-size: 15px;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .hero__stats {
    gap: 10px;
  }
  .stat {
    min-width: unset;
    flex: 1;
  }

  .glass {
    padding: 14px;
  }
  .feature {
    padding: 14px;
  }
  .card {
    padding: 14px;
  }

  .svc__img {
    height: 170px;
  }

  .cta {
    padding: 22px 0 28px;
  }
  .cta__inner {
    padding: 14px;
  }
  .cta__actions {
    width: 100%;
  }
  .cta__actions .btn {
    flex: 1;
  }

  .pagehero {
    padding: 18px 0 6px;
  }
  .pagehero h1 {
    font-size: 28px;
  }
  .pagehero__media {
    min-height: 190px;
  }

  .form__row {
    grid-template-columns: 1fr;
  }
  .mapbox {
    height: 220px;
  }

  .cookie {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .cookie__inner {
    padding: 12px;
  }
  .cookie__actions {
    width: 100%;
  }
  .cookie__actions .btn {
    flex: 1;
  }

  .footer {
    padding: 26px 0 14px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .to-top {
    align-self: flex-end;
  }
}

/* Small phones */
@media (max-width: 360px) {
  .hero__title {
    font-size: 28px;
  }
  .btn {
    padding: 11px 12px;
  }
  .btn--lg {
    padding: 13px 14px;
  }
}
