:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-alt: #eef3f9;
  --text: #17263b;
  --muted: #5f718b;
  --primary: #0056b5;
  --primary-dark: #003e84;
  --accent: #ff9300;
  --border: #d3ddea;
  --radius: 16px;
  --shadow: 0 12px 26px rgba(23, 38, 59, 0.05);
  --shadow-tight: 0 6px 16px rgba(23, 38, 59, 0.05);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f9fbff 0%, var(--bg) 70%);
  line-height: 1.55;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header a:focus-visible,
.site-header button:focus-visible,
.quote-form input:focus-visible,
.quote-form select:focus-visible,
.quote-form textarea:focus-visible,
.rate-estimator input:focus-visible,
.rate-estimator select:focus-visible,
.messenger-link:focus-visible,
.faq-item summary:focus-visible,
.cookie-manage:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(0, 86, 181, 0.35);
  outline-offset: 2px;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(211, 221, 234, 0.96);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 26px;
  color: var(--text);
}

.brand .custom-logo-link,
.brand .brand-link {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  max-width: 320px;
}

.brand .custom-logo-link:hover,
.brand .brand-link:hover {
  text-decoration: none;
}

.brand img {
  display: block;
  max-height: 72px;
  width: auto;
}

.brand .custom-logo-link img {
  margin-top: 5px;
}

.brand-text {
  position: relative;
  padding-left: 18px;
}

.brand-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 10px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.primary-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  row-gap: 8px;
}

.primary-nav a {
  color: var(--text);
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
  white-space: nowrap;
}

.primary-nav a:hover {
  background: rgba(0, 86, 181, 0.08);
  text-decoration: none;
}

.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
  background: rgba(0, 86, 181, 0.12);
  color: var(--primary);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 8px;
}

.language-switcher ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 6px;
}

.language-switcher .lang-switch {
  gap: 4px;
  padding: 2px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
}

.language-switcher .lang-switch a {
  display: inline-block;
  min-width: 34px;
  text-align: center;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  opacity: 0.72;
  text-decoration: none;
}

.language-switcher .lang-switch a:hover {
  background: rgba(0, 86, 181, 0.08);
  opacity: 1;
}

.language-switcher .lang-switch a.is-active {
  background: var(--primary);
  color: #fff;
  opacity: 1;
  box-shadow: none;
}

.messenger-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.messenger-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.messenger-link:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 37, 69, 0.08);
}

.messenger-link svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.messenger-link--viber {
  color: #7360f2;
}

.messenger-link--viber:hover {
  border-color: rgba(115, 96, 242, 0.34);
  background: rgba(115, 96, 242, 0.07);
}

.messenger-link--whatsapp {
  color: #1f9f5f;
}

.messenger-link--whatsapp:hover {
  border-color: rgba(31, 159, 95, 0.32);
  background: rgba(31, 159, 95, 0.07);
}

.messenger-links--header {
  gap: 6px;
}

.messenger-links--header .messenger-link {
  width: 38px;
  height: 38px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 10px;
  padding: 11px 16px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: #fff;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: rgba(0, 86, 181, 0.08);
}

.btn.full {
  width: 100%;
}

.hero {
  padding: 56px 0 34px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 40vw;
  height: 100%;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.78), transparent 40%),
    linear-gradient(155deg, rgba(0, 86, 181, 0.12), rgba(0, 86, 181, 0.02) 54%, rgba(255, 147, 0, 0.1));
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 36px;
  align-items: start;
}

.landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 36px;
  align-items: start;
}

.eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 12px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(30px, 5vw, 46px);
}

h2 {
  font-size: clamp(24px, 3.2vw, 34px);
}

h3 {
  font-size: 20px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 20px;
}

.hero-focus-line {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-route-priority {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 12px;
}

.hero-route-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 72px;
  min-width: min(320px, 100%);
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  line-height: 1.1;
  color: var(--text);
  box-shadow: var(--shadow-tight);
}

.hero-route-kicker {
  display: inline-flex;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
}

.hero-route-text {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
}

.hero-route-pill-primary {
  background: linear-gradient(135deg, rgba(0, 86, 181, 0.14), rgba(0, 86, 181, 0.06));
  border-color: rgba(0, 86, 181, 0.18);
}

.hero-route-pill-secondary {
  background: linear-gradient(135deg, rgba(255, 147, 0, 0.16), rgba(255, 147, 0, 0.07));
  border-color: rgba(255, 147, 0, 0.2);
}

