:root {
  --navy: #0C0D33;
  --navy-2: #151747;
  --lavender: #7577A7;
  --lavender-soft: #E9EAF5;
  --gold: #C9A45C;
  --ink: #111827;
  --body: #374151;
  --muted: #6B7280;
  --line: rgba(117, 119, 167, 0.22);
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--body);
  background: #FFFFFF;
  line-height: 1.7;
}

body.mobile-menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
.brand-name {
  font-family: var(--font-heading);
  color: var(--ink);
}

h1 {
  font-size: clamp(35px, 8vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(28px, 6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h3,
h4 {
  font-size: 20px;
  line-height: 1.25;
}

p,
li,
a,
button,
span {
  font-size: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.brand-link {
  color: var(--ink);
  text-decoration: none;
}

.brand-name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--navy), var(--lavender));
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(12, 13, 51, 0.22);
}

.desktop-nav {
  display: none !important;
}

.desktop-header-phone {
  display: none !important;
}

.hamburger-button {
  display: inline-flex !important;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--navy);
  color: #FFFFFF;
}

.mobile-panel {
  display: none;
  position: fixed;
  inset: 74px 16px auto 16px;
  z-index: 60;
  padding: 18px;
  border-radius: 26px;
  background: #FFFFFF;
  box-shadow: 0 30px 80px rgba(12, 13, 51, 0.24);
  border: 1px solid var(--line);
}

.mobile-panel.is-open {
  display: block;
}

.nav-link {
  color: var(--ink);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: color 180ms ease;
}

.nav-link:hover {
  color: var(--lavender);
}

.btn-primary,
.btn-secondary,
.btn-dark,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  min-height: 48px;
  padding: 14px 22px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-primary {
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--navy), #262966);
  box-shadow: 0 18px 45px rgba(12, 13, 51, 0.28);
}

.btn-secondary {
  color: #FFFFFF;
  background: var(--lavender);
  box-shadow: 0 18px 45px rgba(117, 119, 167, 0.26);
}

.btn-dark {
  color: #FFFFFF;
  background: var(--navy);
}

.btn-light {
  color: var(--navy);
  background: #FFFFFF;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-dark:hover,
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 55px rgba(12, 13, 51, 0.28);
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, rgba(117, 119, 167, 0.26), transparent 38%), linear-gradient(135deg, #F8F8FC 0%, #FFFFFF 52%, #E9EAF5 100%);
}

.diagonal-lines::before,
.diagonal-lines::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 1px;
  background: rgba(117, 119, 167, 0.38);
  transform: rotate(-28deg);
  pointer-events: none;
}

.diagonal-lines::before {
  top: 108px;
  right: -118px;
}

.diagonal-lines::after {
  bottom: 122px;
  left: -160px;
}

.hero-grid {
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.hero-card {
  min-height: 100%;
  padding: 26px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(117, 119, 167, 0.22);
  box-shadow: 0 30px 90px rgba(12, 13, 51, 0.13);
}

.hero-media {
  min-height: 100%;
  border-radius: 34px;
  background: var(--navy);
  padding: 12px;
  box-shadow: 0 32px 90px rgba(12, 13, 51, 0.22);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 26px;
}

.stars {
  color: var(--gold);
  font-size: 24px;
  letter-spacing: 0.14em;
  line-height: 1;
}

.badge-row img {
  width: auto;
  height: 48px;
  max-width: 31%;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid rgba(117, 119, 167, 0.25);
  background: #FFFFFF;
  padding: 4px;
}

.trust-pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--lavender-soft);
  font-weight: 800;
  padding: 8px 14px;
}

.dark-section {
  background: radial-gradient(circle at top left, rgba(117, 119, 167, 0.3), transparent 32%), var(--navy);
  color: #F7F7FB;
}

.dark-section h2,
.dark-section h3,
.dark-section h4 {
  color: #FFFFFF;
}

.dark-section p,
.dark-section li {
  color: #E5E7EB;
}

.section-wrap {
  padding: 72px 0;
}

.split-block {
  display: grid;
  gap: 28px;
  align-items: center;
}

.split-text,
.split-image {
  min-width: 0;
}

.split-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(12, 13, 51, 0.16);
}

.card-hover {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card-hover:hover {
  transform: scale(1.025);
  box-shadow: 0 26px 70px rgba(12, 13, 51, 0.15);
  border-color: rgba(117, 119, 167, 0.45);
}

.service-card,
.reason-card,
.review-card,
.faq-card {
  background: #FFFFFF78;
  color: var(--body);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
}

.service-card h3,
.reason-card h3,
.review-card h3,
.faq-card h3 {
  color: var(--ink);
}

.icon-shell {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--navy);
  background: var(--lavender-soft);
}

.area-list li,
.zip-list li {
  display: inline-flex;
  margin: 0 8px 10px 0;
  padding: 9px 14px;
  border-radius: 999px;
  background: #FFFFFF;
  color: var(--navy);
  border: 1px solid var(--line);
  font-weight: 800;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 320ms ease;
  will-change: transform;
}

.review-slide {
  flex: 0 0 100%;
  padding: 8px;
}

.review-card {
  min-height: 100%;
}

.carousel-control {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: #FFFFFF;
  background: var(--navy);
  transition: transform 180ms ease, background 180ms ease;
}

.carousel-control:hover {
  transform: translateY(-2px);
  background: var(--lavender);
}

.sticky-mobile-call {
  display: none !important;
}

.sticky-mobile-call.is-visible {
  display: flex !important;
}

.sticky-mobile-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--navy), var(--lavender));
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 -16px 35px rgba(12, 13, 51, 0.28);
  transform: translateY(18px);
  opacity: 0;
  transition: opacity 200ms ease, transform 200ms ease;
}

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

.footer-disclaimer {
  font-size: 14px;
  line-height: 1.7;
}

footer p,
footer a,
footer li,
footer span {
  font-size: 14px;
}

@media (max-width: 767px) {
  h1 {
    font-size: clamp(35px, 11vw, 45px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 34px);
  }

  body {
    padding-bottom: 72px;
  }

  .mobile-panel .btn-primary {
    width: 100%;
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex !important;
  }

  .desktop-header-phone {
    display: inline-flex !important;
  }

  .hamburger-button,
  .mobile-panel,
  .sticky-mobile-call,
  .sticky-mobile-call.is-visible {
    display: none !important;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  }

  .split-block {
    grid-template-columns: minmax(0, 65fr) minmax(0, 35fr);
  }

  .split-block.reverse {
    grid-template-columns: minmax(0, 35fr) minmax(0, 65fr);
  }

  .split-block.reverse .split-image {
    order: 1;
  }

  .split-block.reverse .split-text {
    order: 2;
  }

  .review-slide {
    flex-basis: 33.3333%;
  }
}

@media (min-width: 1024px) {
  .section-wrap {
    padding: 96px 0;
  }
}
