/* ============================================
   CLEANOVA — Premium Black + Silver Theme
   ============================================ */

:root {
  /* Base blacks */
  --black: #000000;
  --black-1: #060606;
  --black-2: #0a0a0a;
  --black-3: #101010;
  --black-4: #161616;
  --black-5: #1c1c1c;

  /* Silver spectrum */
  --silver-100: #f5f5f3;
  --silver-200: #d8d8d4;
  --silver-300: #b8b8b3;
  --silver-400: #8a8a85;
  --silver-500: #5a5a55;
  --silver-600: #3d3d3a;
  --silver-700: #2a2a28;

  /* Lines */
  --line: #242424;
  --line-soft: #1a1a1a;

  /* Typography */
  --font-display: 'Bodoni Moda', 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--silver-200);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

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

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

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--silver-300);
}

h1, h2, h3, h4 {
  font-family: var(--font-body);
  color: var(--silver-100);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: 0.15em; }
h3 { font-size: 1.05rem; letter-spacing: 0.18em; }
h4 { font-size: 0.78rem; letter-spacing: 0.2em; }

p { color: var(--silver-300); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; 
  left: 0; 
  right: 0;
  z-index: 100;
  padding: 6px 28px 0;
  background: transparent;
  border-bottom: none;
  transition: all 0.3s ease;
}

.nav.scrolled {
  padding-top: 4px;
}

.nav.scrolled .nav-inner {
  background: rgba(0, 0, 0, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.nav-inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 18px 34px;
  min-height: 92px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;

  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);

  position: relative;
}

.nav-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-200);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--silver-100);
}

.nav-dropdown { position: relative; }

.nav-dropdown > a::after {
  content: ' ⌄';
  font-size: 10px;
  margin-left: 4px;
  letter-spacing: 0;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--black-2);
  border: 1px solid var(--line);
  min-width: 220px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 22px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--silver-300);
}

.nav-dropdown-menu a:hover {
  color: var(--silver-100);
  background: var(--black-3);
}

.nav-links a.nav-cta {
  padding: 12px 12px 12px 24px;
  background: var(--silver-100);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  transition: all 0.2s ease;

  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.nav-links a.nav-cta::after {
  content: '→';
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  color: var(--black);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  transition: all 0.2s ease;
}

.nav-links a.nav-cta:hover {
  background: var(--silver-200);
}

.nav-links a.nav-cta:hover::after {
  transform: translateX(3px);
  background: rgba(0, 0, 0, 0.14);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  width: 42px;
  height: 42px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--silver-200);
  transition: all 0.2s ease;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-body);
  border-radius: 999px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--silver-100);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--silver-200);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.08);
}

.btn-ghost {
  background: transparent;
  color: var(--silver-100);
  border: 1px solid var(--silver-300);
}

.btn-ghost:hover {
  border-color: var(--silver-100);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.btn-small {
  padding: 11px 22px;
  font-size: 9.5px;
  border-radius: 999px;
}

.learn-more {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-200);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--silver-500);
  transition: all 0.2s ease;
}

.learn-more:hover {
  color: var(--silver-100);
  border-color: var(--silver-100);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1800&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

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

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.2vw, 4.8rem);
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-line {
  display: block;
}

.hero h1 .light {
  display: block;
  color: var(--silver-300);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.015em;
  font-weight: 500;
  font-size: 0.74em;
  line-height: 1.08;
  margin-top: 10px;
}

.hero-desc {
  font-size: 15px;
  color: var(--silver-300);
  margin-bottom: 38px;
  max-width: 460px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-features {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--silver-200);
}

.hero-feature svg {
  width: 22px;
  height: 22px;
  stroke: var(--silver-200);
  stroke-width: 1.4;
  fill: none;
}

/* ============ SECTION HEADER ============ */
.section {
  padding: 100px 40px;
  position: relative;
}

.section-narrow { padding: 80px 40px; }

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 14px;
}

.section-header .eyebrow {
  display: block;
  margin-bottom: 14px;
}

.section-header p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--silver-300);
}

/* ============ CHOOSE YOUR SERVICE (2-col split) ============ */
.split-section {
  background: var(--black);
  padding: 100px 40px 80px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1400px;
  margin: 0 auto;
}

.split-card {
  position: relative;
  min-height: 220px;
  padding: 38px 36px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.split-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.split-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.split-card.commercial::before {
  background-image: url('https://images.unsplash.com/photo-1483153597167-15375b89a20e?auto=format&fit=crop&w=1800&q=85');
  background-position: center 48%;
}

.split-card.residential::before {
  background-image: url('https://images.pexels.com/photos/6197108/pexels-photo-6197108.jpeg?auto=compress&dpr=1&h=900&w=1600');
  background-position: center center;
}

.split-card:hover { border-color: var(--silver-500); }
.split-card:hover::before { opacity: 0.65; }

.split-card > * { position: relative; z-index: 2; }

.split-card h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.split-card p {
  font-size: 13.5px;
  margin-bottom: 22px;
  max-width: 360px;
  line-height: 1.6;
}

/* ============ INDUSTRIES ROW ============ */
.industries {
  background: var(--black);
  padding: 80px 40px;
  border-top: 1px solid var(--line-soft);
}

.industries-title {
  text-align: center;
  margin-bottom: 50px;
}

.industries-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 38px 28px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  text-align: center;
  min-width: 0;
}

.industry-item svg {
  width: 30px;
  height: 30px;
  stroke: var(--silver-300);
  stroke-width: 1.3;
  fill: none;
}

.industry-item span {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--silver-200);
}

/* ============ PANEL GRID (image cards) ============ */
.panel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.panel-card {
  background: var(--black-3);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
}

.panel-card:hover {
  border-color: var(--silver-500);
  transform: scale(1.04);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.panel-image {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
  filter: grayscale(100%);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.panel-card:hover .panel-image {
  filter: grayscale(0%);
  transform: scale(1.08);
}

.panel-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
}

.panel-body {
  padding: 22px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.panel-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--silver-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  margin-top: -36px;
  background: var(--black-3);
  position: relative;
  z-index: 2;
}

.panel-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--silver-200);
  stroke-width: 1.4;
  fill: none;
}

.panel-card h3 {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  color: var(--silver-100);
  margin-bottom: 18px;
  line-height: 1.35;
}

/* ============ SERVICE POPUP MODAL ============ */
.service-card {
  cursor: pointer;
}

.service-click {
  margin-top: auto;
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-300);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.25s ease;
}

.service-card:hover .service-click {
  opacity: 1;
  transform: translateY(0);
  color: var(--silver-100);
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.service-modal.open {
  display: flex;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.service-modal-box {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  max-height: 90vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), transparent 35%),
    linear-gradient(180deg, #111111 0%, #050505 100%);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 28px;
  box-shadow:
    0 35px 100px rgba(0, 0, 0, 0.75),
    inset 0 0 0 1px rgba(255,255,255,0.035);
  animation: modalIn 0.32s ease forwards;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.service-modal-image {
  min-height: 440px;
  background-size: cover;
  background-position: center;
  filter: grayscale(45%) contrast(1.08);
  position: relative;
}

.service-modal-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.35) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.45));
}

.service-modal-content {
  padding: 54px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-modal-content h3 {
  margin-top: 14px;
  margin-bottom: 18px;
  font-size: 1.25rem;
  letter-spacing: 0.16em;
  line-height: 1.35;
}

.service-modal-content p {
  margin-bottom: 24px;
  color: var(--silver-300);
  font-size: 14px;
  line-height: 1.75;
}

.service-modal-content ul {
  list-style: none;
  margin-bottom: 30px;
}

.service-modal-content li {
  color: var(--silver-200);
  font-size: 13px;
  padding: 8px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.service-modal-content li::before {
  content: '✓';
  color: var(--silver-100);
  font-weight: 700;
}

.service-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.55);
  color: var(--silver-100);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.22s ease;
}

.service-modal-close:hover {
  background: var(--silver-100);
  color: var(--black);
  transform: rotate(90deg);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 800px) {
  .service-modal-box {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .service-modal-image {
    min-height: 240px;
  }

  .service-modal-content {
    padding: 38px 26px;
  }
}

/* ============ FEATURE BAR (image + checklist) ============ */
.feature-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--black-2);
  border: 1px solid var(--line);
  overflow: hidden;
}

.feature-content {
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-content h2 {
  font-size: 1.4rem;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}

.feature-content p {
  margin-bottom: 26px;
  font-size: 14px;
}

.feature-list {
  list-style: none;
  margin-bottom: 30px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 13px;
  color: var(--silver-200);
  border-bottom: 1px solid var(--line-soft);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d8d8d4' stroke-width='1.5'><circle cx='12' cy='12' r='10'/><path d='M8 12l3 3 5-5'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

.feature-image {
  background-size: cover;
  background-position: center;
  min-height: 380px;
  position: relative;
}

.feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 50%);
}

/* ============ TIER CARDS ============ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.tier-card {
  background: var(--black-3);
  border: 1px solid var(--line);
  padding: 24px 20px;
}

.tier-card h4 {
  font-size: 0.7rem;
  color: var(--silver-400);
  letter-spacing: 0.22em;
  margin-bottom: 6px;
}

.tier-card h3 {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.tier-card ul {
  list-style: none;
}

.tier-card li {
  font-size: 12.5px;
  color: var(--silver-300);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.tier-card li::before {
  content: '·';
  color: var(--silver-400);
  font-size: 20px;
  line-height: 12px;
  margin-top: 2px;
}

/* ============ ABOUT BAND (split) ============ */
.about-band {
  background: var(--black);
  padding: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.about-band-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  max-width: 1500px;
  margin: 0 auto;
}

.about-band-text {
  padding: 70px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-band-text h2 {
  font-size: 1.5rem;
  margin-bottom: 22px;
  letter-spacing: 0.14em;
  line-height: 1.4;
}

.about-band-text h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--silver-200);
  display: block;
  font-size: 1.4rem;
  margin-top: 6px;
}

.about-band-text p {
  font-size: 14px;
  margin-bottom: 26px;
  line-height: 1.7;
}

.about-band-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.about-band-image div {
  background-size: cover;
  background-position: center;
}

/* ============ STATS ROW ============ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--black-1);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.stat {
  padding: 50px 30px;
  text-align: center;
  border-right: 1px solid var(--line-soft);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 600;
  color: var(--silver-100);
  letter-spacing: 0.035em;
  line-height: 0.95;
  margin-bottom: 14px;
}

.stat-label {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-400);
}

/* ============ WHY GRID ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.why-card {
  background: var(--black-2);
  border: 1px solid var(--line);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: var(--silver-500);
}

.why-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--silver-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--silver-200);
  stroke-width: 1.3;
  fill: none;
}

.why-card h3 {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 12.5px;
  line-height: 1.6;
}

/* ============ TESTIMONIAL ============ */
.testimonial-section {
  background: var(--black);
  padding: 90px 40px;
}

.testimonial {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  border: 1px solid var(--line);
  background: var(--black-2);
  position: relative;
}

.testimonial-quote {
  font-size: 50px;
  font-family: var(--font-display);
  color: var(--silver-500);
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--silver-200);
  margin-bottom: 28px;
  line-height: 1.6;
}

.testimonial-cite {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-400);
}

/* ============ SERVICE AREAS ============ */
.areas-section {
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.055), transparent 32%),
    linear-gradient(180deg, #030303 0%, #080808 100%);
  padding: 110px 40px;
  overflow: hidden;
}

.areas-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.35;
  pointer-events: none;
}

.areas-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 48px;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}

