/* ============================================================
   TOKENS & RESET
============================================================ */
:root {
  --gold:      #B8922A;
  --gold-light:#D4A83A;
  --gold-pale: #F5EDD6;
  --steel:     #4A5568;
  --ink:       #1A1A1A;
  --body:      #3D3D3D;
  --muted:     #7A7A7A;
  --bg:        #FAFAF8;
  --white:     #FFFFFF;
  --border:    #E8E4DC;
  --section-bg:#F4F2EE;
  --radius:    6px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.13);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Manrope', sans-serif;
  --transition:   .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  text-rendering: optimizeLegibility;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; width: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ============================================================
   UTILITY
============================================================ */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 96px 0; content-visibility: auto; contain-intrinsic-size: 800px; }
.section--alt { background: var(--section-bg); }
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
}
.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,146,42,.35); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--ink);
}
.btn-white:hover { background: var(--gold-pale); }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none !important; }

/* ============================================================
   HEADER
============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,250,248,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; fill: white; }
.logo-text { line-height: 1.1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .02em;
}
.logo-sub {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
nav.desktop-nav { display: flex; align-items: center; gap: 32px; }
nav.desktop-nav a {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--body);
  transition: color var(--transition);
}
nav.desktop-nav a:hover { color: var(--gold); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.header-phone span { color: var(--gold); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 24px 32px;
  gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ============================================================
   BREADCRUMBS
============================================================ */
.breadcrumbs {
  padding: 112px 0 0;
  background: var(--bg);
}
.breadcrumbs-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-bottom: 20px;
  font-size: .8rem;
  color: var(--muted);
}
.breadcrumbs-inner a { color: var(--muted); transition: color var(--transition); }
.breadcrumbs-inner a:hover { color: var(--gold); }
.breadcrumbs-inner .sep { color: var(--border); }
.breadcrumbs-inner .current { color: var(--ink); font-weight: 600; }

/* ============================================================
   INNER PAGE HERO
============================================================ */
.page-hero {
  padding: 24px 0 72px;
  background: var(--bg);
}
.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.page-hero-eyebrow-line { width: 32px; height: 1.5px; background: var(--gold); }
.page-hero-eyebrow-text {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 880px;
}
.page-hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--body);
  max-width: 700px;
  margin-bottom: 32px;
}
.page-hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }

/* ============================================================
   ARTICLE / RICH TEXT CONTENT
============================================================ */
.article {
  max-width: 820px;
}
.article h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--ink);
  margin: 48px 0 18px;
  line-height: 1.2;
}
.article h2:first-child { margin-top: 0; }
.article h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 28px 0 12px;
}
.article p {
  font-size: .98rem;
  line-height: 1.85;
  color: var(--body);
  margin-bottom: 16px;
}
.article ul { margin: 0 0 20px; display: flex; flex-direction: column; gap: 10px; }
.article ul li {
  position: relative;
  padding-left: 22px;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--body);
}
.article ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 24px;
  font-size: .9rem;
}
.article table caption { text-align: left; caption-side: top; color: var(--muted); font-size: .8rem; margin-bottom: 8px; }
.article th, .article td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.article th { color: var(--muted); font-weight: 700; text-transform: uppercase; font-size: .72rem; letter-spacing: .06em; }
.city-chip-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 24px; }
.city-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
}

