:root {
  --font-main: "Inter", "Segoe UI", Tahoma, Arial, sans-serif;
  --bg: #0f172a;
  --bg-soft: #e8edf4;
  --surface: #ffffff;
  --surface-2: #f4f7fb;
  --text: #0b1220;
  --text-soft: #425066;
  --line: #d6deea;
  --accent: #c97b2a;
  --accent-strong: #a35f18;
  --brand: #12325b;
  --brand-2: #1f4c84;
  --ok: #1f9d62;
  --danger: #b94242;
  --shadow: 0 20px 40px rgba(8, 20, 40, 0.12);
}

:root[data-theme="dark"] {
  --bg: #0b1220;
  --bg-soft: #121c30;
  --surface: #101b2f;
  --surface-2: #15233b;
  --text: #ebf0fb;
  --text-soft: #b1bfd6;
  --line: #2b3a54;
  --accent: #e5a159;
  --accent-strong: #ce8333;
  --brand: #244b80;
  --brand-2: #2d5f9f;
  --shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-soft) 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input, textarea, button, select { font-family: inherit; }
.container { min-height: 100%; }
.content--flush { padding: 0; }

.topbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: transform .3s ease, box-shadow .25s ease;
}
.topbar--locked { position: sticky; }
.topbar--hide {
  transform: translateY(calc(-100% - 2px));
}
.topbar--transparent {
  background: transparent;
}
.topbar--solid,
.topbar--menu-open {
  box-shadow: 0 8px 22px rgba(8, 20, 40, 0.16);
}
.topbar__ribbon {
  background: #2dcfdd;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.topbar__ribbonInner {
  max-width: 1220px;
  margin: 0 auto;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f4fff8;
  font-size: clamp(13px, 1.3vw, 17px);
  font-weight: 500;
  letter-spacing: .02em;
  clip-path: polygon(0 0, 100% 0, calc(100% - 42px) 100%, 42px 100%);
}
.topbar__shell {
  background: #f6f7f6;
  border-bottom: 3px solid #55a92e;
}
.topbar__shell::before {
  content: "";
  display: block;
  height: 1px;
  background: rgba(12, 34, 68, 0.08);
}
.topbar__inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 9px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "brand nav right";
  align-items: center;
  gap: 20px;
}
.topbar__brand { grid-area: brand; display: inline-flex; align-items: center; }
.topbar__logo { height: 52px; width: auto; }
.topbar__nav {
  grid-area: nav;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.8vw, 24px);
  border-left: 1px solid #d9dadb;
  padding-left: clamp(18px, 2vw, 28px);
}
.topbar__link {
  font-size: var(--header-font-size);
  font-weight: 700;
  letter-spacing: .02em;
  color: #8f8f8f;
  padding: 8px 4px;
  border-bottom: 3px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar__link:hover,
.topbar__link.active {
  color: #2d2d2d;
  border-bottom-color: #55a92e;
}
.topbar__right { grid-area: right; display: flex; gap: 8px; align-items: center; }

.topbar--logo-center .topbar__inner {
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "nav brand right";
}
.topbar--logo-right .topbar__inner {
  grid-template-columns: 1fr auto auto;
  grid-template-areas: "nav right brand";
}

.topbar__theme,
.topbar__langCurrent {
  height: 38px;
  border-radius: 10px;
  border: 1px solid #d8d8d8;
  background: #ffffff;
  color: #4a4a4a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
}
.topbar__theme { width: 38px; justify-content: center; padding: 0; cursor: pointer; }
.topbar__icon { width: 18px; height: 18px; }
.topbar__icon--sun { display: none; }
:root[data-theme="light"] .topbar__icon--sun { display: block; }
:root[data-theme="light"] .topbar__icon--moon { display: none; }

.topbar__langs { position: relative; }
.topbar__langCurrent { cursor: pointer; min-width: 72px; justify-content: center; }
.topbar__langCode { font-weight: 700; font-size: 12px; }
.topbar__flagImg { width: 16px; height: 12px; border-radius: 2px; object-fit: cover; }
.topbar__langMenu {
  position: absolute;
  right: 0;
  top: 44px;
  min-width: 130px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid #d8d8d8;
  background: var(--surface);
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: .2s ease;
}
.topbar__langs.is-open .topbar__langMenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.topbar__langBtn {
  border: 1px solid #dedede;
  background: #f6f7f8;
  color: #343a46;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  cursor: pointer;
}
.topbar__langBtn.is-active { border-color: var(--brand-2); }

.topbar__burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #d8d8d8;
  background: #fff;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.topbar__burger span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}
.topbar--menu-open .topbar__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.topbar--menu-open .topbar__burger span:nth-child(2) { opacity: 0; }
.topbar--menu-open .topbar__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 0;
  background: rgba(4, 12, 24, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.drawer.is-open { opacity: 1; pointer-events: auto; }
.drawer__panel {
  width: min(360px, 86vw);
  margin-left: auto;
  height: 100%;
  background: var(--surface);
  border-left: 1px solid var(--line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.drawer__head { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-soft); }
.drawer__links { display: grid; gap: 8px; }
.drawer__link {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  background: var(--surface-2);
  font-weight: 600;
}
.drawer__link.active { border-color: var(--brand-2); }
.drawer__footer { margin-top: auto; display: grid; gap: 8px; }
.drawer__themeToggle,
.drawer__btn,
.drawer__langBtn {
  border: 1px solid var(--line);
  border-radius: 10px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--surface-2);
  color: var(--text);
}
.drawer__langs { display: grid; gap: 6px; }
.drawer__flagImg { width: 16px; height: 12px; border-radius: 2px; object-fit: cover; }
.drawer__btn { background: var(--brand-2); color: #fff; border-color: var(--brand-2); }

.page-titlebar {
  margin-top: 0;
  padding: clamp(48px, 6vw, 78px) 20px 36px;
  background: linear-gradient(135deg, var(--brand) 0%, #2f5e97 100%);
  color: #fff;
}
.page-titlebar__inner { max-width: 1220px; margin: 0 auto; }
.page-titlebar__title { margin: 0; font-size: clamp(28px, 4vw, 44px); }
.page-titlebar__desc { margin: 10px 0 0; max-width: 66ch; color: rgba(255, 255, 255, 0.88); }

.heroSlider {
  margin-top: 0;
  position: relative;
  min-height: 82vh;
  background: #081124;
  color: #fff;
}
.heroSlider__track,
.heroSlide { min-height: 82vh; }
.heroSlide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .65s ease, transform .8s ease;
  background-image: var(--slide-image);
  background-size: cover;
  background-position: center;
}
.heroSlide.is-active { opacity: 1; transform: scale(1); z-index: 2; }
.heroSlide__content {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  margin: 0 auto;
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 20px 120px;
}
.heroSlide__badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 7px 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.heroSlide__title {
  margin: 18px 0 12px;
  max-width: 16ch;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.04;
}
.heroSlide__desc { max-width: 54ch; color: rgba(255, 255, 255, 0.88); }
.heroSlide__buttons { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.heroSlide__btn {
  min-height: 44px;
  border-radius: 11px;
  padding: 0 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}
.heroSlide__btn--primary { background: var(--accent); color: #121212; }
.heroSlide__btn--secondary { border: 1px solid rgba(255, 255, 255, 0.45); color: #fff; }

.heroSlider__bottom {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 22px;
  z-index: 3;
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}
.heroSlider__counter { font-weight: 700; letter-spacing: .06em; }
.heroSlider__progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  overflow: hidden;
}
.heroSlider__bar {
  height: 100%;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: #fff;
}
.heroSlider__arrows { display: flex; gap: 8px; }
.heroSlider__arrow {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.home-stats,
.home-brand-hero,
.home-services-premium,
.home-blog-premium,
.blog-index,
.blog-detail,
.home-trust-premium,
.home-process-premium,
.home-cta-premium,
.home-pdf-cta,
.about-premium,
.services-premium,
.references-premium,
.contact-premium,
.error404 {
  padding: clamp(44px, 6vw, 78px) 20px;
}

.home-stats__inner,
.home-brand-hero__container,
.about-premium__container,
.services-premium__container,
.references-premium__container,
.contact-premium__inner,
.error404__inner {
  max-width: 1220px;
  margin: 0 auto;
}

.home-stats__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.home-stats__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.home-stats__card h3 { margin: 0; font-size: 16px; }
.home-stats__num { margin: 10px 0 8px; font-size: clamp(24px, 4vw, 36px); font-weight: 700; color: var(--brand-2); }
.home-stats__card p { margin: 0; color: var(--text-soft); font-size: 14px; }

.home-services-premium__container {
  max-width: 1220px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(20px, 3.2vw, 34px);
  background:
    radial-gradient(760px 280px at 100% -20%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 60%),
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 93%, #fff 7%), color-mix(in srgb, var(--surface-2) 90%, transparent));
  box-shadow: var(--shadow);
}
.home-services-premium {
  margin-top: clamp(18px, 2.8vw, 34px);
}
.home-services-premium__head {
  max-width: 860px;
}
.home-services-premium__eyebrow {
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--brand-2) 26%, var(--line));
  border-radius: 999px;
  color: var(--brand-2);
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-services-premium__title { margin: 12px 0 10px; font-size: clamp(30px, 4.2vw, 52px); line-height: 1.06; }
.home-services-premium__lead { margin: 0; color: var(--text-soft); line-height: 1.68; }
.home-services-premium__grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.home-services-premium__card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: color-mix(in srgb, var(--surface) 88%, #fff 12%);
}
.home-services-premium__card i {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--brand) 14%, var(--surface));
  color: var(--brand-2);
}
.home-services-premium__card h3 { margin: 12px 0 8px; font-size: 18px; }
.home-services-premium__card p { margin: 0; color: var(--text-soft); line-height: 1.62; }
.home-services-premium__cta { margin-top: 18px; }
.home-services-premium__btn,
.references-premium__btn,
.contact-premium__submit,
.about-premium__btn,
.error404__btn,
.home-pdf-cta__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 10px;
  padding: 0 16px;
  border: 1px solid var(--brand-2);
  background: var(--brand-2);
  color: #fff;
  font-weight: 600;
}
.home-blog-premium__container {
  max-width: 1220px;
  margin: 0 auto;
}
.home-blog-premium__head { max-width: 760px; }
.home-blog-premium__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--brand-2) 26%, var(--line));
  color: var(--brand-2);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-blog-premium__title { margin: 12px 0 10px; font-size: clamp(28px, 4vw, 44px); line-height: 1.08; }
