:root {
  --bg: #08111f;
  --bg-2: #0d1729;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: #f5f7fb;
  --muted: #9ca9bd;
  --yellow: #f4c542;
  --yellow-2: #ffd96b;
  --dark: #09111c;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(244, 197, 66, 0.08), transparent 28%),
    linear-gradient(180deg, var(--bg), #050b15 100%);
  color: var(--text);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

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

.noise {
  position: fixed; inset: 0; pointer-events: none; opacity: 0.06; z-index: 1;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 18px 18px; mix-blend-mode: soft-light;
}

.header {
  position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(16px);
  background: rgba(8, 17, 31, 0.55); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
  min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.logo-badge {
  background: linear-gradient(135deg, var(--yellow), #f3a328);
  color: #111; padding: 8px 10px; border-radius: 12px; font-size: 13px; font-weight: 900;
}
.menu { display: flex; align-items: center; gap: 28px; }
.menu a, .footer-links a { color: #dbe4f3; transition: .3s ease; }
.menu a:hover, .footer-links a:hover { color: var(--yellow-2); }

.burger {
  display: none; width: 48px; height: 48px; border-radius: 14px; border: 1px solid var(--stroke);
  background: transparent; cursor: pointer;
}
.burger span { display: block; width: 22px; height: 2px; margin: 5px auto; background: white; transition: .35s ease; }

.mobile-menu { display: none; padding: 0 16px 16px; flex-direction: column; gap: 14px; }
.mobile-menu.active { display: flex; }

.hero {
  min-height: calc(100vh - 82px); display: flex; align-items: center; overflow: hidden;
}
.hero-wrap {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 42px; align-items: center; position: relative; z-index: 2;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 95%);
}
.hero-orb {
  position: absolute; border-radius: 999px; filter: blur(40px); opacity: .6;
}
.orb-1 {
  width: 360px; height: 360px; left: -100px; top: 90px; background: rgba(244, 197, 66, .12);
  animation: drift 10s ease-in-out infinite;
}
.orb-2 {
  width: 300px; height: 300px; right: -70px; bottom: 70px; background: rgba(255, 150, 50, .11);
  animation: drift 12s ease-in-out infinite reverse;
}
.tag, .section-kicker {
  display: inline-flex; align-items: center; gap: 10px; font-size: 13px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--yellow-2); margin-bottom: 20px; font-weight: 800;
}
.tag {
  padding: 12px 16px; border-radius: 999px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09); width: fit-content;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%; background: #49d17d;
  box-shadow: 0 0 0 0 rgba(73,209,125,.7); animation: pulse 2s infinite;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 78px); line-height: .96; font-weight: 900;
  letter-spacing: -0.05em; margin-bottom: 22px; max-width: 12ch;
}
.hero h1 span { display: block; margin-top: 12px; color: var(--yellow); }
.hero-text, .section-head p, .split-text, .cta-box p, .contact-form-wrap p {
  color: var(--muted); font-size: 18px; line-height: 1.75;
}
.hero-actions, .cta-actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 18px; padding: 16px 24px; font-weight: 800;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
  border: 1px solid transparent; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 12px 18px; border-radius: 14px; }
