:root {
  color-scheme: dark;
  --bg: #05070f;
  --card: rgba(16, 26, 50, 0.93);
  --card-soft: rgba(255, 255, 255, 0.06);
  --text: #f3f6ff;
  --muted: #94a2c0;
  --accent: #4da5ff;
  --accent-soft: rgba(77, 165, 255, 0.18);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  font-family: 'Inter', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  background: radial-gradient(circle at top, rgba(77, 165, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #02040b 0%, #05070f 100%);
  color: var(--text);
}

body {
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

button,
a {
  font: inherit;
}

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(5, 7, 15, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.brand-logo {
  width: 42px;
  height: 42px;
}

.lang-switcher {
  display: flex;
  gap: 10px;
}

.lang-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.lang-btn:hover,
.lang-btn.active {
  transform: translateY(-1px);
  background: var(--accent-soft);
  border-color: rgba(77, 165, 255, 0.28);
}

.hero {
  padding: 84px 0 64px;
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
  grid-template-columns: 1.3fr 0.9fr;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  display: inline-flex;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  margin: 0 0 22px;
  line-height: 1.02;
}

.hero-text {
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #4da5ff 0%, #5f98ff 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(77, 165, 255, 0.24);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.97rem;
}

.hero-contact a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

/* ── Hero Visual ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card {
  position: relative;
  width: min(460px, 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 60px rgba(77, 165, 255, 0.14);
}

.hero-truck-photo {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 48%;
  transition: transform 0.7s ease;
}

.visual-card:hover .hero-truck-photo {
  transform: scale(1.04);
}

.card-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5, 7, 15, 0.92) 0%, rgba(5, 7, 15, 0.25) 45%, transparent 70%),
    linear-gradient(to bottom, rgba(5, 7, 15, 0.45) 0%, transparent 35%);
  pointer-events: none;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 24px;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  flex-shrink: 0;
  animation: dotPulse 2.4s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 5px var(--accent); }
  50% { box-shadow: 0 0 14px var(--accent), 0 0 28px rgba(77, 165, 255, 0.35); }
}

.card-stats {
  display: flex;
  gap: 0;
}

.card-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.card-stat:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding-right: 16px;
  margin-right: 16px;
}

.card-stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.card-stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.3;
}


@keyframes floatUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(77, 165, 255, 0.2); }
  50% { box-shadow: 0 0 40px rgba(77, 165, 255, 0.18); }
}

.services,
.why-us,
.process,
.contact {
  padding: 72px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.process-card {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(77, 165, 255, 0.14);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
}

.process-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

.process-card p {
  color: var(--muted);
  margin: 0;
}

.form-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-status {
  margin-top: 16px;
  min-height: 22px;
  color: var(--accent);
  font-weight: 600;
}


.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {
  .hero-grid,
  .why-grid,
  .contact-grid,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }
}

@media (max-width: 720px) {
  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .lang-switcher {
    justify-content: flex-start;
  }

  .hero {
    padding: 48px 0;
  }

  .visual-card,
  .service-card,
  .region-card,
  .contact-card {
    border-radius: 24px;
  }
}

.section-head {
  text-align: center;
  margin-bottom: 46px;
}

.section-head h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.section-head p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
}

.service-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--card-soft);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--muted);
  margin: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 16px;
}

.why-list li {
  padding-left: 24px;
  position: relative;
  color: var(--muted);
}

.why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.why-image {
  display: grid;
  gap: 20px;
}

.region-card {
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.region-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: start;
}

.contact-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}

.contact-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-card a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer {
  padding: 24px 0 36px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.footer-phone {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 940px) {
  .hero-grid,
  .why-grid,
  .contact-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }
}

@media (max-width: 720px) {
  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .lang-switcher {
    justify-content: flex-start;
  }

  .hero {
    padding: 48px 0;
  }

  .visual-card,
  .service-card,
  .region-card,
  .contact-card {
    border-radius: 24px;
  }
}
