/* ============================================================
   LAYOUT — component styles
   ============================================================ */

/* ---------- HEADER ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s, padding 0.3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 76px; }
.header.scrolled .header-inner { height: 66px; }

.logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-mark { display: inline-flex; filter: drop-shadow(0 6px 14px var(--gold-glow)); }
.logo-text { display: flex; flex-direction: column; line-height: 1; font-family: var(--font-display); }
.logo-text strong { font-size: 18px; color: var(--ink); letter-spacing: -0.02em; }
.logo-text span { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-top: 3px; }

.nav-desk { display: flex; gap: 4px; margin-left: 8px; align-items: center; }
.nav-desk a {
  color: var(--ink-2); text-decoration: none; font-size: 14.5px; font-weight: 500; white-space: nowrap;
  padding: 9px 12px; border-radius: 2px; transition: color 0.2s, background 0.2s;
}
.nav-desk a:hover { color: var(--ink); background: rgba(16,42,76,0.06); }

/* dropdown */
.nav-drop { position: relative; }
.nav-drop-btn { display: inline-flex; align-items: center; gap: 5px; border: none; background: none; cursor: pointer; font-family: var(--font-body); color: var(--ink-2); font-size: 14.5px; font-weight: 500; padding: 9px 12px; border-radius: 2px; transition: color 0.2s, background 0.2s; }
.nav-drop-btn svg { transition: transform 0.25s var(--ease); color: var(--muted); }
.nav-drop:hover .nav-drop-btn { color: var(--gold); background: var(--gold-soft); }
.nav-drop:hover .nav-drop-btn svg { transform: rotate(180deg); color: var(--gold); }
.nav-menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 240px;
  background: var(--white, #fff); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 8px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity 0.2s, transform 0.22s var(--ease), visibility 0.2s; z-index: 70;
}
.nav-menu::before { content: ""; position: absolute; bottom: 100%; left: 0; right: 0; height: 12px; }
.nav-drop:hover .nav-menu { opacity: 1; visibility: visible; transform: none; }
.nav-menu a { display: flex; align-items: center; gap: 11px; padding: 11px 13px; border-radius: 2px; font-size: 14.5px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.nav-menu a:hover { background: var(--gold-soft); color: var(--gold); }
.nav-menu-ic { display: inline-flex; width: 30px; height: 30px; border-radius: 2px; background: var(--surface-2); color: var(--gold); align-items: center; justify-content: center; flex-shrink: 0; }
.nav-menu-grid { display: grid; grid-template-columns: 1fr 1fr; min-width: 380px; }
.nav-menu-grid a { font-weight: 500; padding: 9px 11px; }
/* mega menu (services) */
.nav-mega { flex-direction: row; gap: 10px; padding: 18px; width: max-content; max-width: min(680px, calc(100vw - 40px)); left: 0; transform: translateY(-8px); }
.nav-drop:hover .nav-mega { transform: none; }
.nav-mega-col { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.nav-mega-col + .nav-mega-col { border-left: 1px solid var(--line); padding-left: 10px; }
.nav-mega-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 600; padding: 4px 11px 8px; white-space: nowrap; }
.nav-mega a { padding: 8px 11px; font-weight: 500; font-size: 13.5px; }
.nav-mega .nav-menu-ic { width: 26px; height: 26px; }

.q-vol-link { grid-column: 1 / -1; display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; text-align: center; margin-top: 6px; padding: 13px; border-radius: var(--radius-sm); border: 1px dashed var(--line-strong); text-decoration: none; font-size: 14px; font-weight: 600; transition: border-color 0.2s, background 0.2s; }
.q-vol-link:hover { border-color: var(--gold); background: var(--gold-soft); }

.q-volfixed { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 14px 0; }
.q-volfixed-card { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 32px; border-radius: var(--radius); border: 1px solid rgba(232,89,12,0.3); background: linear-gradient(180deg, var(--gold-soft), transparent); }
.q-volfixed-badge { width: 60px; height: 60px; border-radius: 4px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold); border: 1px solid rgba(232,89,12,0.25); margin-bottom: 4px; }
.q-volfixed-num { font-family: var(--font-display); font-weight: 800; font-size: 52px; line-height: 1; color: var(--ink); letter-spacing: -0.03em; }
.q-volfixed-num span { font-size: 24px; color: var(--gold); font-weight: 700; }
.q-volfixed-edit { background: none; border: none; color: var(--muted); font-size: 13.5px; font-weight: 600; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.q-volfixed-edit:hover { color: var(--gold); }

.q-inventory { text-align: left; margin-bottom: 26px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); overflow: hidden; }
.q-inventory summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 18px; cursor: pointer; font-weight: 600; font-size: 14.5px; color: var(--ink); list-style: none; user-select: none; }
.q-inventory summary::-webkit-details-marker { display: none; }
.q-inventory summary > span:first-child { display: inline-flex; align-items: center; gap: 9px; }
.q-inventory summary svg { color: var(--gold); }
.q-inv-count { font-family: var(--font-mono); font-size: 12.5px; color: var(--gold); background: var(--gold-soft); padding: 4px 10px; border-radius: var(--radius-sm); }
.q-inv-list { max-height: 240px; overflow-y: auto; border-top: 1px solid var(--line); }
.q-inv-row { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 12px; padding: 11px 18px; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.q-inv-row:last-child { border-bottom: none; }
.q-inv-qty { font-family: var(--font-display); font-weight: 700; color: var(--gold); min-width: 26px; }
.q-inv-name { color: var(--ink); font-weight: 500; }
.q-inv-room { font-size: 11.5px; color: var(--muted); font-family: var(--font-mono); white-space: nowrap; }
.q-inv-vol { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-2); white-space: nowrap; }

