:root {
  --color-bg: #0d1420;
  --color-bg-soft: #151f31;
  --color-surface: #1a2538;
  --color-text: #f3f7ff;
  --color-muted: #acb7ca;
  --color-line: rgba(255, 255, 255, 0.16);
  --color-primary: #f5a623;
  --color-primary-hover: #ffb845;
  --container: 1280px;
  --radius: 16px;
  --shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
  --section-gap: clamp(22px, 2.4vw, 34px);
  --section-pad: clamp(24px, 3vw, 42px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

body {
  background:
    linear-gradient(180deg, rgba(10, 16, 28, 0.98), rgba(10, 16, 28, 0.98)),
    var(--color-bg);
  color: var(--color-text);
  font-family: 'Kumbh Sans', 'Segoe UI', sans-serif;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', 'Kumbh Sans', sans-serif;
  letter-spacing: 0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.site-main {
  display: block;
  padding: 0;
}

.site-main > section {
  margin: 0 0 var(--section-gap);
}

.site-main > section:last-child {
  margin-bottom: 0;
}

@supports (content-visibility: auto) {
  .site-main > section:not(:first-child) {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
  }
}

.td-section {
  position: relative;
  padding: 56px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.td-section__line {
  width: min(280px, 38%);
  height: 1px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(245, 166, 29, 0.75), rgba(245, 166, 29, 0));
  margin: 0 0 20px;
}

.td-section__inner {
  max-width: 1200px;
  margin-inline: auto;
}

.td-section h2,
.td-section .sc_item_title.sc_title_title {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.14;
  text-wrap: balance;
}

.td-section h3 {
  margin: 0 0 10px;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.2;
}

.td-section .sc_item_subtitle.sc_title_subtitle {
  margin: 0 0 10px;
}

.td-section .wysiwyg,
.td-section p {
  color: #d6e1f4;
  line-height: 1.62;
}

.td-section .wysiwyg p:last-child {
  margin-bottom: 0;
}

.site-main > .td-section:nth-of-type(even) {
  border-bottom: 0;
}

/* Global light section standard for internal pages */
.vip26-standard-surface {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(162deg, rgba(20, 30, 45, 0.62), rgba(12, 20, 33, 0.5));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

/* =====================================================
   VIP26 Common Component Classes
   Design System for Internal Pages
   ===================================================== */

/* =====================================================
   Reusable Yellow Divider Line
   ===================================================== */

/* Page Hero Section */
.page-hero {
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.page-hero__subtitle {
  margin: 0 0 8px;
  color: #f1c989;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

.page-hero__title {
  margin: 0 0 14px;
  max-width: 980px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  text-wrap: balance;
}

.page-hero__intro {
  margin: 0;
  max-width: 930px;
  color: #d6e1f4;
  font-size: 20px;
  line-height: 1.55;
  text-wrap: pretty;
}

/* =====================================================
   Unified Design System Utilities
   td-subtitle  — eyebrow/label above headings
   td-title     — section h2
   td-title--hero — h1 hero heading
   td-intro     — descriptive intro paragraph
   td-card      — lightweight card token
   td-cards-grid — responsive card grid
   ===================================================== */

.td-subtitle {
  margin: 0 0 8px;
  color: #f1c989;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

.td-title {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.14;
  text-wrap: balance;
}

.td-title--hero {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  max-width: 980px;
}

.td-intro {
  margin: 0;
  max-width: 880px;
  color: #d6e1f4;
  font-size: 18px;
  line-height: 1.6;
  text-wrap: pretty;
}

.td-card {
  border-radius: var(--radius, 16px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(160deg, rgba(23, 34, 50, 0.58), rgba(12, 19, 30, 0.46));
  padding: 20px;
  transition: border-color 220ms ease;
}

.td-card:hover {
  border-color: rgba(245, 166, 29, 0.32);
}

.td-card h2,
.td-card h3 {
  margin: 0 0 10px;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.2;
}

.td-card p {
  margin: 0;
  color: #d6e1f4;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .td-cards-grid--2,
  .td-cards-grid--3 {
    grid-template-columns: 1fr;
  }
}

/* Standard Section with Divider Line */
.section-standard {
  margin-bottom: 38px;
  padding-top: 20px;
  border: 0;
  background: transparent;
  position: relative;
}

.vip26-quizle-service-context {
  margin: 0 0 12px;
  padding: 7px 10px;
  border: 1px solid rgba(245, 166, 35, 0.32);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  color: #ffdba0;
  background: rgba(245, 166, 35, 0.1);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.vip26-quizle-question--deduped {
  display: none !important;
}

.section-standard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(280px, 38%);
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 166, 29, 0.75), rgba(245, 166, 29, 0));
}

/* Centered Section with Divider Line */
.section-center {
  margin-bottom: 38px;
  padding-top: 20px;
  border: 0;
  background: transparent;
  position: relative;
  text-align: center;
}

.section-center::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(180px, 28%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 166, 29, 0.75), transparent);
}

/* Section Headings */
.section-standard h2,
.section-center h2,
.page-hero section h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
  text-wrap: balance;
}

/* Card Grids */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  z-index: 1;
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

/* Standard Card */
.card-standard {
  border-radius: 18px;
  border: none;
  background: linear-gradient(160deg, rgba(23, 34, 50, 0.64), rgba(12, 19, 30, 0.52));
  backdrop-filter: blur(2px);
  padding: 20px;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.card-standard:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 166, 29, 0.38);
  background: linear-gradient(160deg, rgba(27, 41, 61, 0.78), rgba(14, 21, 33, 0.62));
}

.card-standard h2,
.card-standard h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.2;
}

.card-standard p {
  margin: 0;
  color: #dce6f8;
  line-height: 1.6;
}

/* Card with Icon */
.card-icon {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(17, 26, 38, 0.54);
  padding: 20px 18px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.card-icon:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 166, 29, 0.45);
}

.card-icon__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 166, 29, 0.1);
  color: #f5a61d;
  flex-shrink: 0;
}

.card-icon__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.card-icon__text {
  font-size: 15px;
  color: #dce6f8;
  line-height: 1.5;
}

/* Standard List */
.list-standard {
  margin: 0;
  padding-left: 20px;
  color: #d8e3f7;
  display: grid;
  gap: 10px;
  font-size: 17px;
}

.list-standard li {
  line-height: 1.55;
}

/* Timeline Section */
.timeline-section {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 28px;
}

.timeline-section::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 36px;
  bottom: 36px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(245, 166, 29, 0.55), rgba(245, 166, 29, 0.1));
  border-radius: 2px;
}

.timeline-step {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
}

.timeline-step:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.timeline-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(245, 166, 29, 0.12);
  border: 2px solid rgba(245, 166, 29, 0.55);
  color: #f5a61d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: background 0.22s, border-color 0.22s;
}

.timeline-step:hover .timeline-num {
  background: rgba(245, 166, 29, 0.22);
  border-color: rgba(245, 166, 29, 0.85);
}

.timeline-body {
  padding-top: 6px;
}

.timeline-body strong {
  display: block;
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 6px;
  color: #ecf3ff;
}

.timeline-body p {
  margin: 0;
  font-size: 16px;
  color: #dce6f8;
  line-height: 1.6;
}

/* CTA Actions */
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(245, 166, 29, 0.6);
  color: #f5a61d;
}

.btn-secondary:hover {
  background: rgba(245, 166, 29, 0.12);
  border-color: rgba(245, 166, 29, 0.9);
  color: #ffb845;
}

/* Page Container Standard */
.page-container-standard {
  padding: 138px 0 42px;
  position: relative;
  --page-text-soft: #dce6f8;
}

.page-container-standard::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 520px;
  pointer-events: none;
  background: radial-gradient(62% 68% at 18% 18%, rgba(245, 166, 29, 0.18), rgba(245, 166, 29, 0) 72%),
    radial-gradient(64% 72% at 82% 10%, rgba(108, 157, 255, 0.2), rgba(108, 157, 255, 0) 76%);
  opacity: 1;
}

.page-container-standard .container {
  max-width: 1220px;
}

/* Director Section */
.director-inner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.director-inner--with-photo {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}

.director-photo {
  margin: 0;
  flex-shrink: 0;
}

.director-photo img {
  width: 100%;
  max-width: 200px;
  height: 240px;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  display: block;
}

.director-content {
  align-self: center;
}

.director-quote {
  margin: 0 0 14px;
  padding: 18px 20px;
  border-left: 4px solid rgba(247, 210, 154, 0.78);
  background: rgba(15, 22, 32, 0.44);
  border-radius: 0 12px 12px 0;
  color: #ecf3ff;
  font-size: 18px;
  line-height: 1.55;
  font-style: italic;
}

  /* =====================================================
     Team Cards
     ===================================================== */

  .team-grid {
    margin-top: 20px;
  }

  .team-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
  }

  .team-card__photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 4px;
    border: 2px solid rgba(245, 166, 29, 0.35);
  }

  .team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .team-card__name {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
  }

  .team-card__position {
    margin: 0;
    font-size: 13px;
    color: #f1c989;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
  }

  .team-card__description {
    margin: 0;
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.5;
  }

.director-signature {
  margin: 0;
  color: #dce6f8;
  font-size: 15px;
}

/* Section with Top Line (left-aligned) */
.section-with-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(280px, 38%);
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 166, 29, 0.75), rgba(245, 166, 29, 0));
}

.about-page__segments-grid {
  margin-bottom: 36px;
  padding-top: 18px;
}

.contacts-page__hero-note {
  margin: 0;
  color: #dce6f8;
  line-height: 1.6;
}

.site-main section h1,
.site-main section h2,
.site-main section h3 {
  text-wrap: balance;
}

