/* ═══════════════════════════════════════════════════════════════════════════
   NEW LEAF CLEANING — REDESIGN PREVIEW
   Pure CSS · No build tools · Self-contained
   Brand: Tan #d4b896 | Mint #c5d8c7 | Dark #3a3a3a | White #fff | Off-white #f9f7f4
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ─────────────────────────────────────────────────────────── */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #3a3a3a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ── CSS VARIABLES ────────────────────────────────────────────────────────── */

:root {
  /* Brand colors */
  --tan:        #d4b896;
  --tan-dark:   #c4a882;
  --tan-light:  #e8d5be;
  --mint:       #c5d8c7;
  --mint-dark:  #a8c4ab;
  --mint-light: #dceede;
  --dark:       #3a3a3a;
  --dark-2:     #2a2a2a;
  --dark-3:     #1a1a1a;
  --white:      #ffffff;
  --offwhite:   #f9f7f4;
  --offwhite-2: #f2ede8;
  --border:     #e0d8d0;
  --border-2:   #ccc;
  --text-muted: #777;
  --text-light: #aaa;
  --green:      #22c55e;
  --gold:       #f59e0b;

  /* Spacing */
  --section-pad:  100px;
  --section-pad-sm: 60px;
  --container:    1200px;
  --container-sm: 960px;
  --gutter:       24px;

  /* Typography */
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, sans-serif;

  /* Nav */
  --nav-height: 72px;

  /* Transitions */
  --transition: 0.2s ease;
  --transition-slow: 0.35s ease;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.14);
  --shadow-xl:  0 16px 48px rgba(0,0,0,0.18);
}

/* ── TYPOGRAPHY ───────────────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--dark);
  font-weight: normal;
}

h1 { font-size: clamp(38px, 5vw, 64px); }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: 18px; }

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tan-dark);
  margin-bottom: 12px;
}

.section-intro {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-intro {
  margin: 16px auto 0;
}

/* ── LAYOUT UTILITIES ─────────────────────────────────────────────────────── */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-sm {
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: var(--section-pad) 0;
}

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 0;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--tan);
  color: var(--dark);
  border: 2px solid var(--tan);
}

.btn-primary:hover {
  background: var(--tan-dark);
  border-color: var(--tan-dark);
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
}

.btn-dark:hover {
  background: var(--dark-2);
  border-color: var(--dark-2);
  box-shadow: var(--shadow-md);
}

.btn-mint {
  background: var(--mint);
  color: var(--dark);
  border: 2px solid var(--mint);
}

.btn-mint:hover {
  background: var(--mint-dark);
  border-color: var(--mint-dark);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 13px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 11px;
}

.btn-block {
  display: block;
  width: 100%;
}

/* ── NAV ──────────────────────────────────────────────────────────────────── */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--dark);
  letter-spacing: -0.5px;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-logo span {
  color: var(--tan-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--dark);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}

.nav-phone:hover {
  color: var(--tan-dark);
}

/* ── NAV DROPDOWN ─────────────────────────────────────────────────────────── */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  transition: color var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: inherit;
}

.nav-dropdown-toggle:hover { color: var(--dark); }

.nav-arrow {
  font-size: 10px;
  transition: transform var(--transition);
  display: inline-block;
}

.nav-dropdown:hover .nav-arrow,
.nav-dropdown.open .nav-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  min-width: 210px;
  z-index: 1001;
  padding: 8px 0;
  list-style: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown-menu a:hover {
  background: var(--offwhite);
  color: var(--dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: transform var(--transition), opacity var(--transition);
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */

.hero {
  min-height: calc(100vh - var(--nav-height));
  background: var(--offwhite);
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: var(--offwhite-2);
  z-index: 0;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  max-width: 580px;
}

.hero-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.hero-stars .stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 1px;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--dark-3);
  letter-spacing: -1px;
}

.hero-sub {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

/* Hero Form */
.hero-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 16px;
}

.hero-form form {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.hero-form .form-fields {
  display: flex;
  gap: 12px;
  flex: 1;
}

.hero-form input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 0;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  min-width: 0;
}

.hero-form input::placeholder {
  color: var(--text-light);
}

.hero-form input:focus {
  border-color: var(--tan);
}