.areas-grid > div:first-child {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.065), transparent 35%),
    rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 28px;
  padding: 46px 42px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 34px;
  margin-bottom: 34px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 20px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.055), transparent 55%),
    var(--black-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--silver-200);
  transition: all 0.28s ease;
}

.area-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.28);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), transparent 55%),
    #151515;
  box-shadow:
    0 16px 34px rgba(0,0,0,0.45),
    0 0 18px rgba(255,255,255,0.04);
}

.area-item svg {
  width: 17px;
  height: 17px;
  stroke: var(--silver-200);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
  transition: all 0.28s ease;
}

.area-item:hover svg {
  transform: scale(1.15);
  stroke: var(--silver-100);
}

.areas-map {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--black-2);
  padding: 0;
  box-shadow:
    0 28px 80px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.035);
}

.areas-map iframe {
  width: 100%;
  height: 560px;
  border: 0;
  display: block;
  filter: grayscale(100%) contrast(1.08) brightness(0.78);
  transition: all 0.35s ease;
}

.areas-map:hover iframe {
  filter: grayscale(15%) contrast(1.05) brightness(0.9);
  transform: scale(1.02);
}

.areas-map::after {
  content: 'Serving Metro Atlanta';
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(0,0,0,0.72);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--silver-100);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.areas-grid .btn {
  margin-top: 4px;
  box-shadow: 0 14px 35px rgba(255,255,255,0.06);
}

/* ============ CTA STRIP ============ */
.cta-strip {
  position: relative;
  padding: 110px 40px;
  text-align: center;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.58)),
    url('https://images.unsplash.com/photo-1758967458314-4bbbb2f3152d?q=80&w=1631&auto=format&fit=crop');
  background-size: cover;
  background-position: center 45%;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: none;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 50%);
  pointer-events: none;
}

.cta-strip h2,
.cta-strip p,
.cta-strip .cta-actions {
  position: relative;
  z-index: 2;
}

.cta-strip h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
  letter-spacing: 0.14em;
}

.cta-strip p {
  max-width: 540px;
  margin: 0 auto 32px;
  font-size: 14px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ PAGE HEAD ============ */
.page-head {
  position: relative;
  padding: 180px 40px 90px;
  text-align: center;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-head::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.9) 100%);
  z-index: 1;
}

.page-head.commercial::before {
  background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=1800&q=85&auto=format&fit=crop');
}

.page-head.residential::before {
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1800&q=85&auto=format&fit=crop');
}

.page-head.about::before {
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1800&q=85&auto=format&fit=crop');
}

.page-head.quote::before {
  background-image: url('https://images.unsplash.com/photo-1724026822916-3da5df1260f8?q=80&w=1632&auto=format&fit=crop');
}

.page-head-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.page-head h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.page-head p {
  font-size: 14px;
  color: var(--silver-300);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============ QUOTE FORM ============ */
.quote-wrap {
  background: var(--black);
  padding: 80px 40px 100px;
}

.quote-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
}

.quote-aside {
  padding: 40px 30px;
  background: var(--black-2);
  border: 1px solid var(--line);
}

.quote-aside h3 {
  margin-bottom: 16px;
}

.quote-aside p {
  font-size: 13.5px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.quote-aside ul {
  list-style: none;
}

.quote-aside li {
  padding: 12px 0;
  font-size: 12.5px;
  color: var(--silver-300);
  border-bottom: 1px solid var(--line-soft);
}

.quote-aside li:last-child { border-bottom: none; }

.quote-aside li strong {
  display: block;
  color: var(--silver-200);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 500;
}

.quote-form {
  background: var(--black-2);
  border: 1px solid var(--line);
  padding: 40px 36px;
}

.form-toggle {
  display: flex;
  gap: 6px;
  margin-bottom: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  background: var(--black-3);
}

.toggle-btn {
  flex: 1;
  padding: 14px;
  background: transparent;
  color: var(--silver-400);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.toggle-btn.active {
  background: var(--silver-100);
  color: var(--black);
}

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

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

.form-group label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-300);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  background: var(--black-3);
  border: 1px solid var(--line);
  color: var(--silver-100);
  font-size: 13.5px;
  font-family: var(--font-body);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--silver-400);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
  font-family: var(--font-body);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a8a85' stroke-width='1.5'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 36px;
}

.file-input-wrap {
  position: relative;
  border: 1px dashed var(--line);
  padding: 22px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.file-input-wrap:hover { border-color: var(--silver-500); }

.file-input-wrap input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-input-wrap span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-300);
}

.form-group-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.checkbox-pill {
  position: relative;
  cursor: pointer;
}

.checkbox-pill input { position: absolute; opacity: 0; }

.checkbox-pill span {
  display: inline-block;
  padding: 9px 14px;
  border: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--silver-300);
  transition: all 0.2s ease;
}

.checkbox-pill input:checked + span {
  background: var(--silver-100);
  color: var(--black);
  border-color: var(--silver-100);
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 11px;
  letter-spacing: 0.24em;
  margin-top: 8px;
}

/* ============ HAPPENS-NEXT ============ */
.happens-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 50px;
}

.happens-step {
  background: var(--black-2);
  border: 1px solid var(--line);
  padding: 32px 24px;
  position: relative;
}

.happens-step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--silver-500);
  line-height: 1;
  margin-bottom: 12px;
  font-style: italic;
}

.happens-step h3 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}

.happens-step p {
  font-size: 12.5px;
  line-height: 1.6;
}

/* ============ ABOUT PAGE CONTACT GRID ============ */
#contact {
  position: relative;
  background:
    radial-gradient(circle at center top, rgba(255,255,255,0.055), transparent 38%),
    var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 55px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08) 0%, transparent 28%),
    linear-gradient(180deg, #111111 0%, #050505 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 46px 32px 42px;
  text-align: center;
  transition: all 0.35s ease;
  cursor: pointer;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 55%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.03) 25%,
    rgba(255,255,255,0.28) 50%,
    rgba(255,255,255,0.03) 75%,
    transparent 100%
  );
  transform: rotate(18deg);
  opacity: 0;
  transition: all 0.65s ease;
  pointer-events: none;
}

.contact-card::after {
  display: inline-block;
  margin-top: 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-100);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s ease;
}

.contact-card:nth-child(1)::after {
  content: 'Call Now →';
}

.contact-card:nth-child(2)::after {
  content: 'Send Email →';
}

.contact-card:nth-child(3)::after {
  content: 'View Area →';
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.38);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.13) 0%, transparent 32%),
    linear-gradient(180deg, #151515 0%, #060606 100%);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.65),
    0 0 35px rgba(255, 255, 255, 0.055),
    inset 0 0 18px rgba(255, 255, 255, 0.035);
}
.contact-card h3,
.contact-card p,
.contact-icon,
.contact-card::after {
  position: relative;
  z-index: 2;
}

.contact-card:hover::before {
  left: 130%;
  opacity: 1;
}

.contact-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.contact-icon {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  background: rgba(255, 255, 255, 0.035);
  transition: all 0.35s ease;
  position: relative;
  z-index: 2;
}

.contact-card:hover .contact-icon {
  transform: scale(1.12) rotate(3deg);
  background: var(--silver-100);
  border-color: var(--silver-100);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--silver-200);
  stroke-width: 1.5;
  fill: none;
  transition: all 0.35s ease;
}

.contact-card:hover .contact-icon svg {
  stroke: var(--black);
}

.contact-card h3 {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.contact-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--silver-200);
  position: relative;
  z-index: 2;
}

.contact-card a {
  transition: all 0.25s ease;
}

.contact-card a:hover {
  color: var(--silver-100);
}

/* ============ CALENDLY EMBED ============ */
.calendly-wrap {
  background: var(--black-2);
  border: 1px solid var(--line);
  padding: 30px;
  margin-top: 30px;
}

.calendly-inline-widget {
  min-height: 700px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black-1);
  padding: 70px 40px 40px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand img {
  height: 56px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.footer-socials a:hover {
  border-color: var(--silver-300);
  background: var(--black-3);
}

.footer-socials svg {
  width: 14px;
  height: 14px;
  fill: var(--silver-300);
}

.footer h4 {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--silver-100);
  margin-bottom: 22px;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a {
  font-size: 12.5px;
  color: var(--silver-300);
  transition: color 0.2s ease;
}

.footer-list a:hover { color: var(--silver-100); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 12.5px;
  color: var(--silver-300);
  line-height: 1.6;
}

.footer-contact-item svg {
  width: 13px;
  height: 13px;
  stroke: var(--silver-400);
  stroke-width: 1.5;
  fill: none;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--silver-500);
  text-transform: uppercase;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .panel-grid { grid-template-columns: repeat(2, 1fr); }
  .happens-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
}

@media (max-width: 800px) {
  .feature-bar { grid-template-columns: 1fr; }
  .feature-image { min-height: 260px; order: -1; }
  .about-band-grid { grid-template-columns: 1fr; }
  .about-band-image { grid-template-columns: 1fr 1fr; min-height: 280px; }
  .areas-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .split-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav {
    padding: 10px 12px 0;
  }

  .nav-inner {
    padding: 14px 18px;
    min-height: 76px;
    border-radius: 16px;
  }

  .nav-logo img {
    height: 54px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--black-2);
    border-top: 1px solid var(--line);
    padding: 20px;
    gap: 16px;
    align-items: stretch;
  }
   .nav-logo img {
    height: 52px;
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-cta { width: 100%; text-align: center; padding: 14px; }
  .nav-dropdown-menu {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  margin: 6px 0 0 0;
  padding: 8px 0 8px 18px;
  border: none;
  border-left: 1px solid rgba(255,255,255,0.14);
  background: transparent;
  min-width: auto;
}

.nav-dropdown-menu a {
  padding: 8px 0;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--silver-400);
}

/* Hide duplicate About Us inside mobile dropdown */
.nav-dropdown-menu a[href="about.html"] {
  display: none;
}
  .nav-toggle { display: flex; }

  .hero { padding: 110px 20px 60px; }
  .section, .split-section, .industries, .testimonial-section, .areas-section, .cta-strip { padding-left: 20px; padding-right: 20px; }
  .quote-wrap { padding: 60px 20px; }
  .page-head { padding: 150px 20px 70px; }
  .footer { padding: 50px 20px 30px; }

  .panel-grid { grid-template-columns: 1fr; }
  .happens-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .stat:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .industries-row { gap: 22px; }
  .industry-item { min-width: 90px; }
  .feature-content { padding: 32px 24px; }
  .about-band-text { padding: 40px 24px; }
  .testimonial { padding: 40px 24px; }
  .areas-list { grid-template-columns: 1fr; }
  .quote-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .areas-map { padding: 16px; min-height: 280px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }
}

/* ============ SCROLL REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

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

/* Slight delay options for cards */
.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

/* Prevent weird animation on the fixed nav */
.nav.reveal {
  opacity: 1;
  transform: none;
}

/* ==================================================
   DE-BOX GENERIC SECTIONS
   Keeps service image cards, removes repetitive boxes
   ================================================== */

/* ---------- WHY CHOOSE SECTION: no boxes ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px 50px;
}

.why-card {
  background: transparent;
  border: none;
  padding: 0;
  text-align: left;
  position: relative;
  transition: transform 0.28s ease;
}

.why-card::before {
  content: '';
  display: block;
  width: 82px;
  height: 1px;
  background: linear-gradient(90deg, var(--silver-100), transparent);
  margin-bottom: 26px;
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-icon {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 0;
  background: transparent;
  margin: 0 0 22px;
  justify-content: flex-start;
}

.why-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--silver-200);
  stroke-width: 1.25;
}

.why-card h3 {
  font-size: 0.86rem;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--silver-300);
  max-width: 360px;
}


/* ---------- STATS: make it feel like a brand strip, not boxes ---------- */
.stats-row {
  background: linear-gradient(180deg, var(--black-1), var(--black));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 0;
}