.site-main section p {
  text-wrap: pretty;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 120;
  backdrop-filter: none;
  background: transparent;
  border-bottom: 0;
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

.site-header__bar {
  background: rgba(6, 13, 24, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.site-header__bar-inner {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.site-mail,
.site-phone {
  color: rgba(232, 238, 251, 0.88);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.site-mail:hover,
.site-phone:hover {
  color: #ffffff;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 8px 0;
}

.site-logo {
  display: flex;
  align-items: center;
  min-width: max-content;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--color-line);
  background: transparent;
  color: #f5f9ff;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.site-nav-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.site-logo img {
  max-height: 52px;
  width: auto;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 0;
  margin: 0;
}

.site-nav > ul {
  position: relative;
  align-items: center;
}

.site-nav > ul > li {
  position: relative;
  padding: 17px 0;
}

.menu-submenu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #f5f9ff;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.menu-submenu-toggle::before {
  content: '+';
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.menu-item-has-children.is-open > .menu-submenu-toggle::before {
  content: '\2212';
}

.menu-submenu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.site-nav a {
  color: #e8eefb;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: color .2s ease;
}

.site-nav a:hover {
  color: var(--color-primary);
}

.site-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: rgba(13, 20, 33, 0.98);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  padding: 14px;
  display: grid;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  box-shadow: var(--shadow);
  z-index: 80;
}

.site-nav .menu-item-has-children:not(.menu-item-services) > a:hover ~ .sub-menu,
.site-nav .menu-item-has-children:not(.menu-item-services) > .sub-menu:hover,
.site-nav .menu-item-has-children:not(.menu-item-services) > .menu-submenu-toggle:hover ~ .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav > ul > li > .sub-menu {
  left: 50%;
  transform: translate(-50%, 8px);
}

.site-nav > ul > li.menu-item-has-children:not(.menu-item-services) > a:hover ~ .sub-menu,
.site-nav > ul > li.menu-item-has-children:not(.menu-item-services) > .sub-menu:hover,
.site-nav > ul > li.menu-item-has-children:not(.menu-item-services) > .menu-submenu-toggle:hover ~ .sub-menu {
  transform: translate(-50%, 0);
}

/* Services menu: show on is-open-desktop class (controlled by JavaScript) */
.site-nav > ul > li.menu-item-services.is-open-desktop > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* Services menu: nested submenus show on hover */
.site-nav > ul > li.menu-item-services.is-open-desktop.menu-item-has-children > .sub-menu > li.menu-item-has-children:hover > .sub-menu,
.site-nav > ul > li.menu-item-services.is-open-desktop.menu-item-has-children > .sub-menu > li.menu-item-has-children > .sub-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.site-nav > ul > li.menu-item-services > .menu-submenu-toggle {
  display: inline-flex;
  position: static;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(232, 238, 251, 0.82);
}

.site-nav > ul > li.menu-item-services > .menu-submenu-toggle::before {
  content: '\25BE';
  font-size: 10px;
  font-weight: 600;
}

.site-nav > ul > li.menu-item-services > .menu-submenu-toggle:hover {
  color: #ffffff;
  background: transparent;
  border-color: transparent;
}

/* Mega menu: services top-level section */
.site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu > li.menu-item-has-children {
  min-width: 180px;
}

.site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu {
  width: min(1160px, calc(100vw - 48px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 16px;
  align-content: start;
}

.site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu > li.menu-item-services-overview {
  grid-column: 1 / -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu > li > .menu-item-description {
  margin: 8px 0 0;
  color: rgba(232, 238, 251, 0.66);
  font-size: 13px;
  line-height: 1.5;
}

.site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu > li:not(.menu-item-services-overview) > .menu-item-description {
  display: none;
}

.site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu > li {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.015);
}

.site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu > li > a {
  font-family: 'Montserrat', 'Kumbh Sans', sans-serif;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu > li > a::before {
  display: none;
}

.site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu > li.menu-item-services-overview > a {
  padding-left: 0;
}

.site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu > li.menu-item-services-overview > a::before {
  display: none;
}

.site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu > li > .sub-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  min-width: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  gap: 8px;
}

.site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu > li > .sub-menu a {
  color: rgba(232, 238, 251, 0.72);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu > li > .sub-menu a:hover {
  color: #ffffff;
}

.menu-services-more {
  margin-top: 8px;
  border: 0;
  background: transparent;
  color: rgba(232, 238, 251, 0.95);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
}

.menu-services-more:hover {
  color: #ffffff;
}

/* Hidden service items - shown only when list is expanded */
.site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu > li > .sub-menu .menu-service-item.is-hidden {
  display: none;
}

.site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu > li > .sub-menu.is-expanded .menu-service-item.is-hidden {
  display: block;
}

@media (max-width: 1240px) {
  .site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 2px;
}

.site-header__actions .btn,
.site-header__actions .sc_button,
.site-header__actions .sc_button.sc_button_default {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  letter-spacing: 0.02em;
}

.site-header__actions .btn-small {
  min-height: 44px;
  padding: 0 20px;
  font-size: 13px;
  border-radius: 12px;
}

.site-header__actions .icon-link {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.icon-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e8eefb;
}

.icon-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

.icon-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero {
  padding: 0;
}

.hero-swiper {
  width: 100%;
}

.hero-slide {
  min-height: 100vh;
  border-radius: 0;
  background: #0a1625;
  overflow: hidden;
  box-shadow: none;
  display: grid;
  align-items: center;
  position: relative;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(95deg, rgba(4, 10, 20, 0.72) 0%, rgba(4, 10, 20, 0.36) 42%, rgba(4, 10, 20, 0.18) 100%);
  z-index: 1;
}

.hero-slide__content {
  color: #fff;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  max-width: none;
  padding: clamp(120px, 17vh, 200px) 0 clamp(72px, 10vh, 116px);
  position: relative;
  z-index: 2;
}

.hero-slide h1,
.hero-slide h2 {
  margin: 0;
  font-size: clamp(42px, 5.1vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 760px;
  text-transform: none;
}

.hero-slide p {
  font-size: clamp(16px, 1.2vw, 22px);
  font-weight: 500;
  max-width: 680px;
  margin: 22px 0 34px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-trust-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
}

.hero-trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(9, 18, 29, 0.4);
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-trust-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(242, 190, 116, 0.22);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9px;
  background: var(--color-primary);
  color: #101723;
  padding: 13px 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

.btn-small {
  padding: 10px 16px;
  font-size: 12px;
}

.sc_button,
.sc_button.sc_button_default,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sc_button.sc_button_default.sc_button_size_normal {
  border-radius: 9px;
  background: var(--color-primary);
  color: #101723;
  padding: 13px 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.sc_button.sc_button_default.sc_button_size_normal:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

.sc_button_icon_left::before {
  content: '\2192';
  line-height: 1;
}

.color_style_dark {
  color: #0f1725;
}

.sc_item_subtitle.sc_title_subtitle {
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #dbe6fb;
  opacity: 0.85;
}

.sc_item_title.sc_title_title {
  margin: 0;
}

.hero .swiper-button-prev,
.hero .swiper-button-next {
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(5, 9, 17, 0.28);
}

.hero .swiper-button-prev::after,
.hero .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.hero .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.58);
  opacity: 1;
}

.hero .swiper-pagination-bullet-active {
  background: #fff;
}

.content-block {
  margin: 0;
  padding: var(--section-pad);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(26, 37, 56, 0.9), rgba(19, 29, 44, 0.88));
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow);
}

.brands-strip,
.faq-block,
.contact-map-block {
  background: linear-gradient(180deg, rgba(22, 32, 49, 0.86), rgba(20, 30, 45, 0.86));
}

.cta-block {
  background: linear-gradient(180deg, rgba(20, 30, 45, 0.96), rgba(18, 27, 40, 0.96));
}

.cta-block h2,
.cta-block .sc_item_title.sc_title_title {
  text-transform: uppercase;
}

.cta-block .sc_button,
.cta-block .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.content-block h2 {
  margin: 0 0 14px;
  font-size: clamp(25px, 3vw, 40px);
  text-transform: uppercase;
  line-height: 1.15;
}

.content-block .wysiwyg {
  color: var(--color-muted);
}

.page-slug-privacy-policy .content-block .wysiwyg h1 {
  display: none;
}

.page-slug-privacy-policy .content-block .wysiwyg h2 {
  margin: 34px 0 14px;
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 700;
  text-transform: none;
  line-height: 1.25;
}

.page-slug-privacy-policy .content-block .wysiwyg p {
  margin: 0 0 16px;
  color: #d6e1f4;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.7;
}

.page-slug-privacy-policy .content-block .wysiwyg {
  max-width: 980px;
}

.page-slug-privacy-policy .content-block .wysiwyg ul,
.page-slug-privacy-policy .content-block .wysiwyg ol {
  margin: 0 0 18px 24px;
  color: #d6e1f4;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.7;
}

.page-slug-privacy-policy .content-block .wysiwyg li {
  margin: 0 0 8px;
}

.privacy-page .vip26-breadcrumbs {
  margin-bottom: 14px;
}

.privacy-page__hero {
  margin-bottom: 18px;
}

.privacy-page__hero .page-hero__intro {
  max-width: 860px;
}

.privacy-page__content {
  margin-top: 0;
}

.privacy-page__content .content-block {
  margin-top: 0;
}

.privacy-page__content .content-block .wysiwyg {
  max-width: 980px;
}

.privacy-page__content .content-block .wysiwyg h2 {
  margin: 34px 0 14px;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.25;
  text-transform: none;
}

.privacy-page__content .content-block .wysiwyg p,
.privacy-page__content .content-block .wysiwyg li {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.7;
}

.brands-strip .sc_item_subtitle {
  margin-bottom: 10px;
}

.brands-strip .sc_item_title {
  max-width: 1320px;
  margin-bottom: 12px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 18px;
  margin-top: 22px;
  align-items: stretch;
}

.brands-grid img {
  width: 100%;
  height: 82px;
  object-fit: contain;
  display: block;
  background: #ffffff;
  border: 1px solid rgba(10, 20, 31, 0.08);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition: transform .2s ease, box-shadow .2s ease;
}

.brands-grid img:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.services-icons-block {
  position: relative;
  background: linear-gradient(180deg, rgba(22, 34, 52, 0.9), rgba(17, 28, 43, 0.92));
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
  padding-inline: 0;
}

.services-icons-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(115deg, transparent 0, transparent 45%, rgba(255, 255, 255, 0.05) 45.5%, rgba(255, 255, 255, 0.05) 47.5%, transparent 48%, transparent 100%);
}

.services-icons-block .container {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 48px));
}

.services-icons-block .sc_item_subtitle.sc_title_subtitle {
  margin-bottom: 12px;
}

.services-icons-block .sc_item_title.sc_title_title {
  max-width: 980px;
  margin-bottom: 14px;
  color: var(--color-text);
}

.services-icons-block .sc_icons_list {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
  align-items: stretch;
}

.services-icons-block .sc_icons_item {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(17, 27, 42, 0.82), rgba(14, 23, 37, 0.82));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  padding: clamp(18px, 1.8vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

a.sc_icons_item:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 166, 29, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
}

.services-icons-block .sc_icons_item_details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-icons-block .sc_icons_icon {
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.22);
  color: var(--color-primary);
  flex: 0 0 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.services-icons-block .sc_icons_icon::before {
  content: none !important;
}

.services-icons-block .sc_icons_icon svg {
  width: 36px;
  height: 36px;
  color: var(--color-primary);
  display: block;
}

.services-icons-block .sc_icons_item_title {
  margin: 0;
  font-size: clamp(17px, 1.08vw, 22px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text);
}

.services-icons-block .sc_icons_item_title a {
  color: inherit;
}

.services-icons-block .sc_icons_item_title a:hover {
  color: var(--color-primary-hover);
}

.services-icons-block .sc_icons_item_description span {
  color: var(--color-muted);
  font-size: clamp(15px, 0.95vw, 17px);
  line-height: 1.56;
}

.sc_services_list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.sc_services_item {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 36, 0.55);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.sc_services_item_title {
  margin: 0 0 10px;
  font-size: 24px;
}

.sc_services_item_description {
  margin: 0;
  color: var(--color-muted);
}

.sc_testimonials {
  margin-top: 24px;
}

.testimonials-block {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-inline: 0;
}

.testimonials-block .container {
  width: min(var(--container), calc(100% - 48px));
}

.testimonials-block .sc_item_subtitle,
.testimonials-block .sc_item_title {
  text-align: center;
}

.testimonials-block .sc_item_title {
  max-width: 920px;
  margin-inline: auto;
  margin-bottom: 6px;
}

.testimonials-proof-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.testimonials-proof-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(12, 21, 33, 0.5);
  color: rgba(231, 238, 250, 0.96);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
}