.hero-form .btn {
  padding: 14px 24px;
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.form-trust {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.trust-badge .check {
  color: var(--green);
  font-size: 15px;
}

/* Hero Visual Card */
.hero-visual {
  background: var(--dark);
  border-left: 4px solid var(--tan);
  padding: 40px;
  color: var(--white);
  position: relative;
}

.hero-visual-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-visual-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(212, 184, 150, 0.3);
}

.hero-visual h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 8px;
}

.hero-visual-divider {
  width: 40px;
  height: 1px;
  background: var(--tan);
  margin: 16px 0;
}

.hero-visual-price {
  margin-bottom: 8px;
}

.hero-visual-price .from {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

.hero-visual-price .amount {
  font-family: var(--font-serif);
  font-size: 52px;
  color: var(--tan);
  line-height: 1;
}

.hero-visual-price .note {
  font-size: 13px;
  color: #767676;
  margin-top: 8px;
  line-height: 1.5;
}

.hero-visual .btn {
  width: 100%;
  margin: 24px 0 20px;
  background: var(--tan);
  color: var(--dark);
  border-color: var(--tan);
}

.hero-visual .btn:hover {
  background: var(--tan-dark);
  border-color: var(--tan-dark);
}

.hero-visual-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-visual-perks li {
  font-size: 13px;
  color: #767676;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-visual-perks li .check {
  color: var(--mint-dark);
  font-size: 14px;
}

/* ── STAT STRIP ───────────────────────────────────────────────────────────── */

.stat-strip {
  background: var(--dark);
  padding: 0;
}

.stat-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-strip-inner--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
}

.stat-item {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--tan);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 13px;
  color: #767676;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ── SERVICES GRID ────────────────────────────────────────────────────────── */

.services-section {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.service-card {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
  background: var(--white);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.service-card:last-child {
  border-right: none;
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  z-index: 2;
  transform: translateY(-4px);
}

.service-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--tan);
  color: var(--dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
}

.service-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.service-price {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 4px;
}

.service-price-from {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}

.service-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--tan-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
  margin-top: auto;
}

.service-link:hover {
  gap: 10px;
}

/* ── HOW IT WORKS ─────────────────────────────────────────────────────────── */

.how-section {
  background: var(--offwhite);
  padding: var(--section-pad) 0;
}

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

.step {
  text-align: center;
  padding: 0 20px;
}

.step-number {
  width: 72px;
  height: 72px;
  border: 2px solid var(--tan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--tan-dark);
  margin: 0 auto 24px;
  position: relative;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  color: var(--tan);
  font-size: 28px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────────────────────── */

.testimonials-section {
  background: var(--white);
  padding: var(--section-pad) 0;
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 32px;
  position: relative;
  transition: box-shadow var(--transition-slow);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--offwhite);
  border: 1px dashed var(--border-2) !important;
}

.testimonial-cta-stars {
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.testimonial-cta-heading {
  font-family: var(--font-serif);
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial-cta-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 220px;
}

.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--tan-light);
  line-height: 0.7;
  margin-bottom: 16px;
  display: block;
  height: 40px;
}

.testimonial-text {
  font-size: 15px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 2px;
}

.testimonial-detail {
  font-size: 12px;
  color: var(--text-muted);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ── COMPARISON TABLE ─────────────────────────────────────────────────────── */

.comparison-section {
  background: var(--offwhite);
  padding: var(--section-pad) 0;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: var(--white);
  min-width: 560px;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--dark);
  background: var(--offwhite);
  width: 40%;
}

.comparison-table thead th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
  background: var(--offwhite);
}

.comparison-table thead th.col-nlc {
  background: var(--mint);
  color: var(--dark);
  font-weight: 800;
  letter-spacing: 1px;
}

.comparison-table td.col-nlc {
  background: rgba(197, 216, 199, 0.15);
  font-weight: 700;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: var(--offwhite);
}

.comparison-table tr:hover td.col-nlc {
  background: rgba(197, 216, 199, 0.25);
}

.check-yes {
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
}

.check-no {
  color: var(--border-2);
  font-size: 18px;
}