.stat {
  border-right: none;
  padding: 58px 30px;
  position: relative;
}

.stat::after {
  content: '';
  position: absolute;
  right: 0;
  top: 28%;
  height: 44%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.16), transparent);
}

.stat:last-child::after {
  display: none;
}

.stat-number {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.stat-label {
  margin-top: 10px;
}


/* ---------- PROCESS / WHAT HAPPENS NEXT: timeline feel ---------- */
.happens-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.happens-step {
  background: transparent;
  border: none;
  padding: 0 0 0 24px;
  position: relative;
}

.happens-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--silver-300), transparent);
}

.happens-step-num {
  font-size: 2.8rem;
  margin-bottom: 18px;
  color: rgba(245,245,243,0.32);
}

.happens-step h3 {
  margin-bottom: 12px;
}

.happens-step p {
  font-size: 13.5px;
  line-height: 1.75;
}


/* ---------- CONTACT: no boxed cards, more elegant columns ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 60px;
}

.contact-card {
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.16);
  border-radius: 0;
  padding: 34px 0 0;
  text-align: left;
  box-shadow: none;
  overflow: visible;
}

.contact-card::before,
.contact-card::after {
  display: none;
}

.contact-card:hover {
  transform: translateY(-5px);
  background: transparent;
  border-color: rgba(255,255,255,0.34);
  box-shadow: none;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 0;
  background: transparent;
  margin: 0 0 22px;
  justify-content: flex-start;
}

.contact-card:hover .contact-icon {
  transform: none;
  background: transparent;
  border: none;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--silver-200);
}

.contact-card:hover .contact-icon svg {
  stroke: var(--silver-100);
}

.contact-card h3 {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 14px;
  line-height: 1.75;
}


/* ---------- TESTIMONIAL: remove boxed container ---------- */
.testimonial {
  background: transparent;
  border: none;
  padding: 20px 40px;
  max-width: 850px;
}

.testimonial::before {
  content: '';
  display: block;
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver-300), transparent);
  margin: 0 auto 34px;
}

.testimonial p {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}


/* ---------- TIER CARDS: make them list columns instead of boxes ---------- */
.tier-grid {
  gap: 34px;
}

.tier-card {
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255,255,255,0.16);
  padding: 0 0 0 24px;
}

.tier-card h3 {
  border-bottom: none;
  padding-bottom: 0;
}

.tier-card li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}


/* ---------- FEATURE BAR: soften large boxed split sections ---------- */
.feature-bar {
  background: transparent;
  border: none;
  gap: 40px;
  align-items: center;
}

.feature-content {
  padding: 20px 0;
}

.feature-image {
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
}


/* ---------- Keep service cards boxed because they are interactive image cards ---------- */
.panel-card {
  /* Leave these as visual cards */
}

@media (max-width: 900px) {
  .why-grid,
  .contact-grid,
  .happens-grid,
  .tier-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .stat::after {
    display: none;
  }

  .contact-card,
  .tier-card,
  .happens-step {
    padding-left: 0;
    border-left: none;
  }

  .happens-step::before {
    display: none;
  }
}

/* ==================================================
   RESTORE CONTACT CARDS AS PREMIUM BOXES
   ================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 55px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08) 0%, transparent 28%),
    linear-gradient(180deg, #111111 0%, #050505 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 46px 32px 42px;
  text-align: center;
  transition: all 0.35s ease;
  cursor: pointer;
  box-shadow: none;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 55%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.03) 25%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0.03) 75%,
    transparent 100%
  );
  transform: rotate(18deg);
  opacity: 0;
  transition: all 0.65s ease;
  pointer-events: none;
  display: block;
}

.contact-card::after {
  display: inline-block;
  margin-top: 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-100);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s ease;
}

.contact-card:nth-child(1)::after {
  content: 'Call Now →';
}

.contact-card:nth-child(2)::after {
  content: 'Send Email →';
}

.contact-card:nth-child(3)::after {
  content: 'View Area →';
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.38);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.13) 0%, transparent 32%),
    linear-gradient(180deg, #151515 0%, #060606 100%);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.65),
    0 0 35px rgba(255, 255, 255, 0.055),
    inset 0 0 18px rgba(255, 255, 255, 0.035);
}

.contact-card:hover::before {
  left: 130%;
  opacity: 1;
}

.contact-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.contact-icon {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  background: rgba(255, 255, 255, 0.035);
  transition: all 0.35s ease;
  position: relative;
  z-index: 2;
}

.contact-card:hover .contact-icon {
  transform: scale(1.12) rotate(3deg);
  background: var(--silver-100);
  border-color: var(--silver-100);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--silver-200);
  stroke-width: 1.5;
  fill: none;
  transition: all 0.35s ease;
}

.contact-card:hover .contact-icon svg {
  stroke: var(--black);
}

.contact-card h3,
.contact-card p,
.contact-icon,
.contact-card::after {
  position: relative;
  z-index: 2;
}

.contact-card h3 {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  margin-bottom: 14px;
  text-align: center;
}

.contact-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--silver-200);
  text-align: center;
}

.contact-card a {
  transition: all 0.25s ease;
}

.contact-card a:hover {
  color: var(--silver-100);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-card {
    padding: 40px 28px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 24px;
  }
}

/* ==================================================
   MOBILE SERVICE CAROUSEL
   Makes service cards easier to browse on phones
   ================================================== */

@media (max-width: 600px) {
  .panel-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 4px 0 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .panel-grid::-webkit-scrollbar {
    display: none;
  }

  .panel-card {
    flex: 0 0 82%;
    min-width: 82%;
    scroll-snap-align: center;
    border-radius: 22px;
  }

  .panel-image {
    height: 190px;
    filter: grayscale(65%);
  }

  .panel-body {
    padding: 24px 22px 26px;
  }

  .panel-card h3 {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .service-click,
  .learn-more {
    opacity: 1;
    transform: none;
    color: var(--silver-100);
    font-size: 10px;
    margin-top: 8px;
  }

  .panel-card:hover {
    transform: none;
  }

  .panel-card:hover .panel-image {
    transform: none;
  }

  .panel-card:active {
    transform: scale(0.98);
  }
}

/* ==================================================
   MOVING STATS MARQUEE
   ================================================== */

.stats-marquee {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, var(--black-1), var(--black));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 58px 0;
  position: relative;
}

.stats-marquee::before,
.stats-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 160px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.stats-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--black), transparent);
}

.stats-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--black), transparent);
}

.stats-track {
  display: flex;
  width: max-content;
  animation: statsMoveRight 28s linear infinite;
}

.stat {
  min-width: 360px;
  text-align: center;
  padding: 0 52px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--silver-100);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 14px;
}

.stat-label {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver-400);
}

/* Moves right forever */
@keyframes statsMoveRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* Optional: pause when hovering */
.stats-marquee:hover .stats-track {
  animation-play-state: paused;
}

@media (max-width: 600px) {
  .stats-marquee {
    padding: 44px 0;
  }

  .stat {
    min-width: 260px;
    padding: 0 34px;
  }

  .stat-number {
    font-size: 2.7rem;
  }
}

input[type="date"] {
  cursor: pointer;
}

/* ==================================================
   SPECIALTY SERVICES GRID
   3 on top, 2 centered on bottom
   ================================================== */

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

.specialty-grid .panel-card {
  grid-column: auto;
}

@media (max-width: 900px) {
  .specialty-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .specialty-grid .panel-card,
  .specialty-grid .panel-card:nth-child(4),
  .specialty-grid .panel-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .specialty-grid {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: clamp(2.25rem, 13vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: 0.025em;
  }

  .hero h1 .light {
    font-size: 0.82em;
  }
}

/* ==================================================
   CLEANOVA 9-1-1 COMMITMENT PANEL
   ================================================== */

.commitment-section {
  position: relative;
  padding: 90px 40px;
  background:
    linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.92)),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1800&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.commitment-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.35;
  pointer-events: none;
}

.commitment-panel {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 50px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), transparent 34%),
    rgba(5, 5, 5, 0.88);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 32px 90px rgba(0,0,0,0.65),
    inset 0 0 0 1px rgba(255,255,255,0.035);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.commitment-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 42px;
}

.commitment-top h2 {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: none;
}

.commitment-top p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--silver-200);
  max-width: 500px;
}

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

.commitment-card {
  min-height: 150px;
  padding: 28px 26px;
  border-radius: 20px;
  background: var(--silver-100);
  color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}

.commitment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(255,255,255,0.08);
}

.commitment-card span {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.commitment-card strong {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #050505;
}

@media (max-width: 800px) {
  .commitment-section {
    padding: 70px 22px;
  }

  .commitment-panel {
    padding: 34px 24px;
    border-radius: 26px;
  }

  .commitment-top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .commitment-card {
    min-height: 130px;
  }
}

/* ==================================================
   GLOBAL ALTERNATING SECTION BACKGROUNDS
   Applies across all pages
   ================================================== */

body > section:not(.hero):not(.page-head):not(.cta-strip) {
  position: relative;
}

/* Odd sections stay deep black */
body > section:nth-of-type(odd):not(.hero):not(.page-head):not(.cta-strip) {
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,0.035), transparent 32%),
    linear-gradient(180deg, #000000 0%, #050505 100%) !important;
}

/* Even sections become dark silver / graphite */
body > section:nth-of-type(even):not(.hero):not(.page-head):not(.cta-strip) {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08), transparent 34%),
    linear-gradient(135deg, #242424 0%, #101010 45%, #2d2d28 100%) !important;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.055);
}

/* Adds a subtle premium silver texture to the silver sections */
body > section:nth-of-type(even):not(.hero):not(.page-head):not(.cta-strip)::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.22;
  pointer-events: none;
}

/* Keeps section content above the texture */
body > section:not(.hero):not(.page-head):not(.cta-strip) > * {
  position: relative;
  z-index: 2;
}

/* ==================================================
   MOBILE FIXES: QUOTE FORM + SERVICE AREAS
   ================================================== */

@media (max-width: 700px) {

  /* ---------- QUOTE PAGE FORM FIX ---------- */
  .quote-wrap {
    padding: 55px 18px 70px;
  }

  .quote-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
  }

  .quote-aside,
  .quote-form {
    width: 100%;
    max-width: 100%;
    padding: 28px 20px;
    overflow: hidden;
  }

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

  .form-group {
    width: 100%;
    max-width: 100%;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  input[type="date"] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    appearance: none;
    -webkit-appearance: none;
    font-size: 13.5px;
  }

  input[type="date"]::-webkit-date-and-time-value {
    text-align: left;
  }

  input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.75;
  }


  /* ---------- ABOUT PAGE SERVICE AREAS FIX ---------- */
  .areas-section {
    padding: 70px 18px;
  }

  .areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    max-width: 100%;
  }

  .areas-grid > div:first-child {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .areas-grid h2 {
    font-size: clamp(1.45rem, 8vw, 2.1rem);
    line-height: 1.2;
  }

  .areas-list {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 26px;
    margin-bottom: 26px;
  }

  .area-item {
    padding: 13px 12px;
    border-radius: 14px;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    gap: 8px;
  }

  .area-item svg {
    width: 14px;
    height: 14px;
  }

  .areas-map {
    min-height: 300px;
    height: 300px;
    border-radius: 24px;
    width: 100%;
  }

  .areas-map iframe {
    height: 300px;
  }

  .areas-map::after {
    left: 14px;
    bottom: 14px;
    font-size: 9px;
    padding: 10px 13px;
    letter-spacing: 0.12em;
  }
}

