﻿:root {
  --bg: #070912;
  --surface: #11172b;
  --text: #edf1ff;
  --muted: #b8c1e3;
  --accent: #70f0ca;
  --accent-2: #86a2ff;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 20px 60px rgba(8, 10, 22, 0.5);
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(circle at 15% 0%, #172453 0%, var(--bg) 38%, #05060d 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.background-glow {
  position: fixed;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 10%, rgba(112, 240, 202, 0.2), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(134, 162, 255, 0.2), transparent 35%),
    radial-gradient(circle at 50% 90%, rgba(253, 116, 190, 0.16), transparent 45%);
  filter: blur(35px);
  z-index: -1;
  animation: pulse 11s ease-in-out infinite alternate;
}

@keyframes pulse {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(0, -2%, 0) scale(1.08); }
}

.section {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.theme-card {
  background: rgba(6, 10, 23, 0.56);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hero {
  padding-top: 2rem;
  padding-bottom: 0.5rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.1rem;
}

.brand span { color: var(--accent); }

.nav-cta {
  text-decoration: none;
  color: #06130f;
  border: 1px solid rgba(112, 240, 202, 0.75);
  padding: 0.62rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent) 0%, #8cf8d7 100%);
  box-shadow: 0 10px 22px rgba(112, 240, 202, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nav-cta:hover {
  border-color: rgba(112, 240, 202, 1);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(112, 240, 202, 0.35);
}

.hero-copy {
  padding: 4.8rem 0 2rem;
  max-width: 860px;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
}

h1 {
  margin: 0.45rem 0 1.1rem;
  line-height: 1.03;
  font-size: clamp(2rem, 6vw, 4.3rem);
  letter-spacing: -0.03em;
}

.subhead {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
}

.pricing h2,
.theme-card h2 {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  margin-bottom: 0.85rem;
}

.pricing-intro {
  margin: 0 0 1.1rem;
  max-width: 68ch;
  color: var(--muted);
  line-height: 1.72;
}

.plan {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.25rem;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  transition: transform 0.32s ease, border-color 0.32s ease;
}

.plan:hover {
  transform: translateY(-5px);
  border-color: rgba(112, 240, 202, 0.55);
}

.featured {
  border-color: rgba(112, 240, 202, 0.98);
}

.main-offer {
  margin: 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.badge {
  display: inline-block;
  margin: 0;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #06130f;
  background: var(--accent);
}

.badge-muted {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

h3 {
  margin: 0.75rem 0 0.4rem;
  font-size: 1.1rem;
}

.price {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.25rem);
  font-weight: 750;
}

.price span {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}

.plan-intro,
.bottom-line,
.roi,
.about p {
  color: var(--muted);
  line-height: 1.72;
}

.offer-comparison {
  margin-bottom: 1rem;
}

.pricing-support {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}

.support-note {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: rgba(5, 10, 25, 0.42);
}

.support-note h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.support-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.features-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.85rem;
}

.feature-block {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.85rem;
  background: rgba(5, 10, 25, 0.45);
}

.feature-block h4 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.feature-block p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.addons-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1rem;
}

.main-pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.optional-support {
  margin-bottom: 48px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .main-pricing,
  .support-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .audit-button {
    display: none;
  }
}

.addons {
  grid-template-columns: minmax(270px, 420px);
}

.secondary-plan {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  border-color: rgba(255, 255, 255, 0.16);
}

.theme-card p {
  color: var(--muted);
  line-height: 1.72;
}

.reason-list {
  list-style: none;
  margin: 0.8rem 0 0.7rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.reason-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.58rem 0.72rem;
  background: rgba(5, 10, 25, 0.42);
  color: var(--muted);
}

.info-list {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.info-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.7rem 0.78rem;
  background: rgba(5, 10, 25, 0.42);
  color: var(--muted);
  line-height: 1.62;
}

.info-item strong {
  color: var(--text);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.faq-list h2 {
  grid-column: 1 / -1;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.9rem 0.9rem 0.95rem;
  background: rgba(5, 10, 25, 0.42);
}

.faq-item h3 {
  margin: 0 0 0.42rem;
  font-size: 1.02rem;
}

.faq-item p {
  margin: 0;
}

ul {
  margin: 0.8rem 0 0.6rem;
  padding-left: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

.about {
  margin-top: 2.2rem;
}

.suggestions {
  margin-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.quote {
  margin-top: 2.2rem;
}

.demo-carousel-section {
  margin-top: 2.2rem;
  background:
    linear-gradient(165deg, rgba(18, 28, 58, 0.42), rgba(6, 10, 23, 0.58)),
    rgba(6, 10, 23, 0.56);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.demo-carousel-section p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0.35rem 0 0;
  max-width: 72ch;
}

.demo-carousel-shell {
  position: relative;
  margin-top: 1.15rem;
}

.demo-carousel-viewport {
  overflow: hidden;
  width: 100%;
  padding-top: 4px; /* Prevent hover lift from clipping at the top */
  box-sizing: border-box;
}

.demo-carousel-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
  transition: transform 0.3s ease-out;
}

.demo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, rgba(13, 19, 44, 0.94), rgba(8, 13, 30, 0.96));
  box-shadow: 0 10px 24px rgba(8, 10, 22, 0.35);
  cursor: pointer;
  transition: box-shadow 300ms ease, border-color 300ms ease, transform 300ms ease;
  flex: 0 0 calc(25% - 0.75rem); /* 4 cards */
}

.demo-visual {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0b1228; /* placeholder */
}

.demo-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.demo-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transform-origin: center;
  will-change: transform;
  transition: transform 300ms ease;
}

/* Demo-specific media backgrounds */
.demo-card--electrician .demo-media { background-image: url("images/demo-electrician.jpg"); }
.demo-card--garage-door .demo-media { background-image: url("images/demo-garage-door.jpg"); }
.demo-card--hvac .demo-media { background-image: url("images/demo-hvac.jpg"); }
.demo-card--junk-removal .demo-media { background-image: url("images/demo-junk-removal.jpg"); }
.demo-card--kitchen-remodeling .demo-media { background-image: url("images/demo-kitchen-remodeling.jpg"); }
.demo-card--landscaping .demo-media { background-image: url("images/demo-landscaping.jpg"); }
.demo-card--moving-company .demo-media { background-image: url("images/demo-moving-company.jpg"); }
.demo-card--pest-control .demo-media { background-image: url("images/demo-pest-control.jpg"); }
.demo-card--plumbing .demo-media { background-image: url("images/demo-plumbing.jpg"); }
.demo-card--pool-service .demo-media { background-image: url("images/demo-pool-service.jpg"); }
.demo-card--pressure-washing .demo-media { background-image: url("images/demo-pressure-washing.jpg"); }
.demo-card--roofing .demo-media { background-image: url("images/demo-roofing.jpg"); }
.demo-card--tree-service .demo-media { background-image: url("images/demo-tree-service.jpg"); }

.demo-overlay-top,
.demo-overlay-bottom {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.demo-overlay-top {
  top: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0));
}

