: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;
  --ink: #111827;
  --muted: #4B5563;
  --purple: #3F285B;
  --purple-2: #8664AD;
  --accent: #E4F50F;
  --cream: #FAF8FD;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: #374151;
  background: #fff;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

h1 {
  font-size: 35px;
}

h2 {
  font-size: 28px;
}

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

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

@media (min-width: 768px) {
  h1 {
    font-size: clamp(52px, 6vw, 78px);
  }

  h2 {
    font-size: clamp(36px, 4vw, 54px);
  }

  h3 {
    font-size: 24px;
  }
}

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

.logo-link {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--purple);
  box-shadow: 0 14px 30px rgba(63, 40, 91, 0.22);
}

.desktop-nav a {
  position: relative;
  color: #2f2440;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--accent);
  transition: width 180ms ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

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

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

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

@media (min-width: 768px) {
  .hamburger-mobile {
    display: none !important;
  }
}

.mobile-panel {
  display: none;
  position: fixed;
  inset: 72px 16px auto 16px;
  z-index: 60;
  border-radius: 28px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 30px 90px rgba(17, 24, 39, 0.25);
}

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

@media (min-width: 768px) {
  .mobile-panel {
    display: none !important;
  }
}

.phone-pill, .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 999px;
  background: var(--accent);
  color: #111827 !important;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 16px 38px rgba(228, 245, 15, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.phone-pill:hover, .cta-button:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 22px 48px rgba(228, 245, 15, 0.34);
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: #fff !important;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.outline-button:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple) 0%, #2b193f 52%, var(--purple-2) 100%);
}

.hero-section::before, .diagonal-section::before, .cta-band::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  z-index: -1;
  background: repeating-linear-gradient(115deg, transparent 0 72px, rgba(228, 245, 15, 0.16) 73px 76px, transparent 77px 150px);
  transform: translateY(calc(var(--scroll, 0px) * -0.04)) skewY(-6deg);
  pointer-events: none;
}

.hero-title, .dark-title {
  color: #fff !important;
}

.hero-copy {
  color: #F6F1FF;
}

.star-row {
  color: var(--accent);
  font-size: 24px;
  letter-spacing: 0.12em;
}

.trust-icon-img {
  width: auto;
  height: 48px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  padding: 7px 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.hero-image-card {
  min-height: 320px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  transform: perspective(900px) rotateY(-4deg);
}

.hero-image-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.section-shell {
  position: relative;
  padding: 74px 0;
}

.diagonal-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.diagonal-section.light {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.diagonal-divider {
  position: absolute;
  left: -6vw;
  right: -6vw;
  top: -38px;
  height: 76px;
  background: inherit;
  transform: rotate(-2.8deg);
  transform-origin: left center;
}

.card-soft {
  border: 1px solid rgba(63, 40, 91, 0.12);
  border-radius: 28px;
  background: #fff;
  color: #374151;
  box-shadow: 0 24px 65px rgba(63, 40, 91, 0.09);
}

.card-dark {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.18);
}

.card-dark h3, .card-dark h4, .card-dark p, .card-dark li {
  color: #fff;
}

.accent-line {
  width: 86px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
  transform: skewX(-28deg);
}

.split-image {
  width: 35%;
  min-width: 35%;
}

.split-text {
  width: 65%;
}

@media (max-width: 767px) {
  .split-image, .split-text {
    width: 100%;
    min-width: 100%;
  }
}

.image-panel img {
  width: 100%;
  min-height: 260px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(63, 40, 91, 0.18);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(134, 100, 173, 0.12);
  color: var(--purple);
}

.issue-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: var(--purple);
  color: #fff;
  font-weight: 900;
}

.faq-item {
  border-radius: 24px;
  border: 1px solid rgba(63, 40, 91, 0.14);
  background: #fff;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  padding: 20px;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
}

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

.faq-item.is-open .faq-answer {
  display: block;
}

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

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

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

.review-card {
  height: 100%;
  border-radius: 28px;
  background: #fff;
  color: #374151;
  padding: 26px;
  box-shadow: 0 22px 58px rgba(17, 24, 39, 0.12);
}

.review-stars {
  color: var(--accent);
  letter-spacing: 0.08em;
  text-shadow: 0 1px 0 rgba(17, 24, 39, 0.45);
}

.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
}

.footer {
  background: #15101f;
  color: #E5E7EB;
  font-size: 14px;
}

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

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

.sticky-call-mobile {
  display: none !important;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(21, 16, 31, 0.94);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

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

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

@media (min-width: 768px) {
  .sticky-call-mobile, .sticky-call-mobile.is-visible {
    display: none !important;
  }
}

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

  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 28px;
  }

  .section-shell {
    padding: 56px 0;
  }

  .hero-image-card {
    transform: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
