:root {
  --font-heading: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --navy: #24264F;
  --navy-deep: #171832;
  --lavender: #6365A7;
  --gold: #F4C95D;
  --ink: #111827;
  --body: #374151;
  --muted: #6B7280;
  --line: rgba(99, 101, 167, 0.22);
  --glow: 0 0 34px rgba(99, 101, 167, 0.26);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--body);
  background: #ffffff;
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4, .logo-text {
  font-family: var(--font-heading);
  letter-spacing: -0.04em;
}

h1 {
  color: #ffffff;
  font-size: 2.45rem;
  line-height: 1.04;
  font-weight: 900;
}

h2 {
  color: var(--ink);
  font-size: 1.9rem;
  line-height: 1.12;
  font-weight: 850;
}

h3, h4 {
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(36, 38, 79, 0.12);
}

.nav-link {
  color: #1f2937;
  font-size: 18px;
  font-weight: 750;
  transition: color 180ms ease;
}

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

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--navy);
  box-shadow: var(--glow);
}

.logo-text {
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  white-space: nowrap;
}

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

.mobile-menu-button {
  display: inline-flex !important;
}

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

.hero {
  background: radial-gradient(circle at 18% 18%, rgba(99, 101, 167, 0.56), transparent 34%), linear-gradient(135deg, #171832 0%, #24264F 58%, #34366f 100%);
  color: #ffffff;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

.hero p, .hero li, .hero span {
  color: #f4f5ff;
}

.hero-kicker {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 1.35rem;
}

.trust-icon-img {
  width: auto;
  height: 48px;
  max-width: 96px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.92);
  padding: 6px 10px;
}

.hero-image {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary, .btn-secondary, .btn-dark, .header-phone, .mobile-menu-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  font-weight: 850;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-primary {
  background: #ffffff;
  color: #111827;
  padding: 0.95rem 1.2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  color: #111827;
}

.btn-secondary {
  background: var(--gold);
  color: #111827;
  padding: 0.95rem 1.2rem;
}

.btn-secondary:hover, .header-phone:hover, .mobile-menu-phone:hover, .btn-dark:hover {
  transform: translateY(-2px);
}

.btn-dark, .header-phone, .mobile-menu-phone {
  background: var(--navy);
  color: #ffffff;
  padding: 0.78rem 1rem;
  box-shadow: 0 14px 36px rgba(36, 38, 79, 0.2);
}

.header-phone:hover, .mobile-menu-phone:hover, .btn-dark:hover {
  color: #ffffff;
  background: var(--lavender);
}

.section-pad {
  padding: 4.5rem 0;
}

.section-dark {
  background: linear-gradient(135deg, #171832 0%, #24264F 100%);
  color: #ffffff;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lavender);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow-light {
  color: var(--gold);
}

.glow-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 54px rgba(36, 38, 79, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.glow-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 101, 167, 0.52);
  box-shadow: var(--glow), 0 22px 64px rgba(36, 38, 79, 0.12);
}

.dark-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  color: #ffffff;
  box-shadow: var(--glow);
}

.service-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid var(--line);
}

.issue-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(99, 101, 167, 0.18);
}

.issue-list li:last-child {
  border-bottom: 0;
}

.icon-bubble {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #f0f0fb;
  color: var(--navy);
  border: 1px solid rgba(99, 101, 167, 0.22);
}

.review-track {
  display: flex;
  transition: transform 360ms ease;
}

.review-slide {
  min-width: 100%;
  padding: 0.5rem;
}

.review-card {
  height: 100%;
  background: #ffffff;
  color: #374151;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.4rem;
  box-shadow: 0 18px 54px rgba(36, 38, 79, 0.08);
}

.review-card strong, .review-card p {
  color: #111827;
}

.carousel-button {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.faq-item {
  border-bottom: 1px solid rgba(99, 101, 167, 0.2);
  padding: 1.2rem 0;
}

.footer {
  background: #111827;
  color: #f9fafb;
}

.footer p, .footer a, .footer li {
  color: #f9fafb;
  font-size: 14px;
}

.footer h3, .footer h4 {
  color: #ffffff;
}

.footer .logo-text {
  color: #ffffff;
}

.mobile-sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none !important;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.75rem 0.9rem calc(0.75rem + env(safe-area-inset-bottom));
}

.mobile-sticky-call a {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  background: var(--gold);
  color: #111827;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 16px;
}

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

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(36, 38, 79, 0.12);
}

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

@media (min-width: 768px) {
  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 3rem;
  }

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

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

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

  .review-slide {
    min-width: 33.333333%;
  }

  body {
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  body.has-sticky-space {
    padding-bottom: 86px;
  }

  .hero-actions a {
    width: 100%;
  }
}