.home-blog-premium__lead { margin: 0; color: var(--text-soft); line-height: 1.68; }
.home-blog-premium__grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.home-blog-premium__card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.home-blog-premium__image {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.home-blog-premium__content { padding: 14px; }
.home-blog-premium__date {
  display: inline-flex;
  color: var(--brand-2);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.home-blog-premium__content h3 { margin: 10px 0 8px; font-size: 20px; line-height: 1.2; }
.home-blog-premium__content p { margin: 0; color: var(--text-soft); line-height: 1.6; }
.home-blog-premium__link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 10px;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 86%, var(--brand) 14%);
  color: var(--brand-2);
  font-weight: 600;
}
.blog-index__container,
.blog-detail__container {
  max-width: 1220px;
  margin: 0 auto;
}
.blog-index__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.blog-index__card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.blog-index__imageLink { display: block; }
.blog-index__image { width: 100%; height: 210px; object-fit: cover; }
.blog-index__content { padding: 14px; }
.blog-index__date {
  display: inline-flex;
  color: var(--brand-2);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.blog-index__content h2 { margin: 10px 0 8px; font-size: 22px; line-height: 1.2; }
.blog-index__content p { margin: 0; color: var(--text-soft); line-height: 1.6; }
.blog-index__more {
  margin-top: 12px;
  min-height: 38px;
  border-radius: 10px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 86%, var(--brand) 14%);
  color: var(--brand-2);
  font-weight: 600;
}
.blog-detail__container {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.blog-detail__hero { width: 100%; max-height: 460px; object-fit: cover; }
.blog-detail__content { padding: clamp(18px, 3vw, 30px); }
.blog-detail__date {
  display: inline-flex;
  color: var(--brand-2);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.blog-detail__title { margin: 10px 0 12px; font-size: clamp(28px, 4vw, 46px); line-height: 1.08; }
.blog-detail__lead { margin: 0; color: var(--text-soft); line-height: 1.72; }
.blog-detail__body { margin-top: 14px; display: grid; gap: 10px; }
.blog-detail__body p { margin: 0; color: var(--text-soft); line-height: 1.72; }
.blog-detail__actions { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }
.blog-detail__btn {
  min-height: 42px;
  border-radius: 10px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-2);
  background: var(--brand-2);
  color: #fff;
  font-weight: 600;
}
.blog-detail__btn--ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line);
}
.home-trust-premium__container,
.home-process-premium__container {
  max-width: 1220px;
  margin: 0 auto;
}
.home-trust-premium__intro {
  max-width: 780px;
}
.home-trust-premium__eyebrow,
.home-process-premium__eyebrow,
.home-cta-premium__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--brand-2) 26%, var(--line));
  color: var(--brand-2);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-trust-premium__title,