.check-varies {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* ── FAQ ACCORDION ────────────────────────────────────────────────────────── */

.faq-section {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color var(--transition);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--tan-dark);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

details[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-item:hover .faq-question {
  color: var(--tan-dark);
}

.faq-answer {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 680px;
}

/* ── CTA SECTIONS ─────────────────────────────────────────────────────────── */

.cta-section {
  background: var(--mint);
  padding: var(--section-pad) 0;
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 12px;
}

.cta-section .section-intro {
  margin: 0 auto 36px;
  color: #444;
}

.cta-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px;
  margin-bottom: 20px;
}

.cta-form form {
  display: flex;
  gap: 12px;
}

.cta-form .form-fields {
  display: flex;
  gap: 12px;
  flex: 1;
}

.cta-form input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 0;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  min-width: 0;
}

.cta-form input::placeholder {
  color: var(--text-light);
}

.cta-form input:focus {
  border-color: var(--tan);
}

.cta-form .btn {
  padding: 14px 28px;
  font-size: 12px;
  white-space: nowrap;
}

.cta-contact-info {
  font-size: 14px;
  color: #555;
  letter-spacing: 0.3px;
}

/* ── FOOTER ───────────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--dark-3);
  color: #ccc;
  padding: 80px 0 0;
}

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand .footer-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}

.footer-tagline {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: normal;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-login-links {
  margin-top: 0.75rem;
}

.footer-links a {
  font-size: 14px;
  color: #888;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--tan);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}

.footer-contact-item a {
  color: #888;
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--tan);
}

.footer-hours {
  font-size: 14px;
  color: #888;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: #666;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: #666;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--tan);
}

/* ── CITY / LOCAL PAGES ───────────────────────────────────────────────────── */

.city-hero {
  background: var(--offwhite);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}

.city-hero h1 {
  max-width: 700px;
  margin-bottom: 16px;
}

.city-hero .section-intro {
  margin-bottom: 32px;
}

.city-breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.city-breadcrumb a {
  color: var(--tan-dark);
}

.city-neighborhoods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.city-neighborhood-tag {
  font-size: 12px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--white);
  transition: border-color var(--transition), color var(--transition);
}

.city-neighborhood-tag:hover {
  border-color: var(--tan);
  color: var(--dark);
}

/* ── FORMS ────────────────────────────────────────────────────────────────── */

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-input,
.form-textarea,
.form-select {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 0;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--tan);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-error {
  font-size: 12px;
  color: #dc2626;
  margin-top: 6px;
}

.form-success {
  font-size: 14px;
  color: var(--green);
  padding: 14px 16px;
  border: 1px solid var(--mint-dark);
  background: var(--mint-light);
  margin-bottom: 20px;
}

/* ── UTILITIES ────────────────────────────────────────────────────────────── */

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.text-muted  { color: var(--text-muted); }
.text-light  { color: var(--text-light); }
.text-tan    { color: var(--tan-dark); }
.text-mint   { color: var(--mint-dark); }
.text-green  { color: var(--green); }