/* ==================================================
   HOMEPAGE MOBILE HERO FIX
   ================================================== */

.hero-line {
  display: block;
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding: 145px 22px 70px;
    align-items: flex-start;
  }

  .hero-inner,
  .hero-content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 3rem);
    line-height: 0.98;
    letter-spacing: 0.012em;
    margin-bottom: 26px;
    max-width: 100%;
  }

  .hero h1 .light {
    font-size: 0.78em;
    line-height: 1.05;
    letter-spacing: 0.01em;
    margin-top: 10px;
    max-width: 100%;
  }

  .hero-desc {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .hero-actions {
    gap: 14px;
    margin-bottom: 42px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 58px;
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 8px;
  }

  .hero-feature {
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .hero-feature svg {
    width: 26px;
    height: 26px;
  }
}

.hero-feature svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1;
    letter-spacing: 0.015em;
    margin-bottom: 26px;
  }

  .hero h1 .light {
    font-size: 0.72em;
    line-height: 1.12;
    letter-spacing: 0.01em;
    margin-top: 12px;
  }
}

/* ==================================================
   CHOOSE YOUR SERVICE SUBHEADING
   ================================================== */

.split-header {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 52px;
}

.split-header h2 {
  margin-bottom: 18px;
}

.split-subheading {
  max-width: 820px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
  color: var(--silver-300);
}

.department-points {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.department-points span {
  padding: 11px 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  color: var(--silver-100);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .split-header {
    margin-bottom: 38px;
  }

  .split-subheading {
    font-size: 14px;
    line-height: 1.75;
  }

  .department-points {
    gap: 10px;
  }

  .department-points span {
    width: 100%;
    text-align: center;
    font-size: 9.5px;
  }
}

@media (max-width: 900px) {
  .industries-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 22px;
  }
}

@media (max-width: 600px) {
  .industries-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 18px;
  }

  .industry-item span {
    font-size: 10px;
    line-height: 1.35;
  }
}


/* ==================================================
   AUGUST 2026 HOMEPAGE + NAVIGATION REFINEMENTS
   ================================================== */

/* Larger, clearer brand mark */
.nav-inner {
  min-height: 104px;
  padding: 12px 30px;
  gap: 26px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.nav-logo img {
  height: 84px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  filter: brightness(1.16) contrast(1.08);
}

.nav-links {
  gap: 22px;
}

.nav-links a {
  font-size: 10.5px;
  letter-spacing: 0.18em;
}

/* More polished hover dropdowns */
.nav-dropdown-menu {
  min-width: 260px;
  padding: 10px;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(9, 9, 9, 0.97);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  transform: translate(-50%, 8px);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 4px;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  padding: 12px 14px;
  border-radius: 10px;
  line-height: 1.35;
}

/* New hero image and smoother headline */
.hero {
  min-height: 100svh;
  padding: 150px 48px 88px;
}

.hero::before {
  background-image: url('cleanova-hero2.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: none;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.70) 44%, rgba(0, 0, 0, 0.25) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.42) 100%);
}

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

.hero h1.hero-hook {
  max-width: 680px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.6vw, 5.7rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.025em;
  text-transform: none;
  text-wrap: balance;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.42);
}

.hero h1.hero-hook span {
  display: block;
  margin-top: 8px;
  color: var(--silver-200);
  font-family: 'Cormorant Garamond', var(--font-display);
  font-size: 0.92em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.hero-desc {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--silver-100);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.035em;
}

.hero-actions {
  gap: 16px;
  margin-bottom: 0;
}

.hero-actions .btn {
  min-height: 58px;
  padding: 17px 34px;
  font-size: 11.5px;
  letter-spacing: 0.15em;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.hero-actions .btn-primary {
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.12);
}

.hero-actions .btn-ghost {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-actions .btn:hover {
  transform: translateY(-3px);
}

/* Dedicated detail cards linked from header dropdowns */
.specialized-commercial {
  padding-top: 42px;
  background: var(--black-1);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.specialized-commercial-grid {
  align-items: stretch;
}

.service-detail-card {
  scroll-margin-top: 145px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px 30px;
  border-radius: 18px;
}

.service-detail-card p {
  margin: 14px 0 18px;
  font-size: 13.5px;
  line-height: 1.7;
}

.service-detail-card .learn-more {
  margin-top: auto;
  align-self: flex-start;
}

#home-cleaning-detail,
#real-estate-detail,
#movein,
#post-construction-detail,
#custom-luxury-detail,
#commercial-real-estate-detail {
  scroll-margin-top: 145px;
}

@media (max-width: 1180px) {
  .nav-inner {
    padding-left: 22px;
    padding-right: 22px;
  }

  .nav-logo img {
    height: 72px;
    max-width: 235px;
  }

  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: 9.5px;
    letter-spacing: 0.13em;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
  }

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

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin: 6px 0 0;
    padding: 6px 0 6px 16px;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    margin-top: 6px;
    transform: none;
  }

  .nav-dropdown-menu .dropdown-overview {
    display: none;
  }
}

@media (max-width: 600px) {
  .nav-inner {
    min-height: 82px;
    padding: 10px 16px;
  }

  .nav-logo img {
    height: 60px;
    max-width: 205px;
  }

  .hero {
    min-height: 100svh;
    padding: 150px 22px 72px;
    align-items: center;
  }

  .hero::before {
    background-position: 58% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.64) 62%, rgba(0, 0, 0, 0.34) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.52) 100%);
  }

  .hero h1.hero-hook {
    font-size: clamp(2.65rem, 12vw, 4rem);
    line-height: 0.98;
    margin-bottom: 22px;
  }

  .hero h1.hero-hook span {
    font-size: 0.9em;
    margin-top: 7px;
  }

  .hero-desc {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 28px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 60px;
    padding: 18px 26px;
    font-size: 11px;
  }
}

/* ==========================================
   HOMEPAGE FRONT LOOK — MATCH FIRST IMAGE
   ========================================== */

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 6px 28px 0;
  background: transparent;
  border-bottom: none;
  transition: all 0.3s ease;
}

.nav.scrolled {
  padding-top: 4px;
}

.nav.scrolled .nav-inner {
  background: rgba(0, 0, 0, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.nav-inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 18px 34px;
  min-height: 92px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;

  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);

  position: relative;
}

.nav-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-200);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--silver-100);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: ' ⌄';
  font-size: 10px;
  margin-left: 4px;
  letter-spacing: 0;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black-2);
  border: 1px solid var(--line);
  min-width: 220px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  margin-top: 8px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 22px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--silver-300);
}

.nav-dropdown-menu a:hover {
  color: var(--silver-100);
  background: var(--black-3);
}

.nav-links a.nav-cta {
  padding: 12px 12px 12px 24px;
  background: var(--silver-100);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  transition: all 0.2s ease;

  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.nav-links a.nav-cta::after {
  content: '→';
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  color: var(--black);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  transition: all 0.2s ease;
}

.nav-links a.nav-cta:hover {
  background: var(--silver-200);
}

.nav-links a.nav-cta:hover::after {
  transform: translateX(3px);
  background: rgba(0, 0, 0, 0.14);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
  margin-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('cleanova-hero2.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.58) 45%,
    rgba(0,0,0,0.18) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

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

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.2vw, 4.8rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-line {
  display: block;
}

.hero h1 .light {
  display: block;
  color: var(--silver-300);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.015em;
  font-weight: 500;
  font-size: 0.74em;
  line-height: 1.08;
  margin-top: 10px;
}

.hero-desc {
  font-size: 15px;
  color: var(--silver-300);
  margin-bottom: 38px;
  max-width: 460px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-actions .btn {
  min-height: 52px;
  padding: 14px 28px;
}

.hero-features {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--silver-200);
}

.hero-feature svg {
  width: 22px;
  height: 22px;
  stroke: var(--silver-200);
  stroke-width: 1.4;
  fill: none;
}

/* MOBILE */
@media (max-width: 900px) {
  .nav-inner {
    padding: 14px 20px;
    min-height: 84px;
  }

  .nav-logo img {
    height: 56px;
  }

  .hero {
    padding: 130px 24px 70px;
  }

  .hero-features {
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 120px 20px 60px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero::before {
    background-position: 58% center;
  }
}

/* Much clearer header at the top of the page */
.nav:not(.scrolled) .nav-inner {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Keep navigation text readable over the image */
.nav:not(.scrolled) .nav-links a {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

/* Keep the logo visible */
.nav:not(.scrolled) .nav-logo img {
  filter: brightness(1.25) contrast(1.12)
    drop-shadow(0 2px 8px rgba(0, 0, 0, 0.75));
}

/* Solid header after scrolling */
.nav.scrolled .nav-inner {
  background: rgba(0, 0, 0, 0.94);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* ==========================================
   WHY CLEANOVA CONTENT UPDATE
   ========================================== */

.why-cleanova-header {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.why-cleanova-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: none;
  margin-bottom: 22px;
}

.why-cleanova-header p {
  max-width: 660px;
  font-size: 15px;
  line-height: 1.75;
}

.why-cleanova-section .why-card h3 {
  line-height: 1.45;
}

.why-cleanova-section .why-card p {
  line-height: 1.75;
}

@media (max-width: 600px) {
  .why-cleanova-header h2 {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }
}

/* Smoother transparent-to-black navigation transition */
.nav-inner {
  transition:
    background-color 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    backdrop-filter 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-backdrop-filter 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Very clear while at the top */
.nav:not(.scrolled) .nav-inner {
  background-color: rgba(0, 0, 0, 0.04);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: none;

  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

/* Dark navigation after scrolling */
.nav.scrolled .nav-inner {
  background-color: rgba(0, 0, 0, 0.94);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.60);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Keep links and logo readable while transparent */
.nav:not(.scrolled) .nav-links a {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.90);
}

.nav:not(.scrolled) .nav-logo img {
  filter:
    brightness(1.25)
    contrast(1.12)
    drop-shadow(0 3px 9px rgba(0, 0, 0, 0.80));
}

/* ==========================================
   UPDATED CHOOSE YOUR SERVICE SECTION
   ========================================== */

.split-section {
  position: relative;
  padding: 90px 40px 80px;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.07),
      transparent 38%
    ),
    linear-gradient(
      180deg,
      #050505 0%,
      #0a0a0a 100%
    );

  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.split-header {
  max-width: 800px;
  margin: 0 auto 48px;
}

.split-header .eyebrow {
  margin-bottom: 14px;
}

.split-header h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
}

.split-statement {
  max-width: 680px;
  margin: 0 auto;

  font-family: var(--font-display);
  color: var(--silver-200);

  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-style: italic;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.split-grid {
  gap: 24px;
}

.split-card {
  min-height: 300px;
  padding: 44px 36px;

  border-radius: 20px;
  border-color: rgba(255, 255, 255, 0.13);

  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
}

.split-card::before {
  opacity: 0.64;
  transform: scale(1.01);

  transition:
    opacity 0.4s ease,
    transform 0.55s ease;
}

.split-card::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.82) 100%
  );
}

.split-card:hover::before {
  opacity: 0.82;
  transform: scale(1.06);
}

.split-card h3 {
  margin-bottom: 24px;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
}

.split-card .btn {
  min-width: 150px;
  background: rgba(0, 0, 0, 0.38);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 760px) {
  .split-section {
    padding: 72px 20px 60px;
  }

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

  .split-card {
    min-height: 260px;
  }
}

/* ==========================================
   RESIDENTIAL AND COMMERCIAL BUNDLES
   ========================================== */

.service-bundle-section {
  padding-top: 30px;
  padding-bottom: 80px;
}

.service-bundle {
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.05),
      transparent 34%
    ),
    var(--black-2);

  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.5);
}

.bundle-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  overflow: hidden;
}