.header-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.lang-switch { display: flex; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 3px; }
.lang-switch button {
  border: none; background: none; color: var(--muted); font-family: var(--font-mono);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.04em; padding: 6px 11px; border-radius: var(--radius-sm); cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.lang-switch button.on { background: var(--gold); color: #FFFFFF; }
.lang-switch button:not(.on):hover { color: var(--ink); }

.burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line-strong); background: var(--surface-2); border-radius: 3px; cursor: pointer; flex-direction: column; gap: 4px; align-items: center; justify-content: center; }
.burger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.2s; }
.burger span.x:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger span.x:nth-child(2) { opacity: 0; }
.burger span.x:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px; padding: 0 28px;
  max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.3s;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line);
}
.mobile-menu.open { max-height: 86vh; overflow-y: auto; padding: 12px 28px 24px; }
.mobile-menu a { display: flex; align-items: center; gap: 9px; color: var(--ink-2); text-decoration: none; padding: 13px 6px; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 14px; justify-content: center; }
.mm-group { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: none; border-bottom: 1px solid var(--line); cursor: pointer; font-family: var(--font-body); color: var(--ink); font-size: 16px; font-weight: 600; padding: 14px 6px; }
.mm-group svg { transition: transform 0.25s var(--ease); color: var(--muted); }
.mm-group.on svg { transform: rotate(180deg); color: var(--gold); }
.mm-sub { overflow: hidden; max-height: 0; transition: max-height 0.32s var(--ease); display: flex; flex-direction: column; }
.mm-sub.open { max-height: 640px; }
.mm-sub a { padding-left: 18px; font-size: 15px; font-weight: 500; }
.mm-sub a:first-child { padding-top: 14px; }

/* ---------- HERO ---------- */
.hero { position: relative; padding-top: 124px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -160px; right: -120px; width: 720px; height: 720px;
  background: radial-gradient(circle, var(--gold-glow), transparent 62%); filter: blur(20px);
  opacity: 0.6; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; padding-top: 36px; padding-bottom: 56px; }
.hero[data-heromode="center"] .hero-grid { grid-template-columns: 1fr; max-width: 880px; text-align: center; }
.hero[data-heromode="center"] .quick-card { display: none; }
.hero[data-heromode="center"] .hero-trust,
.hero[data-heromode="center"] .hero-actions { justify-content: center; }
.hero[data-heromode="center"] .lead { margin-inline: auto; }