.testimonials-proof-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.sc_testimonials_grid {
  display: flex;
  align-items: start;
}

.sc_testimonials_item {
  border-radius: 0;
  border: 0;
  background: linear-gradient(180deg, rgba(26, 28, 36, 0.96), rgba(23, 24, 31, 0.96));
  box-shadow: none;
  padding: clamp(34px, 3vw, 48px);
  min-height: 340px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  --helper-x: 72%;
  --helper-y: 70%;
}

.sc_testimonials_item_content {
  max-width: 520px;
}

.sc_testimonials_item_mark {
  display: inline-block;
  margin-bottom: 18px;
  color: #ea3d86;
  font-size: 76px;
  line-height: 0.65;
  font-weight: 700;
}

.sc_testimonials_item_content p {
  margin: 0 0 26px;
  font-size: clamp(16px, 1.14vw, 19px);
  line-height: 1.7;
  color: rgba(224, 230, 242, 0.88);
}

.sc_testimonials_item_author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sc_testimonials_item_author img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.sc_testimonials_item_avatar-fallback {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.sc_testimonials_item_author_title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
}

.sc_testimonials_item_author_subtitle {
  color: rgba(185, 196, 216, 0.88);
  font-size: 16px;
}

.sc_testimonials_hover_helper {
  position: absolute;
  left: var(--helper-x);
  top: var(--helper-y);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(5, 7, 12, 0.96);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity .22s ease, transform .22s ease, background .22s ease, left .12s linear, top .12s linear;
  pointer-events: none;
  will-change: left, top, transform, opacity;
}

.sc_testimonials_hover_helper-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.96);
}

.sc_testimonials_item:hover .sc_testimonials_hover_helper,
.sc_testimonials_item:focus-within .sc_testimonials_hover_helper {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.testimonials-block .swiper-pagination {
  margin-top: 28px;
  position: static;
  display: flex;
  justify-content: center;
  gap: 10px;
  min-height: 12px;
}

.testimonials-block .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.28);
  opacity: 1;
}

.testimonials-block .swiper-pagination-bullet-active {
  background: #2d5bff;
  transform: scale(1.05);
}

.testimonials-conversion-cta {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 26, 39, 0.58);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.testimonials-conversion-cta p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.45;
}

.objects-map-frame {
  margin-top: 20px;
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.objects-cases {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.objects-case-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 24, 35, 0.78), rgba(15, 22, 32, 0.66));
  padding: 18px 18px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.objects-case-card h3 {
  margin: 0 0 9px;
  font-size: 22px;
  line-height: 1.2;
}

.objects-case-card__meta {
  margin: 0 0 6px;
  color: var(--color-muted);
  font-size: 14px;
}

.objects-case-card ul {
  margin: 10px 0 12px;
  padding-left: 18px;
  display: grid;
  gap: 5px;
}

.objects-case-card li {
  color: #d2ddf2;
  font-size: 14px;
  line-height: 1.42;
}

.objects-case-card a {
  color: #a0c2ff;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.objects-case-card a::after {
  content: '\2192';
  line-height: 1;
}

.objects-case-card a:hover {
  text-decoration: underline;
}

.vip26-request-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0s linear 0.22s;
}

body.request-modal-open {
  overflow: hidden;
}

.vip26-request-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.22s ease, visibility 0s linear 0s;
}

.vip26-request-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 24, 0.72);
  backdrop-filter: blur(2px);
}

.vip26-request-modal__dialog {
  position: relative;
  margin: min(5vh, 32px) auto;
  width: min(1088px, calc(100% - 24px));
  height: min(760px, calc(100vh - 28px));
  max-height: calc(100vh - 28px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0f1826;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  transform: translateY(10px);
  transition: transform 0.25s ease;
}

.vip26-request-modal.is-open .vip26-request-modal__dialog {
  transform: translateY(0);
}

.vip26-request-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(8, 14, 24, 0.88);
  color: #f3f7ff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  z-index: 20;
}

.vip26-request-modal__close:hover {
  border-color: rgba(245, 166, 29, 0.6);
  background: rgba(245, 166, 29, 0.12);
  color: #f5a61d;
}

.vip26-request-modal__content {
  padding: 0;
  flex: 1 1 auto;
  min-height: 0;
}

.vip26-request-modal__content > *:first-child {
  margin-top: 0;
}

.vip26-request-modal__content iframe {
  width: 100%;
  min-height: min(78vh, 820px);
  border: 0;
}

.vip26-request-modal__content .quizle {
  margin: 0 auto;
  --quizle-shadow-color: transparent;
  --quizle-height: min(680px, calc(100vh - 96px));
  height: 100%;
}

.vip26-request-modal__content .quizle-container {
  padding: 0;
  height: 100%;
}

.vip26-request-modal__content .quizle.has-background,
.vip26-request-modal__content .quizle--view-slides .quizle-footer {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.vip26-request-modal__content .quizle-footer {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

@media (min-width: 768px) {
  .vip26-request-modal__content .quizle-footer {
    gap: 16px;
    justify-content: flex-end;
  }

  .vip26-request-modal__content .quizle-footer > * {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .vip26-request-modal__content .quizle-progress-container {
    flex: 1 1 auto;
    width: 100%;
    max-width: 460px;
    margin-right: auto;
  }
}

.vip26-request-modal__content .quizle-contacts__agreement,
.vip26-request-modal__content .quizle-contacts__agreement span,
.vip26-request-modal__content .quizle-contacts__agreement label {
  font-size: 15px;
  line-height: 1.5;
}

.vip26-request-modal__content .quizle-contacts__agreement a {
  font-size: inherit;
}

.vip26-request-modal__content .quizle-button {
  pointer-events: auto;
  cursor: pointer;
  z-index: 10;
}

.vip26-request-modal__content .quizle-contacts__submit {
  pointer-events: auto;
  cursor: pointer;
}

.vip26-request-modal__fallback {
  margin: 10px;
  color: #d5e0f5;
}

.vip26-breadcrumbs {
  margin-bottom: 16px;
}

.vip26-breadcrumbs ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: var(--color-muted);
}

.vip26-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vip26-breadcrumbs li + li::before {
  content: "/";
  color: rgba(244, 246, 252, 0.42);
}

.vip26-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.vip26-breadcrumbs a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.error-404-page {
  padding: clamp(36px, 7vw, 84px) 0;
}

.error-404-page__box {
  max-width: 760px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(14, 23, 36, 0.62);
  backdrop-filter: blur(2px);
  padding: clamp(24px, 5vw, 44px);
}

.error-404-page__code {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(54px, 13vw, 116px);
  font-weight: 800;
  line-height: 0.9;
  color: #f3f7ff;
}

.error-404-page__title {
  margin: 12px 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.error-404-page__text {
  margin: 0;
  max-width: 62ch;
  color: var(--color-muted);
  line-height: 1.6;
}

.error-404-page__actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vip26-search-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
}

.vip26-search-modal.is-open {
  display: block;
}

.vip26-search-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 24, 0.76);
  backdrop-filter: blur(2px);
}

.vip26-search-modal__dialog {
  position: relative;
  margin: min(10vh, 72px) auto;
  width: min(760px, calc(100% - 24px));
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0f1826;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  padding: 16px;
}

.vip26-search-modal__close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(8, 14, 24, 0.82);
  color: #f3f7ff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.vip26-search-modal__form {
  padding: 10px 4px 4px;
}

.vip26-search-modal__label {
  display: block;
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 10px;
}

.vip26-search-modal__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.vip26-search-modal__input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  padding: 12px 14px;
  font-size: 16px;
}

.vip26-search-modal__suggestions {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  overflow: hidden;
  display: none;
}

.vip26-search-modal__suggestions.is-visible {
  display: block;
}

.vip26-search-modal__suggestions li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vip26-search-modal__suggestions-heading {
  display: block;
  color: #f7d29a;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vip26-search-modal__suggestions li.is-heading {
  display: block;
  padding: 8px 12px;
  background: rgba(245, 166, 35, 0.08);
}

.vip26-search-modal__suggestions li:last-child {
  border-bottom: 0;
}

.vip26-search-modal__suggestions a {
  color: #f1f6ff;
  font-weight: 600;
  display: inline-block;
  width: 100%;
}

.vip26-search-modal__suggestions a mark {
  background: rgba(245, 166, 35, 0.22);
  color: #fff3dd;
  padding: 0 2px;
  border-radius: 3px;
}

.vip26-search-modal__suggestion-type {
  color: var(--color-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vip26-search-modal__suggestions a.is-active {
  color: #ffffff;
  text-decoration: underline;
}

.vip26-search-modal__suggestions li.is-popular a {
  color: #f5d7a6;
}

body.search-modal-open {
  overflow: hidden;
}

.site-scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(8, 14, 24, 0.88);
  color: #f3f7ff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
  z-index: 150;
}

.site-scroll-top:hover {
  background: rgba(16, 24, 38, 0.98);
}

.site-scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.contacts-page {
  padding: 140px 0 42px;
}

.contacts-running-line {
  margin: 20px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(16, 25, 38, 0.85), rgba(10, 18, 29, 0.85));
  position: relative;
}

.contacts-running-line::before,
.contacts-running-line::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42px;
  z-index: 2;
  pointer-events: none;
}

.contacts-running-line::before {
  left: 0;
  background: linear-gradient(90deg, rgba(12, 19, 30, 0.95), rgba(12, 19, 30, 0));
}

.contacts-running-line::after {
  right: 0;
  background: linear-gradient(270deg, rgba(12, 19, 30, 0.95), rgba(12, 19, 30, 0));
}

.contacts-running-line__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  padding: 12px 20px;
  animation: contactsMarquee 30s linear infinite;
  will-change: transform;
}

.contacts-running-line__track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #e7efff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.contacts-running-line__track span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  margin-right: 10px;
}

.contacts-fast-cta {
  margin: 0 0 16px;
  padding: 10px 0 0;
  border: none;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.contacts-fast-cta__text {
  margin: 0 auto 12px;
  max-width: 1100px;
  color: #dbe7fa;
  font-size: 16px;
  line-height: 1.5;
}

.contacts-fast-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.contacts-fast-cta__btn-secondary {
  background: transparent;
  border: 1px solid rgba(247, 210, 154, 0.65);
  color: #f7d29a;
}

.contacts-fast-cta__btn-secondary:hover {
  background: rgba(247, 210, 154, 0.12);
  border-color: rgba(247, 210, 154, 0.95);
  color: #ffe7c0;
}

.contacts-page__grid {
  padding-bottom: 0;
}

.contacts-page__grid-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 0;
}

.contacts-data-col {
  padding: 0 32px 0 0;
}

.contacts-data-col--secondary {
  padding: 0 0 0 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.contacts-data-col h2 {
  margin: 0 0 16px;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
}

.contacts-form-section h2 {
  margin: 0 0 16px;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
}

.contacts-page__map {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  overflow: hidden;
  min-height: 420px;
  background: rgba(16, 25, 38, 0.62);
  padding: 0;
  border-bottom: none;
}

.contacts-page__map iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  pointer-events: none;
}

.contacts-map-canvas {
  width: 100%;
  min-height: 420px;
  height: 420px;
}

.contacts-page__requisites-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
}

.contacts-page__requisites-grid dt {
  color: var(--color-muted);
  margin: 0;
}

