/* ============================================================
   new-style.css — unified stylesheet for all new-style pages
   Covers: landing pages, location pages, and articles pages.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple: #5D00DE;
  --purple-end: #8A0D3D;
  --purple-dark: #4800B0;
  --purple-light: #C084FC;
  --purple-pale: #F3EEFF;
  --purple-mid: #EAD8FF;
  --gradient: linear-gradient(150deg, #5D00DE 0%, #8A0D3D 100%);
  --gradient-hover: linear-gradient(150deg, #4800B0 0%, #6D0830 100%);
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--gray-900); background: #fff; overflow-x: hidden; }

/* ============================================================
   NAV — white by default (articles / content pages)
   ============================================================ */

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--gradient);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  padding: 0 2rem; height: 66px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 28px; width: auto; display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: rgba(255,255,255,0.8); font-weight: 500; font-size: 0.875rem; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.9); margin: 4px 0; border-radius: 2px; }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone { display: flex; align-items: center; gap: 0.4rem; text-decoration: none; color: #fff; font-weight: 600; font-size: 0.875rem; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); border-radius: 6px; padding: 0.4rem 0.75rem; transition: background 0.2s; white-space: nowrap; }
.nav-phone:hover { background: rgba(255,255,255,0.25); }
.nav-phone-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding-top: 76px; padding-bottom: 4rem;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  background: linear-gradient(140deg, #F3EEFF 0%, #F5E8F7 45%, #fff 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%; width: 800px; height: 800px;
  border-radius: 50%; background: radial-gradient(circle, rgba(93,0,222,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -15%; left: -5%; width: 500px; height: 500px;
  border-radius: 50%; background: radial-gradient(circle, rgba(138,13,61,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 860px; margin: 0 auto; padding: 4rem 2rem 2.5rem;
  width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 2.5rem;
  position: relative; z-index: 1;
}
.hero-headline { text-align: center; width: 100%; }
.hero-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  width: 100%;
  align-items: start;
}
.hero-cta-col { display: flex; flex-direction: column; }
.hero-cta-col .btn-primary { width: 100%; text-align: center; box-sizing: border-box; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--purple); color: #fff;
  font-size: 0.72rem; font-weight: 700; padding: 0.4rem 1rem;
  border-radius: 20px; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0.08em;
}
.hero-badge svg { width: 12px; height: 12px; }
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 5.5rem); font-weight: 900;
  line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.03em;
}
.hero h1 em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subheader {
  font-size: 1.08rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-mini-stat {
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
}
.hero-mini-stat strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--gray-900);
}
.hero-mini-stat span {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.78rem;
  color: var(--gray-600);
}
.hero-features { list-style: none; margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 0.8rem; }
.hero-features li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; color: var(--gray-700); }
.check-icon {
  width: 22px; height: 22px; background: var(--gradient); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.check-icon svg { width: 12px; height: 12px; color: #fff; fill: none; stroke: #fff; stroke-width: 2.5; }
.hero-installs-note {
  font-size: 0.85rem; color: var(--gray-500);
  margin: 0 0 1.5rem; font-style: italic;
}
.hero-price-note {
  font-size: 0.82rem; color: var(--gray-400);
  margin: 0.6rem 0 0;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gradient); color: #fff; padding: 0.9rem 2rem;
  border-radius: 10px; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s; display: inline-block; letter-spacing: -0.01em;
}
.btn-primary:hover { filter: brightness(0.88); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(93,0,222,0.35); }
.btn-ghost {
  color: var(--gray-700); font-size: 0.875rem; font-weight: 600;
  text-decoration: none; display: flex; align-items: center; gap: 0.35rem;
}
.btn-ghost:hover { color: var(--purple); }
.hero-social-proof { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--gray-200); }
.social-proof-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-600); margin-bottom: 0.75rem; }
.media-list { display: flex; gap: 2rem; align-items: center; }
.media-name { font-weight: 800; color: var(--gray-800); font-size: 0.9rem; letter-spacing: 0.02em; }


