:root {
  --ink: #101928;
  --muted: #667085;
  --line: #d8e1eb;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --dark: #07111f;
  --blue: #1464f4;
  --cyan: #29c7d8;
  --gold: #ffb545;
  --green: #16b364;
  --radius: 26px;
  --shadow: 0 24px 70px rgba(16, 25, 40, 0.16);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.74);
  color: #ffffff;
  box-shadow: 0 18px 50px rgba(7, 17, 31, 0.22);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 31, 0.92);
  box-shadow: 0 18px 60px rgba(7, 17, 31, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 900;
  letter-spacing: -0.05em;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a,
.site-header .header-cta {
  transition: color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-header .header-cta:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--dark);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.section {
  padding: 110px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  color: #ffffff;
  background: var(--dark);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  align-items: center;
  padding: 150px 0 90px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.92) 0%, rgba(7, 17, 31, 0.68) 42%, rgba(7, 17, 31, 0.18) 100%),
    url("assets/quickcare-hero-van.png") center / cover;
  transform: scale(1.04);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    radial-gradient(circle at 18% 34%, rgba(41, 199, 216, 0.28), transparent 24rem),
    radial-gradient(circle at 75% 78%, rgba(20, 100, 244, 0.18), transparent 22rem);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.section-dark p,
.hero-subtitle {
  color: rgba(255, 255, 255, 0.76);
}

.hero-subtitle {
  max-width: 760px;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(20, 100, 244, 0.3);
}

.btn-secondary {
  background: #ffffff;
  color: var(--dark);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-card,
.stats-card,
.service-card,
.form-card,
.testimonial,
.contact-card,
.driver-form,
.vehicle-card {
  border: 1px solid rgba(216, 225, 235, 0.78);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-card p,
.hero-card strong,
.metric-row {
  color: #ffffff;
}

.hero-card strong {
  display: block;
  margin-bottom: 22px;
  font-size: 1.55rem;
  line-height: 1.14;
}

.status-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(22, 179, 100, 0.16);
}

.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-strip {
  padding: 22px 0;
  background: var(--dark);
  color: #ffffff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-grid span {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.split,
.choose-grid,
.form-grid,
.careers-grid,
.compliance-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 64px;
}

.reverse > :first-child {
  order: 2;
}

.section-copy p {
  font-size: 1.05rem;
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
}

.stats-card div {
  min-height: 170px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.06em;
}

.stats-card span,
.vehicle-specs p {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 80px rgba(16, 25, 40, 0.2);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -56px;
  bottom: -56px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(20, 100, 244, 0.09);
}

.service-card span {
  color: var(--blue);
  font-weight: 900;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  color: var(--muted);
}

.service-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--green);
  font-weight: 900;
}

.image-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.1fr;
  min-height: 420px;
  background: var(--dark);
}

.image-band img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.fleet-panel {
  padding: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--dark), #0f2d52);
  color: #ffffff;
}

.fleet-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-list,
.tech-list,
.benefit-grid,
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.feature-list span,
.tech-list span,
.benefit-grid span,
.industry-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 15px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(16, 25, 40, 0.08);
}

.feature-list.light span {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.vehicle-card {
  padding: 36px;
  background:
    radial-gradient(circle at top right, rgba(41, 199, 216, 0.2), transparent 18rem),
    #ffffff;
}

.van-illustration {
  position: relative;
  height: 260px;
  border-radius: 34px 54px 28px 28px;
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(20, 100, 244, 0.18) 7% 9%, transparent 9%),
    linear-gradient(135deg, #f8fbff, #d8e6f6);
  box-shadow: inset 0 -32px 0 #b8c4d3, 0 30px 80px rgba(16, 25, 40, 0.18);
}

.van-illustration::before {
  content: "";
  position: absolute;
  top: 42px;
  right: 46px;
  width: 145px;
  height: 74px;
  border-radius: 18px 40px 12px 12px;
  background: linear-gradient(135deg, #102033, #2c4668);
}

.wheel {
  position: absolute;
  bottom: -22px;
  width: 66px;
  height: 66px;
  border: 12px solid #0c1422;
  border-radius: 50%;
  background: #d8e1eb;
}

.wheel-left {
  left: 58px;
}

.wheel-right {
  right: 70px;
}

.vehicle-specs {
  margin-top: 42px;
}

.industries {
  position: relative;
  overflow: hidden;
}

.industries::before {
  content: "";
  position: absolute;
  inset: auto -10% -45% 40%;
  height: 420px;
  border-radius: 50%;
  background: rgba(41, 199, 216, 0.12);
  filter: blur(14px);
}

.industry-grid span {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.step {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.step span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  background: var(--dark);
  color: #ffffff;
  font-weight: 900;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tech-visual {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tech-visual img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.form-grid {
  align-items: start;
}

.form-card,
.driver-form {
  padding: 34px;
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--ink);
  background: #ffffff;
  outline: 0;
  transition: border 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(20, 100, 244, 0.65);
  box-shadow: 0 0 0 4px rgba(20, 100, 244, 0.1);
}

.form-note {
  margin: 0;
  padding: 15px;
  border-radius: 16px;
  background: var(--soft);
  font-size: 0.92rem;
}

.tracking-status {
  margin-top: 24px;
  padding: 22px;
  border-radius: 20px;
  background: var(--dark);
  color: #ffffff;
}

.tracking-status p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.testimonial {
  padding: 28px;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.1em;
}

blockquote {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.65;
}

.testimonial span {
  color: var(--muted);
  font-weight: 800;
}

.careers {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.94), rgba(7, 17, 31, 0.82)),
    url("assets/quickcare-driver-freight.png") center / cover;
}

.driver-form {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.driver-form label {
  color: #ffffff;
}

.compliance-list {
  display: grid;
  gap: 14px;
}

.compliance-list span,
.contact-card a,
.contact-card p {
  display: block;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  background: #ffffff;
}

.compliance-list b,
.contact-card a {
  color: var(--ink);
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
}

summary {
  cursor: pointer;
  padding: 22px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.site-footer {
  padding: 34px 0;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid div {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translateX(0);
  }

  to {
    transform: scale(1.08) translateX(18px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(7, 17, 31, 0.96);
  }

  .site-nav.is-open a {
    padding: 14px;
  }

  .hero-grid,
  .split,
  .choose-grid,
  .form-grid,
  .careers-grid,
  .compliance-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .reverse > :first-child {
    order: 0;
  }

  .card-grid.four,
  .card-grid.three,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid,
  .image-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card {
    max-width: 480px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand small {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .hero-actions,
  .footer-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-grid,
  .card-grid.four,
  .card-grid.three,
  .timeline,
  .stats-card,
  .benefit-grid,
  .image-band {
    grid-template-columns: 1fr;
  }

  .image-band img {
    min-height: 280px;
  }

  .fleet-panel,
  .form-card,
  .driver-form,
  .vehicle-card {
    padding: 24px;
  }
}
