:root {
  --navy: #050a35;
  --navy-2: #0a1854;
  --blue: #0057d9;
  --blue-2: #0b7bea;
  --cyan: #18b7e6;
  --sky: #eaf5ff;
  --sky-2: #f6fbff;
  --line: #d7e5f7;
  --text: #0b1745;
  --muted: #53627f;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(5, 10, 53, 0.1);
  --soft-shadow: 0 12px 34px rgba(0, 70, 160, 0.08);
  --radius: 22px;
  --container: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 6%, rgba(24, 183, 230, 0.12), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f9fcff 55%, #ffffff 100%);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(215, 229, 247, 0.86);
}
.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.logo {
  display: inline-flex;
  align-items: center;
  min-width: 250px;
}
.logo img { height: 52px; width: auto; }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
  flex: 1;
}
.main-nav a {
  position: relative;
  font-weight: 650;
  font-size: 15px;
  color: var(--navy);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.main-nav a:hover,
.main-nav a.is-active { color: var(--blue); }
.main-nav a:hover::after,
.main-nav a.is-active::after { transform: scaleX(1); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}
.header-phone svg { color: var(--blue); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 9px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn svg { flex: none; }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, #0247bf 100%);
  box-shadow: 0 14px 28px rgba(0, 87, 217, 0.22);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(0, 87, 217, 0.28); }
.btn-outline {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--blue);
}
.btn-outline:hover { transform: translateY(-2px); box-shadow: var(--soft-shadow); background: #fff; }
.btn-link {
  min-height: auto;
  padding: 0;
  background: transparent;
  color: var(--blue);
  border: 0;
  font-weight: 800;
}
.btn-link:hover { color: var(--navy); }
.menu-toggle { display: none; }

.hero {
  padding: 32px 0 20px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.86fr) minmax(520px, 1.14fr);
  gap: 34px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--blue);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(46px, 4.6vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  max-width: 690px;
}
.hero p {
  margin-bottom: 32px;
  max-width: 550px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.modal-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  color: #6d7b98;
  font-size: 14px;
}
.modal-note svg { color: #6d7b98; }
.hero-media {
  position: relative;
  min-height: 455px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5fbff 0%, #ffffff 38%, #e9f6ff 100%);
  box-shadow: var(--shadow);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.2), rgba(0,87,217,0.13), rgba(24,183,230,0.18));
  opacity: 0.6;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.42) 49%, transparent 64%);
  animation: shimmer 5s ease-in-out infinite;
}
.hero-media img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
@keyframes shimmer { 0%, 55% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

.stats-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr 1.05fr 1.55fr 1.2fr;
  gap: 0;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}