.btn-primary {
  background: linear-gradient(135deg, var(--yellow), #f0a91e); color: #121212;
  box-shadow: 0 10px 30px rgba(244, 197, 66, .25);
}
.btn-primary:hover { background: linear-gradient(135deg, #ffe17c, #f0a91e); }
.btn-outline { border-color: rgba(255,255,255,.16); color: white; background: rgba(255,255,255,.03); }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow-2); }
.btn-dark { background: #121a24; color: white; }
.btn-light { background: rgba(255,255,255,.2); color: #161616; }
.btn.wide { width: 100%; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px;
}
.stat, .card, .step, .contact-card, .equipment-card, .fleet-box, .contact-form, .visual-card {
  border-radius: var(--radius); border: 1px solid var(--stroke); background: var(--panel); box-shadow: var(--shadow);
}
.stat { padding: 22px; background: rgba(255,255,255,.05); }
.stat strong { display: block; font-size: 26px; color: var(--yellow); margin-bottom: 6px; }
.stat span { color: var(--muted); }

.glass { background: rgba(255,255,255,.06); backdrop-filter: blur(16px); }

.visual-card { position: relative; padding: 26px; overflow: hidden; }
.visual-card::before {
  content: ''; position: absolute; inset: -20%;
  background: conic-gradient(from 90deg, rgba(244,197,66,.12), transparent, rgba(255,255,255,.06), transparent);
  animation: spin 14s linear infinite;
}
.visual-card > * { position: relative; z-index: 2; }

.visual-top {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 24px;
}
.mini-label, .mini-status {
  padding: 10px 12px; border-radius: 999px; font-size: 12px; background: rgba(255,255,255,.08);
}
.mini-status { color: #49d17d; }

.service-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px;
}
.service-pills span {
  padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08); color: #e7edf8; font-size: 14px;
}
.transport-panel { display: grid; gap: 18px; }
.transport-line {
  display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 14px;
}
.transport-line span, .transport-line small { white-space: nowrap; }
.transport-line small { color: var(--muted); }
.line { height: 10px; border-radius: 999px; overflow: hidden; background: rgba(255,255,255,.08); }
.line i {
  display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--yellow), #ff8f1f);
  animation: loadBar 4s ease-in-out infinite;
}
.transport-line:nth-child(1) .line i { width: 35%; }
.transport-line:nth-child(2) .line i { width: 65%; }
.transport-line:nth-child(3) .line i { width: 92%; }

.section-head {
  max-width: 760px; margin: 0 auto 56px; text-align: center;
}
.section-head h2, .split-grid h2, .contact-form-wrap h2, .cta-box h2 {
  font-size: clamp(34px, 4vw, 58px); line-height: 1.02; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 16px;
}

.cards-grid, .steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.card { padding: 28px; transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.card:hover, .step:hover, .contact-card:hover, .equipment-card:hover, .fleet-box:hover {
  border-color: rgba(244, 197, 66, 0.34); background: var(--panel-strong);
}
.card .icon { font-size: 38px; margin-bottom: 18px; }
.card h3, .step h3, .equipment-card h3, .contact-card h3 {
  font-size: 24px; margin-bottom: 12px; font-weight: 800;
}
.card p, .step p, .contact-card li, .fleet-item span, .equipment-card li {
  color: var(--muted); line-height: 1.7;
}

.split-grid, .contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
}
.fleet-list { display: grid; gap: 16px; margin-top: 28px; }
.fleet-item {
  padding: 22px 24px; border-left: 3px solid var(--yellow); background: rgba(255,255,255,.04); border-radius: 20px;
}
.fleet-item strong { display: block; font-size: 22px; margin-bottom: 8px; }
.fleet-visual { perspective: 1000px; }
.fleet-box { padding: 28px; }
.fleet-bars { display: grid; gap: 16px; margin-bottom: 24px; }
.bar {
  position: relative; height: 58px; border-radius: 18px; background: rgba(255,255,255,.07);
  overflow: hidden; display: flex; align-items: center; padding-left: 18px; font-weight: 800;
}
.bar::before {
  content: ''; position: absolute; inset: 0; width: var(--bar-width, 50%);
  border-radius: inherit; background: linear-gradient(90deg, var(--yellow), #ff8f1f);
  animation: pulseBar 4s ease-in-out infinite;
}
.bar span { position: relative; z-index: 2; color: #121212; }
.bar-1 { --bar-width: 34%; }
.bar-2 { --bar-width: 63%; }
.bar-3 { --bar-width: 92%; }

.equipment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.equipment-card { position: relative; overflow: hidden; padding: 34px; }
.equipment-glow {
  position: absolute; width: 180px; height: 180px; border-radius: 50%;
  background: rgba(244,197,66,.14); top: -70px; right: -40px; filter: blur(25px);
}
.equipment-card ul { list-style: none; display: grid; gap: 10px; }
.equipment-card li::before { content: '•'; color: var(--yellow); margin-right: 10px; }

.steps-grid { grid-template-columns: repeat(4, 1fr); }
.step { padding: 28px; }
.step span { display: inline-block; margin-bottom: 18px; font-size: 44px; font-weight: 900; color: var(--yellow); }

.cta-band { padding-top: 30px; }
.cta-box {
  border-radius: 36px; padding: 38px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; align-items: center;
  background: linear-gradient(135deg, var(--yellow), #ef9f24); color: #111; box-shadow: 0 20px 60px rgba(244,197,66,.18);
}
.section-kicker.dark { color: rgba(17,17,17,.72); }

.contact-grid { align-items: start; }
.contact-form-wrap p { margin-bottom: 24px; }
.contact-form { padding: 26px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; background: rgba(255,255,255,.04); color: white; border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px; padding: 16px 18px; outline: none;
  transition: border-color .25s ease, transform .25s ease, background .25s ease; margin-bottom: 14px;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #91a0b5; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--yellow); background: rgba(255,255,255,.07); transform: translateY(-1px);
}
.contact-side { display: grid; gap: 20px; }
.contact-card { padding: 30px; }
.contact-card ul { list-style: none; display: grid; gap: 14px; }

.form-status {
  margin-top: 6px;
  color: var(--muted);
  min-height: 24px;
}

.map-box {
  border-radius: 28px; border: 1px solid rgba(255,255,255,.1); overflow: hidden; box-shadow: var(--shadow);
}
.map-box iframe {
  width: 100%; height: 420px; border: 0; display: block; filter: grayscale(.1) contrast(1.05) saturate(.9);
}

.footer { border-top: 1px solid rgba(255,255,255,.08); padding: 28px 0; }
.footer-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--muted);
}
.footer-links { display: flex; gap: 18px; }

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), #f0a91e);
  color: #121212;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(244, 197, 66, .24);
}

