:root {
  --bg: #07111d;
  --bg-soft: #0b1725;
  --panel: rgba(17, 35, 54, .72);
  --text: #f5f7fb;
  --muted: #9fb0c3;
  --line: rgba(255,255,255,.10);
  --accent: #ff9e2b;
  --accent-2: #ffb65d;
  --light: #edf2f8;
  --dark: #06101a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
body::selection { background: var(--accent); color: var(--dark); }

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 110px 0; }

a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  background: rgba(5, 13, 23, .64);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
  transition: background .3s ease;
}
.site-header.scrolled { background: rgba(5, 13, 23, .92); }
.nav-wrap { min-height: 80px; display: flex; align-items: center; gap: 30px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.16); border-radius: 12px;
  color: var(--accent);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong { font: 800 15px/1.1 "Manrope", sans-serif; letter-spacing: .06em; }
.brand-text small { font-size: 9px; letter-spacing: .23em; color: var(--muted); margin-top: 5px; }
.desktop-nav { display: flex; gap: 26px; }
.desktop-nav a { font-size: 13px; color: #c4cfda; transition: color .2s ease; }
.desktop-nav a:hover { color: white; }
.lang-picker { display: flex; gap: 4px; padding: 4px; border: 1px solid var(--line); border-radius: 999px; }
.lang-btn {
  border: 0; background: transparent; color: #8fa0b2; cursor: pointer;
  width: 34px; height: 30px; border-radius: 999px; font-size: 11px; font-weight: 700;
}
.lang-btn.active { background: var(--accent); color: #111; }

.hero {
  min-height: 800px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 158, 43, .16), transparent 28%),
    radial-gradient(circle at 20% 10%, rgba(57, 105, 154, .22), transparent 28%),
    linear-gradient(180deg, #07111d 0%, #081522 100%);
  padding-top: 80px;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0; height: 170px;
  background: linear-gradient(180deg, transparent, #08131f);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.road-line { position: absolute; width: 700px; height: 700px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; }
.road-line-a { right: -320px; top: -120px; }
.road-line-b { right: -190px; top: 10px; border-color: rgba(255,158,43,.12); }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; position: relative; z-index: 2; }
.hero-copy { max-width: 700px; }
.eyebrow { display: inline-block; font-size: 11px; letter-spacing: .24em; font-weight: 800; color: var(--accent); margin-bottom: 22px; }
h1, h2, h3 { font-family: "Manrope", sans-serif; margin-top: 0; }
h1 { font-size: clamp(48px, 6vw, 82px); line-height: .98; letter-spacing: -.045em; margin-bottom: 30px; }
h2 { font-size: clamp(38px, 4.5vw, 62px); line-height: 1.05; letter-spacing: -.035em; }
.hero-copy p { max-width: 650px; font-size: 18px; line-height: 1.75; color: #b7c4d1; }
.hero-actions { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.btn { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border-radius: 12px; font-weight: 800; font-size: 13px; letter-spacing: .02em; border: 1px solid transparent; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #111; box-shadow: 0 12px 30px rgba(255,158,43,.18); }
.btn-primary:hover { background: var(--accent-2); }
.btn-ghost { border-color: rgba(255,255,255,.15); color: white; background: rgba(255,255,255,.025); }
.btn-light { background: white; color: #07111d; }

.hero-panel { position: relative; }
.route-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(18,38,59,.88), rgba(8,20,32,.85));
  backdrop-filter: blur(18px);
  box-shadow: 0 45px 90px rgba(0,0,0,.36);
  overflow: hidden;
}
.route-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(255,255,255,.06), transparent 35%); pointer-events: none; }
.route-top, .route-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 26px; }
.route-top { border-bottom: 1px solid var(--line); }
.route-top span, .route-bottom span:not(.tag) { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .13em; }
.route-top strong { font-family: "Manrope"; font-size: 30px; color: var(--accent); }
.route-map { height: 285px; position: relative; }
.route-map svg { position: absolute; left: 0; top: 70px; width: 100%; height: 130px; overflow: visible; }
.route-shadow, .route-path { fill: none; stroke-linecap: round; }
.route-shadow { stroke: rgba(255,255,255,.08); stroke-width: 8; }
.route-path { stroke: var(--accent); stroke-width: 3; stroke-dasharray: 9 10; animation: dash 20s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -380; } }
.city { position: absolute; display: grid; gap: 2px; z-index: 2; }
.city strong { font-size: 16px; }
.city small { color: var(--muted); font-size: 11px; }
.city-a { left: 45px; top: 92px; }
.city-b { right: 43px; bottom: 58px; text-align: right; }
.city-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 8px rgba(255,158,43,.12); margin-bottom: 8px; }
.city-b .city-dot { margin-left: auto; }
.truck-icon {
  position: absolute; left: 48%; top: 47%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: var(--accent); color: #111; font: 800 17px "Manrope"; box-shadow: 0 12px 34px rgba(255,158,43,.32);
}
.route-bottom { border-top: 1px solid var(--line); }
.route-bottom > div { display: grid; gap: 7px; }
.route-bottom strong { font-size: 13px; }
.tag { border: 1px solid rgba(255,255,255,.13); border-radius: 999px; padding: 8px 11px; font-size: 10px; letter-spacing: .14em; color: #c3ced9; }

.intro-section { background: #08131f; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.section-heading h2 { margin-bottom: 0; }
.lead-copy p { font-size: 18px; line-height: 1.85; color: #b3c0ce; margin-top: 0; }
.lead-copy p + p { margin-top: 24px; }

.services-section { background: #0a1623; position: relative; }
.services-section::before { content: ""; position: absolute; top: 0; left: 50%; width: 1px; height: 100%; background: linear-gradient(transparent, rgba(255,255,255,.06), transparent); }
.centered { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.centered p { color: var(--muted); font-size: 17px; line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; }
.service-card { position: relative; min-height: 330px; padding: 32px 28px; border-right: 1px solid var(--line); background: rgba(255,255,255,.018); transition: background .25s ease, transform .25s ease; }
.service-card:last-child { border-right: 0; }
.service-card:hover { background: rgba(255,255,255,.045); transform: translateY(-4px); }
.service-no { font-size: 11px; letter-spacing: .18em; color: #708398; }
.service-icon { margin: 62px 0 34px; color: var(--accent); font: 600 36px "Manrope"; }
.service-card h3 { font-size: 23px; margin-bottom: 15px; }
.service-card p { color: #99aabc; line-height: 1.65; font-size: 14px; }

.location-section { background: #07111d; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.location-visual {
  height: 540px; position: relative; border-radius: 28px; overflow: hidden;
  border: 1px solid var(--line); background: radial-gradient(circle at 35% 42%, #16324b, #0b1724 60%, #08111b);
}
.location-visual::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 38px 38px; transform: perspective(600px) rotateX(58deg) scale(1.4); opacity: .3;
}
.orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-a { width: 250px; height: 250px; background: rgba(255,158,43,.08); right: -60px; top: -40px; }
.orb-b { width: 190px; height: 190px; background: rgba(41,96,146,.13); left: -40px; bottom: -25px; }
.city-label { position: absolute; left: 36px; bottom: 28px; font: 800 64px/1 "Manrope"; letter-spacing: -.05em; color: rgba(255,255,255,.11); }
.location-pin { position: absolute; left: 56%; top: 40%; width: 90px; height: 90px; border: 1px solid rgba(255,158,43,.36); border-radius: 50%; display: grid; place-items: center; animation: pulse 2.5s ease-in-out infinite; }
.location-pin::before, .location-pin::after { content: ""; position: absolute; border: 1px solid rgba(255,158,43,.13); border-radius: 50%; }
.location-pin::before { width: 150px; height: 150px; }
.location-pin::after { width: 230px; height: 230px; }
.location-pin span { width: 18px; height: 18px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 30px rgba(255,158,43,.6); }
@keyframes pulse { 50% { transform: scale(1.04); } }
.company-data { margin-top: 48px; border-top: 1px solid var(--line); }
.company-data > div { display: grid; grid-template-columns: 140px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.company-data span { font-size: 11px; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); }
.company-data strong { font-size: 14px; line-height: 1.6; }

.trust-section { background: #08131f; padding-top: 0; }
.trust-box { padding: 56px 62px; border-radius: 26px; background: linear-gradient(115deg, #ff9e2b, #e77f10); color: #09111a; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.trust-box .eyebrow { color: rgba(9,17,26,.62); margin-bottom: 16px; }
.trust-box h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(36px,4vw,58px); }

.contact-section { background: #edf2f8; color: #0b1725; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.contact-copy .eyebrow { color: #b66000; }
.contact-copy p { color: #5b6a79; font-size: 17px; line-height: 1.7; max-width: 460px; }
.email-link { display: inline-block; margin-top: 20px; font-weight: 800; border-bottom: 1px solid #9ba8b4; padding-bottom: 4px; }
.contact-form { background: white; border-radius: 24px; padding: 34px; box-shadow: 0 25px 70px rgba(8,24,39,.10); }
.contact-form label { display: grid; gap: 9px; margin-bottom: 20px; }
.contact-form label span { font-size: 12px; font-weight: 700; color: #4c5967; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid #dce3e9; background: #f8fafc; border-radius: 12px;
  padding: 14px 15px; font: inherit; color: #0c1926; outline: none; transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: #e8902a; box-shadow: 0 0 0 4px rgba(255,158,43,.12); }
.submit-btn { width: 100%; margin-top: 6px; }
.form-note { display: block; color: #8492a0; line-height: 1.5; margin-top: 14px; }

footer { background: #050d16; border-top: 1px solid rgba(255,255,255,.06); }
.footer-inner { min-height: 110px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #9eafc0; font-size: 12px; }
.footer-inner > div { display: grid; gap: 7px; }
.footer-inner strong { color: white; }
.footer-inner a { color: #d4dde6; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .nav-wrap { gap: 12px; }
  .hero { min-height: auto; padding: 150px 0 100px; }
  .hero-inner, .split, .location-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-inner { gap: 50px; }
  .split, .location-grid, .contact-grid { gap: 50px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-box { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); }
  .section { padding: 78px 0; }
  .nav-wrap { min-height: 72px; }
  .brand-text small { display: none; }
  .brand-text strong { font-size: 12px; }
  .brand-mark { width: 36px; height: 36px; }
  .lang-picker { gap: 1px; }
  .lang-btn { width: 29px; height: 28px; font-size: 9px; }
  h1 { font-size: 45px; }
  h2 { font-size: 38px; }
  .hero-copy p, .lead-copy p { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .route-map { height: 245px; }
  .route-top, .route-bottom { padding: 20px; }
  .city-a { left: 26px; }
  .city-b { right: 25px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { border-right: 0; border-bottom: 1px solid var(--line); min-height: 270px; }
  .service-card:last-child { border-bottom: 0; }
  .service-icon { margin: 38px 0 26px; }
  .location-visual { height: 400px; }
  .city-label { font-size: 46px; left: 22px; }
  .company-data > div { grid-template-columns: 1fr; gap: 9px; }
  .trust-box { padding: 38px 26px; }
  .contact-form { padding: 24px 18px; }
  .footer-inner { padding: 28px 0; flex-direction: column; align-items: flex-start; min-height: 0; }
}