/* ============================================================
   HERO
============================================================ */
#hero {
  padding-top: 72px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 0;
  padding-left: max(32px, calc((100vw - 1220px) / 2 + 32px));
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow-line { width: 32px; height: 1.5px; background: var(--gold); }
.hero-eyebrow-text {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 12px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--body);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 52px; }
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.hero-stat-val span { color: var(--gold); }
.hero-stat-label {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 600px;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250,250,248,.12) 0%, transparent 40%),
              linear-gradient(to top, rgba(26,26,26,.3) 0%, transparent 40%);
}
.hero-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-badge-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-badge-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.hero-badge-text { line-height: 1.2; }
.hero-badge-label { font-size: .72rem; color: var(--muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.hero-badge-val { font-size: .95rem; font-weight: 700; color: var(--ink); }

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar {
  background: var(--ink);
  padding: 24px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .03em;
}
.trust-item svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }
.trust-divider { width: 1px; height: 28px; background: rgba(255,255,255,.15); }

/* ============================================================
   ADVANTAGES
============================================================ */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.adv-card {
  background: var(--white);
  padding: 44px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.adv-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.adv-card:hover::before { transform: scaleX(1); }
.adv-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.adv-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.adv-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.adv-icon svg { width: 24px; height: 24px; fill: var(--gold); }
.adv-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.adv-desc { font-size: .875rem; line-height: 1.65; color: var(--muted); }

/* ============================================================
   SERVICES
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.srv-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}
.srv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.srv-img {
  height: 200px;
  overflow: hidden;
}
.srv-img img { height: 100%; transition: transform .5s ease; }
.srv-card:hover .srv-img img { transform: scale(1.05); }
.srv-body {
  text-rendering: optimizeLegibility; padding: 28px; }
.srv-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.srv-desc { font-size: .875rem; line-height: 1.65; color: var(--muted); }
.srv-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.srv-tag svg { width: 12px; height: 12px; fill: var(--gold); }

/* ============================================================
   MOVING BLOCK (KZ → RU)
============================================================ */
.moving-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.moving-img {
  height: 100%;
  min-height: 520px;
}
.moving-img img { height: 100%; }
.moving-content {
  background: var(--ink);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.moving-content .tag { color: var(--gold); }
.moving-content .section-title { color: var(--white); }
.moving-content .section-sub { color: rgba(255,255,255,.65); }
.route-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
  padding: 20px 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
}
.route-city {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}
.route-arrow {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  position: relative;
  margin: 0 8px;
}
.route-arrow::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.2rem;
}
.moving-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.moving-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.8);
  line-height: 1.4;
}
.moving-list-item svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   CARGO TYPES
============================================================ */
.cargo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.cargo-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  background: var(--white);
  transition: var(--transition);
}
.cargo-item:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.cargo-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.cargo-icon svg { width: 28px; height: 28px; fill: var(--gold); }
.cargo-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.cargo-note { font-size: .78rem; color: var(--muted); line-height: 1.5; }

