:root {
  --bg: #0a1222;
  --bg-soft: #eef3ff;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: #cdeee2;
  --primary: #10b981;
  --primary-2: #059669;
  --accent: #f59e0b;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Public Sans", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg-soft);
  line-height: 1.5;
}

.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 56px 0; }
h1,h2,h3 { line-height: 1.2; margin: 0 0 14px; }
h1 { font-size: clamp(30px, 6vw, 52px); }
h2 { font-size: clamp(24px, 4vw, 36px); }
h3 { font-size: clamp(18px, 2.8vw, 24px); }
p { margin: 0 0 10px; }
a { color: inherit; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-2); }
.btn--soft { background: #dcfce7; color: #065f46; border-color: #a7f3d0; }
.btn--ghost { background: rgba(16,185,129,.18); color: #ecfdf5; border-color: rgba(167,243,208,.55); }

.hero {
  color: #fff;
  padding: 20px 0 74px;
  background:
    radial-gradient(78% 60% at 85% 10%, rgba(16,185,129,.28) 0%, transparent 70%),
    linear-gradient(130deg, rgba(4,20,18,.95) 0%, rgba(8,45,39,.92) 55%, rgba(13,71,56,.9) 100%),
    url("../images/hero-driver-road.webp") center/cover no-repeat;
}
.topbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.logo { width: min(100%, 260px); height: auto; }
.hero__content { margin-top: 52px; max-width: 760px; }
.hero__domain { color: #a7f3d0; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero__subtitle { color: #d1fae5; max-width: 680px; }
.hero__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }

.trust__grid,
.features__grid,
.reviews__grid,
.contacts__grid,
.footer__grid {
  display: grid;
  gap: 14px;
}

.trust__grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.trust__grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.trust__grid strong { display: block; color: #065f46; font-size: 30px; }
.trust__grid span { color: var(--muted); }

.features__grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.features__grid article,
.vacancy-card,
.reviews__grid article,
.form-card,
.offer__box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.vacancy-card { margin-bottom: 14px; }
.vacancy-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.vacancy-body { display: none; margin-top: 12px; border-top: 1px dashed #c9d5ff; padding-top: 12px; }
.vacancy-card.is-open .vacancy-body { display: block; }

.offer__box {
  background: linear-gradient(135deg, #065f46 0%, #10b981 70%);
  color: #fff;
}

.steps ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.steps li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}

.faq__list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.faq__list summary { cursor: pointer; font-weight: 700; }

.contacts__grid { grid-template-columns: 1fr; }
.form-card form { display: grid; gap: 12px; }
.form-card label { display: grid; gap: 6px; font-weight: 600; }
.form-card input,
.form-card select {
  width: 100%;
  border: 1px solid #a7f3d0;
  border-radius: 10px;
  min-height: 44px;
  padding: 10px 12px;
  font: inherit;
}
.consent { display: flex !important; align-items: flex-start; gap: 8px; font-weight: 500 !important; }
.consent input { width: 18px; min-height: 18px; margin-top: 2px; }

.status { padding: 10px 12px; border-radius: 10px; margin-bottom: 10px; font-weight: 600; }
.status.success { background: #dcfce7; color: #14532d; border: 1px solid #86efac; }
.status.error { background: #fee2e2; color: #7f1d1d; border: 1px solid #fca5a5; }

.footer {
  background: #06281f;
  color: #d1fae5;
  padding: 28px 0;
}
.footer nav { display: flex; flex-wrap: wrap; gap: 10px 14px; }
.footer a { color: #a7f3d0; text-decoration: none; }
.footer__meta p { margin: 4px 0; color: #d1fae5; }

.simple-page { padding: 34px 0; }
.page-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 20px;
}
.policy-content h2 { margin-top: 18px; }

@media (min-width: 840px) {
  .contacts__grid { grid-template-columns: 1fr 1.15fr; }
  .footer__grid { grid-template-columns: auto 1fr auto; align-items: center; }
}