:root {
  color-scheme: light;
  --navy-950: #061426;
  --navy-900: #0a1c33;
  --navy-800: #0f2b4c;
  --navy-700: #143b68;
  --steel-50: #f6f8fb;
  --steel-100: #e9eef5;
  --steel-200: #d6e0ea;
  --white: #ffffff;
  --green-50: #ecfdf3;
  --green-800: #166534;
  --red-50: #fef2f2;
  --red-700: #b91c1c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--steel-50);
  color: var(--navy-950);
  font-family: Arial, Helvetica, sans-serif;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--steel-200);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--navy-950);
  background: var(--white);
}

textarea {
  min-height: 112px;
  resize: vertical;
}

label span {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy-800);
}

button,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 6px;
  padding: 9px 16px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

button:hover,
.button:hover {
  background: var(--navy-800);
}

.button.light {
  border: 1px solid var(--steel-200);
  background: var(--white);
  color: var(--navy-900);
}

.hero {
  background: var(--navy-950);
  color: var(--white);
}

.hero-inner {
  max-width: 1180px;
  min-height: 360px;
  margin: 0 auto;
  padding: 34px 24px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  color: #cbd5e1;
}

.eyebrow.dark {
  color: var(--navy-700);
}

h1 {
  margin: 8px 0 0;
  font-size: 38px;
  line-height: 1.1;
}

h2 {
  margin: 0 0 14px;
  font-size: 17px;
}

.hero-copy {
  max-width: 560px;
  color: #e2e8f0;
  line-height: 1.65;
}

.badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
  color: #e2e8f0;
  font-size: 14px;
}

.hero-image {
  min-height: 270px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(6, 20, 38, 0.15), rgba(6, 20, 38, 0.55)),
    url("/logistics-hero.png") center / cover;
  box-shadow: 0 18px 50px rgba(6, 20, 38, 0.22);
}

.page,
.admin-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 24px;
}

.form-grid,
.stack {
  display: grid;
  gap: 18px;
}

.panel {
  border: 1px solid var(--steel-200);
  border-radius: 6px;
  background: var(--white);
  padding: 18px;
  box-shadow: 0 18px 50px rgba(6, 20, 38, 0.12);
}

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

.four,
.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--steel-200);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
}

.choice input,
.check input {
  width: auto;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 9px;
  font-size: 14px;
}

.honeypot {
  display: none;
}

.action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.strong {
  margin: 0 0 4px;
  font-weight: 800;
}

.alert {
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 14px;
}

.error {
  border: 1px solid #fecaca;
  background: var(--red-50);
  color: var(--red-700);
  font-weight: 700;
}

.success {
  border: 1px solid #bbf7d0;
  background: var(--green-50);
  color: var(--green-800);
}

.price {
  margin: 8px 0 2px;
  font-size: 28px;
  font-weight: 900;
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  padding: 70px 20px;
}

.login {
  width: min(390px, 100%);
  display: grid;
  gap: 16px;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.filters {
  display: grid;
  grid-template-columns: 1fr 220px 120px;
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--steel-200);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(6, 20, 38, 0.12);
}

table {
  width: 100%;
  min-width: 1000px;
  border-collapse: collapse;
  font-size: 14px;
}

th,
td {
  padding: 12px;
  border-top: 1px solid var(--steel-100);
  text-align: left;
}

thead th {
  border-top: 0;
  background: var(--steel-50);
  color: var(--navy-800);
  font-size: 12px;
  text-transform: uppercase;
}

.empty {
  padding: 22px;
  color: var(--navy-700);
}

@media (max-width: 760px) {
  .hero-inner,
  .two,
  .four,
  .choice-grid,
  .filters {
    grid-template-columns: 1fr;
  }

  .hero-image {
    display: none;
  }

  .badges {
    grid-template-columns: 1fr;
  }

  .action,
  .admin-header {
    align-items: stretch;
    flex-direction: column;
  }
}