.home-process-premium__title,
.home-cta-premium__title { margin: 12px 0 10px; font-size: clamp(28px, 4vw, 44px); line-height: 1.08; }
.home-trust-premium__lead,
.home-cta-premium__text { margin: 0; color: var(--text-soft); line-height: 1.68; }
.home-trust-premium__grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.home-trust-premium__card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 16px;
}
.home-trust-premium__card i {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--brand) 14%, var(--surface));
  color: var(--brand-2);
}
.home-trust-premium__card h3 { margin: 12px 0 8px; font-size: 19px; }
.home-trust-premium__card p { margin: 0; color: var(--text-soft); line-height: 1.62; }
.home-process-premium__head {
  max-width: 760px;
}
.home-process-premium__steps {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.home-process-premium__steps article {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface) 90%, #fff 10%);
  padding: 16px;
}
.home-process-premium__steps strong {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--brand-2) 16%, var(--surface));
  color: var(--brand-2);
  font-size: 13px;
}
.home-process-premium__steps h3 { margin: 12px 0 8px; font-size: 18px; line-height: 1.25; }
.home-process-premium__steps p { margin: 0; color: var(--text-soft); line-height: 1.62; }
.home-cta-premium__inner {
  max-width: 1220px;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: clamp(20px, 3vw, 34px);
  background:
    radial-gradient(900px 280px at 100% -30%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 60%),
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 78%, var(--brand) 22%), color-mix(in srgb, var(--surface-2) 82%, transparent));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.home-cta-premium__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.home-cta-premium__btn {
  min-height: 42px;
  border-radius: 10px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: 1px solid transparent;
}
.home-cta-premium__btn--primary {
  background: var(--brand-2);
  border-color: var(--brand-2);
  color: #fff;
}
.home-cta-premium__btn--ghost {
  background: color-mix(in srgb, var(--surface) 88%, #fff 12%);
  border-color: var(--line);
  color: var(--text);
}

.home-pdf-cta__inner {
  max-width: 1220px;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface) 80%, var(--brand) 20%) 0%, var(--surface) 100%);
  padding: clamp(20px, 4vw, 34px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.home-pdf-cta__subtitle { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-soft); }