.fw-400 { font-weight: 400; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

.font-serif { font-family: var(--font-serif); }

.mt-0  { margin-top: 0; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.hidden   { display: none !important; }

.skip-nav {
  position: absolute;
  top: -40px;
  left: 0;
  background: #3a3a3a;
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  text-decoration: none;
  font-size: 14px;
}
.skip-nav:focus {
  top: 0;
}

.footer-heading {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: block;
  color: inherit;
}

.sr-only  {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--mint);
  color: var(--dark);
}

.tag-tan {
  background: var(--tan);
}

.tag-dark {
  background: var(--dark);
  color: var(--white);
}

.accent-bar {
  width: 48px;
  height: 3px;
  background: var(--tan);
  margin: 16px 0 0;
}

.accent-bar.centered {
  margin: 16px auto 0;
}

/* ── RESPONSIVE (mobile-first) ────────────────────────────────────────────── */

/* Large desktop */
@media (min-width: 1400px) {
  :root {
    --container: 1320px;
  }
}

/* Tablet landscape → desktop transition */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr 360px;
    gap: 48px;
  }

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

  .service-card {
    border-bottom: 1px solid var(--border);
  }

  .service-card:nth-child(2) {
    border-right: none;
  }

  .service-card:nth-child(3) {
    border-right: 1px solid var(--border);
    border-bottom: none;
  }

  .service-card:nth-child(4) {
    border-right: none;
    border-bottom: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Tablet */
@media (max-width: 900px) {
  :root {
    --section-pad: 72px;
  }

  .hero::before {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-visual {
    max-width: 480px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .stat-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-bottom: none;
  }

  .stat-item:last-child {
    border-bottom: none;
    border-right: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .step-arrow {
    display: none;
  }

  .step {
    text-align: left;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 0;
  }

  .step-number {
    margin: 0;
    flex-shrink: 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 560px;
    margin: 0 auto;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px 16px;
    font-size: 14px;
  }
}

/* Mobile nav */
@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 16px;
  }

  .nav-dropdown-toggle { font-size: 16px; }
  .nav-arrow { display: none; }

  .nav-dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--border);
    padding: 4px 0 4px 12px;
    margin-top: 8px;
    min-width: auto;
  }

  .nav-dropdown-menu a {
    padding: 8px 12px;
    font-size: 15px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    gap: 12px;
  }

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

  .nav-phone {
    font-size: 13px;
  }

  .hero {
    padding: 60px 0;
    min-height: auto;
  }

  .hero h1 {
    font-size: 36px;
    letter-spacing: -0.5px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-form form {
    flex-direction: column;
  }

  .hero-form .form-fields {
    flex-direction: column;
  }

  .hero-form .btn {
    width: 100%;
    text-align: center;
  }

  .trust-badges {
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .service-card:last-child {
    border-bottom: none;
  }

  .stat-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .cta-form form {
    flex-direction: column;
  }

  .cta-form .form-fields {
    flex-direction: column;
  }

  .cta-form .btn {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .comparison-table th:first-child,
  .comparison-table td:first-child {
    width: 35%;
    font-size: 13px;
    padding: 12px 12px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px;
    font-size: 13px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  :root {
    --section-pad: 48px;
    --gutter: 16px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-item {
    padding: 32px 16px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-form {
    padding: 16px;
  }

  .hero-visual {
    padding: 28px;
  }

  .hero-visual-price .amount {
    font-size: 44px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .faq-question {
    font-size: 15px;
    padding: 18px 0;
  }

  .cta-form {
    padding: 20px;
  }
}

/* Print */
@media print {
  .site-nav,
  .hero-form,
  .cta-section,
  .site-footer .footer-bottom {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   REDESIGN PREVIEW EXTENSIONS
   Additional styles for: residential.html, contact.html, st-pete.html
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Breadcrumb ────────────────────────────────────────────────────────────── */
.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}
.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--tan-dark); }
.breadcrumb .sep { margin: 0 8px; color: #767676; }

/* ── Page Hero (interior pages — narrower, centered, mint bg) ─────────────── */
.page-hero {
  background: var(--mint);
  padding: 72px 0 60px;
  text-align: center;
}
.page-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.page-hero h1 { margin-bottom: 18px; letter-spacing: -0.5px; }
.page-hero .hero-sub {
  font-size: 17px;
  color: #3a5040;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 100%;
}
.page-hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.page-hero-trust {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: #3a5040;
  font-weight: 500;
}
.page-hero-trust span { display: flex; align-items: center; gap: 5px; }

/* ── Pricing Section ──────────────────────────────────────────────────────── */
.pricing-section {
  background: var(--offwhite);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 24px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px;
  position: relative;
}
.pricing-card.featured { border-left: 4px solid var(--mint-dark); }
.pricing-card.deep     { border-left: 4px solid var(--tan); }

.most-popular-badge {
  display: inline-block;
  background: var(--mint);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
.pricing-card .pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Pricing Tables */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.pricing-table th {
  text-align: left;
  padding: 10px 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
  background: var(--offwhite);
  white-space: nowrap;
}
.pricing-table td {
  padding: 11px 8px;
  border-bottom: 1px solid #f0ebe3;
  color: var(--dark);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--offwhite); }
.pricing-table td:first-child { font-weight: 500; }
.pricing-table td.best-val { font-weight: 700; color: #2a5a2e; }

.pricing-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}
.savings-bar {
  background: var(--mint);
  padding: 16px 28px;
  border-left: 4px solid var(--mint-dark);
  font-size: 15px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── What's Included ──────────────────────────────────────────────────────── */
.included-section { background: var(--white); }
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 64px;
}
.included-category h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--mint);
}
.included-category ul { display: flex; flex-direction: column; gap: 9px; }
.included-category ul li {
  font-size: 15px;
  color: #555;
  padding-left: 22px;
  position: relative;
}
.included-category ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--mint-dark);
  font-weight: 700;
}
.addons-box {
  margin-top: 48px;
  padding: 24px 28px;
  background: var(--offwhite);
  border-left: 3px solid var(--tan);
}
.addons-box h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--dark);
}
.addons-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 36px;
  list-style: none;
}
.addons-list li {
  font-size: 14px;
  color: #555;
  padding-left: 18px;
  position: relative;
}
.addons-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--tan-dark);
  font-weight: 700;
}