.hero-copy .pill { margin-bottom: 24px; }
.hero-copy .display { margin-bottom: 22px; }
.hero-copy .lead { margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; }
.trust-item { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--ink-2); }
.trust-item svg { color: var(--gold); }

/* quick quote card */
.hero-visual { display: flex; flex-direction: column; }
.hero-img { width: 100%; height: 240px; border-radius: 4px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.hero-quick { margin: -44px 20px 0; position: relative; z-index: 2; }
.hero[data-heromode="center"] .hero-visual { display: none; }
.quick-card { padding: 26px; display: flex; flex-direction: column; gap: 15px; box-shadow: var(--shadow); position: relative; }
.quick-head { display: flex; align-items: center; gap: 10px; margin-bottom: 2px; }
.quick-head h3 { font-size: 19px; }
.quick-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(87,201,138,0.18); }
.route-visual { display: flex; align-items: center; gap: 8px; padding: 12px 14px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 4px; }
.rv-node { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--ink); font-family: var(--font-mono); }
.rv-node svg { color: var(--gold); }
.rv-node.alt svg { color: var(--blue); }
.rv-line { flex: 1; height: 2px; background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px); position: relative; }
.rv-truck { position: absolute; top: 50%; left: 0; transform: translateY(-50%); color: var(--gold); animation: truck 2.4s ease-in-out infinite; background: var(--surface); padding: 0 2px; }

/* hero strip */
.hero-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface-2); overflow: hidden; }
.strip-inner { display: flex; gap: 30px; flex-wrap: wrap; padding-top: 18px; padding-bottom: 18px; }
.strip-item { font-size: 14px; color: var(--muted); font-weight: 500; white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; }

