:root {
  --bg: #eef7ff;
  --surface: #ffffff;
  --surface-alt: #dff0ff;
  --text: #10233d;
  --muted: #4e6682;
  --primary: #32b3ff;
  --primary-dark: #0d4f8b;
  --navy: #08233f;
  --border: rgba(16, 35, 61, 0.12);
  --shadow: 0 20px 60px rgba(25, 83, 131, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(50, 179, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #f8fcff 0%, var(--bg) 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(248, 252, 255, 0.85);
  border-bottom: 1px solid rgba(16, 35, 61, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand-logo {
  width: 124px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  gap: 22px;
  font-weight: 600;
  color: var(--muted);
}

.hero {
  padding: 78px 0 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--primary-dark);
  background: rgba(50, 179, 255, 0.14);
  border: 1px solid rgba(50, 179, 255, 0.18);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1, h2, h3 { margin-top: 0; }
h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.02;
  margin-bottom: 18px;
}

.hero-text,
.section-heading p,
.card p,
.coverage-box,
.quote-form,
.contact-card p,
.quote-copy p,
.truck-panel p,
.hero-badges span,
.mini-card {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #80d4ff 100%);
  color: #072849;
  box-shadow: 0 14px 40px rgba(50, 179, 255, 0.28);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--primary-dark);
}

.btn-full { width: 100%; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row span {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.hero-card,
.card,
.coverage-box,
.quote-form,
.truck-panel,
.mini-card {
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 18px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.hero-badges div {
  background: linear-gradient(180deg, rgba(223,240,255,0.8), rgba(255,255,255,0.9));
  border: 1px solid rgba(16,35,61,0.08);
  border-radius: 18px;
  padding: 14px;
}

.hero-badges strong,
.mini-card strong,
.panel-tag {
  display: block;
  color: var(--navy);
}

.section {
  padding: 34px 0 72px;
}
.section-alt {
  background: linear-gradient(180deg, rgba(223, 240, 255, 0.48), rgba(255,255,255,0));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.card-grid {
  display: grid;
  gap: 22px;
}

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

.card,
.coverage-box,
.truck-panel,
.mini-card {
  padding: 26px;
}

.card h3,
.coverage-box h3,
.truck-panel h3 {
  font-size: 1.24rem;
  margin-bottom: 10px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.feature-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li,
.check-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(16, 35, 61, 0.08);
  font-weight: 700;
}

.fleet-visual {
  display: grid;
  gap: 18px;
}

.truck-panel {
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.truck-panel::before {
  content: "";
  position: absolute;
  inset: auto -30px -20px auto;
  width: 260px;
  height: 160px;
  border-radius: 28px;
  opacity: 0.85;
}

.reefer-panel {
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(210,237,255,0.92));
}

.reefer-panel::before {
  background: radial-gradient(circle at center, rgba(50,179,255,0.35), rgba(50,179,255,0.03));
}

.dry-panel {
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(227,244,255,0.88));
}

.dry-panel::before {
  background: radial-gradient(circle at center, rgba(13,79,139,0.22), rgba(13,79,139,0.03));
}

.panel-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  color: var(--primary-dark);
}

.coverage-grid,
.quote-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.quote-copy {
  align-self: center;
}

.mini-cards {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.mini-card a {
  display: block;
  color: var(--primary-dark);
  font-weight: 700;
}

.quote-form {
  padding: 28px;
}

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

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 700;
  color: var(--text);
}

input, select, textarea {
  width: 100%;
  border: 1px solid rgba(16, 35, 61, 0.12);
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
}

textarea { resize: vertical; min-height: 140px; margin-bottom: 18px; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(50, 179, 255, 0.18);
}

.contact-card a {
  color: var(--primary-dark);
  font-weight: 800;
}

.site-footer {
  padding: 26px 0 36px;
  border-top: 1px solid rgba(16, 35, 61, 0.08);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 940px) {
  .hero-grid,
  .fleet-grid,
  .coverage-grid,
  .quote-layout,
  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 52px;
  }

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

  h1 {
    font-size: 2.4rem;
  }

  .btn,
  .btn-full {
    width: 100%;
  }
}