.hero-route-note {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.hero-points li {
  margin: 8px 0;
  padding-left: 20px;
  position: relative;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quote-card,
.card,
.trust-note,
.cta-strip {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.quote-card {
  padding: 20px;
}

.muted {
  color: var(--muted);
}

.quote-form {
  margin-top: 12px;
}

.quote-checklist {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(216, 226, 240, 0.95);
  background: rgba(255, 255, 255, 0.98);
}

.rate-estimator-shell {
  margin: 12px 0 0;
  border: 1px solid rgba(216, 226, 240, 0.95);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(236, 242, 250, 0.88), rgba(255, 255, 255, 0.96));
}

.rate-estimator-shell summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 12px;
}

.rate-estimator-shell summary::-webkit-details-marker {
  display: none;
}

.rate-estimator-shell summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  flex: 0 0 auto;
}

.rate-estimator-shell[open] {
  background: rgba(236, 242, 250, 0.76);
  box-shadow: var(--shadow-tight);
}

.rate-estimator-shell[open] summary::after {
  content: "–";
}

.rate-estimator-shell-copy {
  min-width: 0;
}

.rate-estimator-shell-title {
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.rate-estimator-shell-note {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.rate-estimator-shell-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-left: auto;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(0, 86, 181, 0.1);
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quote-checklist-title {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.quote-checklist ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.quote-checklist li {
  margin-bottom: 4px;
}

.rate-estimator {
  margin: 0;
  padding: 10px 10px 10px;
  border-top: 1px solid rgba(211, 221, 234, 0.92);
  background: transparent;
}

.rate-estimator .re-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.rate-estimator .re-head-left {
  min-width: 0;
}

.rate-estimator .re-title {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.rate-estimator .re-rate {
  margin-top: 4px;
  font-size: 12px;
}

.rate-estimator .re-currency {
  display: inline-flex;
  gap: 2px;
  padding: 2px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  flex: 0 0 auto;
}

.rate-estimator .re-cur {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 7px 10px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 12px;
  color: var(--text);
  opacity: 0.72;
  cursor: pointer;
}

.rate-estimator .re-cur:hover {
  background: rgba(0, 86, 181, 0.08);
  opacity: 1;
}

.rate-estimator .re-cur.is-active {
  background: var(--primary);
  color: #fff;
  opacity: 1;
}

.rate-estimator .re-badge {
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  white-space: normal;
  margin-bottom: 6px;
}

.rate-estimator .re-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(0, 1.13fr) minmax(0, 0.6fr) minmax(0, 0.6fr);
  gap: 6px;
}

.rate-estimator .re-grid > * {
  min-width: 0;
}

.rate-estimator label {
  display: block;
  color: var(--text);
  font-weight: 700;
  font-size: 12px;
}

.rate-estimator select,
.rate-estimator input {
  width: 100%;
  margin-top: 4px;
  border: 1px solid #c8d5e8;
  border-radius: 10px;
  padding: 8px 10px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.rate-estimator select {
  /* Prevent last letters from being hidden under the native dropdown arrow */
  padding-right: 38px;
}

.rate-estimator .re-more {
  grid-column: 1 / -1;
  margin-top: 2px;
  border: 1px dashed rgba(0, 86, 181, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  padding: 2px;
}

.rate-estimator .re-more summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--primary);
  font-weight: 900;
  font-size: 12px;
}

.rate-estimator .re-more summary::-webkit-details-marker {
  display: none;
}

.rate-estimator .re-more-body {
  padding: 6px 8px 8px;
}

.rate-estimator .re-more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  align-items: end;
}

.rate-estimator .re-more-grid > * {
  min-width: 0;
}

.rate-estimator .re-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 860px) {
  .rate-estimator .re-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rate-estimator .re-more-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .rate-estimator .re-grid,
  .rate-estimator .re-more-grid {
    grid-template-columns: 1fr;
  }
}

.requisites-card {
  margin-bottom: 20px;
}

.requisites {
  margin-top: 12px;
}

.e28-details {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  margin: 10px 0;
}

.e28-details summary {
  padding: 12px 14px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.e28-details summary::-webkit-details-marker {
  display: none;
}

.e28-details summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--primary);
  background: rgba(0, 86, 181, 0.06);
  font-weight: 900;
  flex: 0 0 auto;
}

.e28-details[open] summary::after {
  content: "–";
}

.e28-details-body {
  padding: 0 14px 14px;
  border-top: 1px solid var(--border);
}

