:root {
  --font-heading: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  --font-body: "Segoe UI", Arial, sans-serif;
  --ink: #111827;
  --muted: #4b5563;
  --violet: #352844;
  --violet-deep: #241b2e;
  --lavender: #9078ad;
  --lime: #bff275;
  --paper: #ffffff;
  --soft: #f7f5fa;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fbfafc;
  line-height: 1.65;
  padding-bottom: 0;
}

body.has-mobile-call {
  padding-bottom: 84px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.08;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.75rem;
}

h3,
h4 {
  font-size: 1.25rem;
}

p,
li,
a,
button,
input,
textarea {
  font-size: 1rem;
}

.site-shell {
  overflow: hidden;
}

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

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

.header-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.brand span {
  max-width: 210px;
  white-space: normal;
  line-height: 1.05;
}

.brand:hover {
  color: #ffffff;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  flex: 0 0 auto;
}

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

.desktop-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  opacity: 0.88;
}

.desktop-nav a:hover {
  color: var(--lime);
  opacity: 1;
}

.phone-btn,
.hero-phone,
.mobile-menu-phone,
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.phone-btn,
.hero-phone,
.mobile-menu-phone {
  background: var(--lime);
  color: #111827;
  box-shadow: 0 14px 34px rgba(191, 242, 117, 0.24);
}

.phone-btn:hover,
.hero-phone:hover,
.mobile-menu-phone:hover,
.cta-btn:hover {
  transform: translateY(-2px);
}

.hamburger {
  width: 46px;
  height: 46px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 99px;
}

.mobile-panel {
  display: none;
  padding: 0 0 18px;
}

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