/* REVIEW SHOWCASE */
.review-showcase {
  padding: 0.5rem 0 1rem;
  background: linear-gradient(140deg, #F3EEFF 0%, #F5E8F7 45%, #fff 100%);
}
.review-showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 0;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-review-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: transparent;
}
.google-rating-card {
  background: rgba(255,255,255,0.38);
  border-radius: 16px;
  padding: 1rem 1rem 0.95rem;
  box-shadow: 0 8px 24px rgba(17,24,39,0.03);
  backdrop-filter: blur(10px);
}
.google-rating-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
}
.google-reviews-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.google-reviews-text {
  font-size: 0.96rem;
  font-weight: 600;
  color: #202124;
}
.google-brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.google-brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.google-score-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.google-score {
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #202124;
  line-height: 1;
}
.google-score-sub {
  font-size: 0.84rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.google-stars,
.hero-review-stars {
  color: #F4B400;
  letter-spacing: 0.06em;
}
.google-stars {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}
.hero-review-carousel {
  overflow: hidden;
}
.hero-review-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.35s ease;
}
.hero-review-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  flex: 0 0 calc(50% - 0.5rem);
  background: rgba(255,255,255,0.32);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 8px 22px rgba(17,24,39,0.025);
  backdrop-filter: blur(8px);
}
.hero-review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.hero-review-body { flex: 1; }
.hero-review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}
.hero-review-meta strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-900);
}
.hero-review-meta span {
  font-size: 0.78rem;
  color: var(--gray-600);
}
.hero-review-stars {
  font-size: 0.78rem;
  margin-bottom: 0.35rem;
}
.hero-review-item p {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.55;
}
.hero-review-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
}
.hero-review-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(17,24,39,0.2);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.hero-review-dot.is-active { background: var(--gray-900); }

/* HERO CHECKLIST */
.hero-checklist {
  list-style: none; padding: 0; margin: 0 0 1.25rem;
  display: inline-flex; flex-direction: column; gap: 0.45rem;
  align-self: flex-start;
}
.hero-checklist li {
  font-size: 0.92rem; color: var(--gray-700);
  display: flex; align-items: baseline; gap: 0.45em; text-align: left;
}
.hero-checklist li::before {
  content: '✓';
  color: #5D00DE; font-weight: 700; flex-shrink: 0;
}

/* HERO TRUST BAR */
.hero-trust-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
  padding: 1rem 2rem 1.75rem;
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
}
.hero-trust-google {
  display: flex; align-items: center; gap: 0.5rem;
}
.htg-stars { color: #F4B400; font-size: 1rem; }
.htg-label { font-size: 0.88rem; font-weight: 600; color: var(--gray-700); }
.hero-trust-divider {
  width: 1px; height: 28px; background: var(--gray-200);
}
.hero-trust-media {
  display: flex; align-items: center; gap: 0.6rem;
}
.htm-label {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--gray-400); white-space: nowrap;
  line-height: 1;
}
.htm-logos {
  height: 38px; width: auto; opacity: 0.85;
  transform: translateY(-2px);
}

/* STATS BAR */
.stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--gradient); color: #fff; padding: 1.5rem 2rem;
}
.stats-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat-num { font-size: 1.85rem; font-weight: 900; letter-spacing: -0.03em; }
.stat-label { font-size: 0.78rem; opacity: 0.75; margin-top: 0.2rem; }

/* ============================================================
   FEATURES
   ============================================================ */

.section { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; }
.section-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--purple); margin-bottom: 0.6rem; }
.section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 0.75rem; }
.section-sub { color: var(--gray-600); font-size: 1rem; max-width: 560px; line-height: 1.65; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.landing-page #how-it-works .section {
  max-width: 1000px;
  text-align: center;
}
.landing-page #how-it-works .section-sub {
  margin-left: auto;
  margin-right: auto;
}
.landing-page .features-grid {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(2, 1fr);
}
/* Align why-cheaper intro text with the features-grid below it */
#why-cheaper .section-tag,
#why-cheaper .section-title,
#why-cheaper .section-sub {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
/* Constrain local city-specific content to match page content width */
.local-content-section .section {
  max-width: 900px;
}
.local-content-section p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.feature-card {
  background: var(--gray-50); border-radius: 16px; padding: 1.75rem;
  border: 1.5px solid var(--gray-200); transition: all 0.25s;
}
.feature-card:hover { border-color: var(--purple-light); box-shadow: 0 8px 28px rgba(93,0,222,0.12); transform: translateY(-3px); }
.feature-icon {
  width: 46px; height: 46px; background: var(--purple-mid); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--purple); fill: none; stroke: currentColor; stroke-width: 1.8; }