.contacts-page__requisites-grid dd {
  margin: 0;
  color: #f3f8ff;
  font-weight: 600;
}

@media (max-width: 900px) {
  .contacts-page__grid-cols {
    grid-template-columns: 1fr;
  }

  .contacts-data-col,
  .contacts-data-col--secondary {
    padding: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    margin-top: 24px;
  }

  .contacts-data-col {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
  }

  .contacts-page__requisites-grid {
    grid-template-columns: 1fr;
  }

  .contacts-fast-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .contacts-fast-cta__buttons .btn {
    width: 100%;
    max-width: 360px;
  }

  .contacts-running-line::before,
  .contacts-running-line::after {
    width: 20px;
  }

  .contacts-running-line__track {
    gap: 24px;
    padding: 10px 12px;
  }

  .contacts-running-line__track span {
    font-size: 14px;
  }
}

@keyframes contactsMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contacts-running-line__track {
    animation: none;
    transform: none;
  }
}

.about-page .vip26-breadcrumbs {
  margin-bottom: 14px;
}

/* Coverage Map Specific Styles (keep for about-page) */
.about-page__coverage-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 13, 24, 0.74);
  color: #eef4ff;
  font-size: 13px;
  line-height: 1.45;
}

.about-page__coverage-legend-item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.about-page__coverage-legend-item--skfo::before {
  background: rgba(255, 178, 77, 0.95);
}

.about-page__coverage-legend-item--ufo::before {
  background: rgba(90, 162, 255, 0.92);
}

/* Brands Grid */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 16px;
}

/* Partners section links */
.about-page__certificates a {
  color: #f5a61d;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.about-page__certificates a:hover {
  color: #ffb845;
  text-decoration-color: rgba(245, 166, 29, 0.5);
}

/* Coverage section — SVG map background */
.about-page__coverage {
  overflow: hidden;
  min-height: 420px;
}

.about-page__coverage-content {
  position: relative;
  z-index: 1;
  max-width: 460px;
}

.about-page__coverage-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.about-page__coverage-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 13, 24, 0.74);
  color: #eef4ff;
  font-size: 13px;
  line-height: 1.45;
}

.about-page__coverage-legend-item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.about-page__coverage-legend-item--skfo::before {
  background: rgba(255, 178, 77, 0.95);
}

.about-page__coverage-legend-item--ufo::before {
  background: rgba(90, 162, 255, 0.92);
}

.about-page__coverage-map {
  position: absolute;
  right: -180px;
  top: 50%;
  transform: translateY(-50%);
  width: 87%;
  max-width: 840px;
  opacity: 0.82;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  filter: drop-shadow(0 0 18px rgba(8, 16, 30, 0.45));
}

.about-page__coverage-map svg {
  display: block;
  width: 100%;
  height: auto;
}

/* All regions: transparent fill, thin stroke */
.about-page__coverage-map svg path {
  fill: transparent;
  stroke: rgba(174, 188, 214, 0.45);
  stroke-width: 0.6;
  transition: fill 0.2s;
}

/* СКФО regions — accent colour */
.about-page__coverage-map svg path.region-skfo {
  fill: rgba(255, 178, 77, 0.9);
  stroke: rgba(255, 221, 166, 0.98);
  stroke-width: 1.1;
}

/* ЮФО regions — cyan accent */
.about-page__coverage-map svg path.region-ufo {
  fill: rgba(90, 162, 255, 0.84);
  stroke: rgba(190, 220, 255, 0.98);
  stroke-width: 1;
}

/* Новые регионы (ДНР, ЛНР, Запорожская, Херсонская области) */
.about-page__coverage-map svg path.region-new {
  fill: rgba(255, 120, 84, 0.98) !important;
  stroke: rgba(255, 236, 223, 1) !important;
  stroke-width: 1.5 !important;
}

@media (max-width: 900px) {
  .about-page__coverage {
    min-height: 0;
  }

  .about-page__coverage-content {
    max-width: none;
  }

  .about-page__coverage-legend {
    margin-top: 14px;
  }

  .about-page__coverage-legend-item {
    width: 100%;
    justify-content: flex-start;
  }

  .about-page__coverage-map {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: min(100%, 440px);
    margin: 14px auto 0;
    opacity: 1;
  }
}

.about-page__timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 28px;
}

.about-page__timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 36px;
  bottom: 36px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(245, 166, 29, 0.55), rgba(245, 166, 29, 0.1));
  border-radius: 2px;
}

.about-page__timeline-step {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
}

.about-page__timeline-step:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.about-page__timeline-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(245, 166, 29, 0.12);
  border: 2px solid rgba(245, 166, 29, 0.55);
  color: #f5a61d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: background 0.22s, border-color 0.22s;
}

.about-page__timeline-step:hover .about-page__timeline-num {
  background: rgba(245, 166, 29, 0.22);
  border-color: rgba(245, 166, 29, 0.85);
}

.about-page__timeline-body {
  padding-top: 6px;
}

.about-page__timeline-body strong {
  display: block;
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 6px;
  color: #ecf3ff;
}

.about-page__timeline-body p {
  margin: 0;
  font-size: 16px;
  color: var(--about-text-soft);
  line-height: 1.6;
}

.about-page__values ul,
.about-page__guarantees ul,
.about-page__certificates ul {
  margin: 0;
  padding-left: 20px;
  color: #d8e3f7;
  display: grid;
  gap: 10px;
  font-size: 17px;
}

.about-page__values li,
.about-page__guarantees li,
.about-page__certificates li,
.about-page__partners li {
  line-height: 1.55;
}

.about-page__advantages-cards {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-page__advantage-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid var(--about-stroke);
  background: var(--about-surface);
  padding: 20px 18px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.about-page__advantage-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 166, 29, 0.45);
}

.about-page__advantage-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 166, 29, 0.1);
  color: #f5a61d;
  flex-shrink: 0;
}

.about-page__advantage-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.about-page__advantage-text {
  font-size: 15px;
  color: #dce6f8;
  line-height: 1.5;
}

.about-page__qualifications-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-page__qualifications-grid article {
  border-radius: 16px;
  border: 1px solid var(--about-stroke);
  background: var(--about-surface);
  padding: 16px 18px;
}

.about-page__qualifications-grid h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.3;
}

.about-page__qualifications-grid p {
  margin: 0;
  color: #d8e3f7;
  line-height: 1.55;
}

.about-page__director-inner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.about-page__director--with-photo .about-page__director-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}

.about-page__director-photo {
  margin: 0;
  flex-shrink: 0;
}

.about-page__director-photo img {
  width: 100%;
  max-width: 200px;
  height: 240px;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  border: 1px solid var(--about-stroke);
  display: block;
}

.about-page__director-content {
  align-self: center;
}

.about-page__director-quote {
  margin: 0 0 14px;
  padding: 18px 20px;
  border-left: 4px solid rgba(247, 210, 154, 0.78);
  background: rgba(15, 22, 32, 0.44);
  border-radius: 0 12px 12px 0;
  color: #ecf3ff;
  font-size: 18px;
  line-height: 1.55;
  font-style: italic;
}

.about-page__director-signature {
  margin: 0;
  color: var(--about-text-soft);
  font-size: 15px;
}

.about-page__partners-list {
  margin: 8px 0 0;
  padding-left: 18px;
  color: #d8e3f7;
  display: grid;
  gap: 8px;
}

.about-page__faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-page__faq-grid article {
  border-radius: 16px;
  border: 1px solid var(--about-stroke);
  background: var(--about-surface);
  padding: 14px;
}

.about-page__faq-grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.3;
}

.about-page__faq-grid p {
  margin: 0;
  color: #d8e3f7;
}

.about-page__certificates a {
  color: #f9d08f;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.about-page__certificates a:hover {
  color: #ffe3b5;
}

.about-page__hero,
.about-page__stats,
.about-page__segments,
.about-page__process,
.about-page__values,
.about-page__advantages,
.about-page__team,
.about-page__qualifications,
.about-page__guarantees,
.about-page__coverage,
.about-page__certificates,
.about-page__partners,
.about-page__faq,
.about-page__cta {
  animation: aboutReveal 560ms ease both;
}

.about-page__stats {
  animation-delay: 60ms;
}

.about-page__segments {
  animation-delay: 110ms;
}

.about-page__process,
.about-page__values,
.about-page__advantages,
.about-page__team,
.about-page__qualifications,
.about-page__guarantees,
.about-page__coverage,
.about-page__certificates,
.about-page__partners,
.about-page__faq,
.about-page__cta {
  animation-delay: 150ms;
}

@keyframes aboutReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page__hero,
  .about-page__stats,
  .about-page__segments,
  .about-page__process,
  .about-page__values,
  .about-page__advantages,
  .about-page__team,
  .about-page__qualifications,
  .about-page__guarantees,
  .about-page__coverage,
  .about-page__certificates,
  .about-page__partners,
  .about-page__faq,
  .about-page__cta {
    animation: none;
    transition: none;
  }
}

.about-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.about-page__btn-secondary {
  background: transparent;
  border: 1px solid rgba(247, 210, 154, 0.65);
  color: #f7d29a;
}

.about-page__btn-secondary:hover {
  background: rgba(247, 210, 154, 0.12);
  border-color: rgba(247, 210, 154, 0.95);
  color: #ffe7c0;
}

.services-page {
  padding: 138px 0 42px;
}

.services-page.td-section,
.service-detail-page.td-section {
  border-bottom: 0;
}

.services-page__hero {
  padding: 0;
  margin-bottom: 32px;
  position: relative;
}

.services-page__hero::before {
  content: none;
}

.services-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.services-page__groups {
  margin-bottom: 0;
}

.services-page__groups-head {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.2;
}

.services-page__groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.services-page__group-card {
  position: relative;
  padding: 18px;
  min-height: 158px;
  display: flex;
  align-items: center;
}

.services-page__group-card h3 {
  margin: 0;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.25;
  text-wrap: balance;
}

.services-page__group-card p {
  margin: 0;
  color: #d6e1f4;
  font-size: 14px;
  line-height: 1.55;
}

.services-page__group-card > * {
  position: relative;
  z-index: 1;
}

.services-page__group-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.services-page__card {
  position: relative;
  padding: 22px;
  min-height: 290px;
  display: flex;
  flex-direction: column;
}

.services-page__card > * {
  position: relative;
  z-index: 1;
}

.services-page__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: var(--service-icon-soft, rgba(247, 210, 154, 0.12));
  color: var(--service-icon-solid, #ffdba4);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.services-page__icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.services-page__card h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1.16;
  text-wrap: balance;
}

.services-page__price {
  margin: 0 0 12px;
  font-size: 15px;
  color: #d8e3f8;
}

.services-page__price strong {
  color: #ffe1ad;
  font-size: 16px;
  font-weight: 700;
}

.services-page__card p {
  margin: 0 0 14px;
  color: #d6e1f4;
}

.services-page__card > p:not(.services-page__price) {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.services-page__more {
  position: relative;
  z-index: 3;
  color: #f7d29a;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-top: auto;
}

.services-page__more:hover {
  color: #ffe5ba;
}

.services-page__card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.service-detail-page {
  padding: 138px 0 48px;
  overflow-x: clip;
}

.service-detail-page__hero {
  margin-bottom: 24px;
}

.service-detail-page .vip26-breadcrumbs {
  margin-bottom: 14px;
}

.services-page .vip26-breadcrumbs {
  margin-bottom: 14px;
}

.service-detail-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(320px, .95fr);
  gap: 18px;
  align-items: start;
  min-width: 0;
}