.home-pdf-cta__title { margin: 8px 0 0; font-size: clamp(24px, 3vw, 34px); max-width: 22ch; }

.about-premium__top {
  display: block;
}
.about-premium__content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.about-premium__logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin: 0 auto 12px;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(10, 28, 56, 0.16));
}
.about-premium__eyebrow { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--brand-2); }
.about-premium__title { margin: 10px 0; font-size: clamp(24px, 3.4vw, 38px); }
.about-premium__lead { margin: 0; color: var(--text-soft); line-height: 1.65; }
.about-premium__list { margin: 16px 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.about-premium__list li { display: flex; gap: 8px; color: var(--text-soft); justify-content: center; }
.about-premium__list i { color: var(--ok); margin-top: 3px; }
.about-premium__ctaRow { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.about-premium__phone {
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.about-premium__bottom {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-premium__box {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
}
.about-premium__box h3 { margin: 0 0 8px; }
.about-premium__box p { margin: 0; color: var(--text-soft); line-height: 1.6; }

.services-premium__hero {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 30px);
  background:
    radial-gradient(820px 320px at 100% -20%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 60%),
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 92%, #fff 8%), color-mix(in srgb, var(--surface-2) 86%, transparent));
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow);
}
.services-premium__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--brand-2) 26%, var(--line));
  color: var(--brand-2);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.services-premium__title { margin: 10px 0 0; font-size: clamp(26px, 3.4vw, 42px); line-height: 1.12; }