.requisites-subtitle {
  margin: 12px 0 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.e28-details-body .requisites-subtitle:first-child {
  margin-top: 10px;
}

.requisites-dl {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 8px 14px;
  margin: 0;
}

.requisites-dl dt {
  font-weight: 900;
  color: var(--muted);
}

.requisites-dl dd {
  margin: 0;
}

.requisites-dl code {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(236, 242, 250, 0.65);
  font-weight: 800;
}

.requisites-pre {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(236, 242, 250, 0.65);
  white-space: pre-wrap;
  font: inherit;
}

.quote-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #c8d5e8;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #6b7f9f;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(0, 86, 181, 0.2);
  border-color: var(--primary);
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  visibility: hidden;
}

.fine {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.e28-notice {
  padding: 10px 12px;
  border-radius: 8px;
  margin: 8px 0 12px;
  font-size: 14px;
}

.e28-notice.success {
  background: #e6f6ec;
  border: 1px solid #9fd8b4;
  color: #1f6d3f;
}

.e28-notice.error {
  background: #fdeeee;
  border: 1px solid #f3b6b6;
  color: #a73a3a;
}

.section {
  padding: 52px 0;
}

.section-routes,
.section-trust,
.section-blog-preview {
  background: var(--surface-alt);
}

.section-scenarios,
.section-cases,
.section-faq {
  background: #fff;
}

.routes-note {
  margin: 0 0 14px;
  max-width: 78ch;
}

.cards {
  display: grid;
  gap: 14px;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.card {
  padding: 18px;
}

.section-head-note {
  max-width: 72ch;
  margin: 0;
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card-link:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(23, 38, 59, 0.08);
  border-color: rgba(0, 86, 181, 0.22);
}

.card-link:focus-visible {
  outline: 3px solid rgba(0, 86, 181, 0.35);
  outline-offset: 2px;
}

.services-more {
  margin-top: 14px;
}

.scenario-grid {
  align-items: stretch;
}

.scenario-card {
  position: relative;
}

.scenario-card h3,
.route-card h3,
.case-card h3 {
  margin-bottom: 10px;
}

.scenario-card p,
.route-card p {
  margin: 0;
}

.scenario-card-featured,
.route-card-featured {
  overflow: hidden;
}

.scenario-card-featured::before,
.route-card-featured::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  border-radius: 14px 0 0 14px;
  background: var(--primary);
}

.scenario-card-accent::before,
.route-card-secondary::before {
  background: var(--accent);
}

.scenario-card-featured {
  background:
    linear-gradient(180deg, rgba(0, 86, 181, 0.04), rgba(0, 86, 181, 0.01)),
    var(--surface);
}

.scenario-card-accent {
  background:
    linear-gradient(180deg, rgba(255, 147, 0, 0.08), rgba(255, 147, 0, 0.02)),
    var(--surface);
}

.scenario-label,
.case-meta {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 86, 181, 0.09);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scenario-card-accent .scenario-label {
  background: rgba(255, 147, 0, 0.14);
  color: #aa5c00;
}

.route-card-featured.route-card-primary {
  background:
    linear-gradient(180deg, rgba(0, 86, 181, 0.05), rgba(0, 86, 181, 0.015)),
    var(--surface);
}

.route-card-featured.route-card-secondary {
  background:
    linear-gradient(180deg, rgba(255, 147, 0, 0.08), rgba(255, 147, 0, 0.02)),
    var(--surface);
}

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

.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 99px;
  background: rgba(0, 86, 181, 0.12);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 20px;
  align-items: start;
}

.trust-note {
  padding: 18px;
}