.bundle-photo {
  min-width: 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  filter: grayscale(25%) contrast(1.05);

  transition:
    filter 0.35s ease,
    transform 0.5s ease;
}

.bundle-photo:hover {
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.03);
}

.service-bundle .feature-content {
  padding: 58px 52px;
}

.service-bundle .eyebrow {
  display: block;
  margin-bottom: 14px;
}

.service-bundle h2 {
  margin-bottom: 20px;
  line-height: 1.35;
}

.service-bundle p {
  margin-bottom: 24px;
  line-height: 1.75;
}

#convenience-bundle,
#fleet-detailing {
  scroll-margin-top: 140px;
}

@media (max-width: 900px) {
  .service-bundle {
    grid-template-columns: 1fr;
  }

  .bundle-image-grid {
    min-height: 420px;
  }
}

@media (max-width: 600px) {
  .bundle-image-grid {
    grid-template-columns: 1fr;
    min-height: 600px;
  }

  .bundle-photo {
    min-height: 300px;
  }

  .service-bundle .feature-content {
    padding: 40px 26px;
  }
}

/* ==========================================
   FINAL HOMEPAGE HERO LAYOUT
   ========================================== */

.hero {
  padding: 130px 42px 72px;
}

/* Keep the text in a narrower left-side area */
.hero-content {
  max-width: 560px;
}

/* Bold sans-serif heading like the reference */
.hero h1 {
  max-width: 560px;
  margin-bottom: 18px;

  font-family: 'Manrope', Arial, sans-serif;
  font-size: clamp(3rem, 4.2vw, 4.5rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-transform: uppercase;

  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.75);
}

/* Keep the three main words on separate lines */
.hero-line {
  display: block;
}

/* Italic subheading */
.hero h1 .light {
  display: block;
  max-width: 520px;
  margin-top: 12px;

  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.55em;
  font-style: italic;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;

  color: rgba(255, 255, 255, 0.82);
}

/* Smaller description like the reference */
.hero-desc {
  max-width: 440px;
  margin-bottom: 28px;

  font-size: 14px;
  line-height: 1.65;
}

/* Reduce the empty gap below the buttons */
.hero-actions {
  margin-bottom: 44px;
}

/* Keep the feature row contained on the left */
.hero-features {
  max-width: 650px;
  gap: 28px;
}

/* Darken only the text side */
.hero::after {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.90) 0%,
    rgba(0, 0, 0, 0.76) 24%,
    rgba(0, 0, 0, 0.40) 44%,
    rgba(0, 0, 0, 0.12) 68%,
    rgba(0, 0, 0, 0.04) 100%
  );
}

/* Shift the people toward the right on desktop */
@media (min-width: 901px) {
  .hero::before {
    background-image: url('cleanova-hero2.png');

    /*
      Slight enlargement creates enough horizontal crop
      to move the people toward the right.
    */
    background-size: 100% auto;
    background-position: left center;
    background-repeat: no-repeat;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .hero {
    padding: 130px 24px 66px;
  }

  .hero::before {
    background-size: cover;
    background-position: 50% center;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 8vw, 4.2rem);
  }
}

/* Phone */
@media (max-width: 600px) {
  .hero {
    padding: 118px 20px 58px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 3.6rem);
    line-height: 0.96;
  }

  .hero h1 .light {
    font-size: 0.62em;
  }

  .hero::before {
    background-position: 56% center;
  }
}

/* ==========================================
   INDUSTRIES — IMPROVED ICONS
   ========================================== */

.industries {
  padding: 90px 40px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.05),
      transparent 40%
    ),
    var(--black);

  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.industries-title {
  text-align: center;
  margin-bottom: 58px;
}

.industries-title .eyebrow {
  display: block;
  margin-bottom: 12px;
}

.industries-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 42px 24px;

  max-width: 1320px;
  margin: 0 auto;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  gap: 16px;
  min-width: 0;
  text-align: center;

  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.industry-icon {
  width: 68px;
  height: 68px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.01)
    );

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 12px 30px rgba(0, 0, 0, 0.3);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.industry-icon svg {
  width: 32px;
  height: 32px;

  fill: none;
  stroke: var(--silver-200);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition:
    stroke 0.3s ease,
    transform 0.3s ease;
}

.industry-item span {
  max-width: 155px;

  color: var(--silver-300);
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  transition: color 0.3s ease;
}

.industry-item:hover {
  transform: translateY(-6px);
}

.industry-item:hover .industry-icon {
  border-color: rgba(255, 255, 255, 0.38);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.13),
      rgba(255, 255, 255, 0.025)
    );

  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.46),
    0 0 20px rgba(255, 255, 255, 0.04);
}

.industry-item:hover .industry-icon svg {
  stroke: var(--silver-100);
  transform: scale(1.08);
}

.industry-item:hover span {
  color: var(--silver-100);
}

/* Smaller desktop and tablet */
@media (max-width: 1100px) {
  .industries-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Phone */
@media (max-width: 650px) {
  .industries {
    padding: 70px 20px;
  }

  .industries-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 18px;
  }

  .industry-icon {
    width: 62px;
    height: 62px;
  }

  .industry-icon svg {
    width: 29px;
    height: 29px;
  }

  .industry-item span {
    font-size: 9.5px;
  }
}

/* ==========================================
   FINAL MOBILE NAVIGATION FIX
   ========================================== */

@media (max-width: 900px) {
  .nav-inner {
    position: relative;
  }

  .nav-toggle {
    position: relative;
    z-index: 1002;

    display: flex;
    flex-shrink: 0;
  }

  /* Closed by default */
  .nav-links {
    position: absolute;
    z-index: 1001;

    top: calc(100% + 8px);
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;

    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overscroll-behavior: contain;

    padding: 20px;

    background: rgba(5, 5, 5, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;

    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-12px);

    transition:
      opacity 0.28s ease,
      visibility 0.28s ease,
      transform 0.28s ease;
  }

  /* Open only after clicking hamburger */
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
  }

  .nav-links > li {
    width: 100%;
  }

  .nav-links > li > a {
    display: flex;
    width: 100%;
    padding: 10px 0;
  }

  .nav-links .nav-cta {
    justify-content: center;
    width: 100%;
  }

  /* Mobile dropdown links */
  .nav-dropdown-menu {
    position: static;

    min-width: 0;
    margin: 5px 0 0;
    padding: 5px 0 5px 16px;

    opacity: 1;
    visibility: visible;
    transform: none;

    background: transparent;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    box-shadow: none;
  }

  .nav-dropdown-menu a {
    padding: 8px 0;
  }

  /* Turn hamburger into an X */
  .nav-toggle span {
    transform-origin: center;
    transition:
      transform 0.25s ease,
      opacity 0.2s ease;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  body.nav-menu-open {
    overflow: hidden;
  }
}

/* Restore normal desktop navigation */
@media (min-width: 901px) {
  .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-toggle {
    display: none;
  }

  body.nav-menu-open {
    overflow: auto;
  }
}

/* ==========================================
   COMMERCIAL PANEL GRID — CENTER LAST ROW
   ========================================== */

.commercial-panel-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.commercial-panel-grid .panel-card {
  flex: 0 1 calc((100% - 54px) / 4);
  max-width: calc((100% - 54px) / 4);
  min-width: 0;
}

/* Keep image and card sizing consistent */
.commercial-panel-grid .panel-image {
  width: 100%;
  height: 170px;
}

.commercial-panel-grid .panel-body {
  min-height: 125px;
}

.commercial-panel-grid .panel-card h3 {
  min-height: 2.7em;
  display: flex;
  align-items: flex-start;
}

/* Three cards per row */
@media (max-width: 1100px) {
  .commercial-panel-grid .panel-card {
    flex-basis: calc((100% - 36px) / 3);
    max-width: calc((100% - 36px) / 3);
  }
}

/* Two cards per row */
@media (max-width: 760px) {
  .commercial-panel-grid .panel-card {
    flex-basis: calc((100% - 18px) / 2);
    max-width: calc((100% - 18px) / 2);
  }
}

/* One card per row */
@media (max-width: 500px) {
  .commercial-panel-grid .panel-card {
    flex-basis: 100%;
    max-width: 100%;
  }
}

#car-dealerships .panel-image {
  background-position: center 55% !important;
  filter: grayscale(100%) brightness(0.78) contrast(1.08);
}

#car-dealerships:hover .panel-image {
  filter: grayscale(0%) brightness(0.9) contrast(1.04);
}

/* ==========================================
   NEW SERVICE AND ABOUT-PAGE CHANGES
   ========================================== */

/* New service links should not hide behind fixed header */
#car-dealerships,
#luxury-builds,
#custom-build-final-cleaning {
  scroll-margin-top: 140px;
}

/* Logo overlay on homepage machine image */
.machine-photo {
  position: relative;
}

.machine-photo::after {
  content: '';

  position: absolute;
  left: 22px;
  bottom: 22px;

  width: 150px;
  height: 52px;

  padding: 10px 14px;

  background:
    rgba(0, 0, 0, 0.72)
    url('logo-side.png')
    center / contain
    no-repeat;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* About-page team photograph */
.about-company .about-band-grid {
  grid-template-columns: 1.08fr 1fr;
}

.about-company .about-band-text {
  padding-top: 74px;
  padding-bottom: 74px;
}

.about-company .about-band-text strong {
  color: var(--silver-100);
  font-weight: 700;
}

.about-team-visual {
  position: relative;

  min-height: 610px;

  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;

  overflow: hidden;
}

.about-team-visual::before {
  content: '';

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.08) 65%,
      rgba(0, 0, 0, 0.5) 100%
    );
}

.team-logo-badge {
  position: absolute;
  z-index: 2;

  top: 24px;
  left: 50%;
  transform: translateX(-50%);

  padding: 12px 22px;

  background: rgba(0, 0, 0, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;

  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.team-logo-badge img {
  width: 210px;
  height: auto;

  filter:
    brightness(1.2)
    contrast(1.1);
}

/* Mobile layout */
@media (max-width: 800px) {
  .about-company .about-band-grid {
    grid-template-columns: 1fr;
  }

  .about-team-visual {
    min-height: 480px;
    order: -1;
  }

  .team-logo-badge img {
    width: 170px;
  }

  .machine-photo::after {
    width: 120px;
    height: 42px;
  }
}

/* ==========================================
   PREMIUM ABOUT SECTION
   ========================================== */

.about-company {
  padding: 90px 0;
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(255, 255, 255, 0.04),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #050505 0%,
      #090909 100%
    );
}

.about-company-shell {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: stretch;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 30px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.01)
    ),
    rgba(8, 8, 8, 0.94);

  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.about-company-text {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-company-text .eyebrow {
  margin-bottom: 18px;
}

.about-company-text h2 {
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.about-company-text h2 em {
  display: block;
  margin-top: 12px;
  color: var(--silver-200);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 0.62em;
  line-height: 1.1;
}

.about-company-lead {
  margin-bottom: 28px;
  color: var(--silver-100);
  font-size: 1.12rem;
  line-height: 1.75;
}

.about-company-lead strong {
  color: #ffffff;
  font-weight: 700;
}

.about-company-copy {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.about-company-copy p {
  margin: 0;
  color: var(--silver-300);
  font-size: 15.5px;
  line-height: 1.85;
}

.about-company-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.about-highlight {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--silver-100);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-company-text .btn {
  align-self: flex-start;
}

.about-company-visual {
  position: relative;
  min-height: 760px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.about-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.10) 0%,
      rgba(0, 0, 0, 0.18) 55%,
      rgba(0, 0, 0, 0.55) 100%
    );
}

.team-logo-card {
  position: absolute;
  z-index: 3;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);

  padding: 18px 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);

  background: rgba(0, 0, 0, 0.82);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.team-logo-card img {
  width: 230px;
  height: auto;
  filter: brightness(1.15) contrast(1.08);
}