.demo-overlay-bottom {
  bottom: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}

.demo-title {
  position: absolute;
  top: 0.7rem;
  left: 0.75rem;
  z-index: 2;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.demo-button {
  position: absolute;
  left: 0.75rem;
  bottom: 0.7rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(112, 240, 202, 0.58);
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  background: rgba(9, 16, 34, 0.42);
  backdrop-filter: blur(2px);
  transition: background-color 220ms ease, border-color 220ms ease;
}

.demo-card:hover {
  box-shadow: 0 16px 34px rgba(8, 10, 22, 0.5);
  border-color: rgba(112, 240, 202, 0.42);
  transform: translateY(-1px);
}

.demo-card:hover .demo-media {
  transform: scale(1.03);
}

.demo-card:hover .demo-button {
  background: rgba(112, 240, 202, 0.22);
  border-color: rgba(112, 240, 202, 0.95);
  color: #fff;
}

.demo-carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.demo-arrow {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.demo-arrow:hover {
  background: rgba(112, 240, 202, 0.2);
  border-color: rgba(112, 240, 202, 0.5);
}

@media (max-width: 1024px) {
  .demo-card {
    flex: 0 0 calc(33.333% - 0.666rem); /* 3 cards */
  }
}

@media (max-width: 768px) {
  .demo-card {
    flex: 0 0 calc(50% - 0.5rem); /* 2 cards */
  }
}

@media (max-width: 480px) {
  .demo-card {
    flex: 0 0 100%; /* 1 card */
  }
  .demo-carousel-track {
    gap: 0;
  }
}

.audit-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.audit-left h2 {
  font-size: 34px;
  margin-bottom: 16px;
}

.audit-left p {
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 18px;
}

.quote-response {
  color: var(--accent);
  font-weight: 600;
  opacity: 1;
}

.audit-benefits {
  list-style: none;
  padding: 0;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audit-benefits li {
  font-size: 15px;
  opacity: 0.85;
  position: relative;
  padding-left: 20px;
}

.audit-benefits li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #7EF2C6;
}

.audit-right {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 32px;
}

.quote-form {
  margin: 0;
}

.audit-form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 0;
}

.form-group > label {
  font-size: 13px;
  opacity: 0.92;
  margin-bottom: 6px;
  display: block;
  color: var(--muted);
}

.audit-form input,
.audit-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 14px;
  font: inherit;
  color: var(--text);
  background: rgba(5, 10, 25, 0.6);
}