/* ── Our Process (3-step inline) ──────────────────────────────────────────── */
.process-section { background: var(--offwhite); }
.process-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  background: var(--white);
}
.process-step-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
}
.process-step-item:last-child { border-right: none; }
.step-num {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--tan-light);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step-item h3 { font-size: 18px; margin-bottom: 10px; }
.process-step-item p  { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ── Why Cards (4-grid) ───────────────────────────────────────────────────── */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  border: 1px solid var(--border);
  padding: 28px 24px;
  background: var(--white);
}
.why-card .card-icon { font-size: 1.75rem; margin-bottom: 16px; }
.why-card h3 { font-size: 17px; margin-bottom: 10px; }
.why-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── Residential CTA Form ─────────────────────────────────────────────────── */
.page-cta {
  background: var(--mint);
  padding: 80px 0;
  text-align: center;
}
.page-cta-inner {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.page-cta h2 { margin-bottom: 36px; }
.page-cta-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.page-cta-form input {
  flex: 1;
  min-width: 160px;
  padding: 14px 16px;
  border: 1px solid #a8c4ab;
  border-radius: 0;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  outline: none;
}
.page-cta-form input:focus { border-color: var(--dark); }
.page-cta-tagline { font-size: 13px; color: #3a5040; }

/* ── Contact Page ─────────────────────────────────────────────────────────── */
.contact-hero {
  background: var(--offwhite);
  padding: 64px 0 52px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.contact-hero-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.contact-hero h1 { margin-bottom: 14px; }
.contact-hero .hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.contact-hero .rating-row {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.rating-stars { color: #f59e0b; letter-spacing: 2px; }

.contact-main { background: var(--white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Form Card */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
}
.form-card h2 { font-size: 22px; margin-bottom: 6px; }
.form-card .sub { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.form-card .form-group { margin-bottom: 20px; }
.form-card label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 7px;
}
.form-card input,
.form-card select,
.form-card textarea {
  display: block;
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  outline: none;
  -webkit-appearance: none;
  transition: border-color var(--transition);
}
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus { border-color: var(--tan); }
.form-card textarea { min-height: 90px; resize: vertical; }
.form-privacy { font-size: 12px; color: var(--text-light); margin-top: 10px; }
.form-alt-text {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
}
.form-alt-text a { color: var(--dark); font-weight: 600; text-decoration: underline; }

/* Contact Info Column */
.contact-info-col { padding-top: 4px; }
.contact-info-col h3 {
  font-size: 18px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.contact-block { margin-bottom: 26px; }
.contact-block-icon-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cb-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.cb-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.cb-text strong a { color: var(--dark); }
.cb-text strong a:hover { color: var(--tan-dark); }
.cb-text p { font-size: 13px; color: var(--text-muted); margin-top: 3px; line-height: 1.55; }
.fast-text-box {
  background: var(--mint);
  padding: 24px;
  border-left: 4px solid var(--mint-dark);
  margin-top: 32px;
}
.fast-text-box p { font-size: 15px; color: var(--dark); margin-bottom: 14px; line-height: 1.6; }

/* Contact Trust Cards */
.contact-trust { background: var(--offwhite); }
.contact-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 24px;
}
.contact-trust-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.check-icon { color: var(--mint-dark); font-size: 1.1rem; }
.contact-trust-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── St. Pete Page ────────────────────────────────────────────────────────── */
.city-local-trust { background: var(--offwhite); }
.city-local-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.local-copy {
  font-size: 16px;
  color: #555;
  line-height: 1.85;
}
.local-copy strong { color: var(--dark); font-weight: 600; }
.local-stats-card {
  background: var(--dark);
  padding: 36px 32px;
}
.local-stat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.local-stat:last-child { border-bottom: none; }
.local-stat .ls-icon { font-size: 1.2rem; flex-shrink: 0; }
.local-stat .ls-text { font-size: 15px; color: #ccc; line-height: 1.45; }
.local-stat .ls-text strong { color: var(--white); display: block; }

/* City Services Grid */
.city-services { background: var(--white); }
.city-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.city-service-card {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  background: var(--white);
}
.city-service-card:last-child { border-right: none; }
.city-service-card h3 { font-size: 18px; margin-bottom: 8px; }
.city-service-card .csc-price { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.city-service-card .btn { padding: 10px 20px; font-size: 11px; }

/* Neighborhoods */
.neighborhoods-section { background: var(--offwhite); }
.neighborhoods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.neighborhood-chip {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--tan);
  background: var(--white);
  font-size: 13px;
  color: var(--dark);
  font-weight: 500;
  /* NO border-radius — brand DNA */
}
.neighborhoods-note {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}
.neighborhoods-note a {
  color: var(--dark);
  font-weight: 600;
  text-decoration: underline;
}

/* City Pricing Box */
.city-pricing { background: var(--white); }
.city-pricing-box { max-width: 660px; }
.city-pricing-box h2 { margin-bottom: 16px; }
.city-pricing-box p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }

/* Testimonial (single) */
.single-testimonial { background: var(--mint); }
.testimonial-single-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.t-stars { font-size: 1.25rem; color: #f59e0b; letter-spacing: 2px; margin-bottom: 20px; }
.t-quote {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: #1a3020;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.t-author { font-size: 14px; color: #3a5040; font-weight: 600; }

/* Location pills on city hero */
.location-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.location-pill {
  font-size: 13px;
  color: #3a5040;
  font-weight: 500;
  padding: 6px 14px;
  border: 1px solid #a8c4ab;
  background: rgba(255,255,255,0.45);
}

/* ── Responsive additions ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .city-services-grid { grid-template-columns: repeat(3, 1fr); }
  .city-service-card { border-bottom: 1px solid var(--border); }
  .city-service-card:nth-child(3n) { border-right: none; }
  .city-service-card:last-child { border-bottom: none; }
  .city-local-layout { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .process-steps-row { grid-template-columns: 1fr; }
  .process-step-item { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step-item:last-child { border-bottom: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-trust-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; gap: 28px; }
  .city-services-grid { grid-template-columns: 1fr; }
  .city-service-card { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 768px) {
  .page-hero-buttons { flex-direction: column; align-items: center; }
  .page-hero-trust   { flex-direction: column; align-items: center; gap: 10px; }
  .why-grid { grid-template-columns: 1fr; }
  .page-cta-form { flex-direction: column; align-items: stretch; }
  .page-cta-form input { min-width: unset; }
  .form-card { padding: 24px; }
  .location-pills { gap: 8px; }
}


/* ── 404 PAGE ──────────────────────────────────────────────────────────────── */

.error-section {
  min-height: calc(100vh - var(--nav-height, 72px) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: var(--offwhite, #f9f7f4);
}

.error-inner {
  text-align: center;
  max-width: 520px;
}

.error-code {
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(96px, 16vw, 160px);
  line-height: 1;
  color: var(--tan, #d4b896);
  display: block;
  margin-bottom: 8px;
}

.error-heading {
  font-size: clamp(24px, 4vw, 36px);
  color: var(--dark, #3a3a3a);
  margin-bottom: 16px;
}

.error-message {
  font-size: 17px;
  color: var(--text-muted, #777);
  line-height: 1.7;
  margin-bottom: 40px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── USER MENU (logged-in nav state) ──────────────────────────────────────── */

.user-menu {
  position: relative;
  display: inline-block;
}

.user-menu-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.user-icon {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.user-menu-toggle:hover .user-icon {
  transform: translateY(2px);
}

.user-menu-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.user-menu-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: #3a3a3a;
  text-decoration: none;
  transition: background 0.2s ease;
  font-size: 15px;
}

.user-menu-item:hover {
  background: #f9f7f4;
}

.user-menu-item span {
  font-size: 18px;
}

.user-menu-divider {
  height: 1px;
  background: #e5e5e5;
  margin: 4px 0;
}

@media (max-width: 768px) {
  .user-menu-toggle {
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
  }

  .user-menu-dropdown {
    min-width: 200px;
    right: 0;
    left: auto;
  }

  .user-menu-item {
    padding: 12px 16px;
    font-size: 14px;
  }
}