.service-detail-page__main {
  margin-bottom: 0;
}

.service-detail-page__main::before {
  width: min(320px, 42%);
}

.service-detail-page__content,
.service-detail-page__contact {
  padding: 24px;
  min-width: 0;
}

.service-detail-page__content {
  position: relative;
}

.service-detail-page__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(280px, 38%);
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(245, 166, 29, 0.85), rgba(245, 166, 29, 0));
}

.service-detail-page__sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  align-self: start;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
}

.service-detail-page__subtitle {
  margin-bottom: 8px;
}

.service-detail-page__lead {
  margin: 12px 0 0;
}

.service-detail-page__featured-media {
  margin: 18px 0 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 44px rgba(3, 8, 18, 0.24);
}

.service-detail-page__featured-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-detail-page__price {
  margin: 12px 0 0;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 16px;
  color: #e0e8f8;
}

.service-detail-page__price strong {
  color: #ffdca2;
  font-size: 24px;
  line-height: 1;
}

.service-detail-page__intent-subtitle {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: #ffd8a1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.service-detail-page__intent-nav {
  margin-top: 14px;
}

.service-detail-page__intent-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-detail-page__intent-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #dbe6f8;
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
}

.service-detail-page__intent-nav a[aria-current="page"] {
  border-color: rgba(245, 166, 35, 0.62);
  background: rgba(245, 166, 35, 0.14);
  color: #ffe2b2;
}

.service-detail-page__intent-focus {
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(245, 166, 35, 0.28);
  background: linear-gradient(180deg, rgba(245, 166, 35, 0.08), rgba(255, 255, 255, 0.02));
}

.service-detail-page__intent-focus h2 {
  margin: 0 0 8px;
  font-size: clamp(21px, 2.1vw, 28px);
  line-height: 1.2;
}

.service-detail-page__intent-focus p {
  margin: 0;
  color: #d7e3f7;
}

.article-meta-bar {
  margin: 14px 0 16px;
  padding: 16px 18px;
}

.article-meta-bar__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.article-meta-bar__items--inline {
  grid-template-columns: repeat(3, minmax(0, auto));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.article-meta-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-meta-bar__item--rating {
  justify-self: end;
  gap: 12px;
}

.article-meta-bar__icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.article-meta-bar__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.article-meta-bar__items--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-meta-bar__content {
  display: grid;
  gap: 2px;
}

.article-meta-bar__label {
  font-size: 12px;
  color: #b8c8de;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.article-meta-bar__content strong {
  font-size: clamp(11px, 1.05vw, 17px);
  line-height: 1;
}

.author-box__rating-title {
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #e5eefb;
}

.wp-star-rating {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
}

.star-rating-item {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 166, 35, 0.28);
}

.star-rating-item .i-ico {
  width: 100%;
  height: 100%;
}

.star-rating-item.is-active {
  color: #f5a61d;
}

.service-detail-page__text {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.service-detail-page__text p {
  margin: 0;
  color: #dbe5f7;
  line-height: 1.72;
  font-size: 17px;
}

.service-detail-page__text figure,
.service-detail-page__text .wp-block-image,
.service-detail-page__text p:has(img) {
  margin: 6px 0 10px;
}

.service-detail-page__text img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.service-detail-page__text h2,
.service-detail-page__text h3,
.service-detail-page__text h4 {
  margin: 8px 0 2px;
  line-height: 1.25;
}

.service-detail-page__text ul,
.service-detail-page__text ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.service-detail-page__text li {
  color: #dbe5f7;
  line-height: 1.66;
}

.service-detail-page__text blockquote {
  margin: 4px 0;
  padding: 14px 16px;
  border-left: 3px solid rgba(247, 210, 154, 0.78);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 0 10px 10px 0;
}

.service-detail-page__text table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
  font-size: 15px;
  line-height: 1.5;
  background: rgba(8, 17, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  overflow: hidden;
}

.service-detail-page__text th,
.service-detail-page__text td {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  color: #dce8fb;
}

.service-detail-page__text th {
  background: rgba(247, 210, 154, 0.12);
  color: #ffe0ac;
  font-weight: 700;
}

.service-detail-page__text tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}

.service-detail-page__text .table-responsive {
  overflow-x: auto;
}

.service-detail-page__cta-end {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 10px;
}

.service-detail-page__cta-end h2 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.2;
}

.service-detail-page__cta-end p {
  margin: 0;
  color: #d8e3f7;
}

.service-detail-page__cta-phone-label {
  font-size: 14px;
  color: #bcc9df;
}

.service-detail-page__cta-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.service-detail-page__cta-contact {
  min-width: 0;
}

.service-detail-page__cta-phone {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  overflow-wrap: anywhere;
}

.service-detail-page__cta-end .btn {
  white-space: nowrap;
  width: fit-content;
}

.service-detail-page__contact h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.service-detail-page__phone,
.service-detail-page__email {
  display: block;
  margin-bottom: 8px;
  color: #ecf3ff;
  font-weight: 700;
}

.service-detail-page__contacts-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.service-detail-page__contacts-line .service-detail-page__phone,
.service-detail-page__contacts-line .service-detail-page__email {
  display: inline;
  margin-bottom: 0;
}

.service-detail-page__contacts-sep {
  color: rgba(236, 243, 255, 0.6);
}

.service-detail-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 14px;
}

.service-detail-page__actions .btn {
  width: 100%;
}

.service-detail-page__capture {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}

.service-detail-page__capture .quizle-container {
  width: 100%;
}

.service-detail-page__capture .quizle {
  margin: 0;
  max-width: none;
  --quizle-height: auto;
}

.service-detail-page__capture .quizle--view-slides {
  height: auto;
  min-height: 0;
}

.service-detail-page__capture .quizle-image-screen__container,
.service-detail-page__capture .quizle-body {
  overflow: visible;
}

.service-detail-page__capture .quizle-image-screen__body {
  justify-content: flex-start;
}

.service-detail-page__capture .quizle-image-screen__description {
  margin-top: 12px;
}

.service-detail-page__capture .quizle-image-screen__button {
  margin-top: 18px;
}

.service-detail-page__other-cards {
  margin-top: 18px;
}

.service-detail-page__other-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.service-detail-page__other-head h2 {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.2;
}

.service-detail-page__other-all {
  white-space: nowrap;
}

.service-detail-page__other-slider {
  padding-left: 54px;
  padding-right: 54px;
  padding-bottom: 34px;
}

.service-detail-page__other-slider .swiper-wrapper {
  align-items: stretch;
}

.service-detail-page__other-slider .swiper-slide {
  height: auto;
}

.service-detail-page__other-card {
  position: relative;
  padding: 16px;
  display: grid;
  gap: 10px;
  height: 100%;
  min-width: 0;
}

.service-detail-page__other-card > * {
  position: relative;
  z-index: 1;
}

.service-detail-page__other-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--service-icon-soft, rgba(247, 210, 154, 0.12));
  color: var(--service-icon-solid, #ffdba4);
}

.service-detail-page__other-icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.service-detail-page__other-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.service-detail-page__other-card p {
  margin: 0;
  color: #c9d8ee;
  line-height: 1.55;
  font-size: 14px;
}

.service-detail-page__other-link {
  position: relative;
  z-index: 3;
  color: #f8d39d;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-detail-page__other-link:hover {
  color: #ffe7bf;
}

.service-detail-page__other-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.service-detail-page__bundle,
.service-detail-page__faq {
  margin-top: 18px;
}

.service-detail-page__faq-head h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
}

.service-detail-page__faq-list {
  display: grid;
  gap: 10px;
}

.service-detail-page__faq-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 12px;
}

.service-detail-page__faq-item summary {
  cursor: pointer;
  font-weight: 700;
  line-height: 1.35;
}

.service-detail-page__faq-item p {
  margin: 10px 0 0;
  color: #c9d8ee;
  line-height: 1.55;
}

.service-detail-page__other-dots.swiper-pagination {
  bottom: 0;
}

.service-detail-page__other-dots .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.34);
  opacity: 1;
}

.service-detail-page__other-dots .swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.service-detail-page__other-prev,
.service-detail-page__other-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(16, 24, 36, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  top: 48%;
}

.service-detail-page__other-prev {
  left: 6px;
}

.service-detail-page__other-next {
  right: 6px;
}

.service-detail-page__other-prev::after,
.service-detail-page__other-next::after {
  font-size: 14px;
  font-weight: 700;
}

.service-detail-page__other-prev:hover,
.service-detail-page__other-next:hover {
  border-color: rgba(245, 166, 35, 0.72);
  color: #ffd8a1;
}

@media (max-width: 1120px) {
  .service-detail-page__layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, 1fr);
    gap: 16px;
  }

  .service-detail-page__sidebar {
    top: 88px;
    max-height: calc(100vh - 104px);
  }
}