.trust-note p {
  white-space: pre-line;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.cases-grid {
  align-items: stretch;
}

.case-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.case-card p {
  margin: 0;
}

.services-grid {
  align-items: stretch;
}

.services-grid .card {
  min-height: 100%;
}

.contact-messengers-inline {
  margin: 10px 0 8px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0 18px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  font-size: 18px;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 26px;
  line-height: 1;
  color: var(--primary);
}

.faq-item[open] summary::after {
  content: "–";
}

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

.link-more {
  font-weight: 700;
}

.post-card h2,
.post-card h3 {
  margin-bottom: 8px;
}

.post-card p {
  margin: 0;
}

.page-default,
.post-single,
.blog-listing {
  min-height: 45vh;
}

.prose {
  max-width: 860px;
}

.prose h1,
.prose h2,
.prose h3 {
  line-height: 1.2;
}

.prose h1 {
  margin: 0 0 18px;
}

.prose h2 {
  margin: 34px 0 14px;
}

.prose p,
.prose ul,
.prose ol {
  margin: 0 0 14px;
}

.prose ul,
.prose ol {
  padding-left: 22px;
}

.prose li {
  margin-bottom: 6px;
}

.prose table {
  width: 100%;
  margin: 20px 0 24px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(16, 42, 83, 0.05);
}

.prose th,
.prose td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.prose thead th {
  background: #ecf2fa;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
}

.prose tbody td {
  border-bottom: 1px solid #e6edf7;
}

.prose tbody tr:nth-child(even) td {
  background: #f9fbff;
}

.prose tbody tr:last-child td {
  border-bottom: 0;
}

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

.cta-strip {
  margin: 24px 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pagination-wrap {
  margin-top: 18px;
}

.site-footer {
  background: #0f2545;
  color: #d5e2f5;
  padding-top: 44px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

.site-footer h3 {
  color: #fff;
}

.contact-kicker {
  margin: 0 0 6px;
  color: #9fb5d4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-email {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}

.messenger-links--footer {
  margin: 10px 0 12px;
}

.messenger-links--footer .messenger-link {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.messenger-links--footer .messenger-link--viber:hover {
  background: rgba(115, 96, 242, 0.2);
  border-color: rgba(115, 96, 242, 0.42);
}

.messenger-links--footer .messenger-link--whatsapp:hover {
  background: rgba(31, 159, 95, 0.2);
  border-color: rgba(31, 159, 95, 0.42);
}

.site-footer .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer .menu li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 24px;
  padding: 14px 0;
  color: #9fb5d4;
}

body.nav-open {
  overflow: hidden;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  padding: 7px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

@media (max-width: 1090px) {
  .cards.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .header-inner {
    min-height: 76px;
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand menu"
      "nav nav"
      "tools tools";
    row-gap: 10px;
  }

  .brand-wrap {
    grid-area: brand;
  }

  .brand .custom-logo-link,
  .brand .brand-link {
    max-width: 240px;
  }

  .brand img {
    max-height: 54px;
  }

  .brand .custom-logo-link img {
    margin-top: 3px;
  }

  .prose table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
    grid-area: menu;
  }

  .menu-toggle[aria-expanded="true"] {
    border-color: rgba(0, 86, 181, 0.3);
    box-shadow: 0 0 0 3px rgba(0, 86, 181, 0.1);
  }

  .primary-nav {
    grid-area: nav;
    display: none;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 30px rgba(16, 42, 83, 0.12);
  }

  .primary-nav.open {
    display: block;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 4px 0;
  }

  .primary-nav a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .header-tools {
    grid-area: tools;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px 12px;
    width: 100%;
  }

  .header-tools .language-switcher {
    justify-self: start;
  }

  .header-tools .btn {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .messenger-links--header {
    order: 0;
    justify-self: end;
  }

  .hero-grid,
  .landing-grid,
  .trust-grid,
  .contact-grid,
  .footer-grid,
  .cta-strip,
  .cards.three,
  .cards.four,
  .cards.two {
    grid-template-columns: 1fr;
  }

  .hero::after {
    width: 100%;
    height: 90px;
    top: auto;
    bottom: 0;
    clip-path: none;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding: 46px 0 28px;
  }

  .hero-grid {
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1160px, 94%);
  }

  .section {
    padding: 40px 0;
  }

  .hero {
    padding: 22px 0 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-route-priority {
    gap: 8px;
  }

  .hero-route-pill {
    width: 100%;
    min-width: 0;
    min-height: 64px;
    justify-content: center;
    align-items: flex-start;
  }

  .hero-route-kicker {
    font-size: 10px;
  }

  .hero-route-text {
    font-size: 22px;
  }

  .header-tools {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .header-tools .language-switcher,
  .messenger-links--header {
    justify-self: start;
  }

  .faq-item {
    padding: 0 14px;
  }

  .faq-item summary {
    min-height: 58px;
    font-size: 16px;
  }

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

  .rate-estimator .re-grid {
    grid-template-columns: 1fr;
  }

  .requisites-dl {
    grid-template-columns: 1fr;
  }

  .quote-card {
    padding: 18px;
  }
}

.btn.btn-small {
  padding: 8px 12px;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 14px 0;
  background: rgba(23, 38, 59, 0.94);
  color: #f1f6ff;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(5px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
}

.cookie-banner-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.cookie-banner-text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cookie-banner .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}

.cookie-banner .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.cookie-banner .btn-primary {
  background: #0b65cf;
}

.cookie-banner .btn-primary:hover {
  background: #0a58b5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-manage {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #cfe0f8;
  border-radius: 8px;
  padding: 6px 10px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-manage:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 860px) {
  .cookie-banner-inner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .cookie-banner-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .cookie-banner {
    padding: 12px 0;
  }

  .cookie-banner .btn {
    width: 100%;
  }
}
