body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: #f5f7fa;
  margin: 0;
  color: #181b1f;
}

/* HERO SPLIT */
.hero-split {
  display: flex;
  align-items: stretch;
  min-height: 520px;
  background: linear-gradient(90deg, #0099ff 0%, #00e5c8 100%);
  position: relative;
  overflow: hidden;
  border-radius: 0 0 2.7rem 2.7rem;
  box-shadow: 0 10px 48px 0 rgba(0, 50, 100, 0.14);
}
.hero-left {
  flex: 1.2;
  padding: 4.5rem 3rem 2.5rem 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.hero-right {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 2.5rem 0 0;
  z-index: 2;
}
.hero-logo-large {
  width: 80px;
  margin-bottom: 1.7rem;
  filter: drop-shadow(0 2px 10px #fff6);
}
.hero-left h1 {
  font-size: 2.45rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1.08;
  letter-spacing: -1.5px;
}
.hero-lead {
  font-size: 1.19rem;
  color: #e6fff6;
  margin-bottom: 2.1rem;
}
.hero-highlight {
  font-weight: 600;
  background: #01e0b1;
  color: #112;
  padding: 0.2em 0.6em;
  border-radius: 0.4em;
  margin-top: 0.7em;
  display: inline-block;
}
.cta-btn.big {
  background: #fff;
  color: #0099ff;
  font-size: 1.13rem;
  padding: 1em 2.4em;
  border-radius: 2.1em;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 24px 0 rgba(0,229,200,0.14);
  margin-bottom: 0.9rem;
  transition: background .2s, color .2s, box-shadow .2s;
}
.cta-btn.big:hover {
  background: #0099ff;
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(0,97,255,0.22);
}
.fleet-badge {
  margin-top: 0.9rem;
  font-size: 1.02rem;
  color: #fff;
  background: rgba(0,0,0,0.14);
  padding: 0.5em 1.5em;
  border-radius: 2em;
  display: inline-block;
}
.hero-right .van-img {
  width: 320px;
  max-width: 90vw;
  filter: drop-shadow(0 8px 60px #00e5c888);
  margin-bottom: -34px;
}
.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%; height: 120px;
  z-index: 1;
}

/* BENEFITS ROW */
.benefits-row {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  margin-top: -50px;
  margin-bottom: 2.8rem;
  z-index: 5;
  position: relative;
  flex-wrap: wrap;
}
.benefit-card {
  background: #fff;
  border-radius: 1.6em;
  box-shadow: 0 2px 14px 0 rgba(0,90,255,0.09);
  padding: 1.4em 1.6em 1.15em 1.4em;
  text-align: center;
  min-width: 180px;
  max-width: 260px;
  flex: 1 1 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.benefit-icon {
  margin-bottom: 0.6em;
}
.benefit-card b {
  margin-bottom: 0.3em;
  display: block;
  color: #0099ff;
  font-weight: 700;
  font-size: 1.13em;
}
.benefit-card span {
  color: #222;
  font-size: 1.03em;
}

/* TIMELINE - HOW IT WORKS */
.hiw-section {
  max-width: 920px;
  margin: 4.3rem auto 2.7rem auto;
  text-align: center;
}
.hiw-section h2 {
  color: #0099ff;
  font-size: 1.33rem;
  font-weight: 700;
  margin-bottom: 2.2rem;
  letter-spacing: -0.5px;
}
.timeline {
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  justify-content: center;
  flex-wrap: wrap;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 1.2em;
  box-shadow: 0 1px 14px 0 rgba(0,229,200,0.06);
  padding: 2.1em 1.1em 1.3em 1.1em;
  min-width: 180px;
  max-width: 280px;
  flex: 1 1 160px;
  text-align: center;
  margin-bottom: 0.8em;
  position: relative;
}
.timeline-step .circle {
  width: 38px; height: 38px;
  background: linear-gradient(90deg,#00e5c8 10%, #0099ff 90%);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4em; font-weight: 700;
  margin-bottom: 0.6em;
}
.timeline-step h3 {
  margin-bottom: 0.55em;
  font-size: 1.14em;
}
.timeline-step p {
  font-size: 1.03em;
}

/* FLOATING QUOTE FORM */
.quote-float {
  background: #fff;
  border-radius: 2.1em;
  box-shadow: 0 6px 38px 0 rgba(0, 80, 255, 0.09);
  max-width: 420px;
  margin: 4.5rem auto 3.2rem auto;
  padding: 2.5rem 2rem 1.7rem 2rem;
  text-align: center;
  position: relative;
  z-index: 9;
}
.quote-float h2 { color: #0099ff; margin-bottom: 1.6rem; font-size: 1.29rem; font-weight: 700; }
.quote-form-float {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.quote-form-float input,
.quote-form-float textarea {
  padding: 0.88em 1em;
  font-size: 1.07rem;
  border: 1px solid #e0e7ef;
  border-radius: 1.2em;
  background: #f8fafb;
  transition: border .2s;
  outline: none;
  resize: none;
}
.quote-form-float input:focus,
.quote-form-float textarea:focus {
  border: 1.5px solid #00e5c8;
  background: #f2f7fd;
}
.quote-form-float button {
  background: linear-gradient(90deg, #0099ff 10%, #00e5c8 100%);
  color: #fff;
  border: none;
  border-radius: 2em;
  padding: 0.95em 0;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 16px 0 rgba(0,97,255,0.08);
  margin-top: 0.4rem;
  transition: background .2s, box-shadow .2s;
}
.quote-form-float button:hover {
  background: #0099ff;
  box-shadow: 0 8px 32px 0 rgba(0,97,255,0.18);
}
.form-note {
  font-size: 0.97rem;
  margin-top: 1.2rem;
  color: #19766b;
}

/* TESTIMONIAL BUBBLES */
.testimonials-bubble {
  text-align: center;
  margin: 4rem 0 2.2rem 0;
}
.testimonials-bubble h2 { color: #0099ff; }
.bubble-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.7rem;
}
.bubble {
  background: #fff;
  border-radius: 1.5em 1.5em 1.5em 0.7em;
  box-shadow: 0 2px 18px 0 rgba(0,90,255,0.08);
  padding: 1.5em 1.2em 1.1em 1.3em;
  max-width: 330px;
  min-width: 180px;
  font-size: 1.09rem;
  position: relative;
  margin-bottom: 0.7em;
}
.bubble-author {
  color: #00b5a9;
  font-size: 0.97rem;
  display: block;
  margin-top: 0.8em;
}

/* SERVICE AREA SPLASH */
.service-area-splash {
  background: linear-gradient(90deg, #00e5c8 0%, #0099ff 100%);
  color: #fff;
  text-align: center;
  padding: 3.3em 0 2.3em 0;
  border-radius: 2.5em 2.5em 0 0;
  margin-top: 4rem;
  position: relative;
}
.area-accent {
  width: 80px;
  height: 5px;
  background: #fff;
  border-radius: 3px;
  margin: 1.4em auto 0 auto;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .hero-split { flex-direction: column; min-height: 700px; }
  .hero-left { padding: 3rem 2vw 2.2rem 2vw; align-items: center; text-align: center;}
  .hero-right { justify-content: center; padding: 0 0 1.2rem 0;}
  .hero-right .van-img { margin-bottom: 0; }
  .benefits-row, .timeline, .bubble-row { flex-direction: column; gap: 1rem; }
}
@media (max-width: 700px) {
  .hero-left { padding: 2rem 3vw 1.1rem 3vw; }
  .quote-float { padding: 1.2rem 0.7rem 1.1rem 0.7rem; border-radius: 1.1rem; }
  .benefit-card, .timeline-step, .bubble { max-width: 96vw; }
}
