:root{
  --bg:#0f1113;
  --panel:#15181b;
  --panel2:#1b1f23;
  --text:#e7e9ec;
  --muted:#aab2bd;
  --line:#2a3138;
  --yellow:#ffd200;
  --yellow2:#ffbf00;
  --black:#000;
  --ok:#2bd576;
  --warn:#ff9f1c;
  --bad:#ff3b3b;

  --radius:18px;
  --radius2:28px;
  --shadow:0 14px 40px rgba(0,0,0,.45);
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
  background:radial-gradient(1200px 600px at 20% -10%, rgba(255,210,0,.10), transparent 60%),
             radial-gradient(1000px 500px at 100% 0%, rgba(255,210,0,.08), transparent 55%),
             var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{width:min(var(--max), 92vw); margin:0 auto}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:16px; top:16px; width:auto; height:auto; padding:10px 14px;
  background:var(--yellow); color:#111; border-radius:12px; z-index:9999;
}

.topbar{
  border-bottom:1px solid var(--line);
  background:linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.25));
  position:sticky; top:0; z-index:90;
  backdrop-filter: blur(10px);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width:220px;
}
.brand .mark{
  width:44px; height:44px; border-radius:14px;
  background:
    linear-gradient(135deg, rgba(255,210,0,.9), rgba(255,210,0,.2)),
    repeating-linear-gradient(90deg, rgba(0,0,0,.75) 0 8px, rgba(0,0,0,.0) 8px 16px);
  border:1px solid rgba(255,210,0,.35);
  box-shadow:0 10px 26px rgba(0,0,0,.45);
}
.brand .name{display:flex; flex-direction:column}
.brand strong{letter-spacing:.2px}
.brand span{font-size:12px; color:var(--muted)}

.menu{
  display:flex; align-items:center; gap:14px; flex-wrap:wrap;
}
.menu a{
  font-size:14px;
  padding:10px 12px;
  border-radius:12px;
  color:var(--text);
  border:1px solid transparent;
}
.menu a:hover{
  border-color:rgba(255,210,0,.25);
  background:rgba(255,210,0,.07);
}
.menu a.active{
  border-color:rgba(255,210,0,.35);
  background:rgba(255,210,0,.09);
}

.nav-cta{
  display:flex; align-items:center; gap:10px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:14px;
  font-weight:650;
  letter-spacing:.2px;
  border:1px solid rgba(255,210,0,.35);
  background:linear-gradient(180deg, rgba(255,210,0,.96), rgba(255,191,0,.86));
  color:#141414;
  box-shadow:0 14px 30px rgba(0,0,0,.35);
}
.btn:hover{filter:saturate(1.08) brightness(1.02)}
.btn.ghost{
  background:transparent;
  color:var(--text);
  border:1px solid rgba(255,210,0,.25);
  box-shadow:none;
}
.btn.ghost:hover{
  background:rgba(255,210,0,.08);
  border-color:rgba(255,210,0,.35);
}

.burger{
  display:none;
  width:44px; height:44px; border-radius:14px;
  border:1px solid rgba(255,210,0,.25);
  background:rgba(255,210,0,.06);
  color:var(--text);
}

.hero{
  padding:34px 0 10px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}
.hero-card{
  border-radius:var(--radius2);
  border:1px solid rgba(255,210,0,.18);
  background:
    linear-gradient(180deg, rgba(255,210,0,.08), rgba(0,0,0,.0)),
    linear-gradient(180deg, rgba(21,24,27,.94), rgba(12,14,16,.92));
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero-media{
  min-height:420px;
  background:
    radial-gradient(600px 280px at 60% 25%, rgba(255,210,0,.18), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.70)),
    url("../assets/img/hero-truck.jpg") center/cover no-repeat;
}
.hero-content{
  padding:26px 26px 22px;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-size:12px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--muted);
}
.kicker i{
  width:10px; height:10px; border-radius:4px;
  background:var(--yellow);
  box-shadow:0 0 0 4px rgba(255,210,0,.14);
}
h1{
  margin:12px 0 10px;
  font-size:40px;
  line-height:1.08;
  letter-spacing:-.02em;
}
.lead{
  margin:0 0 16px;
  font-size:16px;
  color:#cfd6df;
}
.hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