.reveal {
  opacity: 0; transform: translate3d(0, 34px, 0);
  transition: opacity .9s cubic-bezier(.2,.65,.2,1), transform .9s cubic-bezier(.2,.65,.2,1);
  will-change: transform, opacity;
}
.reveal.show, .reveal.visible { opacity: 1; transform: translate3d(0, 0, 0); }
.fade-left { transform: translate3d(-40px, 0, 0); }
.fade-right { transform: translate3d(40px, 0, 0); }
.zoom-in { transform: scale(.9); }
.scale-in { transform: scale(.92); }
.reveal.show.fade-left, .reveal.show.fade-right, .reveal.show.zoom-in, .reveal.show.scale-in {
  transform: translate3d(0,0,0) scale(1);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.floating { animation: float 5s ease-in-out infinite; }
.tilt { transform-style: preserve-3d; transition: transform .18s ease, box-shadow .18s ease; }
.magnetic { position: relative; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(73,209,125,.6); }
  80% { box-shadow: 0 0 0 14px rgba(73,209,125,0); }
  100% { box-shadow: 0 0 0 0 rgba(73,209,125,0); }
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes drift { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(18px, -18px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes loadBar { 0%, 100% { transform: translateX(-3%); } 50% { transform: translateX(3%); } }
@keyframes pulseBar { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.08); } }

@media (max-width: 1100px) {
  .hero-wrap, .split-grid, .contact-grid, .cta-box { grid-template-columns: 1fr; }
  .cards-grid, .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { max-width: 14ch; }
}
@media (max-width: 820px) {
  .menu, .nav > .btn { display: none; }
  .burger { display: block; }
  .cards-grid, .equipment-grid, .steps-grid, .hero-stats, .field-row { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 40px; }
  .section { padding: 86px 0; }
  .visual-card, .card, .step, .equipment-card, .contact-card, .contact-form, .fleet-box, .cta-box {
    border-radius: 24px;
  }
  .transport-line { grid-template-columns: 1fr; gap: 8px; }
  .cta-actions, .hero-actions, .footer-wrap, .footer-links { flex-direction: column; align-items: stretch; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 20px, 1180px); }
  .hero h1, .section-head h2, .split-grid h2, .contact-form-wrap h2, .cta-box h2 { font-size: 34px; }
  .hero-text, .section-head p, .split-text, .cta-box p, .contact-form-wrap p { font-size: 16px; }
  .btn { width: 100%; }
  .floating-call { left: 10px; right: 10px; bottom: 10px; text-align: center; }
}