@media (max-width: 900px) {
  .td-section {
    padding: 42px 0;
  }

  .td-section__line {
    margin-bottom: 20px;
  }

  .page-container-standard {
    padding: 56px 0 28px;
  }

  .about-page {
    padding: 48px 0 28px;
  }

  .services-page,
  .service-detail-page {
    padding: 56px 0 28px;
  }

  .service-detail-page__content,
  .service-detail-page__contact,
  .service-detail-page__other {
    padding: 18px;
  }

  .services-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-page__groups-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-page__layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-detail-page__other-prev,
  .service-detail-page__other-next {
    display: none;
  }

  .service-detail-page__other-slider {
    padding-left: 0;
    padding-right: 0;
  }

  .service-detail-page__other-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-page__intent-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-page__intent-nav a {
    width: 100%;
  }

  .service-detail-page__other-card h3 {
    font-size: 18px;
  }

  .article-meta-bar__items {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .article-meta-bar__items--inline {
    grid-template-columns: 1fr;
  }

  .article-meta-bar__item--rating {
    justify-self: start;
  }

  .service-detail-page__cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .service-detail-page__sidebar {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .service-detail-page__cta-end .btn {
    width: 100%;
  }

  .about-page__stats,
  .about-page__segments,
  .about-page__faq-grid,
  .about-page__qualifications-grid {
    grid-template-columns: 1fr;
  }

  .about-page__advantages-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page__director--with-photo .about-page__director-inner {
    grid-template-columns: 1fr;
  }

  .about-page__director-photo img {
    max-width: 140px;
    height: 180px;
  }

  .about-page__timeline {
    padding-left: 4px;
  }

  .about-page__timeline::before {
    display: none;
  }

  .about-page__cta-actions {
    flex-direction: column;
  }

  .about-page__cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-container-standard {
    padding: 44px 0 24px;
  }

  .about-page {
    padding: 40px 0 24px;
  }

  .services-page,
  .service-detail-page {
    padding: 44px 0 24px;
  }

  .page-hero,
  .services-page__hero {
    margin-bottom: 24px;
  }

  .td-section {
    padding: 34px 0;
  }

  .td-section h2,
  .td-section .sc_item_title.sc_title_title {
    margin-bottom: 10px;
  }

  .services-page__grid,
  .services-page__groups-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-page__content,
  .service-detail-page__contact {
    padding: 16px;
  }

  .service-detail-page__content h1 {
    font-size: clamp(26px, 8vw, 36px);
  }

  .service-detail-page__text table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 768px) {
  .services-icons-block .sc_icons_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .services-icons-block .sc_icons_item {
    padding: clamp(14px, 1.4vw, 18px);
  }
}

@media (max-width: 600px) {
  .page-container-standard {
    padding: 40px 0 22px;
  }

  .about-page {
    padding: 36px 0 22px;
  }

  .services-page,
  .service-detail-page {
    padding: 40px 0 22px;
  }

  .btn,
  .sc_button,
  .menu-toggle,
  .menu-submenu-toggle,
  .service-detail-page__more,
  .services-page__more {
    min-height: 44px;
    touch-action: manipulation;
  }

  .services-page__grid {
    grid-template-columns: 1fr;
  }

  .services-page__groups-grid {
    grid-template-columns: 1fr;
  }

  .about-page__advantages-cards {
    grid-template-columns: 1fr;
  }

  .services-icons-block .sc_icons_list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .services-icons-block .sc_icons_item {
    padding: 12px;
  }

  .services-icons-block .sc_icons_icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .services-icons-block .sc_icons_item_title {
    font-size: 16px;
  }

  .services-icons-block .sc_icons_item_description {
    gap: 0;
  }

  .services-page__group-card {
    align-items: flex-start;
    min-height: 0;
  }

  .service-detail-page__contacts-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .service-detail-page__contacts-sep {
    display: none;
  }
}

.search-page {
  padding: 140px 0 46px;
}

.search-page__title {
  margin: 0 0 18px;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.03;
}

.search-page__summary {
  color: var(--color-muted);
  margin-bottom: 18px;
}

.search-page__list {
  display: grid;
  gap: 14px;
}

.search-page__item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 16px;
  background: rgba(17, 26, 39, 0.45);
}

.search-page__item h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.search-page__item p {
  margin: 0;
  color: var(--color-muted);
}

.objects-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  pointer-events: none;
}

.objects-map-canvas {
  width: 100%;
  min-height: 460px;
  height: 460px;
}

.director-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 30px;
  align-items: center;
}

.director-grid img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
}

.director-quote {
  position: relative;
  margin: 0 0 20px;
  padding: 18px 20px 18px 28px;
  border-left: 3px solid var(--color-primary);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 10px 10px 0;
  font-size: clamp(18px, 2.3vw, 28px);
  line-height: 1.3;
}

.director-quote::before {
  content: '"';
  position: absolute;
  left: 10px;
  top: 4px;
  font-size: 34px;
  color: var(--color-primary);
  line-height: 1;
}

.director-quote p {
  margin: 0;
}

.brands-copy {
  max-width: 1220px;
  margin-top: 6px;
  margin-bottom: 8px;
}

.brands-copy p {
  margin: 0 0 14px;
  font-size: clamp(22px, 1.7vw, 43px);
  line-height: 1.34;
  letter-spacing: -0.01em;
  color: var(--color-muted);
}

@media (max-width: 1380px) {
  .brands-grid {
    grid-template-columns: repeat(4, minmax(160px, 1fr));
  }
}

@media (max-width: 1080px) {
  .brands-grid {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
  }

  .services-icons-block .sc_icons_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-icons-block .sc_icons_item {
    padding-top: 8px;
  }

  .objects-cases {
    grid-template-columns: 1fr;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1.4fr;
  gap: 30px;
  align-items: start;
  margin-top: 18px;
}

.faq-objection-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-objection-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(16, 24, 36, 0.45);
  color: rgba(231, 238, 250, 0.95);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
}

.faq-objection-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.faq-side-image {
  position: sticky;
  top: 100px;
}

.faq-side-image img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow);
}

.faq-list {
  border-top: 1px solid var(--color-line);
}

.faq-item {
  border-bottom: 1px solid var(--color-line);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  color: #f2f6ff;
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 700;
  padding: 22px 0;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-size: 30px;
  line-height: 1;
}

.faq-item.is-open .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 220px;
}

.faq-answer p {
  margin: 0 0 18px;
  color: var(--color-muted);
}

.faq-conversion-cta {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 25, 38, 0.55);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-conversion-cta p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-side-image {
    position: static;
  }

  .faq-conversion-cta,
  .testimonials-conversion-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.home .hero-slide__content .btn,
.home .hero-slide__content .sc_button.sc_button_default.sc_button_size_normal {
  margin-inline: auto;
}

.contact-map-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: stretch;
}

.contact-map-copy .wysiwyg {
  margin-bottom: 16px;
}

.contact-map-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-map-list li {
  color: var(--color-muted);
}

.contact-map-list strong {
  color: var(--color-text);
}

.contact-map-frame {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(31, 35, 40, 0.12);
  box-shadow: var(--shadow);
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.theme-dark {
  background: linear-gradient(180deg, #111926, #0f1826);
  color: #fff;
}

.theme-dark .wysiwyg {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  margin-top: 46px;
  padding: 44px 0 24px;
  border-top: 1px solid var(--color-line);
  background: linear-gradient(180deg, rgba(13, 20, 32, 0.78), rgba(10, 16, 26, 0.98));
  position: relative;
  overflow: hidden;
}

.site-footer::before,
.site-footer::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.site-footer::before {
  inset: 0;
  background: radial-gradient(circle at 9% -10%, rgba(247, 210, 154, 0.24), transparent 42%);
}

.site-footer::after {
  left: 0;
  right: 0;
  bottom: -40px;
  height: 220px;
  /* background: url('/wp-content/uploads/2023/08/footer-bg-vector.svg') center bottom / 1300px no-repeat; */
  opacity: 0.48;
}

.site-footer__geometry {
  position: absolute;
  right: -80px;
  top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 54px);
  gap: 10px;
  transform: rotate(-8deg);
  opacity: 0.42;
  pointer-events: none;
}

.site-footer__geo-item {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(176, 196, 230, 0.38);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.01));
}

.site-footer__grid {
  position: relative;
  z-index: 1;
  padding-bottom: 10px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 14px;
}

.site-footer__grid h6 {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #eef4ff;
  opacity: .86;
}

.site-footer__grid p {
  margin: 0 0 8px;
  color: var(--color-muted);
}

.site-footer a {
  color: #d8e2f5;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  position: relative;
  z-index: 1;
}

.socials-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
}

.custom_links_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.sc_socials.sc_socials_icons_names {
  display: grid;
  gap: 8px;
}

.sc_socials .social_item {
  color: #d8e2f5;
}

.sc_socials .social_item::before {
  display: inline-block;
  margin-right: 8px;
}

.social_icon_telegram::before {
  content: 'TG';
}

.social_icon_maxcdn::before {
  content: 'MX';
}

.social_icon_whatsapp::before,
.social_icon_whatsapp-2::before {
  content: 'WA';
}

.icon-engineering::before {
  content: '\2699';
}

.icon-monitor::before {
  content: '\1F5A5';
}

.icon-new-fire-alarm-icon-1::before,
.icon-fire::before {
  content: '\1F525';
}

.icon-new-camera-icon-1::before {
  content: '\1F4F9';
}

.menu-toggle {
  gap: 6px;
}

.menu-toggle::before {
  content: '\2630';
}