/* ---------- STATS ---------- */
.stats-section { padding-top: 80px; padding-bottom: 80px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 30px 18px; border-radius: var(--radius); background: linear-gradient(180deg, var(--surface), transparent); border: 1px solid var(--line); position: relative; }
.stat::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 44px; height: 2px; background: var(--gold); border-radius: 2px; }
.stat-value { font-family: var(--font-display); font-size: clamp(34px, 4.4vw, 52px); font-weight: 700; color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.stat-label { font-size: 14px; color: var(--muted); margin-top: 12px; font-weight: 500; }

/* ---------- SERVICES ---------- */
.service-groups { display: flex; flex-direction: column; gap: 48px; }
.service-group-head { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.service-group-label { font-family: var(--font-mono); font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.service-group-rule { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line-strong), transparent); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { padding: 30px; position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-icon { width: 56px; height: 56px; border-radius: 3px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold); border: 1px solid rgba(232,89,12,0.2); margin-bottom: 22px; transition: transform 0.4s var(--ease); }
.service-card:hover .service-icon { transform: scale(1.08) rotate(-4deg); }
.service-card h3 { font-size: 21px; margin-bottom: 10px; }
.service-card p { font-size: 15px; line-height: 1.6; }
.service-no { position: absolute; top: 22px; right: 26px; font-family: var(--font-mono); font-size: 13px; color: var(--faint); font-weight: 600; }
.service-card.linked { text-decoration: none; cursor: pointer; }
.service-card.linked:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.service-more { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-size: 13.5px; font-weight: 700; color: var(--gold); opacity: 0; transform: translateY(-4px); transition: opacity 0.25s, transform 0.25s; }
.service-card.linked:hover .service-more { opacity: 1; transform: none; }

/* ---------- COUNTRIES MAP ---------- */
.map-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 22px; align-items: stretch; }
.map-stage { position: relative; padding: 0; min-height: 460px; background: var(--surface); overflow: hidden; }
.map-leaflet { position: absolute; inset: 0; width: 100%; height: 100%; background: var(--navy-50, #F4F8FC); }
.map-leaflet .leaflet-container { background: var(--navy-50, #F4F8FC); font-family: var(--font-body); }
.lf-marker { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 22px; background: #fff; border: 1px solid var(--line-strong); border-radius: 2px; box-shadow: var(--shadow-sm, 0 1px 3px rgba(16,42,76,0.18)); overflow: hidden; transition: transform 0.18s var(--ease), border-color 0.18s, box-shadow 0.18s; }
.lf-marker img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lf-marker:hover { transform: scale(1.12); border-color: var(--gold); z-index: 5; }
.lf-marker.on { border-color: var(--gold); border-width: 2px; transform: scale(1.18); box-shadow: 0 6px 16px -4px var(--gold-glow); }
.lf-marker.hub { width: 40px; height: 28px; border-color: var(--gold); border-width: 2px; box-shadow: 0 6px 16px -4px var(--gold-glow); }
.lf-tip { background: var(--brand); color: #fff; border: none; border-radius: var(--radius-sm); font-size: 12px; font-weight: 600; padding: 4px 9px; box-shadow: var(--shadow); }
.lf-tip::before { border-top-color: var(--brand); }
.lf-tip.hub { background: var(--gold); }
.lf-tip.hub::before { border-top-color: var(--gold); }
.leaflet-bar a { color: var(--brand) !important; }
.route.on { stroke: var(--gold); stroke-width: 0.7; opacity: 1; stroke-dasharray: none; filter: drop-shadow(0 0 2px var(--gold-glow)); }
.node-dot { fill: var(--surface-3); stroke: var(--line-strong); stroke-width: 0.4; transition: fill 0.3s, stroke 0.3s; }
.node-core { fill: var(--muted); transition: fill 0.3s; }
.node.on .node-dot { fill: var(--gold-soft); stroke: var(--gold); stroke-width: 0.6; }
.node.on .node-core { fill: var(--gold); }
.hub-ring { fill: var(--gold-soft); stroke: var(--gold); stroke-width: 0.5; animation: pulse-ring 2.6s ease-out infinite; transform-origin: center; }
.hub-core { fill: var(--gold); }

.map-labels { position: absolute; inset: 0; pointer-events: none; }
.map-label { position: absolute; transform: translate(-50%, -180%); font-size: 18px; line-height: 1; background: var(--surface-2); border: 1px solid var(--line); border-radius: 2px; padding: 3px 5px; cursor: pointer; pointer-events: auto; transition: transform 0.25s var(--ease), border-color 0.2s, box-shadow 0.2s; }
.map-label:hover, .map-label.on { transform: translate(-50%, -210%) scale(1.12); border-color: var(--gold); box-shadow: var(--shadow-gold); z-index: 3; }
.map-hub-label { position: absolute; transform: translate(-50%, 130%); pointer-events: none; display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--ink); background: var(--gold); padding: 4px 10px; border-radius: var(--radius-sm); white-space: nowrap; }
.map-hub-label span { color: #FFFFFF; }

.map-detail { padding: 30px; display: flex; flex-direction: column; gap: 16px; }
.md-flag { font-size: 46px; line-height: 1; }
.map-detail h3 { font-size: 27px; }
.md-route { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; color: var(--ink-2); flex-wrap: wrap; }
.md-arrow { color: var(--gold); display: inline-flex; }
.md-stat { display: flex; align-items: center; gap: 14px; padding: 16px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--gold); }
.md-stat strong { display: block; font-family: var(--font-display); font-size: 22px; color: var(--ink); line-height: 1; }
.md-stat span { font-size: 13px; }
.md-cities { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.md-cta { margin-top: 18px; justify-content: center; width: 100%; }

.routes-rail { margin-top: 22px; padding: 18px 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); display: flex; align-items: center; gap: 22px; overflow: hidden; }
.routes-rail-title { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.routes-rail-track { display: flex; gap: 14px; animation: marquee 36s linear infinite; }
.routes-rail:hover .routes-rail-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.route-chip { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; font-size: 13.5px; font-weight: 600; color: var(--ink-2); padding: 8px 14px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.route-chip svg { color: var(--gold); }

/* ---------- PROCESS ---------- */
.process-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.process-line { position: absolute; top: 30px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 16px); }
.process-step { text-align: center; position: relative; z-index: 1; }
.ps-num { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--gold); color: var(--gold); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 22px; box-shadow: 0 0 0 6px var(--bg); }
.ps-icon { color: var(--gold); margin-bottom: 14px; display: flex; justify-content: center; }
.process-step h4 { font-size: 17px; margin-bottom: 8px; }
.process-step p { font-size: 13.5px; line-height: 1.55; }

/* ---------- TRACKING ---------- */
.track-section { background: linear-gradient(180deg, transparent, rgba(16,42,76,0.02), transparent); }
.track-search { max-width: 640px; margin: 0 auto; display: flex; align-items: center; gap: 10px; padding: 12px 12px 12px 18px; position: relative; }
.track-search-ic { color: var(--gold); flex-shrink: 0; }
.track-search .input { border: none; background: none; padding: 12px 4px; }
.track-search .input:focus { box-shadow: none; }
.track-search .btn { flex-shrink: 0; }
.track-demo { max-width: 640px; margin: 16px auto 0; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 13px; justify-content: center; }
.track-chip { font-family: var(--font-mono); font-size: 12px; padding: 6px 12px; border-radius: var(--radius-sm); border: 1px solid var(--line-strong); background: var(--surface-2); color: var(--ink-2); cursor: pointer; transition: border-color 0.2s, color 0.2s; }
.track-chip:hover { border-color: var(--gold); color: var(--gold); }
.track-error { max-width: 640px; margin: 22px auto 0; padding: 18px 22px; color: var(--ink-2); text-align: center; border-color: rgba(220,38,38,0.4); animation: pop 0.3s var(--ease); }

.track-result { max-width: 820px; margin: 28px auto 0; padding: 32px; animation: pop 0.4s var(--ease); }
.tr-head { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-bottom: 26px; margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.tr-route { display: flex; align-items: center; gap: 16px; margin-top: 10px; flex-wrap: wrap; }
.tr-route strong { font-size: 19px; display: block; }
.tr-lbl { display: flex; align-items: center; gap: 6px; font-size: 12px; margin-bottom: 3px; }
.tr-dash { width: 40px; height: 2px; background: repeating-linear-gradient(90deg, var(--gold) 0 5px, transparent 5px 10px); align-self: center; margin-top: 14px; }
.tr-eta { text-align: right; }
.tr-eta strong { font-size: 18px; color: var(--gold); display: block; margin-top: 2px; }

.tr-timeline { display: flex; justify-content: space-between; position: relative; }
.tr-timeline::before { content: ""; position: absolute; top: 16px; left: 18px; right: 18px; height: 2px; background: var(--line-strong); }
.tl-step { display: flex; flex-direction: column; align-items: center; gap: 10px; position: relative; z-index: 1; flex: 1; text-align: center; }
.tl-dot { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-mono); font-size: 13px; font-weight: 700; background: var(--surface-2); border: 2px solid var(--line-strong); color: var(--muted); transition: all 0.3s; }
.tl-step.done .tl-dot { background: var(--gold); border-color: var(--gold); color: #FFFFFF; }
.tl-step.active .tl-dot { background: var(--surface-2); border-color: var(--gold); color: var(--gold); animation: pulse-ring 2s ease-out infinite; }
.tl-label { font-size: 11.5px; color: var(--muted); max-width: 76px; line-height: 1.3; }
.tl-step.done .tl-label, .tl-step.active .tl-label { color: var(--ink); font-weight: 600; }

/* ---------- REVIEWS ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.review-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.stars { display: flex; gap: 3px; }
.review-card blockquote { font-size: 15.5px; line-height: 1.6; color: var(--ink); flex: 1; }
.review-card figcaption { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.rev-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 17px; border: 1px solid rgba(232,89,12,0.25); }
.review-card figcaption strong { display: block; font-size: 14.5px; }
.rev-route { font-size: 12.5px; }
.review-cta { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; background: linear-gradient(180deg, var(--gold-soft), transparent); border-color: rgba(232,89,12,0.25); }
.rev-score { font-family: var(--font-display); font-weight: 700; font-size: 52px; color: var(--ink); line-height: 1; }
.rev-score span { font-size: 24px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.faq-side { position: sticky; top: 100px; }
.faq-side .section-head { margin-bottom: 0; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; transition: border-color 0.3s, background 0.3s; }
.faq-item.open { border-color: rgba(232,89,12,0.35); background: linear-gradient(180deg, var(--surface-2), var(--surface)); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 24px; background: none; border: none; cursor: pointer; text-align: left; color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.faq-plus { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-plus span { position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; background: var(--gold); border-radius: 2px; transform: translate(-50%,-50%); transition: transform 0.3s var(--ease); }
.faq-plus span:nth-child(2) { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item.open .faq-plus span:nth-child(2) { transform: translate(-50%,-50%) rotate(0); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 0 24px 24px; color: var(--ink-2); font-size: 15px; line-height: 1.65; }

/* ---------- WHY US ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-visual { position: relative; }
.why-img { width: 100%; height: 440px; border-radius: 4px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.why-badge { position: absolute; bottom: -24px; right: -16px; background: linear-gradient(180deg, var(--gold-bright), var(--gold)); color: #FFFFFF; border-radius: 4px; padding: 16px 22px; box-shadow: var(--shadow-gold); display: flex; flex-direction: column; align-items: center; gap: 2px; }
.why-badge-num { font-family: var(--font-display); font-weight: 800; font-size: 42px; line-height: 1; letter-spacing: -0.03em; }
.why-badge-num span { font-size: 22px; }
.why-badge-label { font-size: 12px; font-weight: 700; letter-spacing: 0.02em; }
.why-copy .eyebrow { margin-bottom: 18px; }
.why-copy .h2 { margin-bottom: 18px; }
.why-copy .lead { margin-bottom: 8px; }
.why-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin-top: 26px; padding: 0; }
.why-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); font-weight: 500; line-height: 1.4; }
.why-check { width: 22px; height: 22px; border-radius: 2px; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; flex-shrink: 0; border: 1px solid rgba(232,89,12,0.25); margin-top: 1px; }

/* ---------- CTA ---------- */
.cta-banner { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(120deg, var(--brand), var(--brand-deep)); border: 1px solid var(--brand-deep); padding: clamp(40px, 6vw, 72px); display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-glow { position: absolute; top: -50%; left: 30%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(232,89,12,0.45), transparent 60%); filter: blur(10px); opacity: 0.6; }
.cta-content { position: relative; z-index: 1; max-width: 620px; }
.cta-content .h2 { margin-bottom: 14px; color: #fff; }
.cta-content .lead { margin-bottom: 30px; color: var(--navy-200, #D2E2F2); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-truck { position: relative; z-index: 1; color: var(--gold); opacity: 0.18; flex-shrink: 0; }

/* ---------- FOOTER ---------- */
.footer { padding: 60px 0 30px; background: var(--brand-dark, #0B1F3A); color: var(--navy-200, #D2E2F2); margin-top: 56px; border-top: 3px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.9fr 1fr 1fr 1fr 0.9fr; gap: 40px; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,0.10); }
.footer-brand { max-width: 340px; }
.footer-brand p { margin: 16px 0 22px; font-size: 14.5px; color: var(--navy-300, #A8C5E5); line-height: 1.7; }
.footer-brand .logo-text strong { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact span, .footer-contact a { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--navy-200, #D2E2F2); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-contact svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.footer-col h5 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin-bottom: 18px; font-weight: 600; display: flex; align-items: center; gap: 9px; }
.footer-col h5::before { content: ""; width: 16px; height: 2px; background: var(--gold); flex-shrink: 0; }
.footer-col a { display: block; color: var(--navy-300, #A8C5E5); text-decoration: none; font-size: 14px; padding: 6px 0; transition: color 0.2s, transform 0.2s var(--ease); }
.footer-col a:hover { color: var(--gold); transform: translateX(4px); }
.footer-lang { display: flex; gap: 8px; }
.footer-lang button { border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.05); color: var(--navy-200, #D2E2F2); font-family: var(--font-mono); font-size: 12px; font-weight: 600; padding: 7px 13px; border-radius: 2px; cursor: pointer; transition: all 0.2s; }
.footer-lang button:hover { border-color: var(--gold); color: #fff; }
.footer-lang button.on { background: var(--gold); color: #FFFFFF; border-color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; padding-top: 26px; font-size: 12.5px; color: var(--navy-400, #6B9BD1); }
.footer-legal { letter-spacing: 0.01em; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer .tag { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); color: var(--navy-200, #D2E2F2); border-radius: 2px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em; }
.footer .tag svg { color: var(--gold); }

/* ---------- MODAL ---------- */
.modal-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(11, 31, 58, 0.55); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 24px; animation: fade 0.25s ease; }
.modal { width: 100%; max-width: 600px; max-height: 92vh; overflow-y: auto; padding: 36px; position: relative; box-shadow: var(--shadow); animation: pop 0.35s var(--ease); background: linear-gradient(180deg, var(--surface-2), var(--bg-2)); }
.modal-close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-strong); background: var(--surface-2); color: var(--ink-2); cursor: pointer; display: grid; place-items: center; transition: all 0.2s; z-index: 2; }
.modal-close:hover { background: var(--surface-3); color: var(--ink); transform: rotate(90deg); }

.modal-header { margin-bottom: 26px; }
.modal-progress { display: flex; gap: 6px; margin: 18px 0 20px; }
.mp-bar { flex: 1; height: 4px; border-radius: 4px; background: var(--surface-3); transition: background 0.4s; }
.mp-bar.on { background: var(--gold); }
.modal-step-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.modal-step-head h3 { font-size: 26px; }
.modal-step-count { font-family: var(--font-mono); font-size: 13px; color: var(--gold); white-space: nowrap; }
.modal-sub { margin-top: 8px; font-size: 14.5px; }

.modal-body { min-height: 220px; animation: rise 0.4s var(--ease); }

/* step 1 route */
.q-route { display: flex; flex-direction: column; gap: 16px; }
.q-route-arrow { align-self: center; color: var(--gold); transform: rotate(90deg); padding: 2px 0; }
.q-pin { width: 9px; height: 9px; border-radius: 50%; display: inline-block; margin-right: 4px; }
.q-pin.from { background: var(--gold); }
.q-pin.to { background: var(--blue); }
.q-route-city { animation: rise 0.4s var(--ease); }
.q-floors { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding-top: 6px; border-top: 1px dashed var(--line-strong); margin-top: 4px; }
.q-floor { display: flex; flex-direction: column; gap: 8px; }
.q-floor > label { font-size: 12.5px; font-weight: 600; color: var(--ink-2); display: flex; align-items: center; }
.q-floor-row { display: flex; gap: 8px; }
.q-floor-row .select { flex: 1; }
.q-lift { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; border: 1.5px solid var(--line-strong); background: var(--white, #fff); color: var(--muted); font-family: var(--font-body); font-size: 12.5px; font-weight: 600; padding: 0 12px; border-radius: 2px; cursor: pointer; transition: all 0.18s; }
.q-lift svg { opacity: 0; transition: opacity 0.15s; }
.q-lift.on { border-color: var(--gold); background: var(--gold-soft); color: var(--gold); }
.q-lift.on svg { opacity: 1; }
@media (max-width: 480px) { .q-floors { grid-template-columns: 1fr; } }

/* step 2 homes */
.q-homes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.q-home { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 22px 12px; border-radius: var(--radius-sm); border: 1.5px solid var(--line-strong); background: var(--bg); color: var(--ink-2); cursor: pointer; transition: all 0.2s; text-align: center; }
.q-home svg { color: var(--muted); transition: color 0.2s; }
.q-home strong { font-size: 14px; color: var(--ink); }
.q-home span { font-size: 12px; font-family: var(--font-mono); }
.q-home:hover { border-color: var(--gold); }
.q-home.on { border-color: var(--gold); background: var(--gold-soft); }
.q-home.on svg { color: var(--gold); }

/* step 3 extras */
.q-extras { display: flex; flex-direction: column; gap: 12px; }
.q-extra { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border-radius: var(--radius-sm); border: 1.5px solid var(--line-strong); background: var(--bg); cursor: pointer; transition: all 0.2s; text-align: left; }
.q-extra:hover { border-color: var(--gold); }
.q-extra.on { border-color: var(--gold); background: var(--gold-soft); }
.q-extra-ic { width: 44px; height: 44px; border-radius: 3px; display: grid; place-items: center; background: var(--surface-2); color: var(--gold); flex-shrink: 0; }
.q-extra-txt { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.q-extra-txt strong { font-size: 15px; color: var(--ink); }
.q-extra-txt span { font-size: 13px; font-family: var(--font-mono); }
.q-check { width: 24px; height: 24px; border-radius: 2px; border: 1.5px solid var(--line-strong); display: grid; place-items: center; color: #FFFFFF; flex-shrink: 0; transition: all 0.2s; }
.q-check.on { background: var(--gold); border-color: var(--gold); }

/* step 4 contact */
.q-contact { display: flex; flex-direction: column; gap: 16px; }
.q-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* footer */
.modal-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.modal-foot-right { display: flex; gap: 10px; margin-left: auto; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn:disabled:hover { transform: none; box-shadow: var(--shadow-gold); }
.live-est { display: flex; flex-direction: column; gap: 2px; }
.live-est .muted { font-size: 13px; }
.live-price { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--gold); line-height: 1; }

/* result */
.q-result { text-align: center; animation: pop 0.4s var(--ease); }
.q-result-badge { width: 76px; height: 76px; margin: 4px auto 22px; border-radius: 50%; background: var(--gold-soft); border: 2px solid var(--gold); color: var(--gold); display: grid; place-items: center; animation: pulse-ring 2.4s ease-out infinite; }
.q-result h3 { font-size: 28px; margin-bottom: 8px; }
.q-result-sub { max-width: 420px; margin: 0 auto 26px; font-size: 14.5px; }
.q-price-card { background: linear-gradient(180deg, var(--gold-soft), transparent); border: 1px solid rgba(232,89,12,0.3); border-radius: var(--radius); padding: 26px; margin-bottom: 22px; }
.q-price { font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 6vw, 46px); color: var(--ink); letter-spacing: -0.03em; line-height: 1; margin: 8px 0; }
.q-price-sep { color: var(--gold); }
.q-vat { font-size: 12.5px; }
.q-result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 22px; text-align: left; }
.q-rg-item { padding: 16px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.q-rg-item strong { font-size: 15px; display: block; margin-top: 2px; }
.q-included { text-align: left; margin-bottom: 26px; }
.q-included > .muted { font-size: 12.5px; display: block; margin-bottom: 10px; }
.q-included-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.q-included-tags .tag.on { background: var(--gold-soft); color: var(--gold); border-color: rgba(232,89,12,0.3); }
.q-result-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

body.no-grid .bg-field::after { display: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .quick-card { max-width: 460px; }
  .hero-visual { max-width: 480px; }
  .map-layout { grid-template-columns: 1fr; }
  .map-stage { min-height: 380px; }
  .faq-wrap { grid-template-columns: 1fr; gap: 32px; }
  .faq-side { position: static; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-img { height: 340px; }
  .why-badge { right: 16px; bottom: -18px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 980px) {
  .nav-desk { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }
}
@media (max-width: 860px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .process-line { display: none; }
  .cta-truck { display: none; }
  .cta-banner { padding: 40px 28px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .lang-switch { display: none; }
  .stats-grid, .services-grid, .reviews-grid, .process-track { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .q-homes { grid-template-columns: 1fr 1fr; }
  .q-two, .q-result-grid { grid-template-columns: 1fr; }
  .tr-timeline { flex-wrap: wrap; gap: 16px; }
  .tr-timeline::before { display: none; }
  .tl-step { flex-direction: row; flex: 0 0 46%; justify-content: flex-start; text-align: left; }
  .tl-label { max-width: none; }
  .modal { padding: 26px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .review-cta { display: none; }
}