.stat-item {
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}
.stat-item:last-child { border-right: 0; }
.stat-icon,
.card-icon,
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--blue);
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fcff, #eef7ff);
  border: 1px solid #cde2fb;
  flex: none;
}
.stat-number {
  display: block;
  color: var(--blue);
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.stat-caption {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.25;
  color: var(--text);
  font-weight: 720;
}
.stat-item-wide .stat-number {
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.stat-item-wide .stat-caption { color: var(--muted); font-weight: 650; }

.section { padding: 62px 0; }
.section-tight { padding: 38px 0; }
.section-title-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}
.section-kicker {
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
h2 {
  color: var(--navy);
  font-size: clamp(30px, 2.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 720px;
}

.advantages-coverage {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 52px;
  align-items: stretch;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.advantage-card {
  padding: 32px 28px 30px 0;
  border-right: 1px solid var(--line);
  min-height: 235px;
}
.advantage-card:not(:first-child) { padding-left: 28px; }
.advantage-card:last-child { border-right: 0; }
.advantage-card h3,
.benefit-card h3,
.option-card h3,
.step h3 { color: var(--navy); margin: 18px 0 8px; font-size: 18px; line-height: 1.2; }
.advantage-card p,
.benefit-card p,
.option-card p,
.step p { color: var(--muted); font-size: 15px; margin: 0; }

.coverage-panel {
  position: relative;
  min-height: 372px;
  padding: 32px;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: linear-gradient(135deg, #fff 0%, #f4faff 100%);
}
.coverage-panel h2 { font-size: 32px; margin-bottom: 24px; }
.coverage-text {
  position: relative;
  z-index: 2;
  max-width: 330px;
}
.coverage-text strong { display: block; margin-bottom: 18px; color: var(--navy); font-size: 21px; line-height: 1.25; }
.map-legend {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}
.map-legend::before {
  content: "";
  width: 45px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.coverage-map {
  position: absolute;
  right: -28px;
  bottom: -12px;
  width: 68%;
  min-width: 420px;
  opacity: 0.98;
}

.split-contact {
  padding: 34px;
  border: 1px solid #cfe2fb;
  border-radius: 20px;
  background: linear-gradient(135deg, #f9fcff 0%, #ffffff 72%);
  box-shadow: var(--soft-shadow);
}
.split-contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.split-contact h2 { font-size: 30px; margin-bottom: 10px; }
.option-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 112px;
  padding: 20px 64px 20px 20px;
  border: 1px solid #cfe2fb;
  background: #fff;
  border-radius: 16px;
  text-align: left;
  color: var(--text);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.option-card:hover { transform: translateY(-3px); border-color: var(--blue); box-shadow: var(--soft-shadow); }
.option-card h3 { margin-top: 0; margin-bottom: 4px; }
.option-card .arrow {
  position: absolute;
  right: 23px;
  color: var(--blue);
  font-size: 28px;
}

.partners-strip {
  display: grid;
  grid-template-columns: 170px 1fr 150px;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partners-strip h2 { font-size: 24px; margin: 0; }
.brand-list {
  display: grid;
  grid-template-columns: repeat(8, minmax(70px, 1fr));
  gap: 16px;
  align-items: center;
}
.brand-badge {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.75);
  border: 1px solid transparent;
  color: #26345f;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.brand-badge:hover { transform: translateY(-2px); border-color: #cfe2fb; box-shadow: var(--soft-shadow); }
.brand-pepsi { color: #005cb9; }
.brand-coca { color: #d8232a; font-family: Georgia, serif; font-style: italic; }
.brand-sandora { color: #0079bb; font-style: italic; }
.brand-roshen { color: #1d3a7a; }
.brand-jacobs { color: #3b4b66; }
.brand-biola { color: #1065bf; font-style: italic; }
.brand-nestle { color: #6d768b; }
.brand-mhp { color: #31558c; }

.process-block h2 { text-align: center; margin-bottom: 32px; }
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}
.steps::before {
  content: "";
  position: absolute;
  left: 70px;
  right: 70px;
  top: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #b8d4f4, #b8d4f4, transparent);
}
.step {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: start;
}
.step-number {
  display: flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
  border: 2px solid #b9d7f6;
  font-size: 25px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0,87,217,0.08);
}
.step h3 { margin-top: 4px; }

.footer {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f6fbff);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 44px 0 34px;
  align-items: start;
}
.footer-logo img { height: 48px; width: auto; margin-bottom: 20px; }
.footer p { color: var(--muted); margin-bottom: 0; }
.footer h3 { margin: 0 0 18px; color: var(--navy); font-size: 18px; }
.footer-list { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.footer-list li,
.footer-list a { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 650; }
.footer-list svg { color: var(--blue); flex: none; }
.footer-bottom {
  padding: 20px 0 28px;
  border-top: 1px solid var(--line);
  color: #6c7791;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

/* Inner pages */
.page-hero {
  padding: 72px 0 46px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 78% 10%, rgba(0,87,217,0.09), transparent 26rem);
}
.page-hero h1 { max-width: 900px; margin-bottom: 18px; }
.page-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
}
.content-card,
.info-card,
.job-card,
.form-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.85);
  box-shadow: var(--soft-shadow);
  padding: 32px;
}
.content-card h2,
.info-card h2,
.form-card h2 { font-size: 30px; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.check-list li::before { content: "✓"; color: var(--blue); font-weight: 900; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 26px; }
.info-card h3 { margin: 14px 0 8px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-card { display: grid; gap: 14px; }
.contact-row { display: flex; gap: 12px; align-items: center; font-weight: 650; color: var(--text); }
.contact-row svg { color: var(--blue); }
.form-grid { display: grid; gap: 14px; }
.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid #cfe2fb;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form-grid textarea { min-height: 128px; resize: vertical; }
.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0, 87, 217, 0.08); }
.jobs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.job-card h3 { margin-top: 0; color: var(--navy); font-size: 22px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.tag { padding: 6px 10px; border-radius: 999px; background: #eef7ff; color: var(--blue); font-weight: 750; font-size: 13px; }

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.is-open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 53, 0.42);
  backdrop-filter: blur(10px);
}
.modal-dialog {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  border-radius: 24px;
  border: 1px solid #cfe2fb;
  background: #fff;
  box-shadow: 0 34px 110px rgba(5, 10, 53, 0.25);
  padding: 34px;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  color: var(--navy);
  background: #eef7ff;
  font-size: 24px;
  line-height: 1;
}
.modal-title { margin-bottom: 8px; font-size: 30px; }
.modal-subtitle { margin-bottom: 24px; color: var(--muted); }
.modal-options { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.modal-detail { display: none; }
.modal-detail.is-active { display: block; }
.detail-card { border: 1px solid var(--line); border-radius: 18px; padding: 24px; background: linear-gradient(135deg, #fff, #f6fbff); }
.detail-card h3 { margin: 0 0 18px; font-size: 24px; }
.detail-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.modal-back { margin-top: 20px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .58s ease, transform .58s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .container { padding: 0 28px; }
  .header-inner { height: auto; padding: 16px 0; }
  .logo { min-width: 210px; }
  .logo img { height: 44px; }
  .main-nav { gap: 20px; }
  .header-phone { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 390px; }
  .stats-strip { grid-template-columns: repeat(3, 1fr); }
  .stat-item { border-bottom: 1px solid var(--line); }
  .stat-item:nth-child(3n) { border-right: 0; }
  .stat-item:nth-last-child(-n+3) { border-bottom: 0; }
  .advantages-coverage { grid-template-columns: 1fr; gap: 24px; }
  .coverage-panel { border-left: 0; border: 1px solid var(--line); border-radius: 20px; }
  .partners-strip { grid-template-columns: 1fr; }
  .brand-list { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .step { grid-template-columns: 62px 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-content { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { padding: 0 18px; }
  .header-inner { flex-wrap: wrap; gap: 14px; }
  .logo { min-width: 180px; }
  .main-nav { order: 3; width: 100%; justify-content: flex-start; overflow-x: auto; padding-bottom: 8px; }
  .header-actions { margin-left: auto; }
  .header-actions .btn { min-height: 42px; padding: 0 14px; }
  h1 { font-size: 42px; }
  .hero p { font-size: 17px; }
  .hero-media { min-height: 270px; border-radius: 18px; }
  .stats-strip { grid-template-columns: 1fr; }
  .stat-item, .stat-item:nth-child(3n) { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat-item:last-child { border-bottom: 0; }
  .advantages-grid { grid-template-columns: 1fr; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
  .advantage-card, .advantage-card:not(:first-child) { padding: 24px; border-right: 0; border-bottom: 1px solid var(--line); min-height: auto; }
  .advantage-card:last-child { border-bottom: 0; }
  .coverage-map { position: relative; right: auto; bottom: auto; width: 100%; min-width: 0; margin-top: 22px; }
  .split-contact-grid { grid-template-columns: 1fr; }
  .brand-list { grid-template-columns: repeat(2, 1fr); }
  .partners-strip { gap: 16px; }
  .footer-grid, .footer-bottom, .contact-grid, .info-grid, .modal-options { grid-template-columns: 1fr; display: grid; }
  .footer-bottom { justify-content: initial; }
  .modal-dialog { padding: 26px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* --- refined visual pass to better match approved mockup --- */
body {
  background: linear-gradient(180deg, #f9fbff 0%, #f5f8fd 100%);
}
.container { max-width: 1240px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 90px; }
.main-nav a { font-weight: 700; }
.hero { padding: 24px 0 26px; }
.hero-grid { align-items: center; gap: 30px; }
.hero-copy { padding-top: 18px; }
h1 {
  font-size: clamp(54px, 4.8vw, 76px);
  line-height: .95;
  letter-spacing: -0.06em;
  max-width: 760px;
}
.hero p { max-width: 570px; font-size: 20px; color: #596787; }
.hero-media {
  min-height: 410px;
  border-radius: 28px;
  border: 1px solid #d7e7fb;
  box-shadow: 0 22px 60px rgba(17,57,122,.10);
  background: #eaf4ff;
}
.hero-media::before { background: linear-gradient(120deg, rgba(255,255,255,.18), rgba(0,87,217,.06), rgba(24,183,230,.08)); opacity: .45; }
.hero-media img { object-position: center; }
.btn { font-weight: 800; }
.stats-strip {
  margin-top: 12px;
  border-radius: 22px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 10px 30px rgba(30,71,129,.06);
}
.stat-item { padding: 20px 22px; min-height: 96px; }
.stat-number { font-size: 30px; }
.section-tight { padding: 28px 0; }
.advantages-coverage {
  display: grid;
  grid-template-columns: 1.5fr .95fr;
  gap: 0;
  border-top: 1px solid #dbe7f7;
}
.advantages-grid {
  border-top: 1px solid #dbe7f7;
  border-bottom: 1px solid #dbe7f7;
}
.advantage-card {
  min-height: 170px;
  padding: 28px 24px;
  background: transparent;
}
.coverage-panel {
  min-height: 308px;
  border-left: 1px solid #dbe7f7;
  background: linear-gradient(180deg, rgba(255,255,255,.5), rgba(239,246,255,.8));
}
.coverage-map {
  width: 95%;
  max-width: 360px;
  right: 10px;
  bottom: 12px;
  opacity: .98;
}
.split-contact {
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(27,68,128,.06);
}
.option-card {
  background: linear-gradient(180deg, #fff, #fbfdff);
}
.brand-list a, .partners-strip a { font-weight: 800; }
.step { padding-top: 14px; }
.footer {
  margin-top: 18px;
  background: transparent;
}
.footer-grid, .footer-bottom {
  background: transparent;
}
@media (max-width: 1180px) {
  .container { max-width: 1100px; }
  .hero-media { min-height: 340px; }
}
@media (max-width: 760px) {
  h1 { font-size: 42px; }
  .hero-media { min-height: 240px; }
}

/* --- approved preview alignment pass --- */
body {
  background: #fff;
  letter-spacing: 0;
}

.container {
  width: 100%;
  max-width: none;
  padding: 0 48px;
}

.site-header {
  background: #fff;
  backdrop-filter: none;
  border-bottom: 1px solid #d9e4f4;
}

.header-inner {
  height: 68px;
  min-height: 68px;
  padding: 0 48px;
  gap: 30px;
}

.logo {
  min-width: 300px;
}

.site-header .logo {
  margin-left: -30px;
}

.logo img {
  height: 54px;
}

.main-nav {
  gap: 36px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 750;
}

.main-nav a::after {
  bottom: -8px;
}

.btn {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 5px;
  font-size: 14px;
  letter-spacing: 0;
}

.header-actions .btn {
  min-width: 174px;
}

.site-header .header-actions {
  margin-right: 46px;
}

.hero {
  position: relative;
  min-height: 290px;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.hero-grid {
  display: block;
  min-height: 282px;
  padding-top: 28px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  width: 520px;
  padding-top: 0;
  position: relative;
  z-index: 2;
}

h1 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(40px, 3.2vw, 48px);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.hero p {
  max-width: 355px;
  margin-bottom: 22px;
  color: #25355e;
  font-size: 15px;
  line-height: 1.35;
}

.hero-actions {
  gap: 24px;
}

.modal-note {
  margin-top: 9px;
  font-size: 12px;
  color: #68758c;
}

.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  width: min(850px, 59vw);
  height: 290px;
  min-height: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  z-index: 1;
}

.hero-media::before,
.hero-media::after {
  display: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.stats-strip {
  grid-template-columns: .9fr .95fr 1fr 1.08fr 1.34fr 1.08fr;
  margin-top: -2px;
  border-radius: 9px;
  background: rgba(255,255,255,.96);
  box-shadow: none;
}

.stat-item {
  min-height: 94px;
  gap: 14px;
  padding: 14px 22px;
}

.stat-icon,
.card-icon,
.contact-icon {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.stat-icon svg,
.card-icon svg,
.contact-icon svg {
  width: 38px;
  height: 38px;
}

.stat-number {
  font-size: 24px;
  letter-spacing: 0;
}

.stat-caption {
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.22;
  font-weight: 700;
}

.stat-item-wide .stat-number {
  font-size: 13px;
  line-height: 1.16;
}

.stat-item-wide .stat-caption {
  font-size: 12px;
  line-height: 1.2;
}

.section,
.section-tight {
  padding: 8px 0;
}

.advantages-coverage {
  grid-template-columns: 58.5% 41.5%;
  gap: 0;
  border-top: 0;
}

.advantages-coverage h2,
.split-contact h2,
.partners-strip h2,
.process-block h2,
.coverage-panel h2 {
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0;
}

.advantages-coverage h2 {
  margin-bottom: 15px;
}

.advantages-grid {
  border-top: 0;
  border-bottom: 0;
}

.advantage-card {
  min-height: 116px;
  padding: 0 28px 0 0;
  background: transparent;
}

.advantage-card:not(:first-child) {
  padding-left: 28px;
}

.advantage-card h3,
.option-card h3,
.step h3 {
  margin: 8px 0 4px;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0;
}

.advantage-card p,
.option-card p,
.step p {
  font-size: 12px;
  line-height: 1.3;
}

.coverage-panel {
  min-height: 160px;
  padding: 0 24px 0 28px;
  border-left: 1px solid #dbe7f7;
  background: linear-gradient(90deg, #fff 0%, #f7fbff 100%);
}

.coverage-panel h2 {
  margin: 0 0 18px;
}

.coverage-text {
  padding-top: 0;
  max-width: 292px;
}

.coverage-text strong {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.35;
}

.map-legend {
  font-size: 11px;
  line-height: 1.25;
}

.map-legend::before {
  width: 30px;
  height: 6px;
}

.coverage-map {
  right: 20px;
  bottom: -7px;
  width: 50%;
  min-width: 270px;
  max-width: 324px;
}

.split-contact {
  padding: 14px 22px;
  border-radius: 6px;
  box-shadow: none;
}

.split-contact-grid {
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 22px;
}

.split-contact h2 {
  margin-bottom: 10px;
}

.split-contact p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.35;
}

.option-card {
  min-height: 68px;
  padding: 11px 46px 11px 18px;
  border-radius: 7px;
  background: #fff;
}

.option-card .arrow {
  right: 15px;
  font-size: 24px;
}

.partners-strip {
  grid-template-columns: 170px 1fr 140px;
  gap: 18px;
  padding: 12px 48px;
  border-top: 1px solid #dbe7f7;
  border-bottom: 1px solid #dbe7f7;
}

.brand-list {
  grid-template-columns: repeat(8, minmax(64px, 1fr));
  gap: 14px;
}

.brand-badge {
  min-height: 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 15px;
}

.process-block {
  padding: 4px 0 16px;
}

.process-block h2 {
  margin-bottom: 14px;
}

.steps {
  gap: 22px;
}

.steps::before {
  left: 125px;
  right: 125px;
  top: 28px;
  height: 1px;
}

.step {
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding-top: 8px;
}

.step-number {
  width: 48px;
  height: 48px;
  font-size: 18px;
  border-width: 1px;
}

.step h3 {
  margin-top: 1px;
  margin-bottom: 5px;
  font-size: 13px;
}

.step p {
  font-size: 11px;
  line-height: 1.35;
}

.footer {
  margin-top: 0;
  border-top: 1px solid #dbe7f7;
  background: #fff;
}

.footer-grid {
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 16px 48px 14px;
}

.footer-logo img {
  height: 42px;
  margin-bottom: 10px;
}

.footer p,
.footer-list li,
.footer-list a {
  font-size: 12px;
  line-height: 1.35;
}

.footer h3 {
  margin-bottom: 9px;
  font-size: 12px;
}

.footer-list {
  gap: 7px;
}

.footer-bottom {
  padding: 10px 48px 12px;
  justify-content: center;
  font-size: 12px;
}

.footer-bottom span:last-child {
  display: none;
}

.modal {
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0;
  pointer-events: none;
}

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

.modal-backdrop {
  display: none;
}

.modal-dialog {
  position: fixed;
  top: 57vh;
  right: 58px;
  width: min(424px, calc(100vw - 36px));
  max-height: 38vh;
  padding: 14px;
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(5,10,53,.14);
  pointer-events: auto;
}

.modal-close {
  top: 9px;
  right: 9px;
  width: 26px;
  height: 26px;
  border-radius: 0;
  background: transparent;
  font-size: 20px;
}

.modal-title {
  margin-bottom: 10px;
  padding-right: 24px;
  font-size: 14px;
  letter-spacing: 0;
}

.modal-subtitle {
  display: none;
}

.modal-options {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal .option-card {
  display: block;
  min-height: 128px;
  padding: 13px 12px;
}

.modal .option-card .contact-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 6px;
}

.modal .option-card .contact-icon svg {
  width: 28px;
  height: 28px;
}

.modal .option-card h3 {
  margin: 0 0 8px;
  font-size: 12px;
}

.modal .option-card p {
  font-size: 10px;
  line-height: 1.3;
}

.modal-contact-list {
  display: grid;
  gap: 4px;
  margin-top: 8px;
  color: #314165;
  font-size: 9px;
  line-height: 1.25;
}

.modal-contact-list span {
  display: block;
}

.modal .option-card .arrow {
  display: none;
}

.detail-card {
  border-radius: 7px;
  padding: 14px;
}

@media (max-width: 1180px) {
  .container {
    padding: 0 28px;
  }

  .header-inner {
    min-height: 68px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .logo {
    min-width: 240px;
  }

  .site-header .logo {
    margin-left: 0;
  }

  .logo img {
    height: 44px;
  }

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

  .hero-grid {
    min-height: 0;
    padding-top: 0;
  }

  .hero-copy {
    width: min(560px, 100%);
  }

  .hero-media {
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: 26px;
    border: 1px solid #d7e7fb;
    border-radius: 18px;
  }

  .stats-strip {
    margin-top: 18px;
    grid-template-columns: repeat(3, 1fr);
  }

  .advantages-coverage {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .coverage-panel {
    min-height: 260px;
    border: 1px solid #dbe7f7;
    border-radius: 8px;
  }

  .partners-strip {
    grid-template-columns: 1fr;
    padding-left: 28px;
    padding-right: 28px;
  }

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

  .steps::before {
    display: none;
  }

  .footer-grid,
  .footer-bottom {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 760px) {
  .container {
    padding: 0 18px;
  }

  .header-inner {
    height: auto;
    min-height: 0;
    padding: 10px 18px;
    gap: 10px;
  }

  .logo {
    min-width: 170px;
  }

  .logo img {
    height: 38px;
  }

  .header-actions {
    margin-left: auto;
  }

  .site-header .header-actions {
    margin-right: 0;
  }

  .header-actions .btn {
    min-width: 0;
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow: visible;
    padding-bottom: 0;
  }

  .main-nav a {
    font-size: 12px;
  }

  h1 {
    font-size: 40px;
  }

  .hero p {
    max-width: none;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-media {
    height: 238px;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .stat-item {
    min-height: 86px;
  }

  .advantages-grid {
    border: 1px solid #dbe7f7;
    border-radius: 8px;
  }

  .coverage-map {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin-top: 14px;
  }

  .split-contact {
    padding: 22px;
  }

  .split-contact-grid,
  .brand-list,
  .footer-grid,
  .footer-bottom,
  .modal-options {
    grid-template-columns: 1fr;
  }

  .brand-list {
    gap: 8px;
  }

  .partners-strip {
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer-grid,
  .footer-bottom {
    padding-left: 18px;
    padding-right: 18px;
  }

  .modal-dialog {
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    max-height: calc(100vh - 36px);
  }
}

/* Typography tuning: stronger display face with a readable body fallback. */
:root {
  --font-body: "Segoe UI Variable", "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Bahnschrift", "Aptos Display", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
}

body {
  font-family: var(--font-body);
}

h1,
h2,
h3,
.btn,
.main-nav a,
.stat-number,
.brand-badge,
.step-number {
  font-family: var(--font-display);
  font-stretch: 88%;
}

h1 {
  font-weight: 750;
  letter-spacing: -0.022em;
}

h2,
h3,
.btn,
.main-nav a,
.stat-number,
.step-number {
  font-weight: 700;
  letter-spacing: 0;
}

/* Layout + typography polish for wide and mobile previews. */
:root {
  --page-max: 1448px;
  --page-pad: 48px;
  --page-outer: max(0px, calc((100vw - var(--page-max)) / 2));
  --font-body: "Aptos", "Segoe UI Variable", "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Manrope", "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
}

body {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 52%, #ffffff 100%);
  font-family: var(--font-body);
}

.container,
.header-inner,
.partners-strip,
.footer-grid,
.footer-bottom {
  width: min(100%, var(--page-max));
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
}

.container {
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}

.header-inner {
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}

.site-header .logo {
  margin-left: 0;
}

.site-header .header-actions {
  margin-right: 0;
}

.hero-media {
  right: 0;
  width: min(820px, 56vw);
}

h1,
h2,
h3,
.btn,
.main-nav a,
.stat-number,
.brand-badge,
.step-number {
  font-family: var(--font-display);
  font-stretch: normal;
  letter-spacing: 0;
}

h1 {
  max-width: 565px;
  font-size: clamp(40px, 2.8vw, 44px);
  font-weight: 850;
  letter-spacing: 0;
}

h2,
h3 {
  font-weight: 820;
}

.hero p,
.advantage-card p,
.option-card p,
.step p,
.footer p,
.footer-list li,
.footer-list a {
  color: #314065;
}

.coverage-panel {
  min-height: 160px;
  padding: 0;
  overflow: hidden;
  border-left: 1px solid #dbe7f7;
  background: linear-gradient(90deg, #ffffff 0%, #f7fbff 100%);
}

.coverage-panel::before {
  display: none;
}

.coverage-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.97) 42%, rgba(255,255,255,.36) 63%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.coverage-text {
  position: relative;
  z-index: 2;
  max-width: 470px;
  padding: 0 28px;
}

.coverage-map {
  position: absolute;
  z-index: 0;
  right: -38px;
  bottom: -54px;
  display: block;
  width: 66%;
  min-width: 340px;
  max-width: 430px;
  opacity: .96;
  filter: saturate(1.08) contrast(1.02);
}

.map-legend {
  max-width: 360px;
}

@media (min-width: 1181px) {
  .hero-grid,
  .stats-strip,
  .advantages-coverage,
  .split-contact {
    max-width: calc(var(--page-max) - (var(--page-pad) * 2));
    margin-left: auto;
    margin-right: auto;
  }

  .partners-strip,
  .footer-grid,
  .footer-bottom {
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
  }

  .hero-grid {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1180px) {
  :root {
    --page-pad: 28px;
    --page-outer: 0px;
  }

  .container,
  .header-inner,
  .partners-strip,
  .footer-grid,
  .footer-bottom {
    width: 100%;
  }

  .hero-media {
    right: auto;
    width: 100%;
  }

  .coverage-panel {
    min-height: 260px;
    padding: 28px;
    background: linear-gradient(90deg, #ffffff 0%, #f7fbff 100%);
  }

  .coverage-panel::after {
    inset: 0;
  }

  .coverage-map {
    right: -24px;
    bottom: -42px;
    width: 58%;
    min-width: 330px;
    max-width: 430px;
  }

  .coverage-text {
    max-width: 430px;
    padding: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 18px;
  }

  .header-inner {
    justify-content: center;
  }

  .logo {
    flex: 0 0 100%;
    justify-content: center;
    min-width: 0;
  }

  .header-actions {
    margin-left: 0;
  }

  .main-nav {
    justify-content: center;
    gap: 24px;
  }

  .hero-copy,
  .hero p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  h1 {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    font-size: 36px;
    line-height: 1.08;
  }

  .hero-actions,
  .modal-note {
    justify-content: center;
  }

  .hero-media {
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
  }

  .stats-strip,
  .advantages-grid,
  .split-contact,
  .partners-strip,
  .process-block .container,
  .footer-grid {
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
  }

  .stat-item {
    justify-content: center;
  }

  .advantages-coverage h2,
  .split-contact h2,
  .partners-strip h2,
  .process-block h2,
  .footer {
    text-align: center;
  }

  .advantage-card,
  .advantage-card:not(:first-child) {
    text-align: center;
  }

  .advantage-card .card-icon,
  .split-contact .contact-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .coverage-panel {
    max-width: 430px;
    min-height: 300px;
    margin-left: auto;
    margin-right: auto;
    padding: 22px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  }

  .coverage-panel::before {
    display: none;
  }

  .coverage-panel::after {
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.93) 42%, rgba(255,255,255,.14) 100%);
  }

  .coverage-map {
    position: absolute;
    right: 50%;
    bottom: -34px;
    width: 112%;
    min-width: 0;
    max-width: none;
    transform: translateX(50%);
    margin-top: 0;
  }

  .coverage-text,
  .map-legend {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .map-legend {
    justify-content: center;
  }
}

/* Final typography refresh: modern local fonts with Cyrillic support. */
@font-face {
  font-family: "Dzherelo UI";
  src: local("Segoe UI Variable Text"), local("Segoe UI Variable"), local("Segoe UI");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Dzherelo Display";
  src: local("Segoe UI Variable Display"), local("Segoe UI Variable"), local("Segoe UI"), local("Bahnschrift");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-body: "Dzherelo UI", "Segoe UI Variable", "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Dzherelo Display", "Segoe UI Variable Display", "Segoe UI Variable", "Segoe UI", "Bahnschrift", Arial, sans-serif;
}

html,
body,
button,
input,
textarea {
  font-family: var(--font-body);
}

body {
  line-height: 1.5;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

h1,
h2,
h3,
.main-nav a,
.btn,
.stat-number,
.stat-caption,
.advantage-card h3,
.option-card h3,
.coverage-panel h2,
.coverage-panel strong,
.partners-strip h2,
.process-block h2,
.step-number,
.step h3,
.footer h3,
.brand-badge {
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  font-weight: 790;
  line-height: 1;
}

h2,
h3,
.coverage-panel strong,
.step h3,
.footer h3 {
  font-weight: 720;
}

.main-nav a,
.btn,
.stat-caption,
.option-card p,
.footer-list a {
  font-weight: 650;
}

.stat-number {
  font-weight: 780;
  line-height: 1;
}

.hero p,
.advantage-card p,
.option-card p,
.step p,
.footer p,
.footer-list li {
  line-height: 1.52;
}

/* Premium advantage icons. */
.advantage-card .card-icon {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: var(--blue);
  background:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,.95) 0 22%, rgba(255,255,255,0) 42%),
    linear-gradient(145deg, rgba(239,248,255,.98), rgba(218,236,255,.78));
  border: 1px solid rgba(0,87,217,.16);
  box-shadow: 0 12px 24px rgba(0,87,217,.12), inset 0 1px 0 rgba(255,255,255,.92);
  overflow: visible;
}

.advantage-card .card-icon::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), #0b7bea);
  box-shadow: 0 0 0 4px rgba(24,183,230,.13);
}

.advantage-card .card-icon svg {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 4px 8px rgba(0,67,168,.14));
  overflow: visible;
}

.advantage-card .card-icon svg path,
.advantage-card .card-icon svg circle {
  vector-effect: non-scaling-stroke;
}

@media (max-width: 760px) {
  .advantage-card .card-icon {
    width: 58px;
    height: 58px;
  }

  .advantage-card .card-icon svg {
    width: 44px;
    height: 44px;
  }
}

/* Centered modal popup: replaces the old side-panel behavior. */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 44px);
  pointer-events: auto;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 53, .46);
  backdrop-filter: blur(10px);
}

.modal-dialog {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  z-index: 2;
  width: min(720px, calc(100vw - 32px));
  max-height: min(86dvh, 760px);
  margin: auto;
  padding: clamp(24px, 3vw, 34px);
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  transform: none;
  border-radius: 18px;
  border: 1px solid rgba(190, 216, 248, .95);
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(248,252,255,.99));
  box-shadow: 0 34px 110px rgba(5, 10, 53, .28);
  pointer-events: auto;
}

.modal-close {
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #eef7ff;
  color: var(--navy);
  font-size: 24px;
}

.modal-title {
  margin: 0 44px 10px 0;
  padding-right: 0;
  font-size: clamp(24px, 2.3vw, 32px);
  line-height: 1.08;
}

.modal-subtitle {
  display: block;
  max-width: 560px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

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

.modal .option-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 120px;
  padding: 18px;
  text-align: left;
}

.modal .option-card .contact-icon {
  width: 46px;
  height: 46px;
  margin: 0;
}

.modal .option-card .contact-icon svg {
  width: 34px;
  height: 34px;
}

.modal .option-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.2;
}

.modal .option-card p {
  font-size: 13px;
  line-height: 1.35;
}

.modal-contact-list {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  color: #314165;
  font-size: 12px;
  line-height: 1.28;
}

.modal .option-card .arrow {
  display: inline-flex;
}

.detail-card {
  padding: clamp(20px, 3vw, 28px);
  border-radius: 14px;
}

.detail-card h3 {
  margin: 0 0 18px;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
}

.detail-card .lead {
  max-width: 100%;
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.45;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 760px) {
  .modal {
    align-items: center;
    justify-content: center;
    padding: 14px;
  }

  .modal-dialog {
    width: min(100%, 430px);
    max-height: calc(100dvh - 28px);
    padding: 22px 18px;
    border-radius: 16px;
  }

  .modal-options,
  .modal .option-card {
    grid-template-columns: 1fr;
  }

  .modal .option-card {
    justify-items: center;
    min-height: 0;
    padding: 18px;
    text-align: center;
  }

  .modal .option-card .arrow {
    display: none;
  }

  .modal-contact-list {
    font-size: 12px;
  }

  .detail-actions .btn {
    width: 100%;
  }
}

/* Cleaner process timeline: remove the stray connector line. */
.steps::before {
  display: none;
}

.step-number {
  position: relative;
  z-index: 2;
  background: #fff;
}
/* Partner logo grid: full supplier portfolio. */
.partners-strip {
  grid-template-columns: minmax(170px, 220px) 1fr;
  align-items: start;
  gap: 18px 28px;
  padding-top: 22px;
  padding-bottom: 28px;
}

.partners-strip .btn-link {
  display: none;
}

.partners-strip h2 {
  align-self: start;
  padding-top: 10px;
}

.partners-logo-grid.brand-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 12px;
  width: 100%;
  align-items: stretch;
}

.partners-logo-grid .partner-logo-card.brand-badge {
  min-height: 66px;
  padding: 10px 12px;
  border: 1px solid #dbe7f7;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(246, 251, 255, .94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .88);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.partners-logo-grid .partner-logo-card.brand-badge:hover {
  transform: translateY(-2px);
  border-color: #b9d6f7;
  box-shadow: 0 14px 32px rgba(0, 51, 128, .1);
}

.partners-logo-grid .partner-logo-card img {
  display: block;
  width: auto;
  max-width: 128px;
  max-height: 48px;
  object-fit: contain;
}

.partners-logo-grid .partner-logo-text.brand-badge {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.12;
  font-weight: 780;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

@media (max-width: 1020px) {
  .partners-strip {
    grid-template-columns: 1fr;
  }

  .partners-strip h2 {
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .partners-strip {
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .partners-logo-grid.brand-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .partners-logo-grid .partner-logo-card.brand-badge {
    min-height: 62px;
    padding: 9px 10px;
  }

  .partners-logo-grid .partner-logo-card img {
    max-width: min(118px, 90%);
    max-height: 42px;
  }

  .partners-logo-grid .partner-logo-text.brand-badge {
    font-size: 13px;
  }
}
/* Ukraine coverage map refresh. */
.coverage-panel {
  min-height: 260px;
  padding: 28px;
  border-left: 1px solid #dbe7f7;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 34%, rgba(255,255,255,.24) 64%, rgba(255,255,255,0) 100%),
    url("../img/ukraine-odesa-coverage.png") right center / cover no-repeat,
    linear-gradient(90deg, #ffffff 0%, #f4f9ff 100%);
}

.coverage-panel h2 {
  display: none;
}

.coverage-panel::before,
.coverage-panel::after {
  display: none;
}

.coverage-text {
  position: relative;
  z-index: 2;
  max-width: 360px;
  padding: 0;
}

.coverage-text strong {
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 1.2;
}

.coverage-map {
  display: none;
}

@media (max-width: 1180px) {
  .coverage-panel {
    min-height: 280px;
    background:
      linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.88) 38%, rgba(255,255,255,.18) 72%, rgba(255,255,255,0) 100%),
      url("../img/ukraine-odesa-coverage.png") center center / cover no-repeat,
      linear-gradient(90deg, #ffffff 0%, #f4f9ff 100%);
  }
}

@media (max-width: 760px) {
  .coverage-panel {
    min-height: 370px;
    padding: 22px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 32%, rgba(255,255,255,.18) 60%, rgba(255,255,255,0) 100%),
      url("../img/ukraine-odesa-coverage.png") center bottom / 150% auto no-repeat,
      linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
  }

  .coverage-text {
    max-width: 100%;
    text-align: center;
  }

  .coverage-text strong,
  .map-legend {
    margin-left: auto;
    margin-right: auto;
  }
}
/* Mobile layout polish: aligned blocks and real partner grid. */
@media (max-width: 760px) {
  :root {
    --mobile-page: min(100% - 28px, 430px);
  }

  body {
    overflow-x: hidden;
  }

  .container,
  .header-inner,
  .partners-strip,
  .footer-grid,
  .footer-bottom {
    width: 100%;
    max-width: none;
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    min-height: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    justify-content: center;
    gap: 10px 14px;
  }

  .site-header .logo {
    flex: 0 0 100%;
    min-width: 0;
    justify-content: center;
  }

  .site-header .logo img {
    height: 34px;
  }

  .header-actions {
    order: 2;
    margin-left: 0;
  }

  .header-actions .btn {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .main-nav {
    order: 3;
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
    gap: 12px;
    padding-bottom: 0;
    overflow: visible;
  }

  .main-nav a {
    white-space: nowrap;
    font-size: 12px;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-grid,
  .stats-strip,
  .advantages-coverage,
  .split-contact,
  .partners-strip,
  .process-block .container,
  .footer-grid,
  .footer-bottom {
    width: var(--mobile-page);
    max-width: var(--mobile-page);
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-copy {
    width: var(--mobile-page);
    max-width: var(--mobile-page);
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    text-align: center;
  }

  h1 {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    font-size: 38px;
    line-height: .98;
  }

  .hero-copy p {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: var(--mobile-page);
    max-width: var(--mobile-page);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-media {
    width: var(--mobile-page);
    max-width: var(--mobile-page);
    min-height: 178px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #dbe7f7;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
  }

  .hero-media img {
    height: 100%;
    object-fit: cover;
  }

  .stats-strip {
    grid-template-columns: 1fr;
    border-radius: 0 0 8px 8px;
    margin-top: 0;
  }

  .stat-item,
  .stat-item:nth-child(3n),
  .stat-item-wide {
    min-height: 82px;
    padding: 14px 16px;
    border-right: 0;
    border-bottom: 1px solid #dbe7f7;
    justify-content: center;
    text-align: left;
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .stat-item > span:last-child {
    min-width: 138px;
  }

  .advantages-coverage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .advantages-coverage > .reveal {
    width: 100%;
  }

  .advantages-coverage h2,
  .split-contact h2,
  .partners-strip h2,
  .process-block h2 {
    text-align: center;
    margin-bottom: 14px;
  }

  .advantages-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    border: 1px solid #dbe7f7;
    border-radius: 8px;
    overflow: hidden;
  }

  .advantage-card,
  .advantage-card:not(:first-child) {
    display: grid;
    justify-items: center;
    min-height: 150px;
    padding: 22px 20px;
    text-align: center;
    border-right: 0;
    border-bottom: 1px solid #dbe7f7;
  }

  .advantage-card:last-child {
    border-bottom: 0;
  }

  .advantage-card p {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .coverage-panel,
  .split-contact {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
  }

  .coverage-panel {
    min-height: 360px;
    margin-top: 0;
    padding: 22px 18px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 30%, rgba(255,255,255,.16) 60%, rgba(255,255,255,0) 100%),
      url("../img/ukraine-odesa-coverage.png") center bottom / 145% auto no-repeat,
      linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
  }

  .coverage-text {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .split-contact {
    padding: 22px 18px;
  }

  .split-contact-grid {
    gap: 14px;
  }

  .option-card {
    min-height: 86px;
    border-radius: 8px;
    padding: 16px;
  }

  .partners-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 22px;
    padding-bottom: 24px;
  }

  .partners-logo-grid.brand-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .partners-logo-grid .partner-logo-card.brand-badge {
    min-height: 64px;
    padding: 8px 9px;
  }

  .partners-logo-grid .partner-logo-card img {
    max-width: min(126px, 94%);
    max-height: 42px;
  }

  .partners-logo-grid .partner-logo-text.brand-badge {
    font-size: 12px;
    line-height: 1.1;
  }

  .process-block {
    padding-top: 24px;
  }

  .steps {
    gap: 14px;
  }

  .step {
    width: 100%;
    grid-template-columns: 52px 1fr;
    gap: 12px;
    align-items: center;
    text-align: left;
    padding-top: 0;
  }

  .step-number {
    width: 52px;
    height: 52px;
  }

  .footer-grid,
  .footer-bottom {
    text-align: center;
  }

  .footer-list li {
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .main-nav {
    gap: 9px;
  }

  .main-nav a,
  .header-actions .btn {
    font-size: 11px;
  }

  h1 {
    font-size: 34px;
  }

  .partners-logo-grid.brand-list {
    gap: 8px;
  }

  .partners-logo-grid .partner-logo-card.brand-badge {
    min-height: 60px;
  }

  .partners-logo-grid .partner-logo-card img {
    max-width: min(112px, 94%);
  }
}
@media (max-width: 760px) {
  .hero > .container:not(.hero-grid) {
    width: var(--mobile-page);
    max-width: var(--mobile-page);
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .hero > .container:not(.hero-grid) .stats-strip {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}
/* Compact mobile partner grid refinement. */
@media (min-width: 380px) and (max-width: 760px) {
  .partners-logo-grid.brand-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .partners-logo-grid .partner-logo-card.brand-badge {
    min-height: 58px;
    padding: 7px 6px;
  }

  .partners-logo-grid .partner-logo-card img {
    max-width: min(98px, 94%);
    max-height: 34px;
  }

  .partners-logo-grid .partner-logo-text.brand-badge {
    font-size: 11.5px;
    line-height: 1.08;
  }
}
/* Contact choice card alignment fix. */
.split-contact .option-card {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 18px;
  text-align: left;
  padding: 18px 20px;
}

.split-contact .option-card .contact-icon {
  width: 54px;
  height: 54px;
  margin: 0;
  justify-self: center;
}

.split-contact .option-card .contact-icon svg {
  width: 40px;
  height: 40px;
}

.split-contact .option-card > span:nth-child(2) {
  min-width: 0;
  display: block;
}

.split-contact .option-card h3 {
  margin: 0 0 4px;
  text-align: left;
}

.split-contact .option-card p {
  text-align: left;
}

.split-contact .option-card .arrow {
  position: static;
  justify-self: end;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}

@media (max-width: 760px) {
  .split-contact .option-card {
    grid-template-columns: 52px minmax(0, 1fr) 18px;
    gap: 13px;
    min-height: 92px;
    padding: 15px 14px;
  }

  .split-contact .option-card .contact-icon {
    width: 48px;
    height: 48px;
  }

  .split-contact .option-card .contact-icon svg {
    width: 36px;
    height: 36px;
  }

  .split-contact .option-card h3,
  .split-contact .option-card p {
    text-align: left;
  }

  .split-contact .option-card .arrow {
    width: 18px;
    font-size: 24px;
  }
}

@media (max-width: 360px) {
  .split-contact .option-card {
    grid-template-columns: 46px minmax(0, 1fr) 16px;
    gap: 10px;
    padding: 14px 12px;
  }
}
/* Coverage image edge alignment. */
.coverage-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0%, #f4f9ff 100%);
}

.coverage-panel::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  width: min(72%, 560px);
  height: 100%;
  display: block;
  background: url("../img/ukraine-odesa-coverage.png") right bottom / cover no-repeat;
  pointer-events: none;
}

.coverage-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.94) 34%, rgba(255,255,255,.28) 58%, rgba(255,255,255,0) 82%);
  pointer-events: none;
}

.coverage-text {
  position: relative;
  z-index: 2;
}

.coverage-map {
  display: none;
}

@media (max-width: 1180px) {
  .coverage-panel::before {
    width: min(76%, 520px);
  }

  .coverage-panel::after {
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.9) 38%, rgba(255,255,255,.16) 74%, rgba(255,255,255,0) 100%);
  }
}

@media (max-width: 760px) {
  .coverage-panel::before {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 72%;
    background-size: cover;
    background-position: right bottom;
  }

  .coverage-panel::after {
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.94) 34%, rgba(255,255,255,.18) 62%, rgba(255,255,255,0) 100%);
  }
}
/* Coverage map transparent edge fit. */
.coverage-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 100%, rgba(0, 116, 255, .13), rgba(0, 116, 255, 0) 42%),
    linear-gradient(90deg, #ffffff 0%, #f4f9ff 100%);
}

.coverage-panel::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  background: url("../img/ukraine-odesa-map-layer.png") right bottom / cover no-repeat;
  pointer-events: none;
}

.coverage-panel::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.95) 34%, rgba(255,255,255,.28) 58%, rgba(255,255,255,0) 82%);
  pointer-events: none;
}

.coverage-text {
  position: relative;
  z-index: 2;
}

.coverage-map {
  display: none;
}

@media (max-width: 1180px) {
  .coverage-panel::after {
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.9) 38%, rgba(255,255,255,.14) 74%, rgba(255,255,255,0) 100%);
  }
}

@media (max-width: 760px) {
  .coverage-panel::before {
    background-size: auto 72%;
    background-position: right bottom;
  }

  .coverage-panel::after {
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.94) 34%, rgba(255,255,255,.18) 62%, rgba(255,255,255,0) 100%);
  }
}
/* Contacts office card update. */
.contacts-office-card {
  grid-column: 1 / -1;
}
.contacts-office-card .contact-row {
  align-items: flex-start;
}
.contacts-office-card strong {
  display: inline-block;
  margin-bottom: 4px;
}

/* Mobile footer logo centering. */
@media (max-width: 760px) {
  .footer-logo {
    display: grid;
    justify-items: center;
    text-align: center;
    width: 100%;
  }

  .footer-logo img {
    display: block;
    margin: 0 auto 18px;
  }
}
/* Desktop coverage map Odesa focus. */
@media (min-width: 761px) {
  .coverage-panel::before {
    background-size: 138% auto;
    background-position: -48% 78%;
  }

  .coverage-panel::after {
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.93) 30%, rgba(255,255,255,.18) 51%, rgba(255,255,255,0) 74%);
  }
}
/* Coverage map full panel layer. */
.coverage-panel::before {
  inset: 0;
  width: 100%;
  height: 100%;
}
/* Partners title centered over logo grid. */
.partners-strip {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 22px;
}

.partners-strip h2 {
  width: 100%;
  padding-top: 0;
  text-align: center;
}

.partners-logo-grid.brand-list {
  width: 100%;
}
/* Production modal detail spacing. */
.modal-detail-list {
  margin-top: 20px;
}