.about-floating-card {
  position: absolute;
  z-index: 3;
  max-width: 250px;

  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);

  background: rgba(0, 0, 0, 0.70);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-floating-card-top {
  left: 26px;
  bottom: 120px;
}

.about-floating-card-bottom {
  right: 26px;
  bottom: 36px;
}

.small-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-floating-card strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .about-company-shell {
    grid-template-columns: 1fr;
  }

  .about-company-visual {
    min-height: 620px;
  }
}

@media (max-width: 700px) {
  .about-company {
    padding: 70px 0;
  }

  .about-company-text {
    padding: 42px 24px;
  }

  .about-company-visual {
    min-height: 500px;
  }

  .team-logo-card img {
    width: 170px;
  }

  .about-floating-card {
    max-width: 210px;
    padding: 14px 14px 12px;
  }

  .about-floating-card-top {
    left: 16px;
    bottom: 98px;
  }

  .about-floating-card-bottom {
    right: 16px;
    bottom: 16px;
  }
}

/* About page handshake image */
.trust-handshake-image {
  min-height: 470px;
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
}
/* Specialty services: balanced 3 by 2 layout */
.specialty-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.specialty-grid .panel-card {
  min-width: 0;
}

.specialty-grid .panel-image {
  height: 190px;
}

.specialty-grid .panel-body {
  min-height: 135px;
}

.specialty-grid .panel-card h3 {
  min-height: 2.7em;
  display: flex;
  align-items: flex-start;
}

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

@media (max-width: 600px) {
  .specialty-grid {
    display: flex;
  }
}

/* ==========================================
   FINAL RESPONSIVE HERO IMAGE FIX
   ========================================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

/* Image always fills the complete hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;

  background-image: url('cleanova-hero2.png');
  background-size: cover;
  background-position: 58% center;
  background-repeat: no-repeat;

  transform: none;
  z-index: 0;
}

/* Darker only behind the text */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.78) 26%,
      rgba(0, 0, 0, 0.48) 47%,
      rgba(0, 0, 0, 0.13) 72%,
      rgba(0, 0, 0, 0.03) 100%
    );

  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Desktop positioning */
@media (min-width: 901px) {
  .hero {
    padding: 145px 48px 72px;
  }

  .hero::before {
    background-size: cover;
    background-position: 58% center;
  }

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

/* Tablet */
@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
    padding: 125px 26px 64px;
    align-items: center;
  }

  .hero::before {
    background-size: cover;
    background-position: 63% center;
  }

  .hero::after {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.70) 55%,
        rgba(0, 0, 0, 0.25) 100%
      );
  }

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

  .hero h1 {
    font-size: clamp(2.8rem, 8vw, 4rem);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding: 118px 20px 48px;
    align-items: flex-start;
  }

  .hero::before {
    background-size: cover;

    /* Shows the workers rather than only the glass wall */
    background-position: 66% center;
  }

  /* Stronger overlay for mobile readability */
  .hero::after {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.48) 0%,
        rgba(0, 0, 0, 0.67) 35%,
        rgba(0, 0, 0, 0.91) 100%
      ),
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.76) 0%,
        rgba(0, 0, 0, 0.28) 100%
      );
  }

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

  .hero h1 {
    max-width: 360px;
    font-size: clamp(2.65rem, 12vw, 3.55rem);
    line-height: 0.96;
  }

  .hero h1 .light {
    max-width: 330px;
    font-size: 0.56em;
    line-height: 1.08;
  }

  .hero-desc {
    max-width: 330px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: 330px;
    margin-bottom: 34px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 54px;
  }

  .hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 14px;
    max-width: 360px;
  }

  .hero-feature {
    align-items: flex-start;
    font-size: 9px;
    line-height: 1.45;
    letter-spacing: 0.08em;
  }

  .hero-feature svg {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
  }
}

/* Very small phones */
@media (max-width: 390px) {
  .hero::before {
    background-position: 69% center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   ABOUT SECTION — FIT INSIDE VIEWPORT
   ========================================== */

.about-company {
  padding: 70px 32px;
}

.about-company .section-inner {
  max-width: 1480px;
}

/* Keep the full design inside one clean frame */
.about-company-shell {
  grid-template-columns: 48% 52%;
  align-items: stretch;

  max-height: none;
  min-height: 620px;

  overflow: visible;
  border-radius: 28px;
}

/* Make the text column more compact */
.about-company-text {
  padding: 54px 52px;
  justify-content: center;
}

.about-company-text h2 {
  margin-bottom: 20px;

  font-size: clamp(2rem, 3.1vw, 3.25rem);
  line-height: 1.04;
}

.about-company-text h2 em {
  margin-top: 10px;
  font-size: 0.58em;
}

.about-company-lead {
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 1.7;
}

.about-company-copy {
  gap: 13px;
  margin-bottom: 25px;
}

.about-company-copy p {
  font-size: 14px;
  line-height: 1.68;
}

.about-company-highlights {
  gap: 9px;
  margin-bottom: 24px;
}

.about-highlight {
  padding: 9px 13px;
  font-size: 9.5px;
}

/* Stop the picture from becoming excessively tall */
.about-company-visual {
  min-height: 620px;
  height: auto;

  background-size: cover;
  background-position: center 35%;

  border-radius: 0 28px 28px 0;
}

/* Smaller logo panel */
.team-logo-card {
  top: 22px;
  padding: 13px 20px;
  border-radius: 16px;
}

.team-logo-card img {
  width: 190px;
}

/* Keep floating cards inside the picture */
.about-floating-card {
  max-width: 225px;
  padding: 15px 16px;

  border-radius: 15px;
}

.about-floating-card-top {
  left: 22px;
  bottom: 100px;
}

.about-floating-card-bottom {
  right: 22px;
  bottom: 22px;
}

.about-floating-card strong {
  font-size: 15px;
  line-height: 1.35;
}

.small-label {
  font-size: 8.5px;
}

/* Medium screens */
@media (max-width: 1100px) {
  .about-company-shell {
    grid-template-columns: 1fr;
  }

  .about-company-text {
    padding: 52px 42px;
  }

  .about-company-visual {
    min-height: 560px;
    border-radius: 0 0 28px 28px;
    background-position: center 30%;
  }
}

/* Phones */
@media (max-width: 700px) {
  .about-company {
    padding: 50px 16px;
  }

  .about-company-shell {
    border-radius: 20px;
  }

  .about-company-text {
    padding: 38px 22px;
  }

  .about-company-text h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .about-company-lead {
    font-size: 14px;
  }

  .about-company-copy p {
    font-size: 13px;
  }

  .about-company-visual {
    min-height: 440px;
    border-radius: 0 0 20px 20px;
    background-position: center top;
  }

  .team-logo-card {
    top: 16px;
    padding: 10px 15px;
  }

  .team-logo-card img {
    width: 145px;
  }

  .about-floating-card {
    max-width: 180px;
    padding: 12px;
  }

  .about-floating-card-top {
    left: 12px;
    bottom: 82px;
  }

  .about-floating-card-bottom {
    right: 12px;
    bottom: 12px;
  }

  .about-floating-card strong {
    font-size: 12px;
  }
}

/* ==========================================
   TAILORED FACILITY LOBBY IMAGE
   ========================================== */

.facility-lobby-image {
  position: relative;
  min-height: 470px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Cleanova logo displayed like lobby branding */
.facility-lobby-image::before {
  content: '';
  position: absolute;
  z-index: 3;

  top: 30px;
  left: 50%;
  transform: translateX(-50%);

  width: 230px;
  height: 78px;

  background:
    rgba(0, 0, 0, 0.82)
    url('logo-side.png')
    center / 185px auto
    no-repeat;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Preserve the existing image gradient */
.facility-lobby-image::after {
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.20),
    rgba(0, 0, 0, 0)
  );
}

@media (max-width: 700px) {
  .facility-lobby-image {
    min-height: 340px;
  }

  .facility-lobby-image::before {
    top: 18px;
    width: 185px;
    height: 62px;
    background-size: 145px auto;
  }
}
/* ==========================================
   CLICKABLE COMMERCIAL INDUSTRY CARDS
   ========================================== */

#commercial-industries .panel-card {
  position: relative;
  cursor: pointer;
}

#commercial-industries .panel-card::before {
  content: 'View details';

  position: absolute;
  z-index: 5;
  top: 12px;
  right: 12px;

  padding: 7px 11px;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;

  background: rgba(0, 0, 0, 0.72);
  color: var(--silver-100);

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  opacity: 0;
  transform: translateY(-5px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#commercial-industries .panel-card:hover::before,
#commercial-industries .panel-card:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

#commercial-industries .panel-card:focus-visible {
  outline: 2px solid var(--silver-200);
  outline-offset: 4px;
}

@media (max-width: 700px) {
  #commercial-industries .panel-card::before {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================
   CLICKABLE RESIDENTIAL SERVICE CARDS
   ========================================== */

#residential-services .panel-card {
  position: relative;
  cursor: pointer;
}

#residential-services .panel-card::before {
  content: 'View details';

  position: absolute;
  z-index: 5;
  top: 12px;
  right: 12px;

  padding: 7px 11px;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;

  background: rgba(0, 0, 0, 0.72);
  color: var(--silver-100);

  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  opacity: 0;
  transform: translateY(-5px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#residential-services .panel-card:hover::before,
#residential-services .panel-card:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

#residential-services .panel-card:focus-visible {
  outline: 2px solid var(--silver-200);
  outline-offset: 4px;
}

/* Keep Schedule link above the clickable card */
#residential-services .learn-more {
  position: relative;
  z-index: 6;
}

@media (max-width: 700px) {
  #residential-services .panel-card::before {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================
   COMMERCIAL CLIENTS
   ========================================== */

.client-section {
  position: relative;
  padding: 88px 40px;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.055),
      transparent 42%
    ),
    linear-gradient(
      180deg,
      #050505 0%,
      #0a0a0a 100%
    );

  border-bottom: 1px solid var(--line-soft);
}

.client-section-header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.client-section-header .eyebrow {
  display: block;
  margin-bottom: 14px;
}

.client-section-header h2 {
  margin-bottom: 18px;
}

.client-section-header p {
  max-width: 610px;
  margin: 0 auto;
  line-height: 1.75;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;

  max-width: 1200px;
  margin: 0 auto;
}

.client-card {
  position: relative;
  min-height: 150px;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 28px 26px;

  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.012)
    ),
    #0b0b0b;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.client-card::after {
  content: '';

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.65),
    transparent
  );

  opacity: 0;
  transition: opacity 0.3s ease;
}

.client-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.28);

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.48),
    0 0 24px rgba(255, 255, 255, 0.035);
}

.client-card:hover::after {
  opacity: 1;
}

.client-number {
  margin-bottom: 20px;

  color: var(--silver-500);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1;
}

