:root {
  --bg-dark: #031b3f;
  --bg-mid: #0d2e61;
  --bg-accent: #1e63d6;
  --premium-gold: #f9d48a;
  --premium-gold-soft: #c79b52;
  --text-main: #ffffff;
  --text-soft: #c8d8f4;
  --line: rgba(255, 255, 255, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text-main);
  background: #08152f;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  background-color: #061835;
  background-image:
    linear-gradient(90deg, rgba(2, 16, 44, 0.96) 0%, rgba(3, 29, 74, 0.84) 40%, rgba(4, 22, 56, 0.36) 70%),
    url("./wellex_clean_banner_1920x1080.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 56%, rgba(255, 156, 56, 0.28), transparent 42%);
  pointer-events: none;
}

.topbar {
  position: relative;
  z-index: 10;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 700px) {
  .dropdown__menu {
    left: auto;
    right: 0;
    min-width: min(280px, calc(100vw - 24px));
    max-height: 70vh;
    overflow-y: auto;
  }
}

.logo-picker {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 10px;
  border: 1px solid rgba(132, 173, 248, 0.35);
  border-radius: 12px;
  background: rgba(4, 22, 54, 0.56);
}

.logo-picker__label {
  font-size: 12px;
  color: #b9d6ff;
  margin-right: 4px;
}

.logo-picker__btn {
  border: 1px solid rgba(133, 175, 250, 0.5);
  background: rgba(28, 83, 170, 0.25);
  color: #e9f3ff;
  border-radius: 8px;
  width: 34px;
  height: 30px;
  font-weight: 700;
  cursor: pointer;
}

.logo-picker__btn.active {
  border-color: rgba(249, 212, 138, 0.8);
  background: rgba(167, 118, 47, 0.4);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  text-decoration: none;
  color: #fff;
  border-radius: 14px;
  transition: all 0.25s ease;
}

.brand__logo {
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #6fb2ff;
  line-height: 0.9;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__text strong {
  font-size: 28px;
  letter-spacing: 1.2px;
  color: #f2f8ff;
}

.brand__text small {
  margin-top: 4px;
  color: #98c0ff;
  font-size: 11px;
  letter-spacing: 1.4px;
}

body[data-logo-variant="1"] .brand {
  border: 1px solid rgba(249, 212, 138, 0.42);
  background: linear-gradient(145deg, rgba(9, 34, 78, 0.75), rgba(5, 24, 58, 0.46));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 241, 210, 0.18);
}

body[data-logo-variant="1"] .brand__logo {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(160deg, #ffe4a8, #c69243);
  color: #0b2758;
  text-shadow: none;
}

body[data-logo-variant="1"] .brand__text strong {
  color: #fbfdff;
}

body[data-logo-variant="2"] .brand {
  border: 1px solid rgba(177, 209, 255, 0.5);
  background: linear-gradient(160deg, rgba(94, 145, 231, 0.26), rgba(14, 54, 120, 0.2));
  box-shadow: inset 0 1px 0 rgba(227, 242, 255, 0.4), 0 10px 24px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(7px);
}

body[data-logo-variant="2"] .brand__logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(167, 204, 255, 0.72);
  color: #dff0ff;
}

body[data-logo-variant="3"] .brand {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-logo-variant="3"] .brand__logo {
  font-size: 36px;
  color: #61a8ff;
}

body[data-logo-variant="3"] .brand__text strong {
  font-size: 30px;
  letter-spacing: 2px;
}

body[data-logo-variant="3"] .brand__text small {
  color: #82b4ff;
  letter-spacing: 1.1px;
}

body[data-logo-variant="4"] .brand {
  border: 1px solid rgba(127, 176, 255, 0.42);
  background-image: linear-gradient(90deg, rgba(4, 22, 54, 0.8), rgba(4, 22, 54, 0.48)), url("./wellex_clean_banner_1920x1080.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

body[data-logo-variant="4"] .brand__logo {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

body[data-logo-variant="4"] .brand__text {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

body[data-logo-variant="5"] .brand {
  border: 1px solid rgba(249, 212, 138, 0.35);
  background: linear-gradient(145deg, rgba(9, 34, 78, 0.78), rgba(5, 24, 58, 0.5));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 241, 210, 0.16);
}

body[data-logo-variant="5"] .brand__logo {
  color: var(--premium-gold);
  text-shadow: 0 2px 10px rgba(199, 155, 82, 0.35);
}

body[data-logo-variant="5"] .brand__text strong {
  color: #f9fbff;
}

body[data-logo-variant="5"] .brand__text small {
  color: #b7d2ff;
}

body[data-logo-variant="6"] .brand {
  border: 1px solid rgba(137, 178, 255, 0.45);
  background: linear-gradient(145deg, rgba(9, 34, 78, 0.78), rgba(5, 24, 58, 0.52));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(208, 233, 255, 0.18);
}

body[data-logo-variant="6"] .brand__logo {
  background: linear-gradient(90deg, #58a9ff 0 50%, #f9d48a 50% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

body[data-logo-variant="6"] .brand__text strong {
  color: #eef6ff;
}

body[data-logo-variant="6"] .brand__text small {
  color: #a9cbff;
}

body[data-logo-variant="7"] .brand {
  border: 1px solid rgba(109, 222, 255, 0.6);
  background: linear-gradient(145deg, rgba(8, 36, 82, 0.72), rgba(4, 22, 56, 0.5));
  box-shadow: 0 0 0 1px rgba(93, 217, 255, 0.14), 0 0 24px rgba(84, 210, 255, 0.32);
}

body[data-logo-variant="7"] .brand__logo {
  color: #7ee6ff;
  text-shadow: 0 0 14px rgba(90, 224, 255, 0.68);
}

body[data-logo-variant="7"] .brand__text strong {
  color: #e4f9ff;
}

body[data-logo-variant="7"] .brand__text small {
  color: #91dfff;
}

body[data-logo-variant="8"] .brand {
  border: 1px solid rgba(249, 212, 138, 0.45);
  background: linear-gradient(140deg, rgba(14, 44, 94, 0.78) 0 48%, rgba(154, 106, 44, 0.58) 48% 100%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

body[data-logo-variant="8"] .brand__logo {
  color: #ffe7ba;
  text-shadow: 0 2px 10px rgba(177, 120, 42, 0.42);
}

body[data-logo-variant="8"] .brand__text strong {
  color: #fffaf1;
}

body[data-logo-variant="8"] .brand__text small {
  color: #ffe0ad;
}

body[data-logo-variant="9"] .brand {
  padding: 2px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-logo-variant="9"] .brand__logo {
  color: #63a6ff;
  font-size: 34px;
}

body[data-logo-variant="9"] .brand__text strong {
  font-size: 34px;
  letter-spacing: 2.2px;
  color: #f6fbff;
}

body[data-logo-variant="9"] .brand__text small {
  color: #8cb7ff;
  letter-spacing: 0.9px;
}

body[data-logo-variant="10"] .brand {
  border: 1px solid rgba(151, 194, 255, 0.46);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(8, 34, 78, 0.82), rgba(5, 19, 45, 0.58));
  box-shadow: 0 14px 28px rgba(2, 10, 25, 0.4), inset 0 1px 0 rgba(233, 245, 255, 0.2);
}

body[data-logo-variant="10"] .brand__logo {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(169, 206, 255, 0.55);
  background: linear-gradient(160deg, rgba(115, 173, 255, 0.24), rgba(36, 87, 172, 0.22));
  color: #dff0ff;
}

body[data-logo-variant="10"] .brand__text strong {
  color: #e9f5ff;
}

body[data-logo-variant="10"] .brand__text small {
  color: #aacbff;
}

body[data-logo-variant="11"] .brand {
  border: 1px solid rgba(199, 214, 236, 0.62);
  background: linear-gradient(145deg, rgba(34, 53, 83, 0.8), rgba(92, 113, 141, 0.44));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

body[data-logo-variant="11"] .brand__logo {
  background: linear-gradient(180deg, #f7fbff, #9db2cd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

body[data-logo-variant="11"] .brand__text strong {
  color: #edf5ff;
}

body[data-logo-variant="11"] .brand__text small {
  color: #bfd0e6;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link,
.nav__button {
  color: #e8f1ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px 0;
}

.nav__link.active,
.nav__link:hover,
.nav__button:hover {
  color: #69aaff;
}

.nav__dropdown {
  position: relative;
  z-index: 1001;
}

.arrow {
  margin-left: 5px;
  font-size: 11px;
  color: #7ee6ff;
  text-shadow: 0 0 8px rgba(126, 230, 255, 0.55);
}

.dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: linear-gradient(135deg, rgba(3, 15, 35, 1), rgba(8, 25, 60, 1));
  border: 2px solid rgba(121, 181, 255, 0.6);
  border-radius: 12px;
  padding: 12px;
  display: none;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(200, 220, 255, 0.3), 0 0 20px rgba(79, 151, 255, 0.25);
  backdrop-filter: blur(12px);
  z-index: 1000;
}

.nav__dropdown:hover .dropdown__menu,
.nav__dropdown:focus-within .dropdown__menu {
  display: flex;
}

.dropdown__menu a {
  color: #ffffff;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s ease;
  display: block;
  border: 1px solid transparent;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dropdown__menu a:hover {
  background: linear-gradient(135deg, rgba(79, 151, 255, 0.7), rgba(41, 128, 255, 0.6));
  border-color: rgba(180, 220, 255, 0.8);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 8px 20px rgba(41, 128, 255, 0.35), inset 0 0 10px rgba(121, 181, 255, 0.2);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  transform: translateX(4px);
}

/* Логотип вариант 7 - голубой #7ee6ff */
body[data-logo-variant="7"] .dropdown__menu a:hover {
  background: linear-gradient(135deg, rgba(126, 230, 255, 0.75), rgba(90, 224, 255, 0.65));
  border-color: rgba(126, 230, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 12px 24px rgba(90, 224, 255, 0.45), inset 0 0 12px rgba(126, 230, 255, 0.3);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 0 8px rgba(126, 230, 255, 0.5);
  color: #ffffff;
  transform: translateX(4px);
}

/* Логотип вариант 6 - градиент синий-золотой */
body[data-logo-variant="6"] .dropdown__menu a:hover {
  background: linear-gradient(135deg, rgba(88, 169, 255, 0.75), rgba(249, 212, 138, 0.65));
  border-color: rgba(200, 220, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 12px 24px rgba(88, 169, 255, 0.35), inset 0 0 12px rgba(249, 212, 138, 0.2);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  color: #ffffff;
  transform: translateX(4px);
}

/* Логотип вариант 5 - золотой #f9d48a */
body[data-logo-variant="5"] .dropdown__menu a:hover {
  background: linear-gradient(135deg, rgba(249, 212, 138, 0.8), rgba(199, 155, 82, 0.7));
  border-color: rgba(249, 212, 138, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 12px 24px rgba(249, 212, 138, 0.4), inset 0 0 12px rgba(249, 212, 138, 0.25);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 0 8px rgba(249, 212, 138, 0.4);
  color: #ffffff;
  transform: translateX(4px);
}

/* Логотип вариант 1 - оранжево-золотой */
body[data-logo-variant="1"] .dropdown__menu a:hover {
  background: linear-gradient(135deg, rgba(255, 228, 168, 0.75), rgba(198, 146, 67, 0.65));
  border-color: rgba(255, 228, 168, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 12px 24px rgba(198, 146, 67, 0.35), inset 0 0 12px rgba(255, 228, 168, 0.25);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  color: #ffffff;
  transform: translateX(4px);
}

/* ===== ИНТЕРАКТИВНЫЕ ЭЛЕМЕНТЫ - HOVER ЭФФЕКТЫ ===== */

/* Ссылки навигации с поддержкой всех вариантов логотипа */

/* Вариант 7 - голубой #7ee6ff */
body[data-logo-variant="7"] .nav__link:hover,
body[data-logo-variant="7"] .nav__button:hover {
  color: #7ee6ff;
  text-shadow: 0 0 8px rgba(126, 230, 255, 0.6);
  transition: all 0.3s ease;
}

/* Вариант 6 - синий-золотой */
body[data-logo-variant="6"] .nav__link:hover,
body[data-logo-variant="6"] .nav__button:hover {
  color: #58a9ff;
  text-shadow: 0 0 8px rgba(88, 169, 255, 0.5);
  transition: all 0.3s ease;
}

/* Вариант 5 - золотой #f9d48a */
body[data-logo-variant="5"] .nav__link:hover,
body[data-logo-variant="5"] .nav__button:hover {
  color: #f9d48a;
  text-shadow: 0 0 8px rgba(249, 212, 138, 0.5);
  transition: all 0.3s ease;
}

/* Вариант 1 - оранжево-золотой */
body[data-logo-variant="1"] .nav__link:hover,
body[data-logo-variant="1"] .nav__button:hover {
  color: #ffe4a8;
  text-shadow: 0 0 8px rgba(255, 228, 168, 0.5);
  transition: all 0.3s ease;
}

/* Кнопки переключения языка */

/* Вариант 7 - голубой */
body[data-logo-variant="7"] .lang-switcher__btn:hover {
  color: #7ee6ff;
  background: rgba(126, 230, 255, 0.25);
  box-shadow: 0 0 12px rgba(126, 230, 255, 0.5), inset 0 0 8px rgba(126, 230, 255, 0.15);
  transition: all 0.3s ease;
}

/* Вариант 6 - синий-золотой */
body[data-logo-variant="6"] .lang-switcher__btn:hover {
  color: #58a9ff;
  background: rgba(88, 169, 255, 0.25);
  box-shadow: 0 0 12px rgba(88, 169, 255, 0.5), inset 0 0 8px rgba(88, 169, 255, 0.15);
  transition: all 0.3s ease;
}

/* Вариант 5 - золотой */
body[data-logo-variant="5"] .lang-switcher__btn:hover {
  color: #f9d48a;
  background: rgba(249, 212, 138, 0.25);
  box-shadow: 0 0 12px rgba(249, 212, 138, 0.5), inset 0 0 8px rgba(249, 212, 138, 0.15);
  transition: all 0.3s ease;
}

/* Вариант 1 - оранжево-золотой */
body[data-logo-variant="1"] .lang-switcher__btn:hover {
  color: #ffe4a8;
  background: rgba(255, 228, 168, 0.25);
  box-shadow: 0 0 12px rgba(255, 228, 168, 0.5), inset 0 0 8px rgba(255, 228, 168, 0.15);
  transition: all 0.3s ease;
}

/* Контактные ссылки */

/* Вариант 7 - голубой */
body[data-logo-variant="7"] .contact__phone:hover,
body[data-logo-variant="7"] .contact__msg:hover {
  color: #7ee6ff;
  text-shadow: 0 0 8px rgba(126, 230, 255, 0.6);
  transition: all 0.3s ease;
}

/* Вариант 6 - синий-золотой */
body[data-logo-variant="6"] .contact__phone:hover,
body[data-logo-variant="6"] .contact__msg:hover {
  color: #58a9ff;
  text-shadow: 0 0 8px rgba(88, 169, 255, 0.5);
  transition: all 0.3s ease;
}

/* Вариант 5 - золотой */
body[data-logo-variant="5"] .contact__phone:hover,
body[data-logo-variant="5"] .contact__msg:hover {
  color: #f9d48a;
  text-shadow: 0 0 8px rgba(249, 212, 138, 0.5);
  transition: all 0.3s ease;
}

/* Вариант 1 - оранжево-золотой */
body[data-logo-variant="1"] .contact__phone:hover,
body[data-logo-variant="1"] .contact__msg:hover {
  color: #ffe4a8;
  text-shadow: 0 0 8px rgba(255, 228, 168, 0.5);
  transition: all 0.3s ease;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}

.contact a {
  color: #f2f7ff;
  text-decoration: none;
  font-weight: 600;
}

.contact__msg {
  color: #7ec3ff;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 70px 0 180px;
  max-width: 660px;
}

.eyebrow {
  color: #4da2ff;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin: 0 0 18px;
}

h1 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: 0.4px;
}

.hero__subtitle {
  margin: 28px 0 30px;
  color: var(--text-soft);
  font-size: clamp(17px, 1.7vw, 29px);
  line-height: 1.35;
  max-width: 560px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.feature-grid article {
  border: 1px solid rgba(122, 168, 255, 0.3);
  border-top-color: rgba(180, 210, 255, 0.45);
  border-radius: 14px;
  padding: 16px 14px 14px;
  background: linear-gradient(170deg, rgba(15, 50, 109, 0.4), rgba(8, 31, 71, 0.16));
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 25px rgba(2, 12, 34, 0.3);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
  border: 1px solid rgba(109, 222, 255, 0.45);
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 25% 18%, rgba(173, 243, 255, 0.24), rgba(18, 95, 186, 0.42));
  box-shadow: inset 0 1px 0 rgba(213, 248, 255, 0.3), 0 10px 24px rgba(0, 0, 0, 0.26);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  stroke: #7ee6ff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(90, 224, 255, 0.6));
}

.feature-grid h3 {
  margin: 0 0 8px;
  color: #d7f5ff;
  font-size: 20px;
  line-height: 1.15;
  text-transform: uppercase;
}

.feature-grid p {
  margin: 0;
  color: #d2e0f7;
  line-height: 1.45;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(122, 168, 255, 0.32);
  background: rgba(4, 22, 54, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.lang-switcher__btn {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  min-width: 44px;
  background: transparent;
  color: #d7e8ff;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lang-switcher__btn.is-active {
  background: linear-gradient(135deg, rgba(121, 181, 255, 0.96), rgba(14, 79, 182, 0.96));
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(20, 92, 200, 0.28);
}

.btn {
  position: relative;
  border: 0;
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, #79b5ff 0%, #2d7bf2 46%, #0e4fb6 100%);
  color: #ffffff;
  border: 1px solid rgba(203, 228, 255, 0.55);
  box-shadow: 0 12px 28px rgba(29, 101, 214, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 42%;
  height: 100%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left 0.45s ease;
}

.btn--primary:hover::after {
  left: 125%;
}

.btn--outline {
  background: linear-gradient(145deg, rgba(12, 43, 95, 0.44), rgba(8, 32, 74, 0.2));
  color: #fff;
  border: 1px solid rgba(249, 212, 138, 0.46);
  box-shadow: inset 0 1px 0 rgba(249, 212, 138, 0.22), 0 8px 20px rgba(0, 0, 0, 0.22);
}

.section-intro {
  margin-bottom: 26px;
  max-width: 760px;
}

.section-intro--compact {
  margin-bottom: 28px;
}

.services-section {
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 8% 10%, rgba(249, 212, 138, 0.08), transparent 26%), radial-gradient(circle at 92% 18%, rgba(126, 230, 255, 0.1), transparent 30%);
  pointer-events: none;
}

.services-section > .container {
  position: relative;
  z-index: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(8, 31, 71, 0.96), rgba(6, 21, 50, 0.96));
  border: 1px solid rgba(122, 168, 255, 0.22);
  box-shadow: 0 18px 42px rgba(2, 11, 27, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 16% 14%, rgba(126, 230, 255, 0.22), transparent 22%),
    radial-gradient(circle at 86% 18%, rgba(249, 212, 138, 0.16), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(57, 126, 255, 0.14), transparent 34%);
  opacity: 0.7;
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto auto -42px -42px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(121, 181, 255, 0.15), transparent 68%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(126, 230, 255, 0.64);
  box-shadow: 0 24px 54px rgba(2, 11, 27, 0.42), 0 0 0 1px rgba(126, 230, 255, 0.16), 0 0 32px rgba(126, 230, 255, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card--road,
.service-card--air,
.service-card--rail,
.service-card--sea {
  background: linear-gradient(180deg, rgba(9, 34, 78, 0.98), rgba(6, 21, 50, 0.96));
}

.service-card--muted {
  background: linear-gradient(180deg, rgba(12, 43, 95, 0.96), rgba(7, 21, 50, 0.96));
}

.service-card__topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.service-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e8f5ff;
  border: 1px solid rgba(126, 230, 255, 0.22);
  background: rgba(32, 93, 177, 0.24);
}

.service-card__badge--alt {
  border-color: rgba(249, 212, 138, 0.28);
  background: rgba(167, 118, 47, 0.22);
}

.service-card__top-action {
  border: 0;
  background: transparent;
  color: #98d8ff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 0;
}

.service-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(249, 212, 138, 0.2), rgba(110, 174, 255, 0.16));
  border: 1px solid rgba(249, 212, 138, 0.28);
  color: #eef7ff;
  font-family: "Oswald", sans-serif;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 1px rgba(126, 230, 255, 0.08), 0 12px 24px rgba(31, 101, 214, 0.18);
}

.service-card__icon svg {
  width: 30px;
  height: 30px;
  stroke: #f6f0df;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(90, 224, 255, 0.18));
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: #ffffff;
  line-height: 1.62;
  font-weight: 500;
}

.service-card__list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-card__list li {
  position: relative;
  padding-left: 20px;
  color: #ffffff;
  line-height: 1.55;
  font-weight: 500;
}

.service-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--premium-gold);
  font-weight: 700;
}

.service-card__note {
  margin-top: 14px;
  color: #b8d2fb;
  font-size: 15px;
}

.service-card__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.service-card__actions .btn {
  padding-inline: 18px;
  font-size: 14px;
}

.service-card__title-btn {
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
}

.service-card__title-btn:hover h3 {
  color: #7ee6ff;
}

.service-card__title-btn:hover .service-card__expand-icon {
  text-shadow: 0 0 16px rgba(126, 230, 255, 0.8), 0 0 32px rgba(126, 230, 255, 0.5);
  filter: drop-shadow(0 6px 18px rgba(126, 230, 255, 0.55));
}

.service-card__title-btn h3 {
  margin: 0;
  transition: color 0.3s ease;
}

.service-card__expand-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #7ee6ff;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
  margin-left: 12px;
  flex-shrink: 0;
  text-shadow: 0 0 12px rgba(126, 230, 255, 0.6), 0 0 24px rgba(126, 230, 255, 0.3);
  filter: drop-shadow(0 4px 12px rgba(126, 230, 255, 0.4));
  font-weight: 700;
  line-height: 1;
}

.service-card__title-btn:not([data-expanded="true"]) .service-card__expand-icon {
  animation: expandHintPulse 1.8s ease-in-out infinite;
}

.service-card__title-btn[data-expanded="true"] .service-card__expand-icon {
  transform: rotate(180deg);
  text-shadow: 0 0 16px rgba(126, 230, 255, 0.75), 0 0 28px rgba(126, 230, 255, 0.45);
  animation: none;
}

@keyframes expandHintPulse {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(126, 230, 255, 0.45), 0 0 20px rgba(126, 230, 255, 0.25);
    filter: drop-shadow(0 4px 10px rgba(126, 230, 255, 0.3));
  }
  50% {
    text-shadow: 0 0 18px rgba(126, 230, 255, 0.9), 0 0 34px rgba(126, 230, 255, 0.55);
    filter: drop-shadow(0 6px 18px rgba(126, 230, 255, 0.6));
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card__title-btn:not([data-expanded="true"]) .service-card__expand-icon {
    animation: none;
  }
}

.service-card__expandable {
  position: relative;
  z-index: 1;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
  margin-top: 0;
}

.service-card__expandable.active {
  max-height: 500px;
  opacity: 1;
  margin-top: 14px;
}

.service-card__expandable p {
  margin: 0 0 14px;
  color: #ffffff;
  line-height: 1.62;
  font-weight: 500;
}

.service-card__expandable ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 768px) {
  .service-card__title-btn,
  .service-card__title-btn h3,
  .service-card__expand-icon {
    transition: none;
  }

  .service-card__expand-icon,
  .service-card__title-btn:hover .service-card__expand-icon,
  .service-card__title-btn[data-expanded="true"] .service-card__expand-icon {
    text-shadow: none;
    filter: none;
    animation: none;
  }

  .service-card__expandable {
    max-height: none;
    opacity: 1;
    margin-top: 14px;
    display: none;
    transition: none;
  }

  .service-card__expandable.active {
    display: block;
  }
}

.faq-section {
  position: relative;
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(122, 168, 255, 0.26);
  background: linear-gradient(180deg, rgba(9, 34, 78, 0.9), rgba(6, 19, 44, 0.95));
  box-shadow: 0 14px 32px rgba(2, 11, 27, 0.26);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 18px 54px 18px 20px;
  font-weight: 700;
  color: #eff7ff;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(121, 181, 255, 0.16);
  color: #dff0ff;
  font-size: 20px;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item__content {
  padding: 0 20px 20px;
  color: #c8d8f4;
}

.faq-item__content p {
  margin: 0;
  line-height: 1.7;
}

.contacts-layout {
  display: grid;
  gap: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(130, 228, 255, 0.2);
  background: linear-gradient(180deg, rgba(13, 41, 86, 0.92), rgba(7, 21, 50, 0.96));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(126, 230, 255, 0.6);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24), 0 0 26px rgba(126, 230, 255, 0.28);
}

.contact-card--wide {
  grid-column: 1 / -1;
}

.contact-card__label {
  display: block;
  margin-bottom: 12px;
  color: #9fc6ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card p {
  margin: 0;
  color: #f1f8ff;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.6;
}

.contact-card a:hover {
  color: #8ae8ff;
}

.contact-card small {
  display: block;
  margin-top: 10px;
  color: #b7d2ff;
}

.contact-card__bot-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(126, 230, 255, 0.45);
  background: linear-gradient(135deg, rgba(126, 230, 255, 0.18), rgba(126, 230, 255, 0.08));
  color: #7ee6ff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card--telegram .contact-card__telegram-layout {
  display: grid;
  gap: 12px;
}

.contact-card__telegram-head {
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(176, 211, 255, 0.28);
  background: linear-gradient(135deg, rgba(20, 50, 102, 0.62), rgba(10, 29, 67, 0.56));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 24px rgba(2, 11, 27, 0.26);
  overflow: hidden;
}

.contact-card__telegram-handle {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: #f7e6be;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.contact-card__telegram-handle:hover {
  color: #fff2cc;
  text-shadow: 0 0 12px rgba(249, 212, 138, 0.35);
}

.contact-card__status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border-radius: 0;
  border-left: 1px solid rgba(176, 211, 255, 0.25);
  background: linear-gradient(135deg, rgba(111, 255, 206, 0.18), rgba(111, 255, 206, 0.08));
  color: #d4fff1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-card__status-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8dffd8;
  box-shadow: 0 0 10px rgba(141, 255, 216, 0.6);
}

@media (max-width: 520px) {
  .contact-card__telegram-head {
    max-width: 100%;
  }

  .contact-card__telegram-handle {
    font-size: 14px;
    padding: 8px 12px;
  }

  .contact-card__status-chip {
    padding: 8px 10px;
    font-size: 9px;
  }
}

.contact-card--telegram .contact-card__bot-cta {
  display: flex;
  width: 100%;
  margin-top: 0;
  padding: 12px 16px;
  border-radius: 14px;
  border-color: rgba(126, 230, 255, 0.62);
  background: linear-gradient(135deg, rgba(126, 230, 255, 0.24), rgba(121, 181, 255, 0.16));
  color: #d6f5ff;
  font-size: 15px;
  opacity: 0;
  transform: translateY(6px);
  animation: telegramCtaReveal 480ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms forwards;
}

.contact-card__bot-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(126, 230, 255, 0.75);
  box-shadow: 0 0 20px rgba(126, 230, 255, 0.25);
}

@keyframes telegramCtaReveal {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-card--telegram .contact-card__bot-cta {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(121, 181, 255, 0.12);
  border: 1px solid rgba(121, 181, 255, 0.24);
}

.calc-form__context {
  margin: 0 0 22px;
  color: #5c78a8;
  line-height: 1.6;
  font-size: 16px;
}

.calc-form__service {
  margin: -10px 0 20px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(122, 168, 255, 0.18);
  background: linear-gradient(145deg, rgba(121, 181, 255, 0.1), rgba(249, 212, 138, 0.08));
  color: #284a80;
  font-weight: 700;
  line-height: 1.45;
}

.calc-form__full {
  grid-column: 1 / -1;
}

.calc-form__full select {
  border: 1px solid #bfd3f4;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 16px;
  background: #fff;
  color: #112d60;
}

.stats-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, rgba(4, 30, 77, 0.92), rgba(5, 37, 94, 0.92));
  border-top: 1px solid rgba(117, 164, 255, 0.33);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-item {
  padding: 23px 14px;
  border-right: 1px solid rgba(125, 168, 255, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item strong {
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #ffffff;
}

.stat-item span {
  margin-top: 8px;
  color: #a8c5ef;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.section {
  padding: 72px 0;
}

.section--light {
  background: #f4f8ff;
  color: #0d2e61;
}

.section--dark {
  background: #0a1f47;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.section h2 {
  margin: 0 0 16px;
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  text-transform: uppercase;
}

.section p {
  margin: 0;
  line-height: 1.65;
  font-size: 18px;
}

.contacts-list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacts-list a {
  width: fit-content;
  color: #96dfff;
  text-decoration: none;
  font-size: 18px;
  border-bottom: 1px solid rgba(150, 223, 255, 0.35);
}

.contacts-list a:hover {
  color: #d7f8ff;
}

.tg-bot-widget {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #e6fbff;
  background: linear-gradient(145deg, rgba(13, 57, 125, 0.95), rgba(12, 114, 176, 0.92));
  border: 1px solid rgba(130, 228, 255, 0.6);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  animation: tgBlink 1.4s ease-in-out infinite;
}

.tg-bot-widget__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  background: rgba(230, 251, 255, 0.2);
}

.tg-bot-widget__text {
  font-weight: 700;
  letter-spacing: 0.2px;
}

@keyframes tgBlink {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    opacity: 1;
  }

  50% {
    transform: scale(1.06);
    box-shadow: 0 0 0 8px rgba(125, 232, 255, 0.12), 0 10px 24px rgba(0, 0, 0, 0.3);
    opacity: 0.88;
  }
}

.scroll-top-widget {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 120;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(140, 227, 255, 0.6);
  border-radius: 50%;
  background: linear-gradient(155deg, rgba(10, 58, 132, 0.95), rgba(6, 93, 158, 0.92));
  color: #ecfbff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.scroll-top-widget.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.result-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
  padding: 16px;
  background: #f0f6ff;
  border-radius: 8px;
  border-left: 4px solid var(--bg-accent);
}

.result-summary__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.result-summary__label {
  font-weight: 600;
  color: #112d60;
}

.result-summary__value {
  color: var(--bg-accent);
  font-weight: 700;
}

.result-price {
  text-align: center;
  padding: 24px;
  background: linear-gradient(145deg, rgba(30, 99, 214, 0.08), rgba(249, 212, 138, 0.08));
  border-radius: 12px;
  border: 1px solid rgba(30, 99, 214, 0.2);
  margin: 20px 0;
}

.result-price__label {
  display: block;
  font-size: 14px;
  color: #112d60;
  font-weight: 600;
  margin-bottom: 8px;
}

.result-price__amount {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--bg-accent);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.02em;
  margin: 12px 0;
}

.result-price__note {
  margin: 12px 0 0;
  font-size: 12px;
  color: #7a90b8;
  line-height: 1.6;
}

.result-info {
  margin: 16px 0;
  padding: 14px;
  background: linear-gradient(145deg, rgba(249, 212, 138, 0.08), rgba(30, 99, 214, 0.08));
  border-radius: 8px;
  border-left: 3px solid var(--bg-accent);
}

.result-info p {
  margin: 0;
  font-size: 14px;
  color: #112d60;
  line-height: 1.6;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
  overflow-x: hidden;
}

.modal.open {
  display: block;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal__content {
  position: relative;
  width: min(720px, calc(100vw - 24px));
  max-height: 92vh;
  overflow-y: auto;
  margin: 4vh auto;
  background: #f8fbff;
  color: #112d60;
  border-radius: 14px;
  padding: 32px;
}

.modal__close {
  position: absolute;
  right: 14px;
  top: 10px;
  border: 0;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  color: #2a4e8b;
}

.notice-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 110;
}

.notice-modal.open {
  display: block;
}

.notice-modal__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(103, 185, 255, 0.16), transparent 42%),
    rgba(2, 10, 25, 0.72);
  backdrop-filter: blur(9px);
}

.notice-modal__content {
  position: relative;
  width: min(560px, 92vw);
  margin: 12vh auto 0;
  padding: 34px 32px 30px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(10, 31, 67, 0.98), rgba(6, 19, 44, 0.98)),
    #081a39;
  border: 1px solid rgba(140, 184, 255, 0.22);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #eff7ff;
  text-align: center;
}

.notice-modal__content::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 18px;
  border: 1px solid rgba(249, 212, 138, 0.18);
  pointer-events: none;
}

.notice-modal__close {
  position: absolute;
  right: 16px;
  top: 14px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #eef7ff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.notice-modal__badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(249, 212, 138, 0.22), rgba(110, 174, 255, 0.22));
  border: 1px solid rgba(249, 212, 138, 0.45);
  color: var(--premium-gold);
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.notice-modal__eyebrow {
  margin: 0 0 10px;
  color: #9fc6ff;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.notice-modal__content h2 {
  margin: 0 0 12px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 0.04em;
}

.notice-modal__message {
  margin: 0 auto;
  max-width: 40ch;
  color: #c8d8f4;
  line-height: 1.7;
}

.notice-modal__phone-wrap {
  margin-top: 20px;
}

.notice-modal__phone-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(160, 190, 240, 0.55);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.notice-modal__phone-divider::before,
.notice-modal__phone-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(140, 184, 255, 0.25), transparent);
}

.notice-modal__phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(126, 230, 255, 0.08), rgba(126, 230, 255, 0.04));
  border: 1px solid rgba(126, 230, 255, 0.4);
  box-shadow: 0 0 18px rgba(126, 230, 255, 0.08), inset 0 1px 0 rgba(255,255,255,0.05);
  color: #7ee6ff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.notice-modal__phone-link:hover {
  background: linear-gradient(135deg, rgba(126, 230, 255, 0.15), rgba(126, 230, 255, 0.08));
  border-color: rgba(126, 230, 255, 0.75);
  box-shadow: 0 0 28px rgba(126, 230, 255, 0.18), inset 0 1px 0 rgba(255,255,255,0.07);
}