.hero-side{
  border-radius:var(--radius2);
  border:1px solid rgba(255,210,0,.14);
  background:linear-gradient(180deg, rgba(27,31,35,.9), rgba(14,16,18,.92));
  box-shadow:var(--shadow);
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.badge{
  display:flex; align-items:flex-start; gap:12px;
  border:1px solid rgba(255,210,0,.14);
  background:rgba(0,0,0,.22);
  border-radius:16px;
  padding:12px;
}
.badge .dot{
  width:12px; height:12px; border-radius:6px;
  background:var(--yellow);
  margin-top:4px;
}
.badge strong{display:block}
.badge span{display:block; color:var(--muted); font-size:13px; margin-top:2px}
.mini{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.stat{
  padding:12px;
  border-radius:16px;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,210,0,.12);
}
.stat b{font-size:22px; display:block}
.stat small{color:var(--muted)}

.section{
  padding:26px 0;
}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:16px;
  margin-bottom:14px;
}
.section-head h2{
  margin:0;
  font-size:26px;
  letter-spacing:-.01em;
}
.section-head p{margin:0; color:var(--muted); max-width:62ch}

.grid{
  display:grid;
  gap:14px;
}
.grid-3{grid-template-columns:repeat(3, 1fr)}
.grid-2{grid-template-columns:repeat(2, 1fr)}
.card{
  border-radius:var(--radius);
  border:1px solid rgba(255,210,0,.12);
  background:linear-gradient(180deg, rgba(21,24,27,.88), rgba(12,14,16,.92));
  box-shadow:0 12px 28px rgba(0,0,0,.35);
  padding:16px;
}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0; color:var(--muted)}
.card ul{margin:10px 0 0; padding-left:18px; color:#cfd6df}
.card li{margin:6px 0}

.pills{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.pill{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,210,0,.16);
  background:rgba(255,210,0,.06);
  color:#dfe5ec;
}

.hr{
  height:1px; background:linear-gradient(90deg, transparent, rgba(255,210,0,.22), transparent);
  margin:12px 0;
}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid rgba(255,210,0,.12);
  background:rgba(0,0,0,.22);
}
.table th, .table td{
  padding:12px 12px;
  border-bottom:1px solid rgba(255,210,0,.08);
  vertical-align:top;
  text-align:left;
  font-size:14px;
}
.table th{color:#f2f2f2; background:rgba(255,210,0,.06)}
.table tr:last-child td{border-bottom:none}
.table td{color:#d6dde6}

.form{
  display:grid;
  gap:10px;
}
.field{
  display:grid;
  gap:6px;
}
label{font-size:13px; color:#d8dee6}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,210,0,.18);
  background:rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}
textarea{min-height:110px; resize:vertical}
input:focus, textarea:focus, select:focus{
  border-color:rgba(255,210,0,.36);
  box-shadow:0 0 0 4px rgba(255,210,0,.12);
}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:10px}
.hint{font-size:12px; color:var(--muted)}
.notice{
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(255,210,0,.14);
  background:rgba(255,210,0,.06);
  color:#dbe2ea;
}

.breadcrumbs{
  font-size:13px;
  color:var(--muted);
  padding:16px 0 0;
}
.breadcrumbs a{color:#dfe5ec}
.breadcrumbs a:hover{color:var(--yellow)}

.footer{
  margin-top:22px;
  border-top:1px solid var(--line);
  background:rgba(0,0,0,.25);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:14px;
  padding:18px 0;
}
.footer h4{margin:0 0 8px}
.footer p, .footer a{color:var(--muted); font-size:14px}
.footer a:hover{color:#dfe5ec}
.footer-bottom{
  border-top:1px solid rgba(255,210,0,.10);
  padding:12px 0;
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}

.cookiebar{
  position:fixed;
  left:16px; right:16px; bottom:16px;
  border-radius:20px;
  border:1px solid rgba(255,210,0,.18);
  background:linear-gradient(180deg, rgba(21,24,27,.92), rgba(12,14,16,.94));
  box-shadow:var(--shadow);
  padding:12px;
  display:none;
  z-index:120;
}
.cookiebar .row{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.cookiebar p{margin:0; color:#d2d9e2; font-size:13px}
.cookiebar .actions{display:flex; gap:10px; flex-wrap:wrap}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .hero-media{min-height:340px}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .burger{display:inline-flex; align-items:center; justify-content:center}
  .menu{
    display:none;
    width:100%;
    padding:10px;
    border:1px solid rgba(255,210,0,.12);
    border-radius:16px;
    background:rgba(0,0,0,.22);
  }
  .menu.open{display:flex}
}

.hero-media{
  min-height:420px;
  position:relative;
  overflow:hidden;
  background: radial-gradient(600px 280px at 60% 25%, rgba(255,210,0,.18), transparent 60%),
              linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.72));
}
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: contrast(1.05) saturate(1.05);
  transform: scale(1.02);
}
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background:
    repeating-linear-gradient(135deg,
      rgba(0,0,0,.0) 0 18px,
      rgba(0,0,0,.18) 18px 36px),
    radial-gradient(700px 320px at 25% 10%, rgba(255,210,0,.16), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.72));
  pointer-events:none;
}