.client-card h3 {
  margin: 0;

  color: var(--silver-100);
  font-size: 0.82rem;
  line-height: 1.55;
  letter-spacing: 0.15em;
}

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

@media (max-width: 560px) {
  .client-section {
    padding: 68px 20px;
  }

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

  .client-card {
    min-height: 125px;
  }
}

#moveout .panel-image {
  background-position: center 55% !important;
}

#private .panel-image {
  background-position: center 48% !important;
  filter: grayscale(100%) brightness(0.76) contrast(1.12);
}

#private:hover .panel-image {
  filter: grayscale(0%) brightness(0.90) contrast(1.06);
}

/* ==========================================
   COMMERCIAL CLIENTS — THIN COLOR SLIDER
   ========================================== */

.client-section {
  position: relative;
  padding: 70px 40px 60px;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.045),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      #050505 0%,
      #0a0a0a 100%
    );

  border-bottom: 1px solid var(--line-soft);
}

.client-section-header {
  max-width: 880px;
  margin: 0 auto 30px;
  text-align: center;
}

.client-section-header .eyebrow {
  display: block;
  margin-bottom: 12px;
}

.client-section-header h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.client-section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--silver-300);
  line-height: 1.7;
}

/* Outer slider frame */
.client-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 14px 0;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

/* Sliding row */
.client-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: clientSlide 30s linear infinite;
}

.client-marquee:hover .client-track {
  animation-play-state: paused;
}

/* Thin colored client blocks */
.client-pill {
  flex: 0 0 auto;
  min-width: 290px;
  height: 74px;

  display: flex;
  align-items: center;
  gap: 16px;

  padding: 0 22px;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);

  color: #fff;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.client-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.client-index {
  flex-shrink: 0;

  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-style: italic;
  line-height: 1;
}

.client-name {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  white-space: nowrap;
}

/* Accent colors */
.accent-gold {
  background:
    linear-gradient(135deg, rgba(181, 140, 65, 0.32), rgba(30, 22, 8, 0.92));
}

.accent-blue {
  background:
    linear-gradient(135deg, rgba(63, 114, 219, 0.32), rgba(9, 18, 40, 0.92));
}

.accent-green {
  background:
    linear-gradient(135deg, rgba(55, 160, 107, 0.30), rgba(10, 30, 22, 0.92));
}

.accent-red {
  background:
    linear-gradient(135deg, rgba(184, 58, 68, 0.30), rgba(35, 10, 14, 0.92));
}

.accent-purple {
  background:
    linear-gradient(135deg, rgba(121, 84, 181, 0.30), rgba(23, 13, 35, 0.92));
}

.accent-silver {
  background:
    linear-gradient(135deg, rgba(160, 160, 160, 0.22), rgba(20, 20, 20, 0.94));
}

/* Sliding animation */
@keyframes clientSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

/* Tablet */
@media (max-width: 900px) {
  .client-section {
    padding: 60px 24px 50px;
  }

  .client-pill {
    min-width: 250px;
    height: 68px;
    padding: 0 18px;
  }

  .client-name {
    font-size: 11px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .client-section {
    padding: 52px 18px 42px;
  }

  .client-section-header {
    margin-bottom: 20px;
  }

  .client-pill {
    min-width: 220px;
    height: 62px;
    gap: 12px;
    padding: 0 16px;
  }

  .client-index {
    font-size: 1.25rem;
  }

  .client-name {
    font-size: 10px;
    letter-spacing: 0.09em;
  }

  .client-track {
    gap: 12px;
    animation-duration: 24s;
  }
}

/* ==========================================
   CLIENT SLIDER — SLIMMER VERSION
   ========================================== */

.client-section {
  padding: 52px 40px 42px;
}

.client-section-header {
  max-width: 900px;
  margin: 0 auto 22px;
  text-align: center;
}

.client-section-header .eyebrow {
  display: block;
  margin-bottom: 10px;
}

.client-section-header h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: 0.08em;
}

.client-section-header p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
}

.client-marquee {
  padding: 8px 0;
}

.client-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: clientSlide 30s linear infinite;
}

.client-pill {
  flex: 0 0 auto;
  min-width: 240px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 18px;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);

  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.client-name {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}

/* No numbers anymore */
.client-index {
  display: none;
}

/* Mobile */
@media (max-width: 900px) {
  .client-section {
    padding: 46px 24px 36px;
  }

  .client-pill {
    min-width: 220px;
    height: 54px;
    padding: 0 16px;
  }

  .client-name {
    font-size: 10px;
  }
}

@media (max-width: 600px) {
  .client-section {
    padding: 40px 18px 32px;
  }

  .client-section-header h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .client-section-header p {
    font-size: 14px;
  }

  .client-pill {
    min-width: 200px;
    height: 50px;
    padding: 0 14px;
  }

  .client-name {
    font-size: 9.5px;
    letter-spacing: 0.08em;
  }

  .client-track {
    gap: 10px;
    animation-duration: 24s;
  }
}

/* ==========================================
   COMMERCIAL CARDS — MOBILE SWIPE
   ========================================== */

@media (max-width: 600px) {
  #commercial-industries {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;

    width: auto;
    margin: 0 -20px;
    padding: 0 20px 18px;

    gap: 14px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px;
    overscroll-behavior-x: contain;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  #commercial-industries::-webkit-scrollbar {
    display: none;
  }

  #commercial-industries .panel-card {
    flex: 0 0 82vw !important;
    width: 82vw !important;
    max-width: 340px !important;
    min-width: 270px;

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  #commercial-industries .panel-image {
    height: 180px;
  }
}

/* ==========================================
   CLIENT SLIDER — MANUAL MOBILE SWIPE
   ========================================== */

/* Mobile loop clones are hidden on desktop */
.mobile-loop-clone {
  display: none;
}

@media (max-width: 600px) {
  .client-marquee {
    width: auto;
    margin: 0 -18px;
    padding: 8px 18px 14px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 18px;
    scroll-behavior: auto;
    overscroll-behavior-x: contain;

    mask-image: none;
    -webkit-mask-image: none;

    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .client-marquee::-webkit-scrollbar {
    display: none;
  }

  .client-track {
    animation: none !important;
    transform: none !important;

    display: flex;
    width: max-content;
    gap: 10px;
  }

  .mobile-loop-clone {
    display: flex;
  }

  .client-pill {
    flex: 0 0 210px;
    min-width: 210px;
    width: 210px;
    height: 50px;

    padding: 0 14px;

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .client-name {
    font-size: 9.5px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }
}

/* ==========================================
   SPECIALTY SERVICES — MOBILE TWO-WAY LOOP
   ========================================== */

/* Loop copies should not appear on desktop */
.specialty-loop-clone {
  display: none;
}

@media (max-width: 600px) {
  #specialty-services-slider {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;

    width: auto;
    margin: 0 -20px;
    padding: 0 20px 18px;

    gap: 14px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px;
    scroll-behavior: auto;

    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
  }

  #specialty-services-slider::-webkit-scrollbar {
    display: none;
  }

  #specialty-services-slider .panel-card,
  #specialty-services-slider .specialty-loop-clone {
    display: flex;

    flex: 0 0 82vw !important;
    width: 82vw !important;
    min-width: 270px;
    max-width: 340px !important;

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  #specialty-services-slider .panel-image {
    width: 100%;
    height: 185px;
  }
}

/* =========================================================
   CLEANOVA — FINAL COMPACT MOBILE LAYOUT
   Keep this at the absolute bottom of styles.css
   ========================================================= */

