/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #111827;
  background: #f6f7fb;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.center {
  text-align: center;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 26px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: 1 1 auto;
  justify-content: center;
}

.site-nav a {
  text-decoration: none;
  color: #2b2b2b;
  font-size: 0.98rem;
  font-weight: 500;
}

.site-nav a:hover {
  color: #6c4df6;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #7b5cff 0%, #6547f6 100%);
  box-shadow: 0 10px 24px rgba(101, 71, 246, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-outline {
  color: #6547f6;
  border: 2px solid #6547f6;
  background: transparent;
}

.btn-outline:hover {
  background: #6547f6;
  color: #ffffff;
}

.btn-outline-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

/* HERO */
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(45, 28, 107, 0.62), rgba(45, 28, 107, 0.62)),
    url("van.jpg") center center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 120px 0 120px 48px;
  color: #ffffff;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 760px;
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
}

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

.center-buttons {
  justify-content: center;
}

/* SECTIONS */
.section {
  padding: 88px 0;
}

.section-light {
  background: #ffffff;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section p {
  font-size: 1.06rem;
  color: #4b5563;
}

/* SECTION KICKER */
.section-kicker {
  color: #6c4df6;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.85);
}

/* SERVICES */
.service-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 24px;
  padding: 30px 26px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
}

.service-icon {
  width: 72px;
  height: auto;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: #111827;
}

.card p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-copy h2 {
  margin-bottom: 18px;
}

.about-copy p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-points {
  display: grid;
  gap: 18px;
}

.info-box {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}

.info-box h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #111827;
}

.info-box p {
  color: #6b7280;
  line-height: 1.6;
}

/* REVIEWS */
.reviews-wrap {
  max-width: 980px;
}

.reviews-intro {
  max-width: 720px;
  margin: 0 auto 22px;
}

.review-stars {
  font-size: 2rem;
  letter-spacing: 0.18em;
  color: #6c4df6;
  margin-bottom: 26px;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.review-card {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}

.review-card p {
  color: #4b5563;
  line-height: 1.7;
}

.reviews-buttons {
  margin-top: 28px;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, #6547f6 0%, #7b5cff 100%);
  color: #ffffff;
}

.cta-section h2,
.cta-section p {
  color: #ffffff;
}

.cta-text {
  max-width: 680px;
  margin: 0 auto 26px;
}

.cta-wrap {
  max-width: 840px;
}

/* FOOTER */
.site-footer {
  background: #111827;
  color: #ffffff;
  padding: 50px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 12px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  line-height: 1.8;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .site-nav {
    order: 3;
    width: 100%;
    gap: 18px;
    justify-content: center;
  }

  .hero {
    min-height: 640px;
    background:
      linear-gradient(rgba(45, 28, 107, 0.68), rgba(45, 28, 107, 0.68)),
      url("van.jpg") center center / cover no-repeat;
  }

  .hero-content {
    padding: 90px 0 90px 0;
    max-width: 100%;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .review-cards {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    height: 22px;
    max-width: 135px;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 0.92rem;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .btn {
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.94rem;
  }

  .hero {
    min-height: 560px;
    background:
      linear-gradient(rgba(45, 28, 107, 0.72), rgba(45, 28, 107, 0.72)),
      url("van.jpg") center center / cover no-repeat;
  }

  .hero-content {
    padding: 72px 0 72px 0;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 10vw, 3.6rem);
  }

  .hero-subtext {
    font-size: 1.05rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }
}