.ops{
  padding-top:18px;
}
.ops-head{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:start;
  margin-bottom:14px;
}
.ops-title{
  margin:10px 0 8px;
  font-size:28px;
  letter-spacing:-.01em;
}
.ops-sub{
  margin:0;
  color:var(--muted);
  max-width:74ch;
}

.ops-counters{
  display:grid;
  gap:10px;
}
.ops-counter{
  border-radius:18px;
  border:1px solid rgba(255,210,0,.14);
  background:
    linear-gradient(180deg, rgba(255,210,0,.06), rgba(0,0,0,.0)),
    rgba(0,0,0,.22);
  padding:12px;
  position:relative;
  overflow:hidden;
}
.ops-counter::after{
  content:"";
  position:absolute; inset:-40px -60px auto auto;
  width:160px; height:160px;
  background: radial-gradient(circle, rgba(255,210,0,.22), transparent 60%);
  transform: rotate(12deg);
  pointer-events:none;
}
.ops-counter b{
  display:block;
  font-size:28px;
  letter-spacing:-.02em;
  color:var(--yellow);
}
.ops-counter small{color:var(--muted)}

.ops-strip{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:10px;
  margin:14px 0;
  padding:12px;
  border-radius:22px;
  border:1px solid rgba(255,210,0,.14);
  background:
    repeating-linear-gradient(135deg, rgba(255,210,0,.06) 0 10px, rgba(0,0,0,.0) 10px 20px),
    rgba(0,0,0,.22);
  box-shadow:0 14px 34px rgba(0,0,0,.35);
}
.ops-chip{
  border-radius:18px;
  border:1px solid rgba(255,210,0,.12);
  background:linear-gradient(180deg, rgba(21,24,27,.92), rgba(12,14,16,.94));
  padding:12px;
  display:grid;
  gap:4px;
  position:relative;
}
.ops-chip b{font-size:14px}
.ops-chip em{
  font-style:normal;
  font-size:12px;
  color:var(--muted);
}
.ops-led{
  width:10px; height:10px; border-radius:6px;
  background:var(--yellow);
  box-shadow:0 0 0 4px rgba(255,210,0,.12);
  display:inline-block;
  margin-bottom:6px;
}

.ops-grid .ops-card{padding:16px}
.ops-timeline{
  display:grid;
  gap:10px;
  margin-top:10px;
}
.ops-step{
  display:grid;
  grid-template-columns: 56px 1fr;
  gap:10px;
  padding:10px;
  border-radius:16px;
  border:1px solid rgba(255,210,0,.10);
  background:rgba(0,0,0,.20);
}
.ops-step-n{
  width:56px; height:56px;
  border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  background:
    linear-gradient(180deg, rgba(255,210,0,.92), rgba(255,191,0,.74));
  color:#141414;
  font-weight:800;
  letter-spacing:.06em;
}
.ops-step b{display:block; margin-bottom:2px}
.ops-step p{margin:0; color:#cfd6df; font-size:13px}

@media (max-width: 980px){
  .ops-head{grid-template-columns:1fr}
  .ops-strip{grid-template-columns:1fr}
}

/* ===== Header logo ===== */
.logo{
  width:44px; height:44px;
  border-radius:14px;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,210,0,.28);
  background:rgba(255,210,0,.06);
  box-shadow:0 10px 26px rgba(0,0,0,.45);
}
.logo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* якщо десь лишилась стара .mark — можна сховати або не використовувати */
.brand{gap:12px}
.brand strong{line-height:1.1}

