:root {
  --bg: #050505;
  --panel: #111111;
  --panel-2: #171717;
  --text: #f3f3f3;
  --muted: #c9c9c9;
  --red: #d90c0c;
  --red-2: #aa0000;
  --border: rgba(255,255,255,0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}

nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

nav a {
  color: var(--muted);
}

nav a:hover {
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.93), rgba(25,0,0,0.9)),
    radial-gradient(circle at top right, rgba(217,12,12,0.28), transparent 35%);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 32px;
  align-items: center;
  padding: 96px 0;
}

.eyebrow,
.section-tag {
  color: #ff5d5d;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.84rem;
}

h1, h2, h3 {
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 18px;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 760px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.2s ease;
}

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

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: #f01414;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.42);
}

.hero-card,
.stats-box,
.card,
.contact-box,
.cta-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 20px;
}

.hero-card {
  padding: 28px;
}

.hero-card ul,
.check-list {
  margin: 0;
  padding-left: 18px;
}

.section {
  padding: 82px 0;
}

.section.dark {
  background: var(--panel);
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.stats-box {
  padding: 26px;
  display: grid;
  gap: 16px;
}

.stat {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.stat span,
.card p,
.contact-box p,
.section p {
  color: var(--muted);
}

.cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  padding: 24px;
}

.contact-box {
  padding: 28px;
}

.cta {
  padding: 0 0 82px;
}

.cta-box {
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  background: #020202;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #b4b4b4;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  .cards,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .cta-box {
    display: block;
  }

  .nav {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.1rem;
  }

  .hero-grid {
    padding: 70px 0;
  }

  .section {
    padding: 64px 0;
  }

  .brand span {
    font-size: 0.95rem;
  }

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


.legal-hero {
  padding-bottom: 24px;
}

.legal-wrap {
  max-width: 900px;
}

.legal-card {
  max-width: 900px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

.legal-card h2 {
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-list {
  padding-left: 22px;
  color: var(--muted);
}

.legal-list li {
  margin-bottom: 8px;
}

.highlight-box,
.sample-box,
.contact-mini {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}

.highlight-box {
  color: #fff;
  border-left: 4px solid var(--red);
}

.sample-box p:last-child,
.contact-mini p:last-child {
  margin-bottom: 0;
}

.footer-links-row {
  align-items: center;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
}

.footer-links a:hover {
  color: #ff6d6d;
}

.small-note {
  font-size: 0.95rem;
}


.footer-simple {
  padding: 26px 0;
  background: #060606;
}

.footer-simple-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #f5f5f5;
}

.simple-links {
  gap: 30px;
}

.simple-links a {
  color: #d8d8d8;
}

.simple-links a:hover {
  color: #fff;
}

.form-section {
  padding-top: 16px;
}

.app-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 28px;
  align-items: start;
}

.form-card {
  max-width: none;
}

.driver-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-grid .full-width {
  grid-column: 1 / -1;
}

.driver-form select option {
  background: #1a1a1a;
  color: #fff;
}

.driver-form input[type="text"],
.driver-form input[type="email"],
.driver-form input[type="tel"],
.driver-form input[type="number"],
.driver-form input[type="file"],
.driver-form select,
.driver-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: #fff;
  padding: 14px 15px;
  font: inherit;
}

.driver-form input::placeholder,
.driver-form textarea::placeholder {
  color: #a7a7a7;
}

.driver-form textarea {
  resize: vertical;
}

.form-subtitle {
  margin-top: 34px;
  margin-bottom: 10px;
}

.form-note {
  color: var(--muted);
  margin-top: 0;
}

.upload-grid {
  margin-top: 18px;
}

.checks-wrap {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.checkbox-row {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400 !important;
  color: var(--muted);
}

.checkbox-row input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
}

.form-actions {
  margin-top: 24px;
}

.status-box {
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-weight: 700;
}

.success-box {
  background: rgba(39, 174, 96, 0.12);
  border: 1px solid rgba(39, 174, 96, 0.45);
  color: #dff9e8;
}

.error-box {
  background: rgba(217, 12, 12, 0.12);
  border: 1px solid rgba(217, 12, 12, 0.45);
  color: #ffe3e3;
}

.sticky-box {
  position: sticky;
  top: 108px;
}

@media (max-width: 900px) {
  .app-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-simple-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