.feature-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.65; }

/* ============================================================
   COMPARISON CARDS
   ============================================================ */

.compare-section { background: #FAF8FF; padding: 5rem 0; }
.compare-inner { max-width: 760px; margin: 0 auto; padding: 0 2rem; }
.compare-title { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 900; text-align: center; color: var(--gray-900); letter-spacing: -0.03em; margin-bottom: 2rem; }
.compare-title-br { display: none; }
.comp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 32px rgba(17,24,39,0.13);
}
.comp-table thead th {
  padding: 1rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: left;
  background: var(--gray-100);
  color: var(--gray-600);
  width: 50%;
}
.comp-table thead th:last-child {
  background: var(--gradient);
  color: #fff;
}
.comp-table tbody td {
  border-top: 1px solid var(--gray-100);
  vertical-align: top;
}
.comp-table tbody td:last-child {
  background: rgba(93,0,222,0.03);
}
.comp-row--price td {
  padding: 1.5rem 1.25rem;
}
.comp-price {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.comp-price--comp { color: var(--gray-400); }
.comp-price--bv {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.comp-price-note { font-size: 0.75rem; color: var(--gray-400); margin-top: 0.35rem; }
.comp-finance-note { font-size: 0.75rem; color: var(--primary); font-weight: 600; margin-top: 0.4rem; }
.comp-row--shared td {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.875rem;
  padding: 0.75rem 1.25rem;
  background: #fff;
}
.comp-row--diff td {
  padding: 0.9rem 1.25rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}
.comp-row--diff td:last-child {
  color: var(--purple);
  font-weight: 600;
}
.comp-cta {
  display: block;
  margin-top: 1.5rem;
  text-align: center;
  text-decoration: none;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  transition: opacity 0.2s;
}
.comp-cta:hover { opacity: 0.88; }

/* ============================================================
   AUTOMATION
   ============================================================ */

.auto-section { padding: 5rem 0; background: #fff; }
.auto-inner {
  max-width: 1000px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.auto-icon-wrap { display: flex; justify-content: center; align-items: center; }
.auto-circle {
  width: 240px; height: 240px; border-radius: 50%;
  background: var(--purple-mid); display: flex; align-items: center; justify-content: center;
  position: relative;
}
.auto-circle::before {
  content: ''; position: absolute; inset: -16px; border-radius: 50%;
  border: 2px dashed rgba(93,0,222,0.25);
}
.auto-circle svg { width: 90px; height: 90px; color: var(--purple); stroke: currentColor; fill: none; stroke-width: 1.5; }
.auto-content .section-tag { margin-bottom: 0.6rem; }
.auto-content .section-title { margin-bottom: 1rem; }
.auto-content p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-bg { background: var(--purple-pale); padding: 5rem 0; }
.testimonials-inner { max-width: 760px; margin: 0 auto; padding: 0 2rem; }
.t-card {
  background: #fff; border-radius: 16px; padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.stars { color: #F59E0B; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 1rem; }
.t-card blockquote { font-size: 0.95rem; color: var(--gray-600); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; }
.t-author { font-weight: 700; font-size: 0.85rem; }
.t-via { font-size: 0.78rem; color: var(--gray-600); }
/* Manual reviews carousel */
.reviews-carousel {
  margin-top: 2.5rem; overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.reviews-track {
  display: flex; gap: 1.25rem;
  min-width: max-content;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.reviews-track .t-card { flex-shrink: 0; }
.reviews-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 1.75rem;
}
.reviews-btn {
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: var(--purple); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.15s; flex-shrink: 0; opacity: 0.85;
}
.reviews-btn:hover { opacity: 1; }
.reviews-dots { display: flex; gap: 0.5rem; align-items: center; }
.reviews-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gray-300);
  cursor: pointer; transition: background 0.2s, transform 0.2s; border: none; padding: 0;
}
.reviews-dot.active { background: var(--purple); transform: scale(1.3); }

/* ============================================================
   FORM SECTION
   ============================================================ */

.form-bg { background: var(--gradient); padding: 5rem 0; scroll-margin-top: 66px; }
.form-inner { max-width: 680px; margin: 0 auto; padding: 0 2rem; }
.form-header { text-align: center; margin-bottom: 2.5rem; color: #fff; }
.form-header .form-eyebrow { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; margin-bottom: 0.75rem; }
.form-header h2 { font-size: 2rem; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 0.5rem; }
.form-price-big { font-size: 3.5rem; font-weight: 900; letter-spacing: -0.05em; }
.form-price-note { font-size: 0.85rem; opacity: 0.7; margin-bottom: 0.75rem; }
.form-finance-pill { display: inline-block; font-size: 0.78rem; font-weight: 700; padding: 0.3rem 0.85rem; border-radius: 999px; border: 1.5px solid rgba(255,255,255,0.35); color: #fff; margin-bottom: 1rem; letter-spacing: 0.01em; }
.form-header p { font-size: 0.9rem; opacity: 0.8; }
.form-card-white {
  background: #fff; border-radius: 20px; padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.form-section-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-600); margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.field-hint { font-size: 0.75rem; color: var(--gray-600); margin-top: 0.4rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.8rem; color: var(--gray-800); margin-bottom: 0.35rem; }
.counter-control {
  display: flex; align-items: center;
  border: 1.5px solid var(--gray-200); border-radius: 10px; overflow: hidden; background: #fff;
}
.counter-btn {
  width: 44px; height: 44px; background: var(--gray-100); border: none;
  font-size: 1.25rem; cursor: pointer; color: var(--purple); font-weight: 700;
  display: flex; align-items: center; justify-content: center; transition: background 0.15s;
}
.counter-btn:hover { background: var(--gray-200); }
.counter-val { flex: 1; text-align: center; font-weight: 700; font-size: 1rem; }
.form-input {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200); border-radius: 10px;
  font-size: 0.9rem; font-family: inherit; transition: border-color 0.2s; background: #fff; color: var(--gray-900);
}
.form-input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(93,0,222,0.1); }
.checkbox-group { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem; }
.check-label { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; }
.check-label input[type="checkbox"] { margin-top: 1px; accent-color: var(--purple); width: 16px; height: 16px; flex-shrink: 0; }
.check-label span { font-size: 0.875rem; color: var(--gray-700); }
.hr-divider { border: none; border-top: 1.5px solid var(--gray-100); margin: 1.5rem 0; }
.btn-submit-main {
  width: 100%; padding: 1rem; background: var(--gradient); color: #fff;
  border: none; border-radius: 12px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: filter 0.2s, transform 0.2s, box-shadow 0.2s; letter-spacing: -0.01em;
  font-family: inherit;
}
.btn-submit-main:hover { filter: brightness(0.88); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.form-trust-row { display: flex; justify-content: center; gap: 1.5rem; margin-top: 1.25rem; flex-wrap: wrap; }
.trust-pill { font-size: 0.78rem; color: var(--gray-600); display: flex; align-items: center; gap: 0.3rem; }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */

.before-after-section { background: #fff; padding: 5rem 0; }
.before-after-inner { max-width: 1000px; margin: 0 auto; padding: 0 2rem; }
.ba-source-note { text-align: center; font-size: 0.8rem; color: var(--gray-500); margin-bottom: 2rem; }
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.ba-card {
  min-height: 380px;
  border-radius: 20px;
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
  padding: 0;
}
.ba-card--after {
  border-color: rgba(93,0,222,0.18);
}
.ba-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */



/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta-section {
  background: linear-gradient(140deg, #F3EEFF 0%, #F5E8F7 45%, #fff 100%);
  padding: 4.5rem 0;
}
.final-cta-inner {
  max-width: 760px; margin: 0 auto; padding: 0 2rem; text-align: center;
}
.final-cta-sub { margin: 0 auto; text-align: center; }
.final-cta-actions { display: flex; justify-content: center; margin-top: 1.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */

.finance-terms-bar { background: var(--gray-100); padding: 1.25rem 2rem; }
.finance-terms-bar p { max-width: 900px; margin: 0 auto; font-size: 0.72rem; color: var(--gray-500); line-height: 1.6; }
.finance-terms-bar a { color: var(--gray-500); text-decoration: underline; }

footer { background: var(--gray-900); padding: 3rem 2rem; }
.footer-inner { max-width: 900px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-block .logo { font-size: 1.2rem; font-weight: 900; color: #fff; }
.footer-logo-block p { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-top: 0.4rem; max-width: 260px; line-height: 1.6; }
.footer-links-block h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 0.75rem; }
.footer-links-block ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links-block a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-links-block a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 0.35rem; margin-top: 0.9rem; }
.footer-contact a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-areas { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-areas h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 0.9rem; }
.footer-areas-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-areas-list a,
.footer-areas-list span { display: inline-block; padding: 0.3rem 0.75rem; border-radius: 999px; font-size: 0.8rem; border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.6); }
.footer-areas-list a { text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.footer-areas-list a:hover { color: #fff; border-color: rgba(255,255,255,0.45); }
.footer-bottom { text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ============================================================
   LOCATION PAGE OVERRIDES
   ============================================================ */

.location-page .hero { min-height: auto; padding-bottom: 6.5rem; }
.location-page .hero-inner { grid-template-columns: 1fr; }
.location-page .hero-content { max-width: 640px; justify-self: center; text-align: center; }
.location-page .hero-features { display: inline-flex; flex-direction: column; text-align: left; }
.location-page .hero-actions { justify-content: center; }
.location-page .features-grid { grid-template-columns: repeat(2, 1fr); }
.location-page .auto-inner { max-width: 860px; padding: 0 2rem; display: block; }
.location-page .auto-content { text-align: center; }
.location-page .auto-content p { margin: 0 auto 1rem; max-width: 820px; }
.location-page .why-us-section .section { max-width: 860px; text-align: center; }
.location-page .why-us-section .section-sub,
.location-page .why-us-copy {
  max-width: 820px; margin-left: auto; margin-right: auto;
}
.location-page .why-us-copy {
  color: var(--gray-600); font-size: 1rem; line-height: 1.75; margin-top: 1rem;
}

/* FAQ (landing + location pages) */
.landing-page .faq-section,
.location-page .faq-section { background: #fff; padding: 5rem 0; }
.landing-page .faq-list,
.location-page .faq-list {
  max-width: 860px; margin: 3rem auto 0;
  display: flex; flex-direction: column; gap: 1rem;
}
.landing-page .faq-item,
.location-page .faq-item {
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  border-radius: 16px; padding: 0; overflow: hidden;
}
.landing-page .faq-item summary,
.location-page .faq-item summary {
  list-style: none; cursor: pointer; padding: 1.25rem 1.5rem;
  font-weight: 700; font-size: 0.95rem; color: var(--gray-900); position: relative;
}
.landing-page .faq-item summary::-webkit-details-marker,
.location-page .faq-item summary::-webkit-details-marker { display: none; }
.landing-page .faq-item summary::after,
.location-page .faq-item summary::after {
  content: '+'; position: absolute; right: 1.5rem; top: 50%;
  transform: translateY(-50%); font-size: 1.2rem; color: var(--purple);
}
.landing-page .faq-item[open] summary::after,
.location-page .faq-item[open] summary::after { content: '-'; }
.landing-page .faq-item p,
.location-page .faq-item p {
  padding: 0 1.5rem 1.5rem; color: var(--gray-600);
  line-height: 1.75; font-size: 0.95rem;
}

/* ============================================================
   ARTICLES — listing and post pages
   ============================================================ */

body.articles-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.articles-footer {
  border-top: 1px solid var(--gray-200);
  padding: 24px;
  text-align: center;
  color: var(--gray-400);
  font-size: 0.875rem;
  margin-top: auto;
}

.articles-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  padding-top: calc(66px + 60px);
}

.articles-header {
  margin-bottom: 48px;
}

.articles-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 12px;
}

.articles-header p {
  font-size: 1.1rem;
  color: #555;
  margin: 0;
}

.articles-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.article-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
}

.article-card:first-child {
  border-top: 1px solid var(--gray-200);
}

.article-card:hover h2 {
  color: #2563eb;
}

.article-card-meta {
  margin-bottom: 8px;
}

.article-card-meta time {
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px;
  transition: color 0.15s;
}

.article-card-description {
  font-size: 0.975rem;
  color: #555;
  margin: 0 0 12px;
  line-height: 1.6;
}

.article-card-read {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2563eb;
}

.articles-empty {
  color: #888;
  font-size: 1rem;
}

/* Single post */
.article-post-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  padding-top: calc(66px + 48px);
}

.article-post-inner {
  max-width: 680px;
}

.article-back {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  margin-bottom: 36px;
}

.article-back:hover {
  text-decoration: underline;
}

.article-post-header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-200);
}

.article-post-date {
  display: block;
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.article-post-header h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
}

.article-post-description {
  font-size: 1.1rem;
  color: #555;
  margin: 0;
  line-height: 1.65;
}

.article-post-content {
  line-height: 1.75;
  font-size: 1.05rem;
  color: #2a2a2a;
}

.article-post-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2em 0 0.6em;
}

.article-post-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1.8em 0 0.5em;
}

.article-post-content p {
  margin: 0 0 1.4em;
}

.article-post-content ul,
.article-post-content ol {
  margin: 0 0 1.4em;
  padding-left: 1.6em;
}

.article-post-content li {
  margin-bottom: 0.4em;
}

.article-post-content a {
  color: #2563eb;
}

.article-post-content blockquote {
  border-left: 3px solid #2563eb;
  margin: 1.5em 0;
  padding: 0.5em 1.2em;
  color: #555;
  font-style: italic;
}

.article-post-content code {
  background: var(--gray-100);
  padding: 0.15em 0.4em;
  border-radius: 3px;
  font-size: 0.9em;
}

.article-post-content pre {
  background: var(--gray-100);
  padding: 1.2em;
  border-radius: 6px;
  overflow-x: auto;
  font-size: 0.9em;
}

.article-post-cta {
  margin-top: 60px;
  padding: 40px;
  background: #eff6ff;
  border-radius: 12px;
  text-align: center;
}

.article-post-cta h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 20px;
}

.cta-button {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}

.cta-button:hover {
  background: #1d4ed8;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .hero { min-height: auto; padding-bottom: 1rem; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem 1.5rem 1.5rem;
  }
  .hero-headline,
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-content {
    justify-self: center;
    align-self: start;
  }
  .hero h1 { margin-bottom: 0.5rem; }
  .hero-subheader {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-mini-stats {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
  }
  .hero-actions { justify-content: center; }
  .review-showcase-inner { padding: 0 1.5rem 0.5rem; }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 66px; left: 0; right: 0;
    background: var(--gradient);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 1.25rem 2rem; gap: 1.25rem; z-index: 99;
  }
  .nav-links.open a { color: rgba(255,255,255,0.9); }

  .hero { min-height: auto; padding-bottom: 1rem; }
  .hero-inner { padding: 1rem 1.5rem 1.5rem; gap: 1.5rem; }
  .review-showcase { padding-top: 0.5rem; }
  .review-showcase-inner { padding: 0 1.5rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .landing-page #how-it-works .section { max-width: 860px; }
  .compare-section { padding: 3.5rem 0; }
  .auto-section { padding: 3.5rem 0; }
  .auto-inner { grid-template-columns: 1fr; text-align: center; padding: 0 1.5rem; }
  .auto-icon-wrap { margin-bottom: 2rem; }
  .auto-content { display: flex; flex-direction: column; align-items: center; }
  .auto-content p { text-align: center; }
  .testimonials-bg { padding: 3.5rem 0; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; margin-top: 2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .form-bg { padding: 3.5rem 0; }
  .before-after-section { padding: 3.5rem 0; }
  .before-after-inner { padding: 0 1.5rem; }
  .final-cta-section { padding: 3.5rem 0; }
  .final-cta-inner { padding: 0 1.5rem; }
  .section { padding: 3.5rem 1.5rem; }

  .location-page .hero { padding-bottom: 11rem; }
  .location-page .features-grid { grid-template-columns: repeat(2, 1fr); }
  .landing-page .faq-section { padding: 3.5rem 0; }
  .location-page .faq-section { padding: 3.5rem 0; }
}

@media (max-width: 820px) {
  .landing-page .features-grid { grid-template-columns: 1fr; }
  .hero-body { grid-template-columns: 1fr; gap: 1rem; justify-items: center; }
  .hero-cta-col { align-items: stretch; width: 100%; }
  .hero-installs-note { text-align: center; }
  .hero-price-note { text-align: center; }
  .hero-trust-bar { flex-direction: column; gap: 0.6rem; padding-bottom: 1.5rem; }
  .hero-trust-divider { display: none; }
  .hero-trust-google { justify-content: center; }
  .hero-trust-media { flex-direction: column; align-items: center; gap: 0.3rem; margin-top: 10px; }
}

@media (max-width: 600px) {
  .hero { min-height: auto; padding-bottom: 0.75rem; }
  .hero-inner { padding: 0.5rem 1.25rem 1.1rem; gap: 1rem; }
  .hero h1 { font-size: clamp(2.25rem, 10vw, 3rem); margin-bottom: 0.5rem; }
  .hero-body { grid-template-columns: 1fr; }
  .hero-cta-col { align-items: stretch; }
  .hero-subheader { font-size: 1rem; line-height: 1.65; margin-bottom: 0.9rem; }
  .hero-mini-stats { grid-template-columns: 1fr; gap: 0.6rem; }
  .hero-mini-stat { padding: 0.75rem 0.8rem; }
  .hero-trust-bar { gap: 1rem; padding: 0.75rem 1.25rem 1.25rem; }
  .hero-trust-divider { display: none; }
  .hero-actions { display: block; }
  .hero-actions .btn-primary { display: block; width: 100%; text-align: center; box-sizing: border-box; }
  .google-rating-card { padding: 0.85rem 0.9rem; border-radius: 12px; }
  .google-rating-head,
  .google-score-row,
  .hero-review-item,
  .hero-review-meta { flex-direction: column; align-items: flex-start; }
  .hero-review-item { flex-basis: 100%; padding: 0.85rem; border-radius: 14px; }
  .hero-review-avatar { width: 44px; height: 44px; }
  .features-grid { grid-template-columns: 1fr; }
  .auto-inner { padding: 0 1.25rem; }
  .testimonials-inner { padding: 0 1.25rem; }
  .t-card { padding: 1.5rem; }
  .t-card blockquote { font-size: 0.875rem; line-height: 1.7; }
  .form-row { grid-template-columns: 1fr; }
  .form-card-white { padding: 1.5rem; }
  .form-price-big { font-size: 2.5rem; }
  .form-inner { padding: 0 1.25rem; }
  .before-after-section { padding: 3rem 0; }
  .before-after-inner { padding: 0 1.25rem; }
  .before-after-grid { grid-template-columns: 1fr; }
  .ba-card { min-height: 300px; border-radius: 16px; }
  .ba-img { min-height: 300px; }
  .final-cta-section { padding: 3rem 0; }
  .final-cta-inner { padding: 0 1.25rem; }
  .section { padding: 3rem 1.25rem; }
  .footer-top { flex-direction: column; }

  .landing-page #how-it-works .section { text-align: center; }
  .landing-page .faq-item summary { padding: 1rem 1.25rem; padding-right: 3rem; }
  .landing-page .faq-item p { padding: 0 1.25rem 1.25rem; }
  .location-page .features-grid { grid-template-columns: 1fr; }
  .location-page .faq-item summary { padding: 1rem 1.25rem; padding-right: 3rem; }
  .location-page .faq-item p { padding: 0 1.25rem 1.25rem; }

  .articles-main { padding: calc(66px + 40px) 20px 60px; }
  .article-post-main { padding: 32px 20px 60px; }
  .article-post-cta { padding: 28px 24px; }
}

@media (max-width: 600px) {
  .nav-phone-label { display: none; }
  .nav-phone { padding: 0.4rem 0.5rem; }
  .google-brand-mark { width: 36px; height: 36px; }
  .google-stars { font-size: 0.9rem; }
  .google-score { font-size: 1rem; }
  .comp-table thead th,
  .comp-table tbody td { padding: 0.6rem 0.75rem; font-size: 0.8rem; }
  .comp-price { font-size: 1.75rem; }
  .compare-title-br { display: block; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.72rem; }
}