/* ===== Burger button (nice icon) ===== */
.burger{
  display:none;
  width:46px; height:46px;
  border-radius:14px;
  border:1px solid rgba(255,210,0,.25);
  background:rgba(255,210,0,.06);
  color:var(--text);
  position:relative;
}
.burger-lines{
  width:22px; height:14px;
  position:relative;
  display:block;
}
.burger-lines::before,
.burger-lines::after,
.burger-lines{
  background:transparent;
}
.burger-lines::before,
.burger-lines::after{
  content:"";
  position:absolute;
  left:0; right:0;
  height:2px;
  border-radius:2px;
  background:rgba(231,233,236,.95);
  box-shadow:0 8px 0 rgba(231,233,236,.95);
  top:2px;
}
.burger-lines::after{
  box-shadow:none;
  top:auto;
  bottom:0;
}

/* ===== Backdrop ===== */
.nav-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.62);
  backdrop-filter: blur(6px);
  z-index:95;
}

/* Desktop CTA visible only on desktop */
.nav-cta-desktop{display:flex}

/* ===== Mobile drawer menu ===== */
.menu-head{
  display:none;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 12px 10px;
  border-bottom:1px solid rgba(255,210,0,.12);
  margin-bottom:10px;
}
.menu-title{
  font-weight:800;
  letter-spacing:.02em;
}
.menu-close{
  width:42px; height:42px;
  border-radius:14px;
  border:1px solid rgba(255,210,0,.18);
  background:rgba(255,210,0,.06);
  color:var(--text);
  cursor:pointer;
}

.menu-cta{
  display:none;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(255,210,0,.10);
}

/* ===== Responsive behavior ===== */
@media (max-width: 980px){
  .burger{display:inline-flex; align-items:center; justify-content:center}
  .nav-cta-desktop{display:none}

  /* drawer */
  .menu{
    display:block;             /* керуємо видимістю transform-ом, не display */
    position:fixed;
    top:12px;
    right:12px;
    width:min(92vw, 360px);
    max-height: calc(100vh - 24px);
    overflow:auto;
    padding:10px;
    border:1px solid rgba(255,210,0,.16);
    border-radius:20px;
    background:linear-gradient(180deg, rgba(21,24,27,.96), rgba(12,14,16,.96));
    box-shadow:0 22px 60px rgba(0,0,0,.55);
    z-index:100;

    transform: translateX(110%);
    transition: transform .22s ease;
  }

  .menu.open{ transform: translateX(0) }

  .menu-head{display:flex}
  .menu a{
    display:block;
    padding:12px 12px;
    border-radius:14px;
    border:1px solid rgba(255,210,0,.10);
    background:rgba(0,0,0,.22);
  }
  .menu a:hover{background:rgba(255,210,0,.08)}
  .menu-cta{display:flex}
}

/* Lock scroll when menu open */
body.nav-open{
  overflow:hidden;
}

.notice.is-error{
  border-color: rgba(255,59,59,.45);
  background: rgba(255,59,59,.08);
}
.notice.is-success{
  border-color: rgba(43,213,118,.45);
  background: rgba(43,213,118,.08);
}
.field .err{
  font-size:12px;
  color: rgba(255,59,59,.95);
  margin-top:2px;
}

/* ===== Cookiebar mobile adaptive ===== */
@media (max-width: 520px){
  .cookiebar{
    left:12px;
    right:12px;
    bottom:12px;
    padding:12px;
    border-radius:18px;
  }

  .cookiebar .row{
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }

  .cookiebar p{
    font-size:13px;
    line-height:1.45;
  }

  .cookiebar .actions{
    width:100%;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:10px;
  }

  .cookiebar .actions .btn{
    width:100%;
    justify-content:center;
    padding:12px 12px;
  }
}

/* супер-вузькі екрани: кнопки в стовпчик */
@media (max-width: 360px){
  .cookiebar .actions{
    grid-template-columns: 1fr;
  }
}
