@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap');

:root {
  --ink: #232323;
  --body: #4a4a4a;
  --blue: #4a7df0;
  --blue-dark: #3563cc;
  --red: #f05a5a;
  --light: #fafafa;
  --white: #ffffff;
  --line: #ececec;
  --max: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue); }
img { display: block; max-width: 100%; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--light);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand img { height: 48px; width: auto; }

.brand-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: 0.6px;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 16px;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}

.nav a:hover { color: var(--blue); }
.nav a[aria-current="page"] { border-bottom-color: var(--blue); }

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 13px 26px;
  border-radius: 6px;
  border: none;
  transition: background .15s, transform .1s;
}

.btn:active { transform: translateY(1px); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #d94747; }

.nav-quote { padding: 12px 22px; font-size: 15px; }

/* ---------- Sections ---------- */
section { padding: 76px 0; }
section.alt { background: var(--light); }

.section-title {
  font-size: clamp(30px, 4vw, 44px);
  text-align: center;
  margin-bottom: 16px;
}

.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 54px;
  font-size: 17px;
}

/* ---------- Hero ---------- */
.hero { padding: 70px 0 80px; }

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

.hero h1 {
  font-size: clamp(32px, 4.4vw, 46px);
  margin-bottom: 22px;
}

.hero p { font-size: 17px; margin-bottom: 30px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Services (3 col icons) ---------- */
.cols3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.svc-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  color: var(--blue);
}

.cols3 h3 { font-size: 24px; margin-bottom: 12px; }
.cols3 p { font-size: 16px; }

/* ---------- About (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split h2 { font-size: clamp(28px, 3.6vw, 38px); margin-bottom: 22px; }
.split-photo { background: #fff; }

/* ---------- Fleet cards ---------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.fleet-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.fleet-photo {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: #fff;
}

.fleet-photo img { max-height: 100%; width: auto; object-fit: contain; }

.fleet-body { padding: 8px 26px 30px; }
.fleet-body h3 { font-size: 19px; margin-bottom: 10px; }
.fleet-body p { font-size: 15.5px; }

/* ---------- Why us ---------- */
.why {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.why h2 { font-size: clamp(30px, 4.2vw, 44px); }

/* ---------- Steps ---------- */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.step {
  flex: 1 1 200px;
  max-width: 260px;
  text-align: center;
}

.step-num {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 15.5px; }

.step-arrow {
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
  padding-top: 16px;
  flex: 0 0 auto;
}

/* ---------- Contact cards ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.contact-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px 32px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.contact-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: var(--blue);
  margin-top: 6px;
}

.contact-card h3 { font-size: 26px; margin-bottom: 6px; }
.contact-card p { font-size: 16.5px; margin: 0; }
.contact-card a { text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }

/* ---------- CTA band ---------- */
.cta {
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 62px 0;
}

.cta h2 { color: #fff; font-size: clamp(26px, 3.4vw, 34px); margin-bottom: 24px; }
.cta .btn { background: #fff; color: var(--blue); }
.cta .btn:hover { background: #f0f0f0; }

/* ---------- Footer ---------- */
.site-footer {
  background: #232323;
  color: #c9c9c9;
  padding: 42px 0;
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.footer-nav a {
  color: var(--blue);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.footer-nav a:hover { color: #fff; }

.footer-meta { font-size: 15px; color: #9a9a9a; }
.footer-meta a { color: #9a9a9a; text-decoration: none; }
.footer-meta a:hover { color: #fff; }

/* ---------- Focus + motion ---------- */
a:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .header-inner { justify-content: center; text-align: center; }
  .nav { gap: 22px; flex-wrap: wrap; justify-content: center; }
  .hero-grid, .split, .why { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo { order: -1; }
  .cols3 { grid-template-columns: 1fr; gap: 44px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  section { padding: 56px 0; }
}

@media (max-width: 560px) {
  .brand-name { font-size: 14px; white-space: normal; }
  .brand img { height: 40px; }
  .nav a { font-size: 15px; }
  .hero-actions .btn { flex: 1 1 100%; text-align: center; }
}