.notice-modal__phone-icon {
  font-size: 1rem;
  line-height: 1;
}

.notice-modal__action {
  margin-top: 24px;
  min-width: 180px;
}

.calc-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  min-width: 0;
}

.calc-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  gap: 7px;
  min-width: 0;
}

.calc-form input,
.calc-form select {
  border: 1px solid #bfd3f4;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 16px;
  background: #fff;
  color: #112d60;
  width: 100%;
  max-width: 100%;
}

.calc-form button {
  grid-column: 1 / -1;
  margin-top: 12px;
}

.calc-form button.btn--primary {
  -webkit-appearance: none;
  appearance: none;
  background-color: #1f6fe6;
  background-image: linear-gradient(135deg, #79b5ff 0%, #2d7bf2 46%, #0e4fb6 100%);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  border: 1px solid rgba(203, 228, 255, 0.55);
  min-height: 48px;
  opacity: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calc-form button.btn--primary:not(:disabled):not(.btn--disabled) {
  background-color: #0f66e6;
  background-image: linear-gradient(135deg, #62aeff 0%, #1f78f3 44%, #0a4ec0 100%);
  border: 1px solid rgba(198, 225, 255, 0.78);
  box-shadow: 0 12px 28px rgba(11, 80, 182, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.calc-form button.btn--primary:disabled,
.calc-form button.btn--primary.btn--disabled {
  background-color: #e8eef5;
  background-image: none;
  color: #c0c8d8;
  -webkit-text-fill-color: #c0c8d8;
  border: 1px solid rgba(192, 200, 216, 0.35);
  opacity: 0.6;
  cursor: not-allowed;
}

.calc-form button.btn--primary::after {
  display: none;
}

.calc-form__contact-group {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(122, 168, 255, 0.24);
  background:
    linear-gradient(145deg, rgba(121, 181, 255, 0.1), rgba(249, 212, 138, 0.08)),
    #f1f7ff;
}

.calc-form__contact-group label {
  margin: 0;
}

@media (max-width: 992px) {
  .topbar {
    align-items: flex-start;
  }

  .nav {
    gap: 14px;
  }

  .contact {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero__content {
    padding-top: 44px;
    padding-bottom: 156px;
  }

  .feature-grid {
    gap: 14px;
  }

  .section {
    padding: 60px 0;
  }

  .service-grid {
    gap: 16px;
  }

  .service-card {
    padding: 20px;
  }

  .notice-modal__content,
  .modal__content {
    width: min(640px, 94vw);
  }
}

@media (max-width: 1080px) {
  .topbar {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
    padding-bottom: 180px;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .calc-form {
    grid-template-columns: 1fr;
  }

  .service-card__topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-card__actions {
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .lang-switcher {
    order: 4;
    width: 100%;
    justify-content: center;
  }

  .tg-bot-widget {
    right: 12px;
    bottom: 68px;
    padding: 10px 12px;
  }

  .tg-bot-widget__text {
    display: none;
  }

  .brand {
    padding: 6px 10px 6px 8px;
    gap: 8px;
  }

  .brand__logo {
    font-size: 34px;
  }

  .contact {
    align-items: flex-start;
  }

  .hero__content {
    padding-top: 44px;
    padding-bottom: 146px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: 0;
    border-bottom: 1px solid rgba(125, 168, 255, 0.22);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .brand__text strong {
    font-size: 20px;
  }

  .brand__text small {
    font-size: 9px;
    letter-spacing: 1.1px;
  }

  .scroll-top-widget {
    right: 12px;
    bottom: 14px;
  }

  .section {
    padding: 50px 0;
  }

  .hero__content {
    padding-top: 38px;
    padding-bottom: 140px;
  }

  .hero h1 {
    font-size: clamp(32px, 9vw, 48px);
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .service-card {
    padding: 18px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .service-card__icon {
    width: 54px;
    height: 54px;
  }

  .calc-form__service,
  .calc-form__context {
    font-size: 14px;
  }

  .calc-form__contact-group {
    grid-template-columns: 1fr;
  }

  .calc-form__full select,
  .calc-form input,
  .calc-form select {
    font-size: 15px;
  }

  .modal__content,
  .notice-modal__content {
    width: 94vw;
    margin-top: 6vh;
    padding: 22px;
  }

  .modal__close,
  .notice-modal__close {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100%, calc(100vw - 24px));
  }

  .topbar {
    gap: 12px;
  }

  .nav {
    gap: 10px;
  }

  .nav__link,
  .nav__button {
    font-size: 12px;
    padding: 6px 0;
  }

  .hero {
    padding-bottom: 150px;
  }

  .hero__content {
    padding-top: 28px;
    padding-bottom: 128px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .hero h1 {
    font-size: clamp(28px, 11vw, 38px);
  }

  .hero__subtitle {
    margin: 18px 0 22px;
    font-size: 15px;
  }

  .feature-grid {
    gap: 12px;
    margin-bottom: 20px;
  }

  .feature-grid article {
    padding: 14px 12px 12px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }

  .feature-icon svg {
    width: 26px;
    height: 26px;
  }

  .feature-grid h3 {
    font-size: 17px;
  }

  .feature-grid p {
    font-size: 14px;
  }

  .cta-row {
    gap: 10px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px 18px;
    font-size: 14px;
  }

  .lang-switcher {
    gap: 6px;
    padding: 4px;
  }

  .lang-switcher__btn {
    min-width: 40px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .stats-strip {
    position: relative;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 18px 12px;
  }

  .section {
    padding: 42px 0;
  }

  .section h2 {
    font-size: 30px;
  }

  .section p {
    font-size: 16px;
  }

  .service-card {
    padding: 16px;
    border-radius: 18px;
  }

  .service-card h3 {
    font-size: 22px;
  }

  .service-card__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .service-card__icon svg {
    width: 26px;
    height: 26px;
  }

  .service-card__list {
    gap: 8px;
  }

  .service-card__actions .btn {
    width: 100%;
    font-size: 13px;
  }

  .service-grid,
  .contact-grid,
  .split {
    gap: 14px;
  }

  .contact-card,
  .faq-item {
    border-radius: 14px;
  }

  .contact-card a,
  .contact-card p {
    font-size: 16px;
  }

  .social-links {
    gap: 10px;
  }

  .social-links a {
    padding: 9px 12px;
    font-size: 14px;
  }

  .calc-form,
  .calc-form label {
    gap: 10px;
  }

  .calc-form__service,
  .calc-form__context {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .calc-form__full select,
  .calc-form input,
  .calc-form select {
    padding: 10px 11px;
    font-size: 14px;
  }

  .modal__content,
  .notice-modal__content {
    width: calc(100vw - 12px);
    margin: 6px auto 0;
    padding: 14px;
    border-radius: 14px;
    max-height: calc(100svh - 12px);
  }

  .modal__close,
  .notice-modal__close {
    right: 8px;
    top: 8px;
  }

  .modal__content h2,
  .notice-modal__content h2,
  .calc-form label span,
  .calc-form__context,
  .calc-form__service {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  #calculatorModal .modal__content {
    width: 100vw;
    margin: 0;
    border-radius: 0;
    max-height: 100dvh;
    min-height: 100dvh;
    padding-top: calc(12px + env(safe-area-inset-top));
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
  }

  #calculatorModal #calcTitle {
    margin: 0 40px 10px 0;
    font-size: clamp(24px, 7.3vw, 30px);
    line-height: 1.14;
    letter-spacing: 0.01em;
  }

  #calculatorModal .calc-form__context {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.45;
  }

  #calculatorModal .calc-form__service {
    margin: 0 0 12px;
    padding: 9px 11px;
    font-size: 14px;
    line-height: 1.35;
    border-radius: 10px;
  }

  #calculatorModal .calc-form {
    gap: 9px;
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

  #calculatorModal .calc-form label {
    gap: 5px;
    font-size: 13px;
  }

  #calculatorModal .calc-form__contact-group {
    grid-template-columns: 1fr;
    gap: 9px;
    margin: 2px 0 4px;
    padding: 10px;
    border-radius: 12px;
    border-color: rgba(86, 148, 249, 0.3);
    background:
      linear-gradient(145deg, rgba(95, 165, 255, 0.14), rgba(249, 212, 138, 0.1)),
      #edf5ff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  }

  #calculatorModal .calc-form input,
  #calculatorModal .calc-form select,
  #calculatorModal .calc-form__full select {
    height: 44px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 16px;
  }

  #calculatorModal .calc-form button {
    position: sticky;
    bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 4;
    transform: translateY(0);
    margin-top: 6px;
    margin-bottom: 0;
    padding: 12px 14px;
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(16, 74, 156, 0.28);
  }

  #calculatorModal .calc-form button.btn--primary:not(:disabled):not(.btn--disabled) {
    background-color: #0d63de;
    background-image: linear-gradient(135deg, #70b6ff 0%, #2a7cf0 42%, #0751be 100%);
    border-color: rgba(207, 230, 255, 0.9);
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    box-shadow: 0 16px 34px rgba(6, 78, 190, 0.4), 0 0 0 1px rgba(126, 188, 255, 0.28);
  }

  #calculatorModal .calc-form button.btn--primary[type="submit"]:enabled,
  #calculatorModal .calc-form button.btn--primary.is-ready {
    background-color: #eef6ff !important;
    background-image: linear-gradient(135deg, #f7fbff 0%, #e7f1ff 45%, #dceaff 100%) !important;
    border-color: rgba(198, 225, 255, 0.95) !important;
    color: #0b61d8 !important;
    -webkit-text-fill-color: #0b61d8 !important;
    opacity: 1 !important;
    box-shadow: 0 16px 30px rgba(12, 86, 194, 0.24), 0 0 0 1px rgba(121, 186, 255, 0.28) !important;
  }

  #calculatorModal.open .calc-form button {
    animation: calcStickyReveal 220ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
  }

  #calculatorModal .calc-form button::before {
    content: "";
    position: absolute;
    inset: -8px -6px;
    z-index: -1;
    border-radius: 14px;
    background: rgba(248, 251, 255, 0.9);
    backdrop-filter: blur(4px);
  }

  @keyframes calcStickyReveal {
    from {
      opacity: 0;
      transform: translateY(8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .notice-modal__badge {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }

  .notice-modal__content h2,
  .modal__content h2 {
    font-size: 28px;
  }

  .notice-modal__action {
    min-width: 0;
    width: 100%;
  }

  .scroll-top-widget,
  .tg-bot-widget {
    right: 10px;
  }

  .scroll-top-widget {
    bottom: 10px;
  }

  .tg-bot-widget {
    bottom: 60px;
  }
}

@media (max-width: 430px) and (prefers-reduced-motion: reduce) {
  #calculatorModal.open .calc-form button {
    animation: none;
  }
}
