:root {
  color-scheme: light;
  --bg: #f7f7f7;
  --white: #ffffff;
  --text: #8d8d8d;
  --title-gray: #767676;
  --blue: #242d82;
  --pink: #da1e80;
  --line: rgba(36, 45, 130, 0.14);
  --shadow: 0 22px 48px rgba(18, 22, 52, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
.container { width: min(100% - 44px, 1200px); margin: 0 auto; }

.site-header {
  position: relative; z-index: 10; background: var(--header-bg, rgba(255,255,255,.94)); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,.04);
}
.header-inner {
  min-height: 120px; display: grid; grid-template-columns: 170px 1fr auto auto auto; align-items: center; gap: 22px;
}
.brand {
  position: relative;
}
.brand-logo {
  width: 148px;
  height: auto;
  display: block;
}
.brand-logo-dark {
  display: none;
}
html[data-theme="dark"] .brand-logo-light {
  display: none;
}
html[data-theme="dark"] .brand-logo-dark {
  display: block;
}
.main-nav {
  justify-self: center; display: flex; align-items: center; gap: 38px; color: #838383; font-size: 15px; font-weight: 400;
}
.main-nav a { position: relative; }
.main-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -8px; height: 1px; background: var(--blue); transform: scaleX(0); transform-origin: center; transition: transform .25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; gap: 14px; }
.header-tools { display: flex; align-items: center; gap: 12px; }
.burger {
  display: none; border: 0; background: transparent; padding: 0; width: 44px; height: 44px; cursor: pointer;
}
.burger span { display: block; width: 28px; height: 2px; background: var(--blue); margin: 6px auto; border-radius: 2px; }
.mobile-menu {
  display: none; padding: 0 22px 22px; background: var(--surface, #fff); border-top: 1px solid rgba(0,0,0,.05);
}
.mobile-menu.open { display: grid; gap: 14px; }
.mobile-menu__controls { display: grid; gap: 12px; margin-top: 6px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 25px; border-radius: 999px; border: 1px solid transparent; font-size: 14px; font-weight: 600; letter-spacing: .01em; transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(20, 19, 107, .10); }
.btn-outline { background: var(--surface, #fff); border-color: var(--blue); color: var(--blue); }
.btn-pink { color: var(--pink); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-light { background: var(--surface, #fff); color: var(--blue); border: 1px solid rgba(255,255,255,.32); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.62); }
.btn-light-accent { background: var(--surface, #fff); color: var(--blue); min-width: 260px; font-weight: 700; }
.btn-small { min-height: 42px; padding: 0 16px; font-size: 13px; }
.btn-full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(34, 34, 34, .28), rgba(34, 34, 34, .34)),
    url('assets/images/hero-main.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(30, 30, 30, .56); }
.hero-grid {
  position: relative; z-index: 1; min-height: 680px; display: grid; grid-template-columns: 1fr 371px; gap: 56px; align-items: center; padding: 48px 0 56px;
}
.hero-copy h1 {
  margin: 0; max-width: 700px; color: #fff; font-size: clamp(46px, 5vw, 64px); line-height: 1.08; letter-spacing: -.02em; font-weight: 600;
}
.hero-form {
  background: var(--surface, #fff); border-radius: 38px; padding: 46px 30px 28px; color: var(--text); box-shadow: var(--shadow);
}
.hero-form h2 {
  margin: 0 0 12px; color: var(--blue); font-size: 17px; line-height: 1.35; font-weight: 500; letter-spacing: -.01em;
}
.hero-form p { margin: 0 0 26px; font-size: 13px; line-height: 1.55; color: #989898; }
.hero-form input {
  width: 100%; height: 49px; margin-bottom: 15px; padding: 0 20px; border: 0; border-radius: 25px; background: #f0f0f0; color: #2e2e2e; outline: none; transition: box-shadow .25s ease, background-color .25s ease;
}
.hero-form input:focus { box-shadow: 0 0 0 2px rgba(36,45,130,.14); background: #ececf6; }
.hero-form small { display: block; margin-top: 16px; font-size: 12px; line-height: 1.55; color: #989898; }

.section { padding: 96px 0; }
.section-title {
  margin: 0 0 54px; font-size: clamp(42px, 4vw, 56px); line-height: 1.04; letter-spacing: -.03em; font-weight: 500;
}
.section-title-blue { color: var(--blue); }
.section-title-gray { color: var(--title-gray); }

.values-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px 84px;
}
.value-item, .bullet-block h4 { display: flex; align-items: flex-start; gap: 18px; }
.value-item h3, .bullet-block h4 { margin: 0 0 10px; color: var(--title-gray); font-size: 22px; font-weight: 700; line-height: 1.28; letter-spacing: -.01em; }
.value-item p, .bullet-block p { margin: 0; font-size: 16px; line-height: 1.62; color: #a4a4a4; }
.check {
  width: 32px; height: 32px; flex: 0 0 32px; border-radius: 50%; border: 2px solid var(--pink); position: relative; margin-top: 2px;
}
.check::before {
  content: ''; position: absolute; width: 8px; height: 14px; border-right: 2px solid var(--pink); border-bottom: 2px solid var(--pink); left: 10px; top: 5px; transform: rotate(40deg);
}

.trusted { padding-top: 24px; }
.trusted-head { margin-bottom: 22px; }
.logo-track-wrap { overflow: hidden; }
.logo-track {
  display: inline-flex; align-items: center; gap: 28px; width: max-content; padding: 20px 0; animation: marquee 34s linear infinite;
}
.logo-track-large { animation-duration: 36s; }
.logo-track:hover { animation-play-state: paused; }
.logo-chip {

  min-width: 158px; height: 82px; border-radius: 16px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface, #fff); color: #575757; font-size: 15px; font-weight: 700; letter-spacing: -.01em; box-shadow: 0 10px 24px rgba(0,0,0,.05); border: 1px solid rgba(0,0,0,.035);
}
.logo-chip img {
  max-width: 150px;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(.98) contrast(1.02);
}

.equipment-track .logo-chip { min-width: 136px; height: 76px; }

.section-dark-image {
  position: relative;
  background-image: linear-gradient(rgba(6, 9, 20, .62), rgba(6, 9, 20, .62)), url('assets/images/cta-banner.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
}
.contact-banner { margin-top: 8px; }
.contact-banner-inner {
  min-height: 430px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.contact-banner h2 { margin: 0; font-size: clamp(40px, 4vw, 60px); line-height: 1.12; letter-spacing: -.03em; font-weight: 400; }
.contact-actions { display: flex; gap: 20px; margin-top: 72px; flex-wrap: wrap; }

.included-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 68px 62px; }
.included-item { position: relative; min-height: 210px; padding-right: 26px; }
.item-number {
  position: absolute; right: 4px; top: -18px; font-size: 190px; line-height: 1; font-weight: 800; color: rgba(218, 30, 128, .08); pointer-events: none;
}
.included-item h3 { position: relative; margin: 0 0 14px; font-size: 18px; line-height: 1.32; color: var(--blue); font-weight: 700; letter-spacing: -.01em; max-width: 240px; }
.included-item p { position: relative; margin: 0; line-height: 1.56; font-size: 14px; color: #a2a2a2; max-width: 248px; }

.ticker { overflow: hidden; color: #fff; font-size: 18px; font-weight: 700; white-space: nowrap; }
.ticker-pink { background: var(--pink); }
.ticker-blue { background: var(--blue); }
.ticker-track { display: inline-flex; gap: 34px; padding: 18px 0; width: max-content; animation: ticker 26s linear infinite; }
.ticker-track-slow { animation-duration: 30s; }
.ticker-track span::after { content: '•'; margin-left: 34px; }

.table-wrap { overflow-x: auto; }
.tariffs-table { width: 100%; min-width: 1000px; border-collapse: separate; border-spacing: 0; }
.tariffs-table th, .tariffs-table td { text-align: center; padding: 26px 20px; }
.tariffs-table th:first-child, .tariffs-table td:first-child { text-align: left; width: 28%; }
.tariffs-table thead th {
  color: var(--blue); font-weight: 500; vertical-align: bottom; border-bottom: 1px solid var(--line);
}
.tariffs-table thead th span { display: block; margin-bottom: 6px; color: var(--pink); font-size: 20px; font-weight: 700; }
.tariffs-table thead th small { font-size: 14px; line-height: 1.45; color: var(--blue); }
.tariffs-table tbody td { background: rgba(255,255,255,.58); border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.tariffs-table tbody tr:nth-child(odd) td { background: rgba(255,255,255,.8); }
.tariffs-table tbody td:first-child { border-left: 1px solid var(--line); color: #808080; font-weight: 700; }
.tariffs-table tfoot td { padding-top: 22px; }

.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px; }
.stats-grid article strong { display: block; margin-bottom: 16px; color: var(--pink); font-size: 50px; line-height: 1; letter-spacing: -.04em; }
.stats-grid article span { display: block; margin-bottom: 16px; border-top: 1px solid #8d8d8d; }
.stats-grid article p { margin: 0; color: #777; font-size: 15px; line-height: 1.6; font-weight: 500; max-width: 250px; }

.deliverables { padding-top: 82px; }
.split-section { display: grid; grid-template-columns: 1fr 1.08fr; gap: 68px; align-items: start; margin-top: 34px; }
.split-section + .split-section { margin-top: 74px; }
.split-copy h3 { margin: 0 0 34px; color: var(--blue); font-size: 24px; font-weight: 800; letter-spacing: -.01em; }
.bullet-block { margin-bottom: 28px; }
.bullet-block h4 { margin: 0 0 10px; color: var(--blue); font-size: 18px; font-weight: 800; line-height: 1.42; }
.bullet-block .check { width: 26px; height: 26px; flex-basis: 26px; margin-top: 2px; }
.bullet-block .check::before { width: 6px; height: 11px; left: 8px; top: 3px; }
.split-image {
  min-height: 780px; background-size: cover; background-position: center; box-shadow: var(--shadow); border-radius: 2px;
}
.split-image-action {
  background-image: url('assets/images/action-plan.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #091840;
}
.split-image-brain { background-image: url('assets/images/project-new-facilities.jpg'); }
.split-project { grid-template-columns: 1.08fr 1fr; }

.cta-strip { background: var(--blue); color: #fff; }
.cta-strip-inner { min-height: 200px; display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; }
.cta-strip p { margin: 0; max-width: 760px; font-size: 24px; line-height: 1.42; font-weight: 500; letter-spacing: -.01em; }

.site-footer { margin-top: 38px; background: var(--footer-bg, #8f8f8f); color: #fff; }
.footer-inner { display: grid; grid-template-columns: 1.15fr .9fr .9fr; gap: 60px; padding: 66px 0 46px; }
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 12px; color: #242424; font-size: 24px; font-weight: 500; }
.footer-brand__logos {
  display: inline-flex;
  align-items: center;
}
.footer-brand__logos .brand-logo {
  width: 166px;
  max-width: 100%;
}
.site-footer h4 { margin: 0 0 24px; font-size: 18px; font-weight: 700; }
.site-footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; line-height: 1.5; }
.site-footer a:hover { color: #fff; }
.socials { display: flex; gap: 12px; }
.socials a { width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(0,0,0,.18); }
.copyright { margin: 18px 0 0; }
.footer-bottom { min-height: 52px; background: #080808; color: #7c7c7c; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.footer-bottom span { margin-left: 6px; color: #fff; }

.floating-chat {
  position: fixed; right: 28px; bottom: 28px; z-index: 50; width: 72px; height: 72px; border-radius: 50%;
  background: var(--surface, #fff); border: 3px solid var(--pink); display: inline-flex; align-items: center; justify-content: center;
  color: var(--blue); box-shadow: 0 18px 36px rgba(0,0,0,.18); font-size: 32px; transition: transform .25s ease;
}
.floating-chat:hover { transform: translateY(-3px); }

.fade-up {
  opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }


.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(36,45,130,.14);
  box-shadow: 0 12px 24px rgba(18,22,52,.08);
}
.lang-switch__btn {
  min-width: 44px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background-color .24s ease, color .24s ease, transform .24s ease, box-shadow .24s ease;
}
.lang-switch__btn:hover { transform: translateY(-1px); }
.lang-switch__btn.is-active {
  background: linear-gradient(135deg, rgba(36,45,130,.12), rgba(218,30,128,.14));
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(36,45,130,.08);
}
.lang-switch-mobile {
  width: 100%;
  justify-content: center;
}
.lang-switch-mobile .lang-switch__btn {
  flex: 1 1 50%;
  max-width: 120px;
}

.theme-toggle {
  position: relative;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(36,45,130,.12);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(245,247,255,.9));
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(18,22,52,.08);
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.theme-toggle:hover {
  transform: translateY(-2px) rotate(6deg);
  box-shadow: 0 18px 30px rgba(18,22,52,.12);
}
.theme-toggle__icon {
  position: absolute;
  font-size: 18px;
  line-height: 1;
  transition: opacity .25s ease, transform .25s ease;
}
.theme-toggle__icon-sun { opacity: 1; transform: scale(1) rotate(0deg); }
.theme-toggle__icon-moon { opacity: 0; transform: scale(.5) rotate(-16deg); }
.theme-toggle__text { font-size: 14px; font-weight: 600; }
.theme-toggle[aria-pressed="true"] .theme-toggle__icon-sun { opacity: 0; transform: scale(.5) rotate(16deg); }
.theme-toggle[aria-pressed="true"] .theme-toggle__icon-moon { opacity: 1; transform: scale(1) rotate(0deg); }
.theme-toggle-mobile {
  width: 100%;
  justify-content: flex-start;
  padding: 0 18px;
  position: relative;
  gap: 14px;
  min-height: 50px;
}
.theme-toggle-mobile .theme-toggle__icon { position: static; }
.theme-toggle-mobile .theme-toggle__icon-sun,
.theme-toggle-mobile .theme-toggle__icon-moon { transform: none; }
.theme-toggle-mobile[aria-pressed="true"] .theme-toggle__icon-sun,
.theme-toggle-mobile[aria-pressed="true"] .theme-toggle__icon-moon { transform: none; }
.theme-toggle-mobile .theme-toggle__icon-moon { margin-left: -24px; }

.form-status {
  min-height: 20px;
  margin: 2px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: transparent;
  transition: color .25s ease;
}
.form-status.is-error { color: #d43b53; }
.form-status.is-success { color: #1f8a5b; }

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0a1020;
  --white: #11182c;
  --text: #b7c0d9;
  --title-gray: #eef2ff;
  --line: rgba(140, 155, 230, 0.18);
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
  --surface: #111a30;
  --surface-2: #0f172b;
  --surface-soft: rgba(17, 26, 48, 0.72);
  --header-bg: rgba(8, 13, 26, 0.82);
  --footer-bg: #09101f;
}

html[data-theme="dark"] body {
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(83, 98, 191, 0.18), transparent 52%),
    radial-gradient(780px 420px at 100% 18%, rgba(218, 30, 128, 0.12), transparent 46%),
    linear-gradient(180deg, #08101f 0%, #0a1020 100%);
  color: var(--text);
}
html[data-theme="dark"] body::before {
  background:
    radial-gradient(560px 300px at 12% 0%, rgba(218,30,128,.08), transparent 60%),
    radial-gradient(520px 340px at 100% 18%, rgba(88,103,255,.12), transparent 62%);
}
html[data-theme="dark"] .site-header {
  background: var(--header-bg);
  border-bottom-color: rgba(154, 170, 255, 0.12);
}
html[data-theme="dark"] .site-header.scrolled {
  background: rgba(8, 13, 26, 0.88);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  border-bottom-color: rgba(154, 170, 255, 0.12);
}
html[data-theme="dark"] .main-nav { color: #c6cee3; }
html[data-theme="dark"] .main-nav a:hover,
html[data-theme="dark"] .main-nav a.active,
html[data-theme="dark"] .mobile-menu a:hover { color: #ffffff; }
html[data-theme="dark"] .burger span { background: #e6ebff; }
html[data-theme="dark"] .burger:hover { background: rgba(255,255,255,.06); }
html[data-theme="dark"] .mobile-backdrop { background: rgba(0,0,0,.52); }
html[data-theme="dark"] .mobile-menu {
  background: rgba(13, 20, 39, 0.98);
  border: 1px solid rgba(144, 161, 255, 0.16);
  box-shadow: 0 22px 44px rgba(0,0,0,.32);
}
html[data-theme="dark"] .mobile-menu a { color: #d9e0f4; }
html[data-theme="dark"] .lang-switch {
  background: linear-gradient(180deg, rgba(20,30,56,.96), rgba(10,16,32,.98));
  border-color: rgba(144,161,255,.2);
  box-shadow: 0 16px 30px rgba(0,0,0,.24);
}
html[data-theme="dark"] .lang-switch__btn { color: #d9e0f4; }
html[data-theme="dark"] .lang-switch__btn.is-active {
  background: linear-gradient(135deg, rgba(70, 84, 186, 0.34), rgba(218, 30, 128, 0.22));
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(144,161,255,.18);
}
html[data-theme="dark"] .theme-toggle {
  background: linear-gradient(180deg, rgba(20,30,56,.96), rgba(10,16,32,.98));
  color: #eef2ff;
  border-color: rgba(144,161,255,.2);
  box-shadow: 0 16px 30px rgba(0,0,0,.24);
}
html[data-theme="dark"] .theme-toggle-mobile {
  background: rgba(255,255,255,.03);
}
html[data-theme="dark"] .btn-outline {
  background: rgba(255,255,255,.02);
  color: #eef2ff;
  border-color: rgba(144,161,255,.28);
}
html[data-theme="dark"] .btn-outline:hover {
  border-color: rgba(218,30,128,.52);
  box-shadow: 0 18px 30px rgba(0,0,0,.22);
}
html[data-theme="dark"] .btn-pink { color: #ff75b6; }
html[data-theme="dark"] .btn-primary {
  background: linear-gradient(135deg, #4253d6 0%, #27379b 100%);
}
html[data-theme="dark"] .btn-light,
html[data-theme="dark"] .btn-light-accent {
  background: #eef2ff;
  color: #111a30;
}
html[data-theme="dark"] .btn-ghost-light { border-color: rgba(255,255,255,.34); }
html[data-theme="dark"] .hero-overlay {
  background: linear-gradient(100deg, rgba(4,7,15,.82) 0%, rgba(8,12,28,.66) 42%, rgba(12,14,24,.54) 100%);
}
html[data-theme="dark"] .hero-form {
  background: linear-gradient(180deg, rgba(18,26,48,.96), rgba(12,19,37,.94));
  border-color: rgba(144,161,255,.16);
}
html[data-theme="dark"] .hero-form h2,
html[data-theme="dark"] .included-item h3,
html[data-theme="dark"] .split-copy h3,
html[data-theme="dark"] .bullet-block h4,
html[data-theme="dark"] .tariffs-table thead th,
html[data-theme="dark"] .stats-grid article strong,
html[data-theme="dark"] .section-title-gray,
html[data-theme="dark"] .section-title-blue,
html[data-theme="dark"] .value-item h3 { color: #eef2ff; }
html[data-theme="dark"] .hero-form p,
html[data-theme="dark"] .hero-form small,
html[data-theme="dark"] .value-item p,
html[data-theme="dark"] .included-item p,
html[data-theme="dark"] .bullet-block p,
html[data-theme="dark"] .stats-grid article p,
html[data-theme="dark"] .tariffs-table tbody td:first-child { color: #cdd5ea; }
html[data-theme="dark"] .hero-form input {
  background: rgba(255,255,255,.05);
  color: #eef2ff;
  border-color: rgba(144,161,255,.08);
}
html[data-theme="dark"] .hero-form input:hover { background: rgba(255,255,255,.08); }
html[data-theme="dark"] .hero-form input:focus {
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 2px rgba(121, 139, 255, 0.24);
}
html[data-theme="dark"] .hero-form input::placeholder { color: #91a0c4; }
html[data-theme="dark"] .form-status.is-error { color: #ff8fa3; }
html[data-theme="dark"] .form-status.is-success { color: #6ee7b7; }
html[data-theme="dark"] .value-item,
html[data-theme="dark"] .included-item,
html[data-theme="dark"] .stats-grid article,
html[data-theme="dark"] .table-wrap,
html[data-theme="dark"] .logo-chip {
  background: linear-gradient(180deg, rgba(17,26,48,.82), rgba(10,16,32,.72));
  border: 1px solid rgba(144,161,255,.14);
  box-shadow: 0 18px 36px rgba(0,0,0,.22);
}
html[data-theme="dark"] .logo-chip { color: #eef2ff; }
html[data-theme="dark"] .included-item {
  background: linear-gradient(180deg, rgba(17,26,48,.88), rgba(17,26,48,.35));
}
html[data-theme="dark"] .item-number { color: rgba(218, 30, 128, 0.12); }
html[data-theme="dark"] .check { border-color: #ff5faa; }
html[data-theme="dark"] .check::before { border-right-color: #ff5faa; border-bottom-color: #ff5faa; }
html[data-theme="dark"] .tariffs-table tbody td {
  background: rgba(17,26,48,.72);
  border-bottom-color: var(--line);
  border-right-color: var(--line);
}
html[data-theme="dark"] .tariffs-table tbody tr:nth-child(odd) td { background: rgba(20,30,56,.84); }
html[data-theme="dark"] .tariffs-table thead th small { color: #aab6d8; }
html[data-theme="dark"] .stats-grid article span { border-top-color: rgba(192,201,230,.24); }
html[data-theme="dark"] .cta-strip {
  background: linear-gradient(135deg, #101a35 0%, #1f2860 100%);
}
html[data-theme="dark"] .site-footer {
  background: linear-gradient(180deg, #0d152a 0%, #09101f 100%);
}
html[data-theme="dark"] .site-footer::before {
  background: radial-gradient(440px 240px at 15% 0%, rgba(255,255,255,.04), transparent 60%);
}
html[data-theme="dark"] .footer-brand { color: #eef2ff; }
html[data-theme="dark"] .socials a { background: rgba(255,255,255,.08); }
html[data-theme="dark"] .floating-chat {
  color: #eef2ff;
  box-shadow: 0 18px 36px rgba(0,0,0,.28);
}
html[data-theme="dark"] .back-to-top {
  background: rgba(42,57,127,.96);
  box-shadow: 0 18px 34px rgba(0,0,0,.28);
}
html[data-theme="dark"] .back-to-top:hover { background: var(--pink); }
html[data-theme="dark"] .scroll-progress { background: rgba(255,255,255,.06); }
html[data-theme="dark"] .ticker::before,
html[data-theme="dark"] .logo-track-wrap::before { left: 0; background: linear-gradient(90deg, rgba(10,16,32,1), rgba(10,16,32,0)); }
html[data-theme="dark"] .ticker::after,
html[data-theme="dark"] .logo-track-wrap::after { right: 0; background: linear-gradient(270deg, rgba(10,16,32,1), rgba(10,16,32,0)); }
html[data-theme="dark"] .ticker-pink::before { background: linear-gradient(90deg, rgba(218,30,128,1), rgba(218,30,128,0)); }
html[data-theme="dark"] .ticker-pink::after { background: linear-gradient(270deg, rgba(218,30,128,1), rgba(218,30,128,0)); }
html[data-theme="dark"] .ticker-blue::before { background: linear-gradient(90deg, rgba(36,45,130,1), rgba(36,45,130,0)); }
html[data-theme="dark"] .ticker-blue::after { background: linear-gradient(270deg, rgba(36,45,130,1), rgba(36,45,130,0)); }


@media (max-width: 1180px) {
  .header-inner { grid-template-columns: 150px 1fr auto auto auto; }
  .brand img { width: 150px; }
  .main-nav { gap: 24px; font-size: 14px; }
  .hero-grid { grid-template-columns: 1fr 360px; }
  .included-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split-section, .split-project { grid-template-columns: 1fr; }
  .split-image { min-height: 520px; order: 2; }
}
@media (max-width: 960px) {
  .container { width: min(100% - 32px, 1200px); }
  .hero, .section-dark-image { background-attachment: scroll; }
  .header-inner { min-height: 94px; grid-template-columns: 1fr auto auto; }
  .brand img { width: 98px; }
  .main-nav, .header-actions { display: none; }
  .header-tools { justify-self: end; }
  .burger { display: block; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 28px; padding: 42px 0 48px; }
  .stats-grid { gap: 24px; }
  .hero-copy h1 { max-width: 100%; text-align: center; font-size: 42px; }
  .hero-form { max-width: 540px; margin: 0 auto; }
  .values-grid, .stats-grid, .included-grid, .footer-inner, .cta-strip-inner { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
  .contact-banner-inner { min-height: 320px; }
  .contact-actions { margin-top: 40px; }
}
@media (max-width: 640px) {
  .section-title { margin-bottom: 38px; font-size: 36px; }
  .hero-copy h1 { font-size: 29px; line-height: .92; text-align: left; }
  .hero-form { padding: 30px 20px 22px; border-radius: 28px; }
  .hero-form h2 { font-size: 15px; }
  .contact-banner h2 { font-size: 34px; }
  .logo-chip { min-width: 110px; height: 68px; font-size: 13px; padding: 0 12px; }
  .item-number { font-size: 122px; }
  .included-item { min-height: 152px; }
  .split-image { min-height: 360px; }
  .cta-strip p { font-size: 18px; }
  .floating-chat { width: 62px; height: 62px; font-size: 28px; }
}


/* ===== Enhanced premium polish without changing the theme ===== */
html { scroll-padding-top: 118px; }
body.menu-open { overflow: hidden; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(500px 300px at 15% 0%, rgba(218,30,128,.045), transparent 60%),
    radial-gradient(480px 320px at 100% 20%, rgba(36,45,130,.05), transparent 62%);
  z-index: -1;
}
a, button, input { -webkit-tap-highlight-color: transparent; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 120;
  background: rgba(255,255,255,.15);
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  box-shadow: 0 0 18px rgba(36,45,130,.35);
  transition: width .12s linear;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background-color .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(18, 22, 52, .08);
  border-bottom-color: rgba(36,45,130,.06);
}
.site-header.scrolled .header-inner { min-height: 92px; }
.header-inner { transition: min-height .28s ease; }

.main-nav a,
.mobile-menu a { transition: color .22s ease, opacity .22s ease; }

.main-nav a.active {
  color: var(--blue);
}
.main-nav a.active::after {
  transform: scaleX(1);
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 28, .34);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 70;
}
.mobile-backdrop.show {
  opacity: 1;
  visibility: visible;
}
.mobile-menu {
  position: absolute;
  left: 16px;
  right: 16px;
  top: calc(100% + 6px);
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 18px 36px rgba(18,22,52,.14);
  border: 1px solid rgba(36,45,130,.08);
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.burger { border-radius: 50%; transition: background-color .2s ease, transform .2s ease; }
.burger:hover { background: rgba(36,45,130,.06); }
.burger[aria-expanded="true"] { transform: rotate(90deg); }

.btn {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(20, 19, 107, .06);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.5) 50%, transparent 70%);
  transition: transform .6s ease;
}
.btn:hover::before { transform: translateX(120%); }
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(20, 19, 107, .14);
}
.btn:focus-visible,
.burger:focus-visible,
.back-to-top:focus-visible,
.floating-chat:focus-visible,
.main-nav a:focus-visible,
.mobile-menu a:focus-visible,
.socials a:focus-visible {
  outline: 2px solid rgba(218,30,128,.8);
  outline-offset: 3px;
}
.hero,
.section-dark-image {
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 360px;
  height: 360px;
  top: 8%;
  left: -80px;
  background: radial-gradient(circle, rgba(55,55,55,.20), rgba(55,55,55,0) 70%);
}
.hero::after {
  width: 440px;
  height: 440px;
  right: -140px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(45,45,45,.22), rgba(45,45,45,0) 68%);
}
.hero-overlay {
  background:
    linear-gradient(100deg, rgba(12,12,12,.82) 0%, rgba(18,18,18,.72) 42%, rgba(24,24,24,.58) 100%);
}
.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-ambient span {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .45;
}

.hero-ambient span:first-child {
  width: 220px;
  height: 220px;
  top: 10%;
  right: 24%;
  background: radial-gradient(circle, rgba(60,60,60,.22), rgba(60,60,60,0) 66%);
}

.hero-ambient span:last-child {
  width: 260px;
  height: 260px;
  bottom: 5%;
  left: 10%;
  background: radial-gradient(circle, rgba(48,48,48,.18), rgba(48,48,48,0) 66%);
}
.hero-copy h1 {
  text-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.hero-form {
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 26px 60px rgba(18,22,52,.16);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.hero-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 32px 72px rgba(18,22,52,.20);
}
.hero-form input {
  border: 1px solid transparent;
  transition: box-shadow .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease;
}
.hero-form input:hover {
  background: #ececf2;
}
.hero-form input:focus {
  border-color: rgba(36,45,130,.18);
  transform: translateY(-1px);
}
.value-item,
.included-item,
.stats-grid article,
.logo-chip,
.table-wrap,
.split-image,
.socials a {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background-color .28s ease;
}
.value-item,
.included-item,
.stats-grid article {
  border-radius: 24px;
}
.value-item {
  padding: 22px 22px 22px 26px;
}
.value-item:hover,
.included-item:hover,
.stats-grid article:hover {
  transform: translateY(-5px);
}
.logo-chip:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 18px 36px rgba(18,22,52,.12);
  border-color: rgba(36,45,130,.12);
}
.included-item {
  background: linear-gradient(180deg, rgba(255,255,255,.66), rgba(255,255,255,0));
  padding: 24px 54px 24px 22px;
}
.included-item:hover {
  box-shadow: 0 14px 30px rgba(18,22,52,.08);
}
.stats-grid article {
  padding: 24px 22px 22px;
  min-height: 230px;
}
.stats-grid article strong {
  transition: transform .3s ease, color .3s ease;
}
.stats-grid article:hover strong {
  transform: translateY(-2px);
}
.table-wrap {
  border-radius: 28px;
  background: rgba(255,255,255,.44);
  box-shadow: 0 18px 36px rgba(18,22,52,.05);
}
.tariffs-table thead th:first-child { border-top-left-radius: 24px; }
.tariffs-table thead th:last-child { border-top-right-radius: 24px; }

.ticker,
.logo-track-wrap { position: relative; }
.ticker::before,
.ticker::after,
.logo-track-wrap::before,
.logo-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before,
.logo-track-wrap::before { left: 0; background: linear-gradient(90deg, rgba(247,247,247,1), rgba(247,247,247,0)); }
.ticker::after,
.logo-track-wrap::after { right: 0; background: linear-gradient(270deg, rgba(247,247,247,1), rgba(247,247,247,0)); }
.ticker-pink::before { background: linear-gradient(90deg, rgba(218,30,128,1), rgba(218,30,128,0)); }
.ticker-pink::after { background: linear-gradient(270deg, rgba(218,30,128,1), rgba(218,30,128,0)); }
.ticker-blue::before { background: linear-gradient(90deg, rgba(36,45,130,1), rgba(36,45,130,0)); }
.ticker-blue::after { background: linear-gradient(270deg, rgba(36,45,130,1), rgba(36,45,130,0)); }

.site-footer {
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 220px at 15% 0%, rgba(255,255,255,.09), transparent 60%);
  pointer-events: none;
}

.floating-chat,
.back-to-top {
  position: fixed;
  right: 28px;
  border: 0;
  cursor: pointer;
}
.floating-chat {
  bottom: 28px;
  animation: chatPulse 3.4s ease-in-out infinite;
}
.back-to-top {
  bottom: 116px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(36,45,130,.95);
  color: #fff;
  z-index: 49;
  box-shadow: 0 16px 32px rgba(18,22,52,.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background-color .25s ease;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--pink); }

.fade-up,
.fade-left,
.fade-right,
.scale-in {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up { transform: translateY(26px); }
.fade-left { transform: translateX(-26px); }
.fade-right { transform: translateX(26px); }
.scale-in { transform: translateY(18px) scale(.96); }
.fade-up.is-visible,
.fade-left.is-visible,
.fade-right.is-visible,
.scale-in.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@keyframes chatPulse {
  0%, 100% { box-shadow: 0 18px 36px rgba(0,0,0,.18), 0 0 0 0 rgba(218,30,128,.16); }
  50% { box-shadow: 0 18px 36px rgba(0,0,0,.18), 0 0 0 12px rgba(218,30,128,0); }
}

@media (max-width: 960px) {
  html { scroll-padding-top: 88px; }
  .mobile-menu { display: grid; }
  .header-inner { min-height: 82px; }
  .site-header.scrolled .header-inner { min-height: 78px; }
  .btn-light-accent { min-width: auto; width: 100%; }
  .back-to-top { right: 18px; bottom: 94px; width: 52px; height: 52px; }
}
@media (max-width: 640px) {
  .hero::before { width: 220px; height: 220px; left: -70px; top: 6%; }
  .hero::after { width: 260px; height: 260px; right: -90px; bottom: -80px; }
  .mobile-menu { left: 12px; right: 12px; border-radius: 22px; }
  .lang-switch { width: auto; }
  .value-item { padding: 20px 18px; }
  .included-item { padding: 20px 22px 20px 18px; }
  .stats-grid article { padding: 20px 18px; min-height: auto; }
  .included-item h3 { max-width: 210px; font-size: 17px; }
  .included-item p,
  .stats-grid article p { max-width: 100%; font-size: 14px; }
  .stats-grid article strong { font-size: 42px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
}


/* ===== v4: menu compacting and local logo improvements ===== */
.header-inner {
  grid-template-columns: 170px minmax(0, 1fr) auto auto;
  gap: 18px;
}
.main-nav {
  justify-self: stretch;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
}
.main-nav a {
  white-space: nowrap;
  text-align: center;
}
.header-actions {
  gap: 10px;
}
.header-actions .btn {
  min-height: 44px;
  padding: 0 18px;
  font-size: 13px;
}
.header-tools {
  gap: 8px;
}
.lang-switch {
  gap: 2px;
  padding: 3px;
}
.lang-switch__btn {
  min-width: 42px;
  height: 36px;
}
.theme-toggle {
  width: 48px;
  height: 48px;
}

.logo-chip--trust {
  min-width: 172px;
  padding: 0 22px;
  letter-spacing: .01em;
}
.logo-chip--image {
  min-width: 152px;
  height: 82px;
  padding: 10px 18px;
}
.logo-chip--image img {
  max-width: 128px;
  max-height: 42px;
  filter: none;
}
.equipment-track .logo-chip--image {
  min-width: 152px;
  height: 82px;
}

.mobile-menu {
  width: min(380px, calc(100vw - 24px));
  left: auto;
  right: 12px;
  gap: 10px;
  padding: 16px;
}
.mobile-menu a {
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.3;
}
.mobile-menu a:hover {
  background: rgba(36,45,130,.05);
}
.mobile-menu__controls {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}
.lang-switch-mobile {
  width: auto;
  justify-content: flex-start;
}
.lang-switch-mobile .lang-switch__btn {
  flex: 0 0 auto;
  max-width: none;
  min-width: 52px;
  padding: 0 16px;
}
.theme-toggle-mobile {
  width: 50px;
  min-width: 50px;
  min-height: 50px;
  padding: 0;
  justify-content: center;
  gap: 0;
}
.theme-toggle-mobile .theme-toggle__text {
  display: none;
}
.theme-toggle-mobile .theme-toggle__icon-moon {
  margin-left: 0;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 150px minmax(0, 1fr) auto auto;
    gap: 14px;
  }
  .main-nav {
    gap: 10px;
    font-size: 13px;
  }
  .header-actions .btn {
    padding: 0 14px;
    font-size: 12.5px;
  }
}

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }
  .header-tools {
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .mobile-menu {
    width: calc(100vw - 24px);
    right: 12px;
    left: auto;
    border-radius: 20px;
  }
  .logo-chip--trust {
    min-width: 142px;
    height: 70px;
    padding: 0 16px;
    font-size: 13px;
  }
  .logo-chip--image {
    min-width: 126px;
    height: 72px;
    padding: 8px 14px;
  }
  .logo-chip--image img {
    max-width: 102px;
    max-height: 34px;
  }
}


/* ===== v5: compact header, tighter section spacing, real trust logos ===== */
:root {
  --header-height: 92px;
  --header-height-scrolled: 84px;
}
html { scroll-padding-top: calc(var(--header-height) + 14px); }
.site-header {
  background: rgba(255,255,255,.90);
  border-bottom-color: rgba(36,45,130,.05);
}
.header-inner {
  min-height: var(--header-height) !important;
  grid-template-columns: 136px minmax(0,1fr) auto auto !important;
  gap: 14px !important;
}
.site-header.scrolled .header-inner { min-height: var(--header-height-scrolled) !important; }
.brand-logo { width: 120px; }
.main-nav {
  justify-self: center !important;
  justify-content: center !important;
  gap: clamp(10px, 1.4vw, 20px) !important;
  font-size: 14px !important;
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 3px;
}
.header-actions { gap: 10px !important; }
.header-actions .btn {
  min-height: 42px;
  padding: 0 16px !important;
  font-size: 13px !important;
}
.header-tools { gap: 8px !important; }
.lang-switch {
  padding: 3px !important;
  gap: 2px !important;
}
.lang-switch__btn {
  min-width: 40px !important;
  height: 34px !important;
  font-size: 12px !important;
}
.theme-toggle {
  width: 44px !important;
  height: 44px !important;
}
html[data-theme="dark"] .site-header,
html[data-theme="dark"] .site-header.scrolled {
  background: rgba(8,13,26,.86);
}

.trusted {
  padding-top: 18px !important;
  padding-bottom: 54px !important;
}
.trusted-head { margin-bottom: 12px !important; }
.trust-track-wrap .logo-track {
  padding: 10px 0 6px;
  gap: 18px;
}
.trust-track .logo-chip--trust-image {
  min-width: 174px;
  height: 84px;
  padding: 10px 18px;
}
.trust-track .logo-chip--trust-image img {
  max-width: 136px;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.logo-chip--trust-image.has-theme-pair .theme-dark-logo { display: none; }
html[data-theme="dark"] .logo-chip--trust-image.has-theme-pair .theme-light-logo { display: none; }
html[data-theme="dark"] .logo-chip--trust-image.has-theme-pair .theme-dark-logo { display: block; }

.tariffs {
  padding-bottom: 54px !important;
}
.stats {
  padding-top: 54px !important;
}
.stats .section-title {
  margin-bottom: 38px;
}
.stats-grid {
  gap: 26px !important;
}
.stats-grid article {
  min-height: 208px;
  padding: 22px 20px 20px !important;
}
.stats-grid article strong {
  margin-bottom: 14px;
  font-size: clamp(40px, 3vw, 46px);
}
.stats-grid article span {
  margin-bottom: 14px;
}
.stats-grid article p {
  max-width: 100% !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 126px minmax(0,1fr) auto auto !important;
    gap: 12px !important;
  }
  .brand-logo { width: 112px; }
  .main-nav { gap: 12px !important; font-size: 13px !important; }
  .header-actions .btn { padding: 0 13px !important; font-size: 12px !important; }
}

@media (max-width: 960px) {
  html { scroll-padding-top: 88px; }
  .header-inner {
    min-height: 80px !important;
    grid-template-columns: 1fr auto auto !important;
    gap: 10px !important;
  }
  .site-header.scrolled .header-inner { min-height: 76px !important; }
  .brand-logo { width: 96px; }
  .trust-track .logo-chip--trust-image {
    min-width: 150px;
    height: 76px;
    padding: 8px 16px;
  }
  .trust-track .logo-chip--trust-image img {
    max-width: 118px;
    max-height: 36px;
  }
  .tariffs { padding-bottom: 46px !important; }
  .stats { padding-top: 46px !important; }
}

@media (max-width: 640px) {
  .trusted {
    padding-top: 10px !important;
    padding-bottom: 42px !important;
  }
  .trust-track-wrap .logo-track {
    gap: 14px;
    padding: 8px 0 4px;
  }
  .trust-track .logo-chip--trust-image {
    min-width: 128px;
    height: 68px;
    padding: 8px 14px;
  }
  .trust-track .logo-chip--trust-image img {
    max-width: 96px;
    max-height: 30px;
  }
  .stats-grid article {
    padding: 18px 16px 16px !important;
  }
  .stats-grid article strong {
    font-size: 38px;
  }
  .stats-grid article p {
    font-size: 13px !important;
  }
}

/* ===== v6: synced header height across themes + cropped logos ===== */
:root {
  --header-height: 84px;
  --header-height-scrolled: 78px;
}
html {
  scroll-padding-top: calc(var(--header-height) + 12px);
}
.site-header {
  background: rgba(255,255,255,.94) !important;
  border-bottom: 1px solid rgba(36,45,130,.08) !important;
}
html[data-theme="dark"] .site-header,
html[data-theme="dark"] .site-header.scrolled {
  background: rgba(8,13,26,.88) !important;
  border-bottom-color: rgba(123,139,255,.12) !important;
}
.header-inner {
  min-height: var(--header-height) !important;
  grid-template-columns: 112px minmax(0,1fr) auto auto !important;
  align-items: center !important;
  gap: 14px !important;
}
.site-header.scrolled .header-inner {
  min-height: var(--header-height-scrolled) !important;
}
.brand {
  display: flex;
  align-items: center;
  height: 100%;
}
.brand-logo {
  display: block;
  width: auto !important;
  height: 60px !important;
  max-width: 100% !important;
  object-fit: contain;
}
.main-nav {
  justify-self: center !important;
  align-self: center !important;
  gap: clamp(10px, 1.3vw, 18px) !important;
}
.main-nav a {
  min-height: 36px !important;
  line-height: 1 !important;
}
.header-actions .btn {
  min-height: 40px !important;
  padding: 0 15px !important;
}
.lang-switch {
  padding: 2px !important;
}
.lang-switch__btn {
  min-width: 36px !important;
  height: 32px !important;
}
.theme-toggle {
  width: 40px !important;
  height: 40px !important;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 104px minmax(0,1fr) auto auto !important;
    gap: 12px !important;
  }
  .brand-logo {
    height: 56px !important;
  }
  .main-nav {
    gap: 10px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 960px) {
  html {
    scroll-padding-top: 82px;
  }
  .header-inner {
    min-height: 74px !important;
    grid-template-columns: 1fr auto auto !important;
    gap: 10px !important;
  }
  .site-header.scrolled .header-inner {
    min-height: 70px !important;
  }
  .brand-logo {
    height: 48px !important;
  }
}

/* ===== v7: force single visible logo per theme ===== */
.site-header .brand-logo-light,
.footer-brand__logos .brand-logo-light {
  display: block !important;
}
.site-header .brand-logo-dark,
.footer-brand__logos .brand-logo-dark {
  display: none !important;
}
html[data-theme="dark"] .site-header .brand-logo-light,
html[data-theme="dark"] .footer-brand__logos .brand-logo-light {
  display: none !important;
}
html[data-theme="dark"] .site-header .brand-logo-dark,
html[data-theme="dark"] .footer-brand__logos .brand-logo-dark {
  display: block !important;
}


/* ===== v8: premium mobile menu + larger footer logo ===== */
@media (max-width: 960px) {
  .mobile-menu {
    width: min(410px, calc(100vw - 20px)) !important;
    top: calc(100% + 10px) !important;
    right: 10px !important;
    left: auto !important;
    padding: 18px !important;
    gap: 12px !important;
    border-radius: 28px !important;
    background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(245,247,255,.96) 100%) !important;
    border: 1px solid rgba(81, 95, 192, .14) !important;
    box-shadow: 0 28px 60px rgba(14, 23, 68, .18), 0 10px 24px rgba(36, 45, 130, .08) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
  }

  .mobile-menu::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 86px;
    background: linear-gradient(135deg, rgba(36,45,130,.10), rgba(218,30,128,.10));
    pointer-events: none;
  }

  .mobile-menu > * {
    position: relative;
    z-index: 1;
  }

  .mobile-menu a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 14px 16px !important;
    border-radius: 18px !important;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(36,45,130,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.78), 0 10px 18px rgba(14,24,63,.06);
    color: #1c245c !important;
    font-size: 15px !important;
    font-weight: 600;
    letter-spacing: .01em;
    transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease !important;
  }

  .mobile-menu a::after {
    content: "›";
    font-size: 18px;
    color: rgba(28,36,92,.45);
    transition: transform .22s ease, color .22s ease;
  }

  .mobile-menu a:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.96) !important;
    border-color: rgba(36,45,130,.14);
    box-shadow: 0 16px 26px rgba(14,24,63,.10);
  }

  .mobile-menu a:hover::after {
    transform: translateX(2px);
    color: rgba(28,36,92,.72);
  }

  .mobile-menu__action {
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 18px 34px rgba(31, 39, 110, .18), inset 0 1px 0 rgba(255,255,255,.18) !important;
  }

  .mobile-menu__action::after {
    color: rgba(255,255,255,.78) !important;
  }

  .mobile-menu__action--primary {
    background: linear-gradient(135deg, #242d82 0%, #4f63ea 100%) !important;
  }

  .mobile-menu__action--whatsapp {
    background: linear-gradient(135deg, #da1e80 0%, #ff64b2 100%) !important;
  }

  .mobile-menu__action:hover {
    color: #ffffff !important;
    border-color: transparent !important;
  }

  .mobile-menu__controls {
    grid-template-columns: 1fr auto !important;
    align-items: center;
    gap: 12px !important;
    margin-top: 2px !important;
    padding-top: 6px;
    border-top: 1px solid rgba(36,45,130,.08);
  }

  .lang-switch-mobile {
    justify-content: flex-start !important;
    padding: 4px !important;
    border-radius: 18px !important;
    background: rgba(255,255,255,.82) !important;
    border: 1px solid rgba(36,45,130,.08);
    box-shadow: 0 10px 18px rgba(14,24,63,.05);
  }

  .lang-switch-mobile .lang-switch__btn {
    min-width: 56px !important;
    height: 44px !important;
    border-radius: 14px !important;
    font-weight: 700;
  }

  .theme-toggle-mobile {
    width: auto !important;
    min-width: 138px !important;
    min-height: 52px !important;
    padding: 0 16px !important;
    justify-content: center !important;
    gap: 10px !important;
    border-radius: 18px !important;
    background: rgba(255,255,255,.82) !important;
    border: 1px solid rgba(36,45,130,.08);
    box-shadow: 0 10px 18px rgba(14,24,63,.05);
  }

  .theme-toggle-mobile .theme-toggle__text {
    display: inline-block !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .01em;
  }
}

html[data-theme="dark"] .mobile-menu {
  background: linear-gradient(180deg, rgba(12,18,40,.98) 0%, rgba(18,25,53,.96) 100%) !important;
  border-color: rgba(123, 139, 255, .18) !important;
  box-shadow: 0 28px 60px rgba(0, 0, 0, .42), 0 10px 24px rgba(4, 8, 22, .30) !important;
}

html[data-theme="dark"] .mobile-menu::before {
  background: linear-gradient(135deg, rgba(85, 103, 255, .20), rgba(218, 30, 128, .16));
}

html[data-theme="dark"] .mobile-menu a {
  background: rgba(20, 27, 56, .88) !important;
  color: #eef2ff !important;
  border-color: rgba(123, 139, 255, .14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 12px 20px rgba(0,0,0,.20);
}

html[data-theme="dark"] .mobile-menu a::after {
  color: rgba(238,242,255,.54);
}

html[data-theme="dark"] .mobile-menu a:hover {
  background: rgba(28, 38, 76, .98) !important;
  border-color: rgba(123, 139, 255, .24);
}

html[data-theme="dark"] .mobile-menu a:hover::after {
  color: rgba(238,242,255,.88);
}

html[data-theme="dark"] .lang-switch-mobile,
html[data-theme="dark"] .theme-toggle-mobile {
  background: rgba(20, 27, 56, .90) !important;
  border-color: rgba(123, 139, 255, .14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 12px 20px rgba(0,0,0,.18);
}

html[data-theme="dark"] .mobile-menu__controls {
  border-top-color: rgba(123, 139, 255, .16);
}

.footer-brand {
  gap: 18px !important;
}

.footer-brand__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
}

.footer-brand__logos .brand-logo {
  width: auto !important;
  height: 128px !important;
  max-width: 100% !important;
}

@media (max-width: 960px) {
  .footer-brand__logos {
    min-height: 90px;
  }

  .footer-brand__logos .brand-logo {
    height: 78px !important;
  }
}

/* ===== v9: match reference typography/layout from screenshots ===== */
.site-header .header-inner {
  grid-template-columns: 128px minmax(0, 1fr) auto auto !important;
  gap: 16px !important;
}
.site-header .brand-logo {
  height: 98px !important;
  width: auto !important;
  max-width: 100% !important;
}
.main-nav {
  gap: 18px !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}
.main-nav a {
  min-height: 34px !important;
  padding: 0 2px !important;
}
.header-actions .btn {
  min-height: 40px !important;
  padding: 0 20px !important;
  font-size: 13px !important;
}

.section-title {
  letter-spacing: -0.02em !important;
}
.section-title-blue {
  font-size: clamp(39px, 3vw, 47px) !important;
  font-weight: 600 !important;
  line-height: 1.04 !important;
}
.section-title-gray {
  font-size: clamp(37px, 2.8vw, 44px) !important;
  font-weight: 400 !important;
  line-height: 1.06 !important;
  color: #777777 !important;
}

.values {
  padding-top: 84px !important;
  padding-bottom: 78px !important;
}
.values .section-title {
  margin-bottom: 58px !important;
}
.values-grid {
  gap: 54px 96px !important;
}
.value-item {
  gap: 16px !important;
}
.value-item h3 {
  margin: 0 0 11px !important;
  font-size: 17px !important;
  line-height: 1.34 !important;
  font-weight: 700 !important;
  color: #7a7a7a !important;
  letter-spacing: -0.01em !important;
}
.value-item p {
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.58 !important;
  color: #9a9a9a !important;
  max-width: 410px;
}
.value-item .check {
  width: 31px !important;
  height: 31px !important;
  flex-basis: 31px !important;
  margin-top: 2px !important;
}
.value-item .check::before {
  width: 7px !important;
  height: 12px !important;
  left: 10px !important;
  top: 5px !important;
}

.trusted {
  padding-top: 18px !important;
}
.trusted .trusted-head {
  margin-bottom: 18px !important;
}
.trusted .section-title {
  margin-bottom: 16px !important;
}

@media (max-width: 1180px) {
  .site-header .header-inner {
    grid-template-columns: 122px minmax(0, 1fr) auto auto !important;
    gap: 14px !important;
  }
  .site-header .brand-logo {
    height: 62px !important;
  }
  .main-nav {
    gap: 14px !important;
    font-size: 13px !important;
  }
  .header-actions .btn {
    padding: 0 16px !important;
    font-size: 12px !important;
  }
  .values-grid {
    gap: 46px 70px !important;
  }
}

@media (max-width: 960px) {
  .site-header .header-inner {
    grid-template-columns: 1fr auto auto !important;
  }
  .site-header .brand-logo {
    height: 52px !important;
  }
  .values {
    padding-top: 70px !important;
    padding-bottom: 64px !important;
  }
  .values .section-title {
    margin-bottom: 42px !important;
  }
  .values-grid {
    gap: 34px !important;
  }
}

@media (max-width: 640px) {
  .site-header .brand-logo {
    height: 48px !important;
  }
  .section-title-blue {
    font-size: 34px !important;
  }
  .section-title-gray {
    font-size: 33px !important;
  }
  .value-item h3 {
    font-size: 16px !important;
  }
  .value-item p {
    font-size: 13px !important;
  }
}


/* ===== v10: old-site typography, shades and phone selector ===== */
html,
body,
input,
textarea,
select,
button {
  font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
}

body,
p,
li,
span,
small,
label,
a,
td,
th {
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
.btn,
.main-nav a,
.lang-switch__btn,
.hero-form button,
.tariffs-table thead th span {
  font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
}

.hero-copy h1 {
  font-weight: 700 !important;
}

.section-title-gray,
.stats .section-title {
  color: #8a8a8a !important;
  font-weight: 400 !important;
}

.deliverables .section-title {
  color: #8a8a8a !important;
  font-weight: 400 !important;
}

.deliverables .split-copy h3,
.deliverables .bullet-block h4 {
  color: var(--blue) !important;
}

.deliverables .split-copy h3 {
  font-weight: 700 !important;
}

.deliverables .bullet-block h4 {
  font-weight: 700 !important;
}

.deliverables .bullet-block p,
.stats-grid article p,
.value-item p,
.included-item p,
.footer-inner li,
.footer-inner p {
  color: #8f8f8f !important;
}

.hero-form .iti {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}

.hero-form .iti input[type="tel"] {
  width: 100%;
  height: 49px;
  margin-bottom: 0 !important;
  padding-left: 92px !important;
  padding-right: 20px !important;
  border: 0;
  border-radius: 25px;
  background: #f0f0f0;
  color: #2e2e2e;
  outline: none;
  box-shadow: none;
}

.hero-form .iti__country-container {
  left: 0;
}

.hero-form .iti__selected-country {
  padding-left: 16px;
  padding-right: 8px;
  border-radius: 25px 0 0 25px;
}

.hero-form .iti__selected-country-primary {
  padding: 0 10px 0 0;
}

.hero-form .iti__selected-dial-code,
.hero-form .iti__country-name,
.hero-form .iti__dial-code {
  font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
}

.hero-form .iti__dropdown-content {
  border-radius: 18px;
  border: 1px solid rgba(36, 45, 130, .08);
  box-shadow: 0 18px 34px rgba(8, 13, 38, .12);
}

.hero-form .iti__search-input {
  font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
}

@media (max-width: 640px) {
  .deliverables .section-title {
    color: #8a8a8a !important;
  }

  .hero-form .iti input[type="tel"] {
    padding-left: 86px !important;
  }
}


/* ===== v11: grey wash from header to trusted, brighter hero, form above overlay ===== */
:root {
  --bg: #f3f3f3;
  --title-gray: #808080;
  --text: #8b8b8b;
}

body {
  background: var(--bg) !important;
  color: var(--text) !important;
}

.site-header {
  background: rgba(238, 238, 238, .84) !important;
  border-bottom: 1px solid rgba(111, 111, 111, .10) !important;
  backdrop-filter: blur(12px) saturate(.92) !important;
}

.site-header.scrolled {
  background: rgba(236, 236, 236, .94) !important;
  box-shadow: 0 12px 30px rgba(71, 71, 71, .06) !important;
}

.main-nav,
.main-nav a,
.brand {
  color: #6f6f6f;
}

.hero,
.values,
.trusted {
  background-color: #f2f2f2 !important;
}

.hero {
  background-image:
    linear-gradient(rgba(255, 255, 255, .11), rgba(255, 255, 255, .13)),
    url('assets/images/hero-main.jpg') !important;
  background-position: center center !important;
  background-size: cover !important;
}

.hero-overlay {
  z-index: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: linear-gradient(108deg, rgba(24, 24, 24, .90) 0%, rgba(38, 38, 38, .64) 44%, rgba(46, 46, 46, 0.5) 100%) !important;
}

.hero-grid {
  position: relative;
  z-index: 2 !important;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-form {
  position: relative;
  z-index: 3 !important;
  background: rgba(255, 255, 255, .97) !important;
  border: 1px solid rgba(255, 255, 255, .92) !important;
  box-shadow: 0 28px 72px rgba(36, 36, 36, .12) !important;
}

.values {
  position: relative;
  background: linear-gradient(180deg, #efefef 0%, #f5f5f5 100%) !important;
}

.trusted {
  position: relative;
  background: linear-gradient(180deg, #f5f5f5 0%, #f8f8f8 100%) !important;
}

.values .container,
.trusted .container,
.trusted .trusted-head {
  position: relative;
  z-index: 1;
}

.section-title-gray,
.stats .section-title,
.deliverables .section-title,
.value-item h3,
.logo-chip,
.stats-grid article p,
.value-item p,
.included-item p,
.footer-inner p,
.footer-inner li {
  color: #888888 !important;
}

.logo-chip {
  background: rgba(255, 255, 255, .84) !important;
  border-color: rgba(124, 124, 124, .07) !important;
  box-shadow: 0 10px 24px rgba(65, 65, 65, .05) !important;
}

.hero-form .iti__selected-country {
  min-width: 88px;
}

.hero-form .iti__selected-country-primary {
  gap: 6px;
}

.hero-form .iti__selected-dial-code {
  font-weight: 500;
  color: #5a5a5a;
}

.hero-form .iti__dropdown-content {
  background: rgba(255, 255, 255, .98);
}

@media (max-width: 960px) {
  .site-header {
    background: rgba(239, 239, 239, .92) !important;
  }

  .hero-overlay {
    backdrop-filter: grayscale(.22) brightness(1.05);
  }

  .hero-form {
    z-index: 3 !important;
  }
}


/* ===== final fixes: requested layout / overlay / phone / sections / footer ===== */
:root {
  --section-sep-bg: linear-gradient(180deg, #ececec 0%, #f4f4f4 100%);
  --section-sep-border: rgba(118, 118, 118, .10);
}

/* 1) Grey effect only behind the hero form */
.hero {
  isolation: isolate;
}
.hero::before,
.hero::after,
.hero-ambient,
.hero-overlay {
  pointer-events: none;
}
.hero-overlay {
  z-index: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: linear-gradient(108deg, rgba(28, 28, 28, .78) 0%, rgba(42, 42, 42, .62) 44%, rgba(58, 58, 58, .48) 100%) !important;
}
.hero-grid,
.hero-copy,
.hero-form {
  position: relative;
}
.hero-grid {
  z-index: 2 !important;
}
.hero-copy {
  z-index: 2 !important;
}
.hero-form {
  z-index: 4 !important;
  background: rgba(255, 255, 255, .995) !important;
}

/* 2) Country flag + dial code spacing and visibility */
.hero-form .iti {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}
.hero-form .iti__selected-country {
  min-width: 78px !important;
  padding-left: 14px !important;
  padding-right: 6px !important;
  gap: 4px !important;
  border-radius: 25px 0 0 25px;
}
.hero-form .iti__selected-country-primary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 0 6px 0 0 !important;
}
.hero-form .iti__flag {
  margin-right: 0 !important;
}
.hero-form .iti__selected-dial-code,
.hero-form .iti__dial-code {
  display: inline-flex !important;
  align-items: center;
  margin-left: 0 !important;
  color: #4f4f4f !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0 !important;
}
.hero-form .iti input[type="tel"] {
  padding-left: 110px !important;
}
.hero-form .iti__arrow {
  margin-left: 2px !important;
}
html[data-theme="dark"] .hero-form .iti__selected-dial-code,
html[data-theme="dark"] .hero-form .iti__dial-code {
  color: #eef2ff !important;
}

/* 3) Main hero title smaller and centered only in adaptive mode */
.hero-copy {
  justify-self: start;
  text-align: left;
}
.hero-copy h1 {
  max-width: 560px !important;
  font-size: clamp(28px, 3.15vw, 44px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.02em;
}

/* 4) Values block tighter + grey separation */
.values {
  background: var(--section-sep-bg) !important;
  border-top: 1px solid var(--section-sep-border);
  border-bottom: 1px solid var(--section-sep-border);
}
.values-grid {
  gap: 24px 34px !important;
}
.value-item {
  padding: 18px 18px 18px 20px !important;
}
.value-item h3 {
  margin-bottom: 6px !important;
  font-size: 19px !important;
  line-height: 1.16 !important;
}
.value-item p {
  font-size: 14px !important;
  line-height: 1.46 !important;
}

/* 5) Grey separation from tariffs to ticker benefits */
.tariffs,
.stats {
  background: var(--section-sep-bg) !important;
}
.tariffs {
  border-top: 1px solid var(--section-sep-border);
}
.stats {
  border-bottom: 1px solid var(--section-sep-border);
}

/* 6) Deliverables block text smaller + full images visible */
.deliverables .split-copy h3 {
  margin-bottom: 24px !important;
  font-size: 22px !important;
}
.deliverables .bullet-block {
  margin-bottom: 20px !important;
}
.deliverables .bullet-block h4 {
  margin-bottom: 8px !important;
  font-size: 17px !important;
  line-height: 1.28 !important;
  gap: 14px !important;
}
.deliverables .bullet-block p {
  font-size: 14px !important;
  line-height: 1.48 !important;
}
.deliverables .split-image {
  min-height: 680px !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-color: rgba(255,255,255,.72) !important;
  border-radius: 24px !important;
  padding: 18px !important;
}

/* 7) Footer texts always visible */
.site-footer {
  background: #8f8f8f !important;
}
.site-footer h4,
.site-footer a,
.footer-inner li,
.footer-inner p,
.copyright {
  color: rgba(255,255,255,.94) !important;
}
.site-footer a:hover {
  color: #ffffff !important;
}
.socials a {
  background: rgba(255,255,255,.16) !important;
}
.footer-brand {
  color: #ffffff !important;
}

@media (max-width: 960px) {
  .hero-copy {
    justify-self: center;
    text-align: center;
  }
  .hero-copy h1 {
    max-width: 100% !important;
    margin-inline: auto;
    text-align: center !important;
    font-size: clamp(30px, 6vw, 40px) !important;
  }
  .values-grid {
    gap: 18px !important;
  }
  .deliverables .split-image {
    min-height: 420px !important;
  }
}

@media (max-width: 640px) {
  .hero-form .iti__selected-country {
    min-width: 70px !important;
    padding-left: 12px !important;
    padding-right: 4px !important;
  }
  .hero-form .iti__selected-dial-code,
  .hero-form .iti__dial-code {
    font-size: 13px !important;
  }
  .hero-form .iti input[type="tel"] {
    padding-left: 96px !important;
  }
  .hero-copy h1 {
    font-size: 30px !important;
    line-height: 1.12 !important;
    text-align: center !important;
  }
  .value-item h3 {
    font-size: 17px !important;
  }
  .value-item p,
  .deliverables .bullet-block p {
    font-size: 13px !important;
  }
  .deliverables .split-copy h3 {
    font-size: 20px !important;
  }
  .deliverables .bullet-block h4 {
    font-size: 15px !important;
  }
  .deliverables .split-image {
    min-height: 320px !important;
  }
}

html[data-theme="dark"] .values,
html[data-theme="dark"] .tariffs,
html[data-theme="dark"] .stats {
  background: linear-gradient(180deg, rgba(16,22,42,.98) 0%, rgba(14,19,36,.95) 100%) !important;
  border-color: rgba(123, 139, 255, .16);
}
html[data-theme="dark"] .deliverables .split-image {
  background-color: rgba(14, 19, 36, .88) !important;
}
html[data-theme="dark"] .site-footer,
html[data-theme="dark"] .site-footer h4,
html[data-theme="dark"] .site-footer a,
html[data-theme="dark"] .footer-inner li,
html[data-theme="dark"] .footer-inner p,
html[data-theme="dark"] .copyright,
html[data-theme="dark"] .footer-brand {
  color: rgba(255,255,255,.94) !important;
}

/* ===== v4: values reference match + trusted dark mode ===== */
.values {
  background: #ececec !important;
}
.values .section-title {
  font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
  font-size: clamp(42px, 3vw, 50px) !important;
  font-weight: 500 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.025em !important;
  color: #2a3188 !important;
  margin-bottom: 58px !important;
}
.values-grid {
  gap: 50px 92px !important;
}
.value-item {
  padding: 0 !important;
  gap: 16px !important;
  align-items: flex-start !important;
}
.value-item h3 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.34 !important;
  letter-spacing: -0.01em !important;
  color: #9a9a9a !important;
  margin: 0 0 10px !important;
}
.value-item p {
  font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.58 !important;
  color: #a9a9a9 !important;
  max-width: 410px;
}
.value-item .check {
  width: 32px !important;
  height: 32px !important;
  flex: 0 0 32px !important;
  border-color: #cc3f86 !important;
}
.value-item .check::before {
  border-right-color: #cc3f86 !important;
  border-bottom-color: #cc3f86 !important;
}

html[data-theme="dark"] .trusted {
  background: linear-gradient(180deg, rgba(16,22,42,.98) 0%, rgba(13,18,34,.96) 100%) !important;
  border-top: 1px solid rgba(123, 139, 255, .16);
  border-bottom: 1px solid rgba(123, 139, 255, .12);
}
html[data-theme="dark"] .trusted .section-title {
  color: #eef2ff !important;
}
html[data-theme="dark"] .logo-chip,
html[data-theme="dark"] .trust-track .logo-chip--trust-image {
  background: linear-gradient(180deg, rgba(18,26,48,.92), rgba(11,17,33,.88)) !important;
  border-color: rgba(144,161,255,.16) !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.24) !important;
}
html[data-theme="dark"] .trust-track .logo-chip--trust-image img {
  filter: none !important;
}

@media (max-width: 960px) {
  .values .section-title {
    font-size: clamp(36px, 7vw, 46px) !important;
    margin-bottom: 42px !important;
  }
  .values-grid {
    gap: 34px !important;
  }
}

@media (max-width: 640px) {
  .values {
    background: #ececec !important;
  }
  .values .section-title {
    font-size: 34px !important;
  }
  .value-item h3 {
    font-size: 16px !important;
  }
  .value-item p {
    font-size: 13px !important;
  }
}


/* ===== v5: dark form visibility + softer values + refined buttons ===== */
:root {
  --bg: #f3f3f4;
  --text: #878787;
  --title-gray: #707070;
  --section-sep-bg: linear-gradient(180deg, #e6e6e7 0%, #efefef 100%);
  --section-sep-border: rgba(108, 108, 108, .12);
}

body {
  background: var(--bg);
}

.site-header {
  background: rgba(245,245,246,.94);
}

.hero-form {
  background: #f7f7f8;
}

.hero-form p,
.hero-form small {
  color: #8f8f93;
}

.hero-form input {
  background: #ebebed;
  color: #2f2f34;
}

.hero-form input:hover {
  background: #e5e5e8;
}

.values {
  background: #e5e5e6 !important;
}

.tariffs,
.stats {
  background: var(--section-sep-bg) !important;
}

.table-wrap {
  background: rgba(239,239,240,.74);
}

.logo-chip {
  background: rgba(246,246,247,.92) !important;
}

.included-item {
  background: linear-gradient(180deg, rgba(244,244,245,.92), rgba(244,244,245,.28));
}

.site-footer {
  background: #858585 !important;
}

.values .value-item,
html[data-theme="dark"] .values .value-item {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
}

.values .value-item:hover,
html[data-theme="dark"] .values .value-item:hover {
  transform: translateY(-2px);
  box-shadow: none !important;
}

.hero-form button[type="submit"] {
  min-height: 54px;
  padding-inline: 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  background: linear-gradient(135deg, #242d82 0%, #4156cb 58%, #da1e80 100%) !important;
  border: 0 !important;
  box-shadow: 0 18px 34px rgba(36,45,130,.24), inset 0 1px 0 rgba(255,255,255,.18);
}

.hero-form button[type="submit"]::after {
  content: '→';
  display: inline-block;
  margin-left: 10px;
  font-size: 16px;
  font-weight: 800;
  transition: transform .25s ease;
}

.hero-form button[type="submit"]:hover {
  box-shadow: 0 24px 40px rgba(36,45,130,.30), 0 10px 24px rgba(218,30,128,.14);
}

.hero-form button[type="submit"]:hover::after {
  transform: translateX(4px);
}

.hero-form button[type="submit"]:disabled {
  cursor: wait;
  opacity: .9;
  transform: none !important;
}

.back-to-top {
  width: 62px;
  height: 62px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 0;
  background: linear-gradient(135deg, rgba(36,45,130,.98), rgba(218,30,128,.92));
  box-shadow: 0 18px 36px rgba(18,22,52,.24), 0 10px 22px rgba(218,30,128,.12);
}

.back-to-top::before {
  content: '';
  width: 24px;
  height: 24px;
  background: center / contain no-repeat url("assets/images/icon-arrow-up.svg");
}

.back-to-top::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 21px;
  border: 1px solid rgba(255,255,255,.16);
  pointer-events: none;
}

.back-to-top:hover {
  background: linear-gradient(135deg, rgba(58,69,172,.98), rgba(231,50,146,.94));
  box-shadow: 0 24px 44px rgba(18,22,52,.30), 0 14px 30px rgba(218,30,128,.16);
}

.floating-chat {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(240,242,248,.96));
  color: #242d82;
  box-shadow: 0 18px 36px rgba(18,22,52,.18);
}

.floating-chat span {
  font-size: 29px;
  line-height: 1;
}

html[data-theme="dark"] .hero-form {
  background: linear-gradient(180deg, rgba(17,25,47,.98), rgba(12,18,34,.96)) !important;
  border-color: rgba(145,161,255,.14);
  box-shadow: 0 30px 72px rgba(0,0,0,.34);
}

html[data-theme="dark"] .hero-form h2 {
  color: #f4f7ff !important;
}

html[data-theme="dark"] .hero-form p,
html[data-theme="dark"] .hero-form small {
  color: #bfc8df !important;
}

html[data-theme="dark"] .hero-form input {
  background: rgba(255,255,255,.06) !important;
  color: #f4f7ff !important;
  border-color: rgba(160,175,255,.14) !important;
}

html[data-theme="dark"] .hero-form input:hover {
  background: rgba(255,255,255,.09) !important;
}

html[data-theme="dark"] .hero-form input:focus {
  background: rgba(255,255,255,.11) !important;
  border-color: rgba(184,197,255,.26) !important;
  box-shadow: 0 0 0 3px rgba(91,110,214,.16) !important;
}

html[data-theme="dark"] .hero-form input,
html[data-theme="dark"] .hero-form input::placeholder {
  color: #f4f7ff !important;
}

html[data-theme="dark"] .hero-form input::placeholder {
  color: #9eaed4 !important;
}

html[data-theme="dark"] .hero-form input:-webkit-autofill,
html[data-theme="dark"] .hero-form input:-webkit-autofill:hover,
html[data-theme="dark"] .hero-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: #f4f7ff;
  -webkit-box-shadow: 0 0 0 1000px rgba(255,255,255,.08) inset;
  transition: background-color 9999s ease-in-out 0s;
}

html[data-theme="dark"] .hero-form .iti__selected-country {
  background: rgba(255,255,255,.03) !important;
  color: #eef2ff !important;
}

html[data-theme="dark"] .hero-form .iti__selected-country-primary,
html[data-theme="dark"] .hero-form .iti__selected-dial-code,
html[data-theme="dark"] .hero-form .iti__dial-code,
html[data-theme="dark"] .hero-form .iti__country-name,
html[data-theme="dark"] .hero-form .iti__search-input {
  color: #eef2ff !important;
}

html[data-theme="dark"] .hero-form .iti__dial-code {
  color: #bcc8ee !important;
}

html[data-theme="dark"] .hero-form .iti__arrow {
  border-top-color: #bcc8ee !important;
}

html[data-theme="dark"] .hero-form .iti__dropdown-content,
html[data-theme="dark"] .hero-form .iti__country-list {
  background: #11192f !important;
  color: #eef2ff !important;
  border: 1px solid rgba(145,161,255,.16) !important;
  box-shadow: 0 22px 38px rgba(0,0,0,.34) !important;
}

html[data-theme="dark"] .hero-form .iti__search-input {
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(145,161,255,.16) !important;
}

html[data-theme="dark"] .hero-form .iti__country,
html[data-theme="dark"] .hero-form .iti__standard {
  background: transparent !important;
  color: #eef2ff !important;
}

html[data-theme="dark"] .hero-form .iti__country:hover,
html[data-theme="dark"] .hero-form .iti__country.iti__highlight {
  background: rgba(255,255,255,.07) !important;
}

html[data-theme="dark"] .values,
html[data-theme="dark"] .tariffs,
html[data-theme="dark"] .stats,
html[data-theme="dark"] .trusted {
  background: linear-gradient(180deg, rgba(15,21,40,.99) 0%, rgba(12,17,32,.97) 100%) !important;
}

html[data-theme="dark"] .logo-chip {
  background: linear-gradient(180deg, rgba(18,25,46,.9), rgba(12,17,31,.86)) !important;
}

html[data-theme="dark"] .floating-chat {
  background: linear-gradient(135deg, rgba(31,41,92,.98), rgba(20,27,52,.96));
  color: #ffffff;
}

html[data-theme="dark"] .back-to-top {
  background: linear-gradient(135deg, rgba(49,62,154,.98), rgba(218,30,128,.9));
}


/* ===== v5.1: gentle grey deepening ===== */
.main-nav {
  color: #7f7f7f;
}

.section-title-gray,
.value-item h3,
.footer-inner p,
.footer-inner li,
.copyright {
  color: #949494 !important;
}

.value-item p,
.included-item p {
  color: #9f9f9f !important;
}

.stats-grid article p,
.tariffs-table tbody td:first-child {
  color: #777777;
}

@media (max-width: 640px) {
  .back-to-top {
    width: 56px;
    height: 56px;
    border-radius: 20px;
  }

  .floating-chat {
    width: 58px;
    height: 58px;
    border-radius: 20px;
  }

  .floating-chat span {
    font-size: 26px;
  }
}

/* ===== v5.2: footer visibility final white sync ===== */
.site-footer .footer-inner li,
.site-footer .footer-inner p,
.site-footer .copyright,
.site-footer .footer-inner a,
.site-footer .socials a,
.site-footer .socials a:visited,
html[data-theme="dark"] .site-footer .footer-inner li,
html[data-theme="dark"] .site-footer .footer-inner p,
html[data-theme="dark"] .site-footer .copyright,
html[data-theme="dark"] .site-footer .footer-inner a,
html[data-theme="dark"] .site-footer .socials a,
html[data-theme="dark"] .site-footer .socials a:visited {
  color: rgba(255,255,255,.94) !important;
  -webkit-text-fill-color: rgba(255,255,255,.94) !important;
}

.site-footer .socials a:hover,
.site-footer .socials a:focus-visible,
html[data-theme="dark"] .site-footer .socials a:hover,
html[data-theme="dark"] .site-footer .socials a:focus-visible {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}


/* ===== v12: force hero title into two visual lines on desktop ===== */
.hero-copy h1 {
  max-width: 860px !important;
  font-size: clamp(38px, 3.8vw, 51px) !important;
  line-height: 1.06 !important;
  font-weight: 900 !important;
}

.hero-copy h1 .hero-line {
  display: block;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .hero-grid {
    gap: 36px !important;
    grid-template-columns: minmax(0, 1fr) 340px !important;
  }

  .hero-copy h1 {
    max-width: 720px !important;
    font-size: clamp(24px, 2.9vw, 34px) !important;
  }
}

@media (max-width: 960px) {
  .hero-copy h1 .hero-line {
    display: inline;
    white-space: normal;
  }

  .hero-copy h1 .hero-line + .hero-line::before {
    content: " ";
  }
}

/* ===== v13: mobile hero title fix ===== */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    justify-items: center;
    align-items: start;
    gap: 20px !important;
  }

  .hero-copy {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    text-align: center !important;
  }

  .hero-copy h1 {
    width: 100%;
    max-width: 360px !important;
    margin: 0 auto !important;
    text-align: center !important;
    font-size: clamp(24px, 6.8vw, 32px) !important;
    line-height: 1.14 !important;
  }

  .hero-copy h1 .hero-line {
    display: block !important;
    white-space: normal !important;
  }

  .hero-copy h1 .hero-line + .hero-line::before {
    content: none !important;
  }

  .hero-form {
    order: 2;
    width: 100%;
    max-width: 360px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 640px) {
  .hero-grid {
    padding-top: 28px !important;
    gap: 18px !important;
  }

  .hero-copy h1 {
    max-width: 320px !important;
    font-size: clamp(22px, 7vw, 30px) !important;
    line-height: 1.16 !important;
  }
}
@media (max-width: 960px) {
  .hero,
  .section-dark-image {
    background-attachment: scroll !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
  }

  .hero {
    background-image:
      linear-gradient(rgba(34, 34, 34, .12), rgba(34, 34, 34, .18)),
      url('assets/images/hero-main.jpg') !important;
  }

  .hero-overlay {
    background: rgba(20, 20, 20, .22) !important;
  }

  .section-dark-image {
    background-image:
      linear-gradient(rgba(6, 9, 20, .34), rgba(6, 9, 20, .34)),
      url('assets/images/cta-banner.jpg') !important;
  }
}
