:root {
  --font-heading: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
}

section {
  scroll-margin-top: 96px;
}

.site-shell {
  background: radial-gradient(circle at top left, rgba(119, 186, 255, 0.24), transparent 32rem), #ffffff;
}

.glass-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(7, 24, 39, 0.08);
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, #77baff, #0f5ea8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 94, 168, 0.28);
}

.phone-button,
.primary-button {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.phone-button:hover,
.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 94, 168, 0.28);
}

.hero-card {
  background: linear-gradient(135deg, #eef7ff, #ffffff 45%, #dceeff);
  border: 1px solid rgba(119, 186, 255, 0.5);
}

.hero-image-frame {
  min-height: 310px;
  background: linear-gradient(135deg, rgba(74, 163, 255, 0.22), rgba(7, 24, 39, 0.08));
}

.hero-image-frame img {
  aspect-ratio: 1 / 1;
}

.stars {
  color: #f8b84e;
  letter-spacing: 0.1em;
  text-shadow: 0 3px 14px rgba(248, 184, 78, 0.35);
}

.trust-badge-img {
  height: 48px;
  width: auto;
  max-width: 31%;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(74, 163, 255, 0.28);
  background: #ffffff;
  padding: 5px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #0f5ea8;
  background: rgba(74, 163, 255, 0.12);
  border: 1px solid rgba(74, 163, 255, 0.24);
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  font-weight: 800;
  font-size: 0.95rem;
}

.h2-sticker {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #4aa3ff, #77baff);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(74, 163, 255, 0.25);
  flex: 0 0 auto;
}

.service-card,
.reason-card,
.process-card,
.review-card,
.payment-card {
  border: 1px solid rgba(119, 186, 255, 0.24);
  box-shadow: 0 18px 45px rgba(7, 24, 39, 0.07);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #eef7ff;
  border: 1px solid rgba(74, 163, 255, 0.24);
  color: #0f5ea8;
}

.split-block {
  background: linear-gradient(135deg, #ffffff00, #f4f9ff7a);
  border: 1px solid rgba(119, 186, 255, 0.28);
  box-shadow: 0 22px 50px rgba(7, 24, 39, 0.08);
}

.split-block img {
  min-height: 260px;
  object-fit: cover;
}

.dark-band {
  background: radial-gradient(circle at top right, rgba(74, 163, 255, 0.34), transparent 30rem), linear-gradient(135deg, #071827, #0a2f4e);
}

.dark-band h2,
.dark-band h3,
.dark-band p,
.dark-band li,
.dark-band a {
  color: #ffffff;
}

.dark-band .section-kicker {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 380ms ease;
}

.review-slide {
  flex: 0 0 100%;
  padding: 0.5rem;
}

.mobile-sticky-call {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-sticky-call.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.fade-up {
  animation: fadeUp 700ms ease both;
}

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

@media (min-width: 768px) {
  .review-slide {
    flex-basis: 50%;
  }
}

@media (min-width: 1024px) {
  .review-slide {
    flex-basis: 33.333333%;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 76px;
  }

  h1 {
    font-size: 2.2rem !important;
    line-height: 1.05 !important;
  }

  h2 {
    font-size: 1.9rem !important;
    line-height: 1.12 !important;
  }

  .mobile-menu-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 220ms ease;
  }

  .mobile-menu-panel.is-open {
    max-height: 560px;
  }

  .trust-badge-img {
    max-width: 32%;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