@media (max-width: 700px) {

  /* -----------------------------------------
     GLOBAL MOBILE SPACING AND TYPOGRAPHY
     ----------------------------------------- */

  .section,
  .split-section,
  .industries,
  .commitment-section,
  .client-section,
  .service-bundle-section,
  .about-company,
  .testimonial-section,
  .cta-strip {
    padding: 46px 16px;
  }

  .section-header,
  .industries-title,
  .client-section-header {
    margin-bottom: 24px;
  }

  .section-header .eyebrow,
  .industries-title .eyebrow,
  .client-section-header .eyebrow {
    margin-bottom: 8px;
  }

  .eyebrow {
    font-size: 8.5px;
    line-height: 1.4;
    letter-spacing: 0.22em;
  }

  .section-header h2,
  .industries-title h2,
  .client-section-header h2 {
    font-size: clamp(1.4rem, 6vw, 1.85rem);
    line-height: 1.14;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
  }

  .section-header p,
  .client-section-header p {
    max-width: 34rem;
    font-size: 12.5px;
    line-height: 1.55;
  }

  /* Keep buttons readable and comfortably tappable */
  .btn,
  .btn-small,
  .learn-more {
    min-height: 44px;
  }

  .btn,
  .btn-small {
    padding: 10px 15px;
    font-size: 8.5px;
    letter-spacing: 0.11em;
  }

  /* Compact page banners on every inner page */
  .page-head {
    min-height: 245px;
    padding: 118px 18px 46px;
  }

  .page-head h1 {
    font-size: clamp(1.6rem, 7vw, 2.15rem);
    line-height: 1.14;
    letter-spacing: 0.09em;
  }

  .page-head p {
    max-width: 340px;
    font-size: 12.5px;
    line-height: 1.55;
  }


  /* =====================================================
     INDEX.HTML — CHOOSE YOUR SERVICE
     Keep Commercial and Residential side by side
     ===================================================== */

  .split-section {
    padding: 44px 12px;
  }

  .split-header {
    margin-bottom: 22px;
  }

  .split-header h2 {
    margin-bottom: 10px;
  }

  .split-subheading,
  .split-statement {
    max-width: 340px;
    font-size: 12px;
    line-height: 1.5;
  }

  /* The department pills add too much mobile height */
  .department-points {
    display: none;
  }

  .split-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
    width: 100%;
  }

  .split-card {
    min-width: 0;
    min-height: 152px;
    padding: 15px 9px;
    border-radius: 14px;
  }

  .split-card h3 {
    max-width: 130px;
    margin-bottom: 12px;
    font-size: clamp(0.68rem, 3.2vw, 0.84rem);
    line-height: 1.35;
    letter-spacing: 0.08em;
  }

  /* The image and service title already explain the choice */
  .split-card p {
    display: none;
  }

  .split-card .btn {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 7.8px;
    letter-spacing: 0.08em;
    white-space: normal;
  }


  /* =====================================================
     INDEX.HTML — INDUSTRIES WE SERVE
     Four compact icons per row
     ===================================================== */

  .industries {
    padding: 42px 10px;
  }

  .industries-title {
    margin-bottom: 26px;
  }

  .industries-row {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 20px 7px !important;
    width: 100%;
  }

  .industry-item {
    gap: 8px;
    min-width: 0;
  }

  /* New icon-container version */
  .industry-icon {
    width: 43px;
    height: 43px;
    border-radius: 12px;
  }

  .industry-icon svg {
    width: 21px;
    height: 21px;
  }

  /* Fallback for older HTML without .industry-icon */
  .industry-item > svg {
    width: 23px;
    height: 23px;
  }

  .industry-item span {
    max-width: 78px;
    font-size: 8px;
    line-height: 1.3;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
  }


  /* =====================================================
     INDEX.HTML — CLEANOVA 9-1-1
     Three compact cards in one row
     ===================================================== */

  .commitment-section {
    padding: 42px 11px;
  }

  .commitment-panel {
    padding: 18px 12px;
    border-radius: 20px;
  }

  .commitment-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 17px;
  }

  .commitment-top h2 {
    margin-top: 5px;
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1;
  }

  .commitment-top p {
    max-width: none;
    font-size: 11.5px;
    line-height: 1.48;
  }

  .commitment-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  .commitment-card {
    min-width: 0;
    min-height: 88px;
    padding: 11px 7px;
    border-radius: 13px;
    text-align: center;
  }

  .commitment-card span {
    margin-bottom: 5px;
    font-size: 8.5px;
    line-height: 1.25;
  }

  .commitment-card strong {
    font-size: clamp(1.4rem, 6vw, 1.85rem);
    line-height: 1;
    letter-spacing: -0.025em;
  }


  /* =====================================================
     PANEL CAROUSELS
     Commercial, Residential and Specialty Services
     ===================================================== */

  #commercial-industries,
  #residential-services,
  #specialty-services-slider {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;

    width: auto;
    margin-inline: -16px;
    padding: 0 16px 14px;
    gap: 11px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
  }

  #commercial-industries::-webkit-scrollbar,
  #residential-services::-webkit-scrollbar,
  #specialty-services-slider::-webkit-scrollbar {
    display: none;
  }

  #commercial-industries .panel-card,
  #residential-services .panel-card,
  #specialty-services-slider .panel-card {
    flex: 0 0 72vw !important;
    width: 72vw !important;
    min-width: 230px;
    max-width: 278px !important;

    border-radius: 16px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  #commercial-industries .panel-image,
  #residential-services .panel-image,
  #specialty-services-slider .panel-image {
    height: 140px;
  }

  #commercial-industries .panel-body,
  #residential-services .panel-body,
  #specialty-services-slider .panel-body {
    min-height: 105px;
    padding: 15px 14px 16px;
  }

  #commercial-industries .panel-icon,
  #residential-services .panel-icon,
  #specialty-services-slider .panel-icon {
    width: 32px;
    height: 32px;
    margin-top: -31px;
    margin-bottom: 10px;
  }

  #commercial-industries .panel-icon svg,
  #residential-services .panel-icon svg,
  #specialty-services-slider .panel-icon svg {
    width: 15px;
    height: 15px;
  }

  #commercial-industries .panel-card h3,
  #residential-services .panel-card h3,
  #specialty-services-slider .panel-card h3 {
    min-height: 0;
    margin-bottom: 7px;
    font-size: 0.72rem;
    line-height: 1.35;
    letter-spacing: 0.1em;
  }

  #commercial-industries .learn-more,
  #residential-services .learn-more,
  #specialty-services-slider .service-click {
    min-height: 30px;
    margin-top: auto;
    font-size: 8.5px;
    letter-spacing: 0.12em;
  }


  /* =====================================================
     COMMERCIAL CLIENTS
     Variable widths so long client names do not overflow
     ===================================================== */

  .client-section {
    padding: 42px 0 34px;
  }

  .client-section-header {
    padding-inline: 16px;
    margin-bottom: 18px;
  }

  .client-section-header h2 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
    white-space: nowrap;
  }

  .client-section-header p {
    max-width: 330px;
    font-size: 11.5px;
  }

  .client-marquee {
    width: 100%;
    margin: 0;
    padding: 6px 16px 12px;

    overflow-x: auto;
    overflow-y: hidden;

    mask-image: none;
    -webkit-mask-image: none;
  }

  .client-track {
    animation: none !important;
    transform: none !important;
    display: flex;
    width: max-content;
    gap: 9px;
  }

  .client-pill {
    flex: 0 0 auto !important;

    width: max-content !important;
    min-width: 175px !important;
    max-width: 82vw !important;
    height: auto !important;
    min-height: 50px;

    padding: 9px 16px;
    border-radius: 999px;

    justify-content: center;
    scroll-snap-align: start;
  }

  .client-name {
    max-width: 100%;
    font-size: 9.5px;
    line-height: 1.3;
    letter-spacing: 0.075em;

    white-space: normal !important;
    text-align: center;
    overflow-wrap: anywhere;
  }


  /* =====================================================
     COMMERCIAL — BUILT FOR THE FINAL IMPRESSION
     Compact horizontal cards
     ===================================================== */

  .specialized-commercial {
    padding: 44px 14px;
  }

  .specialized-commercial .section-header {
    margin-bottom: 21px;
  }

  .specialized-commercial .section-header h2 {
    font-size: clamp(1.35rem, 6vw, 1.7rem);
  }

  .specialized-commercial-grid {
    display: flex !important;
    grid-template-columns: none !important;

    width: auto;
    margin-inline: -14px;
    padding: 0 14px 12px;
    gap: 10px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .specialized-commercial-grid::-webkit-scrollbar {
    display: none;
  }

  .service-detail-card {
    flex: 0 0 78vw;
    width: 78vw;
    min-width: 240px;
    max-width: 292px;

    min-height: 0;
    padding: 18px 16px;
    border-radius: 15px;

    scroll-snap-align: start;
  }

  .service-detail-card h4 {
    margin-bottom: 5px;
    font-size: 8px;
    letter-spacing: 0.15em;
  }

  .service-detail-card h3 {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 0.75rem;
    line-height: 1.35;
    letter-spacing: 0.1em;
  }

  .service-detail-card p {
    margin: 0 0 10px;
    font-size: 11.5px;
    line-height: 1.48;
  }

  .service-detail-card li {
    padding: 4px 0;
    font-size: 10.5px;
    line-height: 1.4;
  }

  .service-detail-card .learn-more {
    margin-top: 12px;
    font-size: 8px;
  }


  /* =====================================================
     COMMERCIAL + RESIDENTIAL FEATURE SECTIONS
     Fleet bundle, Home + Car bundle, Tailored Facility
     ===================================================== */

  .service-bundle-section {
    padding: 38px 14px;
  }

  .feature-bar,
  .service-bundle {
    display: grid !important;
    grid-template-columns: 1fr !important;
    border-radius: 18px;
    overflow: hidden;
  }

  .feature-image {
    min-height: 180px !important;
    order: -1;
  }

  .bundle-image-grid {
    order: -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 165px !important;
  }

  .bundle-photo {
    min-height: 165px !important;
  }

  .feature-content,
  .service-bundle .feature-content {
    padding: 19px 16px !important;
  }

  .feature-content .eyebrow,
  .service-bundle .eyebrow {
    margin-bottom: 7px;
  }

  .feature-content h2,
  .service-bundle h2 {
    margin-bottom: 10px;
    font-size: clamp(1.2rem, 5.7vw, 1.5rem);
    line-height: 1.2;
    letter-spacing: 0.075em;
  }

  .feature-content p,
  .service-bundle p {
    margin-bottom: 13px;
    font-size: 11.8px;
    line-height: 1.5;
  }

  .feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 10px;
    margin-bottom: 15px;
  }

  .feature-list li {
    min-width: 0;
    padding: 6px 0;
    font-size: 10.5px;
    line-height: 1.35;
  }


  /* =====================================================
     ABOUT.HTML — PREMIUM ABOUT SECTION
     ===================================================== */

  .about-company {
    padding: 42px 13px;
  }

  .about-company-shell {
    display: grid;
    grid-template-columns: 1fr !important;
    min-height: 0;
    border-radius: 20px;
    overflow: hidden;
  }

  .about-company-text {
    padding: 23px 18px;
  }

  .about-company-text .eyebrow {
    margin-bottom: 8px;
  }

  .about-company-text h2 {
    margin-bottom: 13px;
    font-size: clamp(1.65rem, 7.6vw, 2.15rem);
    line-height: 1.06;
  }

  .about-company-text h2 em {
    margin-top: 7px;
    font-size: 0.62em;
    line-height: 1.15;
  }

  .about-company-lead {
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.52;
  }

  .about-company-copy {
    gap: 9px;
    margin-bottom: 16px;
  }

  .about-company-copy p {
    font-size: 11.8px;
    line-height: 1.5;
  }

  .about-company-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 16px;
  }

  .about-highlight {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 36px;
    padding: 6px 8px;

    font-size: 7.5px;
    line-height: 1.25;
    text-align: center;
    letter-spacing: 0.07em;
  }

  .about-company-visual {
    order: -1;
    min-height: 225px !important;
    height: 225px;
    border-radius: 0;
    background-position: center 22%;
  }

  .team-logo-card {
    top: 12px;
    padding: 8px 12px;
    border-radius: 12px;
  }

  .team-logo-card img {
    width: 130px;
  }

  /* Floating panels crowd the photograph on phones */
  .about-floating-card {
    display: none;
  }


  /* =====================================================
     ABOUT.HTML — WHY CLEANOVA
     Two cards per row
     ===================================================== */

  .why-cleanova-section,
  .why-cleanova-section.section {
    padding: 44px 13px;
  }

  .why-cleanova-header {
    margin-bottom: 22px;
  }

  .why-cleanova-header h2 {
    font-size: clamp(1.55rem, 7vw, 1.95rem);
  }

  .why-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 11px 10px !important;
  }

  .why-card {
    min-width: 0;
    padding: 14px 11px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
  }

  .why-card::before {
    width: 38px;
    margin-bottom: 10px;
  }

  .why-icon {
    width: 30px;
    height: 30px;
    margin: 0 0 9px;
  }

  .why-icon svg {
    width: 19px;
    height: 19px;
  }

  .why-card h3 {
    margin-bottom: 7px;
    font-size: 0.64rem;
    line-height: 1.38;
    letter-spacing: 0.085em;
  }

  .why-card p {
    font-size: 10.5px;
    line-height: 1.42;
  }


  /* =====================================================
     ABOUT.HTML — CONTACT
     Three compact columns
     ===================================================== */

  #contact {
    padding: 44px 10px;
  }

  #contact .section-header {
    margin-bottom: 22px;
    padding-inline: 6px;
  }

  .contact-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 7px !important;
    margin-top: 20px;
  }

  .contact-card {
    min-width: 0;
    padding: 12px 5px 0;
    text-align: center;
  }

  .contact-icon {
    width: 30px;
    height: 30px;
    margin: 0 auto 8px;
    justify-content: center;
  }

  .contact-icon svg {
    width: 19px;
    height: 19px;
  }

  .contact-card h3 {
    margin-bottom: 6px;
    font-size: 8.5px;
    line-height: 1.25;
    letter-spacing: 0.11em;
  }

  .contact-card p {
    min-width: 0;
    font-size: 9.5px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  /* Hide hours/secondary descriptions to keep the row compact */
  .contact-card p:nth-of-type(n + 2) {
    display: none;
  }

  .contact-card a {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    overflow-wrap: anywhere;
  }


  /* =====================================================
     QUOTE.HTML — WHAT HAPPENS NEXT
     Compact 2 × 2 process
     ===================================================== */

  .happens-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 17px 10px !important;
    margin-top: 22px;
  }

  .happens-step {
    min-width: 0;
    padding: 0 0 0 13px;
  }

  .happens-step::before {
    top: 3px;
  }

  .happens-step-num {
    margin-bottom: 7px;
    font-size: 1.65rem;
  }

  .happens-step h3 {
    margin-bottom: 6px;
    font-size: 0.66rem;
    line-height: 1.35;
    letter-spacing: 0.09em;
  }

  .happens-step p {
    font-size: 10.8px;
    line-height: 1.45;
  }
}


/* Smaller phones: keep layouts usable below roughly 370px */
@media (max-width: 370px) {

  .industries-row {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .split-card {
    min-height: 145px;
    padding-inline: 7px;
  }

  .split-card h3 {
    font-size: 0.65rem;
  }

  .commitment-card span {
    font-size: 7.8px;
  }

  .commitment-card strong {
    font-size: 1.35rem;
  }

  .contact-card p {
    font-size: 8.7px;
  }
}