.services-premium__lead { margin: 10px 0 0; color: var(--text-soft); max-width: 72ch; line-height: 1.68; }
.services-premium__pills { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.services-premium__pills span {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 85%, var(--brand) 15%);
  color: var(--brand-2);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
}
.services-premium__heroVisual {
  min-height: 180px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, color-mix(in srgb, var(--brand-2) 90%, #fff 10%), color-mix(in srgb, var(--accent-strong) 88%, #fff 12%));
  color: #fff;
  box-shadow: 0 20px 36px color-mix(in srgb, var(--brand-2) 30%, transparent);
}
.services-premium__heroVisual i { font-size: clamp(44px, 6vw, 66px); }

.services-premium__coreGrid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.service-coreCard {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.service-coreCard__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--brand) 14%, var(--surface));
  color: var(--brand-2);
}
.service-coreCard__title { margin: 12px 0 8px; font-size: 18px; }
.service-coreCard__desc { margin: 0; color: var(--text-soft); line-height: 1.66; }

.services-premium__process,
.services-premium__extra {
  margin-top: 16px;
}
.services-premium__subTitle {
  margin: 0 0 10px;
  font-size: clamp(20px, 2.2vw, 28px);
}
.services-premium__processGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.services-premium__processGrid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface) 88%, #fff 12%);
  padding: 14px;
}
.services-premium__processGrid strong {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--brand-2) 14%, var(--surface));
  color: var(--brand-2);
}
.services-premium__processGrid p { margin: 10px 0 0; color: var(--text-soft); line-height: 1.55; }

.services-premium__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.service-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 14px;
  padding: 16px;
  min-height: 148px;
  box-shadow: var(--shadow);
}
.service-card.highlighted { border-color: var(--accent); background: color-mix(in srgb, var(--surface) 84%, #f6dfc4 16%); }
.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--brand) 14%, var(--surface));
  color: var(--brand-2);
}
.service-title { margin: 12px 0 0; font-size: 15px; line-height: 1.45; }

.services-premium__cta {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface) 80%, var(--brand) 20%), color-mix(in srgb, var(--surface) 85%, var(--accent) 15%));
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.services-premium__cta p { margin: 0; color: var(--text); font-weight: 500; }
.services-premium__ctaBtn {
  min-height: 42px;
  border-radius: 12px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-2), color-mix(in srgb, var(--brand-2) 68%, var(--accent) 32%));
  border: 1px solid color-mix(in srgb, var(--brand-2) 70%, transparent);
  box-shadow: 0 14px 26px color-mix(in srgb, var(--brand-2) 24%, transparent);
}

.references-premium__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.references-premium__card {
  border: 1px solid color-mix(in srgb, var(--line) 90%, transparent);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.references-premium__imageLink {
  display: block;
  line-height: 0;
  position: relative;
}
.references-premium__imageLink::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 22, 44, 0.22) 100%);
  opacity: 0;
  transition: opacity .22s ease;
}
.references-premium__image {
  height: 260px;
  width: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}