.mobile-panel a:not(.mobile-menu-phone) {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 800;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu-phone {
  margin-top: 14px;
  width: 100%;
}

.hero {
  padding: 36px 0 34px;
  background:
    radial-gradient(circle at 16% 20%, rgba(191, 242, 117, 0.22), transparent 28%),
    linear-gradient(135deg, #352844 0%, #241b2e 54%, #9078ad 140%);
  color: #ffffff;
}

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

.hero-copy,
.hero-media {
  min-height: 100%;
  border-radius: 32px;
}

.hero-copy {
  padding: 26px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 24px 70px rgba(0, 0, 0, 0.28);
}

.hero h1,
.hero h2,
.hero p {
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(191, 242, 117, 0.15);
  color: #ffffff;
  font-weight: 900;
  border: 1px solid rgba(191, 242, 117, 0.42);
}

.stars {
  color: var(--lime);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  margin: 16px 0 10px;
}

.trust-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin: 12px 0 20px;
}

.trust-icons img {
  width: auto;
  height: 48px;
  max-width: 92px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: #ffffff;
  padding: 6px;
}

.hero-cta-copy {
  font-weight: 900;
  margin: 22px 0 12px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.secondary-link {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  padding: 0 20px;
}

.secondary-link:hover {
  color: var(--lime);
}

.hero-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #1f1728;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-stat {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.88);
  color: #111827;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.hero-stat strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
}

.section {
  padding: 56px 0;
}

.section-label {
  color: var(--violet);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.intro-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 26px;
  box-shadow: 0 22px 60px rgba(53, 40, 68, 0.12);
  border: 1px solid rgba(144, 120, 173, 0.18);
}

.bento-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.bento-card {
  border-radius: 30px;
  padding: 24px;
  min-height: 210px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.bento-card:hover {
  transform: translateY(-5px);
}

.glass-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(144, 120, 173, 0.26);
  box-shadow: 0 22px 48px rgba(53, 40, 68, 0.12);
  backdrop-filter: blur(16px);
}

.metal-card {
  background: linear-gradient(145deg, #f8f7fa, #d8d0e2 48%, #ffffff);
  border: 1px solid rgba(53, 40, 68, 0.18);
  box-shadow: inset 0 1px 0 #ffffff, 0 18px 42px rgba(53, 40, 68, 0.12);
}

.matte-card {
  background: #352844;
  color: #ffffff;
  border: 1px solid rgba(191, 242, 117, 0.25);
  box-shadow: 0 22px 52px rgba(36, 27, 46, 0.24);
}

.matte-card h3,
.matte-card p,
.matte-card li {
  color: #ffffff;
}

.accent-dot {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  color: #111827;
  font-weight: 900;
  margin-bottom: 16px;
}

.split-card {
  display: grid;
  gap: 20px;
  align-items: center;
  border-radius: 34px;
  padding: 22px;
  margin-top: 22px;
  background: #ffffff;
  border: 1px solid rgba(144, 120, 173, 0.18);
  box-shadow: 0 18px 48px rgba(53, 40, 68, 0.1);
}

.split-card:nth-child(even) {
  background: #f7f5fa;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 26px;
  display: block;
}

.service-list,
.issue-list,
.zip-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.service-list li,
.issue-list li,
.zip-list li {
  list-style: none;
  padding-left: 0;
}

.service-list li,
.issue-list li {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(144, 120, 173, 0.09);
  color: #1f2937;
}

.dark-section {
  background:
    linear-gradient(135deg, rgba(53, 40, 68, 0.96), rgba(36, 27, 46, 0.98)),
    radial-gradient(circle at 80% 0%, rgba(191, 242, 117, 0.22), transparent 30%);
}

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

.issue-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.issue-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: 22px;
}

.reviews-shell {
  position: relative;
  margin-top: 28px;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 28px;
  padding: 22px;
  border: 1px solid rgba(144, 120, 173, 0.18);
  box-shadow: 0 18px 42px rgba(53, 40, 68, 0.1);
}

.review-card .stars {
  font-size: 1.1rem;
  margin: 0 0 12px;
  color: #6b4b00;
}

.review-name {
  font-weight: 900;
  color: #111827;
  margin-bottom: 8px;
}

.review-controls {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.review-controls button {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--violet);
  color: #ffffff;
  border: 0;
  font-weight: 900;
}

.area-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.zip-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.zip-list li {
  background: var(--lime);
  color: #111827;
  border-radius: 18px;
  padding: 12px 14px;
  font-weight: 900;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.faq-item {
  border-radius: 24px;
  background: #ffffff;
  padding: 20px;
  border: 1px solid rgba(144, 120, 173, 0.18);
}

.cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #bff275 0%, #f3ffe1 48%, #ffffff 100%);
}

.cta-panel {
  display: grid;
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(53, 40, 68, 0.15);
  border-radius: 34px;
  padding: 28px;
  box-shadow: 0 24px 64px rgba(53, 40, 68, 0.15);
}

.cta-btn {
  background: var(--violet);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(53, 40, 68, 0.26);
}

.site-footer {
  background: #241b2e;
  color: #ffffff;
  padding: 44px 0 28px;
}

.site-footer h2,
.site-footer h3,
.site-footer p,
.site-footer a,
.site-footer li {
  color: #ffffff;
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
}

.disclaimer {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0.82;
}

.mobile-sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  transform: translateY(110%);
  opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(36, 27, 46, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-sticky-call a {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--lime);
  color: #111827;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  font-size: 1rem;
}

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

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bento-card:nth-child(1) {
    grid-row: span 2;
  }
}

@media (min-width: 768px) {
  body.has-mobile-call {
    padding-bottom: 0;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .brand span {
    max-width: none;
    white-space: nowrap;
  }

  .desktop-nav {
    display: flex !important;
    align-items: center;
    gap: 20px;
  }

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

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

  .hero {
    padding: 58px 0 52px;
  }

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

  .hero-copy {
    padding: 42px;
  }

  .split-card {
    grid-template-columns: 65fr 35fr;
    padding: 28px;
  }

  .split-card.image-left .split-media {
    order: -1;
  }

  .issue-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .reviews-track {
    grid-auto-columns: calc((100% - 36px) / 3);
  }

  .area-grid,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

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

@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1.25fr 0.85fr 0.9fr;
  }

  .bento-card:nth-child(1) {
    grid-row: span 2;
  }

  .bento-card:nth-child(4) {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .mobile-sticky-call {
    display: block;
  }
}
