: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;
  --royal: #344FF7;
  --royal-soft: #667BFB;
  --ink: #111827;
  --navy: #07111F;
  --muted: #4B5563;
  --line: rgba(52, 79, 247, .16);
  --gold: #F5B84B;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--muted);
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4 {
  letter-spacing: -0.04em;
  font-weight: 850;
}

h1 {
  font-size: clamp(35px, 7vw, 68px);
  line-height: .96;
}

h2 {
  font-size: clamp(28px, 5.5vw, 48px);
  line-height: 1.05;
}

h3, h4 {
  font-size: clamp(20px, 3.5vw, 24px);
  line-height: 1.18;
}

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

.site-shell {
  background:
    radial-gradient(circle at 12% 4%, rgba(102, 123, 251, .28), transparent 30%),
    linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 34%, #F5F7FF 100%);
}

.container-xl {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.glass {
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: 0 24px 80px rgba(7, 17, 31, .12);
  backdrop-filter: blur(18px);
}

.nav-link {
  color: #111827;
  font-size: 18px;
  font-weight: 750;
  transition: color .22s ease, transform .22s ease;
}

.nav-link:hover {
  color: var(--royal);
  transform: translateY(-1px);
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--royal), var(--royal-soft));
  display: inline-grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(52, 79, 247, .32);
}

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

.btn-primary, .btn-secondary, .phone-button, .sticky-call {
  border-radius: 999px;
  font-weight: 850;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--royal), var(--royal-soft));
  color: #FFFFFF;
  padding: 15px 23px;
  box-shadow: 0 18px 38px rgba(52, 79, 247, .35);
}

.btn-primary:hover {
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 24px 46px rgba(52, 79, 247, .42);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #111827;
  background: #FFFFFF;
  border: 1px solid rgba(17, 24, 39, .12);
  padding: 15px 22px;
}

.btn-secondary:hover {
  color: #111827;
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(17, 24, 39, .12);
}

.phone-button {
  color: #FFFFFF;
  background: var(--navy);
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.phone-button:hover {
  color: #FFFFFF;
  background: #000000;
  transform: translateY(-2px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.hero-card {
  border-radius: 34px;
  padding: clamp(24px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(236, 240, 255, .76)),
    radial-gradient(circle at 20% 0%, rgba(52, 79, 247, .15), transparent 42%);
}

.hero-image-wrap {
  min-height: 100%;
  border-radius: 34px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(52, 79, 247, .28), rgba(255, 255, 255, .72));
}

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

.stars {
  color: var(--gold);
  font-size: 24px;
  letter-spacing: .08em;
  text-shadow: 0 8px 20px rgba(245, 184, 75, .32);
}

.trust-icons img {
  width: auto;
  height: 48px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(52, 79, 247, .18);
  background: #FFFFFF;
  padding: 6px;
}

.section-pad {
  padding: clamp(58px, 9vw, 112px) 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--royal);
  background: rgba(52, 79, 247, .08);
  border: 1px solid rgba(52, 79, 247, .14);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.heading-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.heading-sticker {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--royal), var(--royal-soft));
  color: #FFFFFF;
  display: grid;
  place-items: center;
  box-shadow: 0 15px 34px rgba(52, 79, 247, .28);
}

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

.split-block .split-text {
  min-width: 0;
}

.split-block .split-image {
  min-width: 0;
}

.split-image img {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(7, 17, 31, .16);
}

.review-track {
  display: flex;
  gap: 18px;
  transition: transform .45s ease;
}

.review-card {
  min-width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(7, 17, 31, .08);
}

.service-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 18px 42px rgba(7, 17, 31, .07);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(52, 79, 247, .36);
  box-shadow: 0 26px 58px rgba(52, 79, 247, .13);
}

.service-icon {
  width: 66px;
  height: 66px;
  object-fit: contain;
  border-radius: 20px;
  background: #F5F7FF;
  border: 1px solid rgba(52, 79, 247, .12);
  padding: 8px;
}

.service-card ul, .reason-list, .payment-list, .area-list {
  display: grid;
  gap: 10px;
}

.service-card li, .reason-item, .payment-list li, .area-list li {
  position: relative;
  padding-left: 24px;
}

.service-card li::before, .reason-item::before, .payment-list li::before, .area-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--royal);
  position: absolute;
  left: 0;
  top: .65em;
  box-shadow: 0 0 0 5px rgba(52, 79, 247, .1);
}

.process-card {
  background: linear-gradient(135deg, #FFFFFF, #F5F7FF);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
}

.process-number {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #FFFFFF;
  font-weight: 900;
}

.dark-cta {
  color: #FFFFFF;
  background:
    radial-gradient(circle at top right, rgba(102, 123, 251, .42), transparent 34%),
    linear-gradient(135deg, #07111F, #132044);
  border-radius: 36px;
  overflow: hidden;
}

.dark-cta h2, .dark-cta h3, .dark-cta p, .dark-cta li {
  color: #FFFFFF;
}

.dark-cta .section-kicker {
  background: #FFFFFF;
  color: #111827;
  border-color: transparent;
}

.section-dark .logo-text,
.section-dark a,
.section-dark p,
.section-dark li,
.section-dark h3 {
  color: #FFFFFF;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: var(--ink);
  font-weight: 850;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
}

.faq-item.active .faq-answer {
  display: block;
}

.mobile-menu {
  display: none;
}

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

.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 62px;
  padding: 14px 12px calc(14px + env(safe-area-inset-bottom));
  background: #07111F;
  color: #FFFFFF;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -16px 40px rgba(7, 17, 31, .32);
  white-space: nowrap;
}

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

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

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .split-block {
    grid-template-columns: 65fr 35fr;
  }

  .split-block.image-left {
    grid-template-columns: 35fr 65fr;
  }

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

  .review-card {
    min-width: calc((100% - 36px) / 3);
  }

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

@media (max-width: 767px) {
  h1, h2 {
    letter-spacing: -0.035em;
  }

  .container-xl {
    width: min(100% - 24px, 1180px);
  }

  .hero-card {
    border-radius: 28px;
  }

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

  .mobile-header-phone {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }

  .trust-icons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-icons img {
    width: 100%;
    height: 48px;
  }

  body {
    padding-bottom: 72px;
  }
}

@media (min-width: 768px) {
  .mobile-toggle, .mobile-header-phone, .mobile-menu {
    display: none !important;
  }
}