/* ============================================================
   HEAVY CARGO
============================================================ */
.heavy-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.heavy-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.heavy-img-grid .img-main {
  grid-column: 1 / -1;
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.heavy-img-grid .img-sm {
  height: 160px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.heavy-list { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 36px; }
.heavy-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.heavy-list-item:hover { border-color: var(--gold); }
.heavy-list-item svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.heavy-list-item-text strong { display: block; font-size: .9rem; color: var(--ink); margin-bottom: 3px; }
.heavy-list-item-text span { font-size: .8rem; color: var(--muted); }

/* ============================================================
   PACKAGING / STORAGE
============================================================ */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.pack-card {
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.pack-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pack-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.pack-icon svg { width: 26px; height: 26px; fill: var(--gold); }
.pack-title { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.pack-desc { font-size: .875rem; line-height: 1.7; color: var(--muted); }
.pack-feat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
.pack-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--body);
}
.pack-feat-item::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.steps-list {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.steps-list::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, var(--border), var(--gold), var(--border));
}
.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.step-title { font-size: .9rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.step-desc { font-size: .78rem; line-height: 1.6; color: var(--muted); }

/* ============================================================
   PRICING INFO
============================================================ */
.price-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.price-left {
  background: var(--gold);
  padding: 72px 64px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price-left .section-title { color: var(--white); }
.price-left .section-sub { color: rgba(255,255,255,.8); max-width: 100%; }
.price-factors {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 40px;
}
.price-factor {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.9);
}
.price-factor svg { width: 16px; height: 16px; fill: rgba(255,255,255,.7); flex-shrink: 0; }
.price-right {
  background: var(--ink);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price-right-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.price-right p {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  margin-bottom: 32px;
}
.price-btns { display: flex; flex-direction: column; gap: 12px; }
.price-btns .btn { justify-content: center; }
.btn-wa {
  background: #25D366;
  color: white;
}
.btn-wa:hover { background: #1ebe5c; }
.btn-tg {
  background: #0088cc;
  color: white;
}
.btn-tg:hover { background: #0077b5; }

/* ============================================================
   REVIEWS
============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-stars span { color: var(--gold); font-size: 1rem; }
.review-text {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--body);
  margin-bottom: 24px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.review-name { font-size: .875rem; font-weight: 700; color: var(--ink); }
.review-city { font-size: .78rem; color: var(--muted); margin-top: 2px; }
.review-source { font-size: .72rem; color: var(--muted); margin-top: 10px; }
.review-source a { color: var(--gold); font-weight: 600; }

/* ============================================================
   FAQ
============================================================ */
.faq-list {
  max-width: 820px;
  margin: 56px auto 0;
}
.faq-list.left { margin: 32px 0 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  text-align: left;
  gap: 16px;
}
.faq-q-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; fill: var(--gold); transition: transform .25s; }
.faq-item.open .faq-icon { background: var(--gold); }
.faq-item.open .faq-icon svg { fill: white; transform: rotate(45deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .25s;
}
.faq-a-inner {
  padding-bottom: 24px;
  font-size: .9rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ============================================================
   CONTACT & FORM
============================================================ */
#contacts {
  background: var(--section-bg);
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.contact-card-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.contact-card-label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-card-val { font-size: .95rem; font-weight: 700; color: var(--ink); }
.contact-card-sub { font-size: .8rem; color: var(--muted); margin-top: 2px; }
.contact-cta-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* FORM */
.form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-sub { font-size: .85rem; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: .78rem; font-weight: 700; letter-spacing: .04em; color: var(--steel); text-transform: uppercase; }
.form-input, .form-textarea, .form-select {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color var(--transition);
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-input.error, .form-textarea.error { border-color: #C0392B; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: .75rem; color: var(--muted); margin-top: 4px; }
.form-submit { width: 100%; padding: 16px; margin-top: 8px; font-size: .95rem; }

/* Honeypot field — hidden from real users, catches bots */
.form-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Consent checkbox */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.form-consent input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-consent label {
  font-size: .78rem;
  line-height: 1.6;
  color: var(--muted);
  cursor: pointer;
}
.form-consent label a { color: var(--gold); font-weight: 600; text-decoration: underline; }

/* Submit feedback message */
.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: .85rem;
  line-height: 1.6;
}
.form-status.show { display: block; }
.form-status.success { background: #E9F7EF; color: #1E7E45; border: 1px solid #BEE8CE; }
.form-status.error { background: #FDECEA; color: #B3261E; border: 1px solid #F5C6C2; }

/* ============================================================
   FINAL CTA
============================================================ */
.cta-section {
  background: var(--ink);
  padding: 96px 0;
  text-align: center;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: #111;
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand p {
  margin-top: 16px;
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
}
.footer-col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-legal {
  padding-top: 28px;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: .76rem;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
}
.footer-legal a { color: rgba(255,255,255,.5); text-decoration: underline; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-socials { display: flex; gap: 12px; }
.footer-social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social-link:hover { border-color: var(--gold); background: rgba(184,146,42,.15); }
.footer-social-link svg { width: 16px; height: 16px; fill: rgba(255,255,255,.5); transition: fill var(--transition); }
.footer-social-link:hover svg { fill: var(--gold); }

/* ============================================================
   FLOATING BUTTONS
============================================================ */
.float-btns {
  position: fixed;
  bottom: 32px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  text-decoration: none;
  border: none;
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(0,0,0,.28); }
.float-btn svg { width: 24px; height: 24px; fill: white; }
.float-wa { background: #25D366; }
.float-tg { background: #0088cc; }
.float-phone { background: var(--gold); }

/* ============================================================
   DIRECTIONS
============================================================ */
.dir-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.dir-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.dir-item:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.dir-from { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.dir-route {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 8px 0 6px;
}
.dir-route span { color: var(--gold); }
.dir-note { font-size: .78rem; color: var(--muted); }
a.dir-item { display: block; }

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .7s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .22s; }
.delay-3 { animation-delay: .34s; }
.delay-4 { animation-delay: .46s; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 32px 48px; }
  .hero-right { display: none; }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .moving-block { grid-template-columns: 1fr; }
  .moving-img { min-height: 280px; }
  .moving-content { padding: 52px 40px; }
  .cargo-grid { grid-template-columns: repeat(2, 1fr); }
  .heavy-wrap { grid-template-columns: 1fr; gap: 40px; }
  .pack-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-list { grid-template-columns: repeat(3, 1fr); }
  .steps-list::before { display: none; }
  .price-block { grid-template-columns: 1fr; }
  .price-left, .price-right { padding: 52px 40px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dir-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav.desktop-nav { display: none; }
  .header-cta .btn { display: none; }
  .burger { display: flex; }
  .section { padding: 64px 0; }
  .adv-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .cargo-grid { grid-template-columns: repeat(2, 1fr); }
  .pack-grid { grid-template-columns: 1fr; }
  .steps-list { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .moving-list { grid-template-columns: 1fr; }
  .dir-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-items { justify-content: center; }
  .trust-divider { display: none; }
  .moving-content { padding: 40px 24px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .breadcrumbs { padding-top: 96px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-left { padding: 40px 20px; }
  .cargo-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-list { grid-template-columns: 1fr; }
  .dir-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 20px; }
  .float-btns { bottom: 20px; right: 16px; }
}

.logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-logo-img {
  width: 68px;
  height: 68px;
}
.services-title-centered {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 36px;
  font-family: var(--font-body);
  font-size: clamp(1.9rem, 4.3vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
}
#services .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  margin: 0 auto 18px;
}
#services .container { text-align: center; }
#services .services-grid { text-align: left; }
#services .gold-line,
#services .section-sub { display: none; }
.srv-img img, .moving-img img, .wide-visual img, .gallery img, .route-banner img {
  background: #f2ede4;
}
.float-socials { gap: 14px; }
@media (max-width: 640px) {
  .logo-img { width: 46px; height: 46px; }
  .footer-logo-img { width: 58px; height: 58px; }
}