.site-header.is-menu-open .menu-toggle::before {
  content: '\00d7';
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 860px) {
  body.menu-open {
    overflow: hidden;
  }

  body:not(.home):not(.front-page) .site-header {
    position: relative;
    background: rgba(6, 13, 24, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .site-header__bar {
    background: rgba(6, 13, 24, 0.9);
  }

  .site-main {
    padding-top: 128px;
  }

  body:not(.home):not(.front-page) .site-main,
  body:not(.home):not(.front-page) .site-main.container {
    padding-top: 0;
  }

  body.home .site-main,
  body.front-page .site-main {
    padding-top: 10px;
  }

  .site-main > section {
    margin-bottom: 18px;
  }

  .site-main .vip26-breadcrumbs {
    margin-top: 4px;
  }

  .site-header__inner {
    min-height: auto;
    padding: 10px 0;
    row-gap: 10px;
    flex-wrap: wrap;
  }

  .site-logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  .site-logo img {
    max-height: 42px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 3;
    width: 100%;
    padding: 10px 12px;
    position: relative;
    z-index: 270;
  }

  .site-header.is-menu-open .menu-toggle {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 8px);
    left: 12px;
    right: 12px;
    width: auto;
    z-index: 320;
    background: rgba(8, 13, 22, 0.92);
    backdrop-filter: blur(6px);
    border-color: rgba(255, 255, 255, 0.2);
  }

  body.admin-bar .site-header.is-menu-open .menu-toggle {
    top: calc(env(safe-area-inset-top, 0px) + 40px);
  }

  @media (max-width: 782px) {
    body.admin-bar .site-header.is-menu-open .menu-toggle {
      top: calc(env(safe-area-inset-top, 0px) + 54px);
    }
  }

  .site-nav-wrap {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #080d16;
    border-bottom: 0;
    padding: calc(env(safe-area-inset-top, 0px) + 64px) 16px calc(env(safe-area-inset-bottom, 0px) + 20px) 16px;
    display: none;
    z-index: 260;
    isolation: isolate;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  body.admin-bar .site-nav-wrap {
    padding-top: calc(env(safe-area-inset-top, 0px) + 32px + 64px);
  }

  @media (max-width: 782px) {
    body.admin-bar .site-nav-wrap {
      padding-top: calc(env(safe-area-inset-top, 0px) + 46px + 64px);
    }
  }

  .is-menu-open .site-nav-wrap {
    display: block;
  }

  .site-nav {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .site-nav > ul {
    display: grid;
    gap: 6px;
  }

  .site-nav > ul > li {
    padding: 0;
    position: relative;
  }

  .site-nav .menu-item-has-children {
    position: relative;
  }

  .site-nav > ul > li > a {
    display: block;
    padding: 10px 46px 10px 4px;
  }

  .site-nav .sub-menu,
  .site-nav > ul > li > .sub-menu,
  .site-nav > ul > li.menu-item-has-children:hover > .sub-menu,
  .site-nav .menu-item-has-children:focus-within > .sub-menu {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: none;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    margin: 4px 0 10px;
    padding: 10px;
    grid-template-columns: 1fr;
    display: none;
  }

  .site-nav .menu-item-has-children.is-open > .sub-menu {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .site-nav .menu-item-has-children.is-open > .sub-menu a,
  .site-nav .menu-item-has-children.is-open > .sub-menu button,
  .site-nav .menu-item-has-children.is-open .menu-services-more {
    pointer-events: auto !important;
  }

  .menu-submenu-toggle {
    display: inline-flex;
    position: absolute;
    top: 6px;
    right: 0;
    width: 34px;
    height: 34px;
    margin-left: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: #f5f9ff;
  }

  /* Force Services toggle to match all other mobile + buttons */
  .site-nav > ul > li.menu-item-services > .menu-submenu-toggle {
    display: inline-flex;
    position: absolute;
    top: 6px;
    right: 0;
    width: 34px;
    height: 34px;
    margin-left: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: #f5f9ff;
  }

  .site-nav > ul > li.menu-item-services > .menu-submenu-toggle:hover,
  .site-nav > ul > li.menu-item-services > .menu-submenu-toggle:active,
  .site-nav > ul > li.menu-item-services > .menu-submenu-toggle:focus {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    color: #f5f9ff;
  }

  .site-nav .menu-item-has-children > .menu-submenu-toggle::before {
    content: '+';
    font-size: 18px;
    font-weight: 600;
  }

  .site-nav > ul > li.menu-item-services > .menu-submenu-toggle::before {
    content: '+';
    font-size: 18px;
    font-weight: 600;
  }

  .site-nav .menu-item-has-children.is-open > .menu-submenu-toggle {
    border-color: rgba(245, 166, 35, 0.52);
    background: rgba(245, 166, 35, 0.12);
    color: #ffffff;
  }

  .site-nav .menu-item-has-children.is-open > .menu-submenu-toggle:hover,
  .site-nav .menu-item-has-children.is-open > .menu-submenu-toggle:active,
  .site-nav .menu-item-has-children.is-open > .menu-submenu-toggle:focus {
    border-color: rgba(245, 166, 35, 0.52);
    background: rgba(245, 166, 35, 0.12);
    color: #ffffff;
  }

  .site-nav .menu-item-has-children.is-open > .menu-submenu-toggle::before {
    content: '\2212';
  }

  .site-nav > ul > li.menu-item-services.is-open > .menu-submenu-toggle::before {
    content: '\2212';
  }

  .site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu {
    position: static;
    left: auto;
    right: auto;
    transform: none;
    width: auto;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
    margin: 12px 0 10px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu > li.menu-item-has-children {
    min-width: 0;
  }

  .site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu > li > .menu-submenu-toggle {
    display: none;
  }

  .site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu > li,
  .site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu > li.menu-item-services-overview {
    padding: 12px;
  }

  .site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu > li > a {
    display: block;
    padding: 0;
    font-size: 16px;
  }

  .site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu > li > a::before {
    display: none;
  }

  .site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu > li > .sub-menu {
    display: grid;
    opacity: 1;
    visibility: visible;
    margin-bottom: 0;
    padding: 8px 0 0;
  }

  .site-nav > ul > li.menu-item-services.menu-item-has-children > .sub-menu > li > .sub-menu a {
    font-size: 15px;
  }

  .menu-services-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 38px;
    margin-top: 12px;
    padding: 8px 12px;
    border: 1px solid rgba(245, 166, 29, 0.22);
    border-radius: 10px;
    background: rgba(245, 166, 29, 0.08);
    color: #f5c77d;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
  }

  .menu-services-more[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(232, 238, 251, 0.92);
  }

  .site-nav > ul > li.menu-item-has-children > .sub-menu > li > .sub-menu {
    padding-left: 8px;
  }

  .site-header__actions {
    margin-left: 0;
    gap: 8px;
    flex-shrink: 0;
    position: relative;
    z-index: 205;
  }

  .site-header__actions .icon-link {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .site-header__actions .btn,
  .site-header__actions .sc_button,
  .site-header__actions .sc_button.sc_button_default {
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
    white-space: nowrap;
  }

  .hero .swiper-button-prev,
  .hero .swiper-button-next {
    display: none;
  }

  .hero-slide {
    min-height: 90vh;
  }

  .hero-slide__content {
    width: calc(100% - 32px);
    padding: 120px 0 66px;
  }

  .hero-slide h1,
  .hero-slide h2 {
    font-size: clamp(34px, 10vw, 54px);
    max-width: 460px;
  }

  .hero-slide p {
    font-size: 16px;
    margin-top: 16px;
    margin-bottom: 24px;
  }

  .hero-trust-list {
    margin-top: 18px;
    gap: 8px;
  }

  .hero-trust-list li {
    font-size: 11px;
    padding: 7px 10px;
  }

  .site-header__bar-inner {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    padding: 6px 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__geometry {
    right: -42px;
    top: 48px;
    grid-template-columns: repeat(2, 46px);
    gap: 8px;
  }

  .site-footer__geo-item {
    width: 46px;
    height: 46px;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .brands-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 14px;
  }

  .brands-grid img {
    height: 74px;
    padding: 10px 12px;
  }

  .brands-copy p {
    font-size: clamp(17px, 4.3vw, 23px);
    line-height: 1.4;
  }

  .services-icons-block .sc_icons_list,
  .sc_services_list {
    grid-template-columns: 1fr;
  }

  .sc_testimonials_grid {
    display: flex;
  }

  .sc_testimonials_item {
    min-height: 0;
    padding: 28px 24px;
  }

  .sc_testimonials_hover_helper {
    display: none;
  }

  .sc_testimonials_item_mark {
    margin-bottom: 12px;
    font-size: 58px;
  }

  .sc_testimonials_item_author img,
  .sc_testimonials_item_avatar-fallback {
    width: 54px;
    height: 54px;
  }

  .services-icons-block .sc_icons_item {
    min-height: 0;
  }

  .services-icons-block .container {
    width: min(var(--container), calc(100% - 36px));
  }

  .director-grid {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-map-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-frame {
    min-height: 300px;
  }

  .objects-map-frame,
  .objects-map-frame iframe {
    min-height: 320px;
  }

  .vip26-request-modal__dialog {
    margin-top: 14px;
    width: calc(100% - 14px);
    max-height: calc(100vh - 16px);
  }

  .vip26-request-modal__content iframe {
    min-height: 72vh;
  }
}

@media (max-width: 480px) {
  .site-logo img {
    max-height: 36px;
  }

  .site-header__actions {
    gap: 6px;
  }

  .site-header__actions .btn,
  .site-header__actions .sc_button,
  .site-header__actions .sc_button.sc_button_default {
    min-height: 32px;
    padding: 0 10px;
    font-size: 10px;
    letter-spacing: 0.01em;
  }

  .site-header__actions .icon-link {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 390px) {
  .site-main {
    padding-top: 6px;
  }

  .site-main.container {
    padding-top: 118px;
  }

  .site-main > section {
    margin-bottom: 12px;
  }

  .site-main .vip26-breadcrumbs {
    margin-top: 10px;
  }

  .hero-slide {
    min-height: 86vh;
  }

  .hero-slide__content {
    width: calc(100% - 22px);
    padding: 98px 0 36px;
  }

  .hero-slide h1,
  .hero-slide h2 {
    font-size: clamp(27px, 8.8vw, 34px);
    line-height: 1.03;
    max-width: 100%;
  }

  .hero-slide p {
    font-size: 14px;
    line-height: 1.42;
    margin: 11px 0 14px;
  }

  .hero .btn,
  .hero .sc_button.sc_button_default.sc_button_size_normal {
    width: 100%;
    justify-content: center;
    padding: 11px 13px;
    font-size: 12px;
  }

  .hero-trust-list {
    gap: 6px;
    margin-top: 10px;
  }

  .hero-trust-list li {
    font-size: 10px;
    padding: 5px 8px;
  }

  .vip26-search-modal__row {
    grid-template-columns: 1fr;
  }

  .services-icons-block,
  .services-grid-block,
  .cta-block {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .services-icons-block .container,
  .services-grid-block .container,
  .cta-block .container {
    width: calc(100% - 24px);
  }

  .services-icons-block .sc_icons_list,
  .sc_services_list {
    margin-top: 10px;
    gap: 8px;
  }

  .services-icons-block .sc_icons_item,
  .sc_services_item {
    padding: 12px;
  }

  .services-icons-block .sc_icons_icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .services-icons-block .sc_icons_icon svg {
    width: 28px;
    height: 28px;
  }

  .services-icons-block .sc_icons_item_title,
  .sc_services_item_title {
    font-size: 17px;
    line-height: 1.18;
  }

  .services-icons-block .sc_icons_item_description span,
  .sc_services_item_description {
    font-size: 13px;
    line-height: 1.42;
  }

  .cta-grid {
    gap: 10px;
  }

  .cta-grid .sc_item_title.sc_title_title {
    font-size: clamp(20px, 7.8vw, 26px);
    line-height: 1.08;
    margin-bottom: 8px;
  }

  .cta-grid .wysiwyg {
    font-size: 13px;
    line-height: 1.4;
  }

  .cta-grid .sc_button.sc_button_default.sc_button_size_normal {
    width: 100%;
    justify-content: center;
    padding: 11px 13px;
    font-size: 12px;
  }
}

/* Partners page */
.partners-page {
  --partners-card-border: 1px solid rgba(255, 255, 255, 0.12);
  --partners-card-bg: linear-gradient(165deg, rgba(20, 31, 47, 0.66), rgba(10, 18, 30, 0.52));
}

.partners-page__hero {
  margin-bottom: 24px;
}

.partners-page__summary {
  margin: 14px 0 0;
  font-size: 14px;
  color: #b9c9e2;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.partner-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: var(--partners-card-border);
  border-radius: 14px;
  background: var(--partners-card-bg);
  padding: 16px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 166, 29, 0.42);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.2);
}

.partner-card__logo-wrap {
  height: 74px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  margin-bottom: 12px;
}

.partner-card__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.partner-card__logo-wrap--placeholder {
  background: linear-gradient(145deg, rgba(245, 166, 29, 0.14), rgba(108, 157, 255, 0.14));
  border-color: rgba(245, 166, 29, 0.32);
}

.partner-card__logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(8, 14, 24, 0.78);
  color: #ffe0a8;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
}

.partner-card__name {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.24;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.partner-card__description {
  margin: 0 0 14px;
  color: #dbe7fb;
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.partner-card__link {
  margin-top: auto;
  min-height: 40px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(245, 166, 29, 0.5);
  color: #f7d29a;
  background: rgba(245, 166, 29, 0.08);
  font-size: 13px;
  font-weight: 700;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease;
}

.partner-card__link:hover {
  border-color: rgba(245, 166, 29, 0.85);
  background: rgba(245, 166, 29, 0.16);
  color: #ffe3b4;
}

.partner-card__link:focus-visible {
  outline: 2px solid rgba(255, 214, 152, 0.9);
  outline-offset: 2px;
}

.partners-page__empty {
  margin: 0;
  padding: 16px 18px;
  border: var(--partners-card-border);
  border-radius: 12px;
  color: #cfddf4;
  background: rgba(255, 255, 255, 0.02);
}

.partners-page__cta {
  margin-top: 26px;
}

@media (max-width: 1180px) {
  .partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-card {
    padding: 14px;
  }
}

@media (max-width: 560px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .partner-card {
    padding: 13px;
  }

  .partner-card__logo-wrap {
    height: 68px;
  }

  .partner-card__name {
    font-size: 18px;
  }

  .partner-card__description {
    color: #e5eefc;
    line-height: 1.56;
    -webkit-line-clamp: 5;
  }

  .partner-card__link {
    width: 100%;
    justify-content: center;
  }

  .partners-page__cta .cta-actions {
    flex-direction: column;
  }

  .partners-page__cta .cta-actions .btn,
  .partners-page__cta .cta-actions .btn-secondary {
    width: 100%;
  }
}

/* Objects archive page */
.objects-archive-page {
  --objects-card-border: 1px solid rgba(255, 255, 255, 0.12);
  --objects-card-bg: linear-gradient(164deg, rgba(22, 34, 50, 0.66), rgba(12, 20, 33, 0.54));
}

.objects-archive-page__hero {
  margin-bottom: 24px;
}

.objects-archive-page__summary {
  margin: 14px 0 0;
  font-size: 14px;
  color: #b9c9e2;
}

.objects-filters {
  margin: 0 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.objects-filter {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #dce8fb;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 0 12px;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.objects-filter:hover {
  border-color: rgba(245, 166, 29, 0.6);
  color: #ffe3b4;
}

.objects-filter.is-active {
  border-color: rgba(245, 166, 29, 0.74);
  background: rgba(245, 166, 29, 0.16);
  color: #ffe3b4;
}

.objects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.object-card {
  border: var(--objects-card-border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--objects-card-bg);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.object-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 166, 29, 0.42);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.object-card__image-link {
  display: block;
  height: 196px;
  background: rgba(8, 14, 24, 0.5);
}

.object-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.object-card__image-link--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, rgba(245, 166, 29, 0.18), rgba(108, 157, 255, 0.2));
}

.object-card__image-placeholder {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 14, 24, 0.82);
  color: #ffe2ae;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.object-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  flex: 1 1 auto;
}

.object-card__year {
  width: fit-content;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  line-height: 1.2;
  color: #ffe0ac;
  border: 1px solid rgba(245, 166, 29, 0.46);
  background: rgba(245, 166, 29, 0.12);
}

.object-card__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.24;
}

.object-card__title a {
  color: #eef4ff;
  transition: color 180ms ease;
}

.object-card__title a:hover {
  color: #ffe0ac;
}

.object-card__address {
  margin: 0;
  color: #a9bddf;
  font-size: 13px;
  line-height: 1.4;
}

.object-card__groups {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.object-card__groups li {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #d9e6fb;
  font-size: 12px;
  line-height: 1.2;
  padding: 4px 9px;
}

.object-card__excerpt {
  margin: 0;
  color: #dbe7fb;
  font-size: 14px;
  line-height: 1.56;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.object-card__link {
  margin-top: auto;
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(245, 166, 29, 0.5);
  color: #f7d29a;
  background: rgba(245, 166, 29, 0.08);
  font-size: 13px;
  font-weight: 700;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease;
}

.object-card__link:hover {
  border-color: rgba(245, 166, 29, 0.85);
  background: rgba(245, 166, 29, 0.16);
  color: #ffe3b4;
}

.object-card__link:focus-visible {
  outline: 2px solid rgba(255, 214, 152, 0.9);
  outline-offset: 2px;
}

.objects-archive-page__empty {
  margin: 0;
  padding: 16px 18px;
  border: var(--objects-card-border);
  border-radius: 12px;
  color: #cfddf4;
  background: rgba(255, 255, 255, 0.02);
}

.objects-archive-page__cta {
  margin-top: 26px;
}

@media (max-width: 1100px) {
  .objects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .objects-filters {
    gap: 6px;
    margin-bottom: 14px;
  }

  .objects-filter {
    min-height: 34px;
    font-size: 12px;
    padding: 0 10px;
  }

  .objects-grid {
    grid-template-columns: 1fr;
  }

  .object-card__image-link {
    height: 186px;
  }

  .object-card__excerpt {
    -webkit-line-clamp: 5;
  }

  .object-card__link {
    width: 100%;
    justify-content: center;
  }

  .objects-archive-page__cta .cta-actions {
    flex-direction: column;
  }

  .objects-archive-page__cta .cta-actions .btn,
  .objects-archive-page__cta .cta-actions .btn-secondary {
    width: 100%;
  }
}

/* Object page enhancements: harmony and content geometry */
.object-detail-page {
  --object-space-1: 12px;
  --object-space-2: 18px;
  --object-space-3: 24px;
  --object-space-4: 32px;
  --object-radius: 18px;
  --object-border: 1px solid rgba(255, 255, 255, 0.11);
}

.object-detail-page__hero {
  margin-bottom: var(--object-space-3);
}

.object-detail-page__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--object-space-3);
  align-items: start;
}

.object-detail-page__content,
.object-detail-page__gallery-col {
  min-width: 0;
}

.object-detail-page__gallery-col {
  display: grid;
  gap: var(--object-space-2);
  align-content: start;
}

.object-detail-page__details-grid {
  margin-top: var(--object-space-4);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--object-space-3);
  align-items: stretch;
}

.object-detail-page__details-grid > .object-detail-page__block {
  margin-top: 0;
  height: 100%;
}

.object-detail-page__details-grid .object-results-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.object-detail-page__details-grid .object-results-item strong {
  font-size: 22px;
}

.object-detail-page__details-grid .object-timeline__comment {
  font-size: 16px;
}

.object-detail-page__layout + .object-detail-page__details-grid {
  margin-top: var(--object-space-4);
}

.object-detail-page__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.object-detail-page__address,
.object-detail-page__year {
  margin: 0;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1.2;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.object-detail-page__year {
  color: #ffe2ae;
  border-color: rgba(245, 166, 29, 0.46);
  background: rgba(245, 166, 29, 0.12);
}

.object-detail-page__block + .object-detail-page__block {
  margin-top: var(--object-space-2);
}

.object-detail-page__text p,
.object-detail-page__text li {
  color: #dbe6fa;
  line-height: 1.56;
}

.object-detail-page__text p {
  margin: 0;
}

.object-detail-page__text p + p,
.object-detail-page__text ul,
.object-detail-page__text ol {
  margin-top: 10px;
}

.object-detail-page__cta-section {
  margin-top: var(--object-space-4);
  margin-bottom: 0;
}

.object-detail-page__cta-section .object-detail-page__back-link {
  margin-top: 14px;
  display: inline-block;
  font-size: 14px;
  color: #9eb2d6;
  text-decoration: none;
}

.object-detail-page__cta-section .object-detail-page__back-link:hover {
  color: #dbe6fa;
}

.object-gallery {
  position: relative;
  top: auto;
  border-radius: 18px;
  overflow: hidden;
  border: var(--object-border);
  background: rgba(8, 17, 31, 0.72);
  box-shadow: 0 14px 32px rgba(3, 8, 18, 0.2);
  width: 100%;
  min-width: 0;
}

.object-gallery-shell {
  position: relative;
}

.object-gallery .swiper-wrapper {
  display: flex;
  margin: 0;
}

.object-gallery .swiper-slide {
  flex: 0 0 100%;
  width: 100% !important;
  margin: 0;
}

.object-gallery__slide {
  background: rgba(8, 17, 31, 0.72);
  overflow: hidden;
  margin: 0;
  border-radius: inherit;
}

.object-gallery__slide img,
.object-gallery--single img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
  border-radius: inherit;
}

.object-gallery .swiper-pagination {
  bottom: 12px !important;
}

.object-gallery .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.34);
  opacity: 1;
}

.object-gallery .swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.object-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(7, 15, 28, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  z-index: 4;
  box-shadow: 0 10px 26px rgba(2, 7, 18, 0.42);
  backdrop-filter: blur(3px);
}

.object-gallery__nav::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2.5px solid currentColor;
  border-right: 2.5px solid currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.object-gallery__nav--prev {
  left: 10px;
}

.object-gallery__nav--prev::after {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.object-gallery__nav--next {
  right: 10px;
}

.object-gallery__nav:hover {
  border-color: rgba(245, 166, 35, 0.9);
  color: #ffd8a1;
  background: rgba(10, 20, 36, 0.92);
}

.object-gallery__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.object-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.object-results-item {
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 12px;
}

.object-results-item strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
  color: #ffe2ae;
  margin-bottom: 6px;
}

.object-results-item span {
  display: block;
  font-size: 13px;
  color: #dbe6fa;
  line-height: 1.35;
}

.object-timeline__total {
  margin: 0 0 18px;
  font-size: 14px;
  color: #f4d8a8;
}

.object-timeline {
  list-style: none;
  margin: 0;
}

.object-timeline::before {
  display: none;
}

.object-timeline__item {
  position: relative;
}

.object-timeline__item::before {
  display: none;
}

.object-timeline__duration {
  margin: 0 0 4px;
  font-size: 14px;
  color: #9eb2d6;
}

.object-timeline__comment {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #dce6f8;
}

.object-related {
  margin-top: var(--object-space-4);
}

.object-related__title {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.1vw, 30px);
  line-height: 1.15;
  text-wrap: balance;
}

.object-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.object-related-card {
  overflow: hidden;
}

.has-object-reveal .object-results-item,
.has-object-reveal .object-timeline__item,
.has-object-reveal .object-related-card {
  opacity: 1;
  transform: none;
  transition: opacity 360ms ease, transform 420ms ease;
}

.has-object-reveal .object-timeline__item {
  transform: none;
  transition: opacity 380ms ease, transform 420ms ease;
}

.object-results-item.is-visible,
.object-timeline__item.is-visible,
.object-related-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.object-timeline__item:nth-child(2),
.object-results-item:nth-child(2),
.object-related-card:nth-child(2) {
  transition-delay: 60ms;
}

.object-timeline__item:nth-child(3),
.object-results-item:nth-child(3),
.object-related-card:nth-child(3) {
  transition-delay: 110ms;
}

.object-timeline__item:nth-child(4),
.object-results-item:nth-child(4),
.object-related-card:nth-child(4) {
  transition-delay: 160ms;
}

@media (prefers-reduced-motion: reduce) {
  .object-results-item,
  .object-timeline__item,
  .object-related-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.object-related-card__image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.object-related-card__body {
  padding: 12px;
}

.object-related-card__body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.object-related-card__body h3 a {
  color: #eef4ff;
}

.object-related-card__body p {
  margin: 0;
  font-size: 14px;
  color: #dbe6fa;
}

.object-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(4, 7, 14, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.object-lightbox.is-open {
  display: flex;
}

.object-lightbox__image {
  max-width: min(1200px, 94vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 18px 64px rgba(0, 0, 0, 0.45);
}

.object-lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .object-detail-page__layout {
    gap: 20px;
  }

  .object-detail-page__gallery-col {
    gap: 14px;
  }

  .object-gallery {
    position: relative;
    top: auto;
    overflow: hidden;
  }

  .object-gallery__nav--prev {
    left: 8px;
  }

  .object-gallery__nav--next {
    right: 8px;
  }

  .object-gallery__nav {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 980px) {
  .object-detail-page__details-grid .object-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .object-results-grid,
  .object-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .object-detail-page__hero {
    margin-bottom: 14px;
  }

  .object-results-grid,
  .object-related__grid {
    grid-template-columns: 1fr;
  }

  .object-detail-page__details-grid .object-results-grid {
    grid-template-columns: 1fr;
  }

  .object-detail-page__meta {
    margin-top: 10px;
  }

  .object-detail-page__cta-section .about-page__cta-actions .btn,
  .object-detail-page__cta-section .about-page__cta-actions .btn-secondary {
    width: 100%;
  }

  .object-lightbox {
    padding: 12px;
  }

  .object-gallery {
    border-radius: 16px;
  }

  .object-gallery__slide img,
  .object-gallery--single img {
    aspect-ratio: 2/1;
  }

  .object-lightbox__close {
    top: 10px;
    right: 10px;
  }
}