.audit-form textarea {
  min-height: 110px;
}

.audit-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  margin-top: 18px;
  border: 0;
  background: var(--accent);
  color: #06130f;
  box-shadow: 0 10px 22px rgba(112, 240, 202, 0.21);
  cursor: pointer;
}

.audit-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(112, 240, 202, 0.26);
}

.pricing-cta {
  display: flex;
  width: max-content;
  margin: 1.15rem auto 0;
  position: relative;
  z-index: 2;
}

.footer {
  padding: 3.3rem 0 2.3rem;
  text-align: center;
  color: var(--muted);
}

.footer-local {
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  gap: 22px;
  margin-top: 16px;
  justify-content: center;
}

.footer-socials a {
  font-size: 20px;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s ease;
}

.footer-socials a:hover {
  color: #7EF2C6;
  transform: translateY(-2px);
}

.mobile-quote {
  display: none;
}

body > section.section {
  margin-top: 2.2rem;
}

main > section.section:not(.about):not(.quote):not(.demo-sites) {
  margin-top: 3rem;
}

main > section.section:first-child {
  margin-top: 2.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (max-width: 1024px) {
  .demo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .nav {
    justify-content: center;
  }

  .nav > .nav-cta {
    display: none;
  }

  .nav .brand {
    margin-inline: auto;
    text-align: center;
  }

  .hero-copy { padding-top: 3.2rem; }
  .feature-block p { font-size: 0.92rem; }
  .about { margin-top: 0; }
  .demo-grid { grid-template-columns: 1fr; }
  h1 {
    margin: 0.55rem 0 1.2rem;
    line-height: 1.08;
  }
  h2,
  h3 {
    line-height: 1.28;
  }
  p,
  li {
    line-height: 1.78;
  }
  .form-group > label {
    font-size: 0.95rem;
  }
  .audit-form input,
  .audit-form textarea {
    padding: 0.74rem 0.82rem;
  }

  .mobile-quote {
    display: block;
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 0.9rem;
    z-index: 1000;
    text-align: center;
    text-decoration: none;
    background: var(--accent);
    color: #06130f;
    font-weight: 800;
    padding: 0.92rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(112, 240, 202, 0.82);
    box-shadow: 0 14px 30px rgba(112, 240, 202, 0.32);
  }

  body {
    padding-bottom: 4.8rem;
  }
}

@media (max-width: 768px) {
  .nav {
    justify-content: center;
  }

  .nav > .audit-button {
    display: none;
  }

  .nav .brand {
    margin-inline: auto;
    text-align: center;
  }

  .faq-list,
  .info-list,
  .pricing-support,
  .addons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1000px) {
  .audit-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .audit-form-row-2 {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
