/*!
 * /**
 * * @file client-rspack.js
 * * @description Bundled output generated by Rspack
 * * --------------------------------------------------------------------------
 * * ⚡ Rspack Client App (Development)
 * * --------------------------------------------------------------------------
 * * • [   client-entry.js ] ──▶ [■ client-rspack.js ] ──▶ [   client-meteor.js ]
 * *
 * * This file is the bundled output generated by Rspack.
 * * It contains all application code and assets combined into one build.
 * * It is not used directly, but will be imported by the Meteor main module
 * * file (`client-meteor.js`) so that Meteor runs the Rspack bundle.
 * *
 * * ⚠️ Note: This file is autogenerated. It is not meant to be modified manually.
 * * These files also act as a cache: they can be safely removed and will be
 * * regenerated on the next build. They should be ignored in IDE suggestions
 * * and version control.
 * * /
 *
 * /* No code generated as served by HMR server * /
 *
 */
:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --ink: #10212f;
  --muted: #5d7182;
  --brand: #1f8fff;
  --brand-deep: #1062cc;
  --accent: #00c389;
  --line: #d9e4ef;
  --radius: 22px;
  --shadow: 0 24px 64px rgba(16, 33, 47, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
#root {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 5%, rgba(31, 143, 255, 0.13), transparent 36%),
    radial-gradient(circle at 96% 2%, rgba(0, 195, 137, 0.1), transparent 36%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.page {
  overflow: clip;
}

.hero {
  position: relative;
  padding-bottom: 3rem;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(6px);
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  top: -90px;
  right: -120px;
  background: rgba(31, 143, 255, 0.24);
  animation: floatGlow 8s ease-in-out infinite;
}

.hero-glow-two {
  width: 280px;
  height: 280px;
  left: -120px;
  top: 320px;
  background: rgba(0, 195, 137, 0.16);
  animation: floatGlow 10s ease-in-out infinite reverse;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--brand), var(--brand-deep));
  box-shadow: 0 12px 24px rgba(16, 98, 204, 0.35);
}

.logo-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.logo-subtitle {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-body {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  padding: 2.4rem 0 1rem;
}

.hero-copy h1 {
  margin: 0.35rem 0 0.9rem;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: var(--brand-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.75rem 1.2rem;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  background: linear-gradient(145deg, var(--brand), var(--brand-deep));
  color: #fff;
  box-shadow: 0 14px 28px rgba(16, 98, 204, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(16, 98, 204, 0.35);
}

.cta-button.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 6px 18px rgba(16, 33, 47, 0.08);
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.2rem;
}

.trust-bar span {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-size: 0.78rem;
  color: #2f475c;
  backdrop-filter: blur(4px);
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 490px;
  object-fit: cover;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  animation: riseIn 760ms ease both;
}

.section {
  padding: 4.8rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.9));
  border-top: 1px solid #eaf0f6;
  border-bottom: 1px solid #eaf0f6;
}

.section-header {
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.section-header h2 {
  margin: 0.35rem 0 0.7rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.14;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.vehicle-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(16, 33, 47, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 28px rgba(16, 33, 47, 0.12);
}

.vehicle-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.vehicle-content {
  padding: 1rem 1rem 1.2rem;
}

.vehicle-content h3 {
  margin: 0;
}

.vehicle-content p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.split {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 0.92fr;
}

.specialties {
  padding-left: 1.1rem;
  margin: 1rem 0 1.2rem;
}

.specialties li {
  margin-bottom: 0.52rem;
  color: #2f475c;
}

.steps-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.steps-card h3 {
  margin: 0 0 1rem;
}

.step-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.74rem 0;
}

.step-item + .step-item {
  border-top: 1px solid #edf2f7;
}

.step-item span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, #e5f1ff, #f2f8ff);
  color: var(--brand-deep);
  font-weight: 800;
}

.step-item h4 {
  margin: 0;
}

.step-item p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: 0 10px 24px rgba(16, 33, 47, 0.07);
}

.testimonial-card p {
  margin: 0;
  line-height: 1.7;
  color: #294157;
}

.testimonial-card h4 {
  margin: 0.85rem 0 0;
  color: var(--brand-deep);
}

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

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
}

.faq-item h3 {
  margin: 0;
  font-size: 1.02rem;
}

.faq-item p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.final-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
  margin: 4.3rem auto;
  padding: 1.4rem;
  border: 1px solid #dbe7f3;
  border-radius: var(--radius);
  background: linear-gradient(120deg, #f4f9ff, #f9fffc);
}

.final-cta h2 {
  margin: 0.35rem 0 0.45rem;
}

.final-cta p {
  margin: 0;
  color: #355066;
}

.site-footer {
  border-top: 1px solid #dbe7f3;
  padding: 1.2rem 0;
  background: #fff;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-content p {
  margin: 0;
  color: var(--muted);
}

.footer-content a {
  color: var(--brand-deep);
  font-weight: 700;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@media (max-width: 960px) {
  .hero-body,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: 360px;
  }

  .vehicle-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    gap: 1rem;
    flex-direction: column;
  }

  .vehicle-grid,
  .testimonial-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: 290px;
  }

  .final-cta,
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}


/*# sourceMappingURL=main.css.map*/