.references-premium__card:hover .references-premium__image,
.references-premium__imageLink:focus-visible .references-premium__image {
  transform: scale(1.04);
}
.references-premium__card:hover .references-premium__imageLink::after,
.references-premium__imageLink:focus-visible::after {
  opacity: 1;
}
.references-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 120;
}
.references-lightbox:target {
  display: block;
}
.references-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 12, 28, 0.84);
}
.references-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 92vw);
  max-height: 90vh;
  margin: 5vh auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  background: #071126;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.4);
}
.references-lightbox__image {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  background: #071126;
}
.references-lightbox__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 16, 34, 0.7);
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.contact-premium__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-premium__formCard,
.contact-premium__infoCard {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: clamp(16px, 2.5vw, 24px);
}
.contact-premium__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand-2);
}
.contact-premium__eyebrow span { width: 20px; height: 2px; background: var(--accent); }
.contact-premium__title { margin: 10px 0 8px; font-size: clamp(24px, 3vw, 34px); }
.contact-premium__title em { color: var(--accent-strong); font-style: normal; }
.contact-premium__lead { margin: 0 0 14px; color: var(--text-soft); line-height: 1.62; }
.contact-premium__alert { border-radius: 10px; padding: 10px 12px; margin-bottom: 10px; }
.contact-premium__alert--ok { border: 1px solid color-mix(in srgb, var(--ok) 60%, #fff); background: color-mix(in srgb, var(--ok) 18%, #fff); }
.contact-premium__alert--error { border: 1px solid color-mix(in srgb, var(--danger) 60%, #fff); background: color-mix(in srgb, var(--danger) 16%, #fff); }
.contact-premium__form { display: grid; gap: 10px; }
.contact-premium__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contact-premium__form input,
.contact-premium__form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
  border-radius: 10px;
  padding: 11px 12px;
  outline: none;
}
.contact-premium__form input:focus,
.contact-premium__form textarea:focus { border-color: var(--brand-2); }
.contact-premium__form textarea { min-height: 120px; resize: vertical; }
.contact-premium__mapWrap { border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.contact-premium__mapWrap iframe { width: 100%; min-height: 250px; }
.contact-premium__infoList { margin-top: 12px; display: grid; gap: 8px; }
.contact-premium__infoItem {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-2);
  display: flex;
  gap: 10px;
  padding: 10px;
}
.contact-premium__icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--brand) 14%, var(--surface));
  color: var(--brand-2);
  display: grid;
  place-items: center;
}
.contact-premium__infoItem strong { display: block; }
.contact-premium__infoItem small { color: var(--text-soft); }

.error404 { min-height: calc(100vh - 220px); display: grid; place-items: center; }
.error404__inner {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 34px);
}
.error404__code { font-size: clamp(54px, 9vw, 96px); font-weight: 700; color: var(--brand-2); line-height: 1; }
.error404__title { margin: 8px 0; font-size: clamp(24px, 3.4vw, 36px); }
.error404__text { margin: 0 auto 16px; max-width: 52ch; color: var(--text-soft); }

.footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  background:
    radial-gradient(1200px 340px at 8% -40%, color-mix(in srgb, var(--brand-2) 18%, transparent), transparent 60%),
    radial-gradient(900px 320px at 100% -50%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 62%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 82%, var(--brand) 18%) 0%, var(--surface) 100%);
  color: var(--text);
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, color-mix(in srgb, var(--surface) 80%, transparent) 52%, transparent 100%);
  opacity: .45;
}
.footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  margin: 0 auto;
  padding: 34px 20px 16px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
  gap: 14px;
}
.footer__brandCol,
.footer__linksCol,
.footer__contactCol,
.footer__touchCol {
  border: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  border-radius: 16px;
  background:
    linear-gradient(150deg, color-mix(in srgb, var(--surface) 92%, #fff 8%) 0%, color-mix(in srgb, var(--surface-2) 88%, transparent) 100%);
  padding: 16px;
  box-shadow: 0 16px 30px rgba(8, 20, 40, 0.08);
}
.footer__title {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--text) 90%, transparent);
}
.footer__link {
  display: block;
  color: color-mix(in srgb, var(--text-soft) 92%, transparent);
  margin: 0 0 9px;
  transition: color .2s ease, transform .2s ease;
}
.footer__link:last-child { margin-bottom: 0; }
.footer__link:hover {
  color: var(--brand-2);
  transform: translateX(2px);
}
.footer__contactItem {
  display: flex;
  gap: 10px;
  color: color-mix(in srgb, var(--text-soft) 92%, transparent);
  margin-bottom: 11px;
  transition: color .2s ease;
}
.footer__contactItem:last-child { margin-bottom: 0; }
.footer__contactItem:hover { color: var(--text); }
.footer__brand { margin-bottom: 10px; display: inline-flex; align-items: center; }
.footer__logo { filter: drop-shadow(0 8px 16px rgba(8, 20, 40, 0.15)); }
.footer__desc { margin: 0; color: color-mix(in srgb, var(--text-soft) 95%, transparent); font-size: var(--footer-font-size); line-height: 1.65; }
.footer__touchText { margin: 0 0 12px; color: color-mix(in srgb, var(--text-soft) 95%, transparent); line-height: 1.65; }
.footer__contactBox {
  margin-top: 12px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 12px;
  padding: 0 16px;
  border: 1px solid color-mix(in srgb, var(--brand-2) 76%, transparent);
  background: linear-gradient(135deg, var(--brand-2), color-mix(in srgb, var(--brand-2) 70%, var(--accent) 30%));
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 24px color-mix(in srgb, var(--brand-2) 28%, transparent);
  transition: transform .2s ease, box-shadow .2s ease;
}
.footer__contactBox:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 28px color-mix(in srgb, var(--brand-2) 34%, transparent);
}
.footer__socials { margin-top: 10px; display: flex; gap: 8px; }
.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  background: color-mix(in srgb, var(--surface) 70%, var(--surface-2) 30%);
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.footer__social:hover {
  color: var(--brand-2);
  border-color: color-mix(in srgb, var(--brand-2) 45%, var(--line));
  transform: translateY(-1px);
}
.footer__bottom {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  color: color-mix(in srgb, var(--text-soft) 90%, transparent);
  font-size: 12px;
  letter-spacing: .02em;
}
.footer__devCredit { display: inline-flex; align-items: center; gap: 8px; }
.footer__devLogo { width: 80px; height: auto; }

@media (max-width: 980px) {
  .topbar__nav,
  .topbar__langs,
  .topbar__theme { display: none; }
  .topbar__burger { display: inline-flex; }
  .topbar__inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "burger brand right";
  }
  .topbar__brand { justify-self: center; }
  .topbar__logo { height: 42px; }
  .heroSlider,
  .heroSlider__track,
  .heroSlide,
  .heroSlide__content { min-height: 72vh; }
  .home-stats__inner,
  .home-services-premium__grid,
  .home-blog-premium__grid,
  .blog-index__grid,
  .home-trust-premium__grid,
  .home-process-premium__steps,
  .services-premium__coreGrid,
  .services-premium__processGrid,
  .services-premium__grid,
  .references-premium__grid,
  .contact-premium__grid,
  .home-brand-hero__container,
  .about-premium__top,
  .about-premium__bottom,
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .topbar__ribbonInner { min-height: 38px; font-size: 12px; clip-path: none; }
  .page-titlebar { margin-top: 0; }
  .heroSlider__bottom { grid-template-columns: 1fr; }
  .home-stats__inner,
  .home-services-premium__grid,
  .home-blog-premium__grid,
  .blog-index__grid,
  .home-trust-premium__grid,
  .home-process-premium__steps,
  .services-premium__coreGrid,
  .services-premium__processGrid,
  .services-premium__grid,
  .references-premium__grid,
  .contact-premium__grid,
  .contact-premium__row,
  .home-brand-hero__container,
  .about-premium__top,
  .about-premium__bottom,
  .footer__grid { grid-template-columns: 1fr; }
  .services-premium__hero { grid-template-columns: 1fr; }
  .services-premium__cta { flex-direction: column; align-items: flex-start; }
  .home-cta-premium__inner { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
