/* ============================================
   CONCRETE CONTRACTOR PHILADELPHIA - HOMEPAGE
   Mobile-First Responsive Design
   ============================================ */

/* --- CSS VARIABLES --- */
:root {
  --primary: #1a2b4a;
  --primary-light: #2a3f6a;
  --accent: #d4842a;
  --accent-hover: #e8952f;
  --accent-dark: #b86f1f;
  --dark: #111827;
  --dark-soft: #1f2937;
  --gray-900: #1a1a2e;
  --gray-800: #2d2d44;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --red: #dc2626;
  --red-light: #fef2f2;
  --red-border: #fca5a5;
  --green: #16a34a;
  --green-light: #f0fdf4;
  --blue-light: #eff6ff;
  --blue-border: #93c5fd;
  --amber: #f59e0b;
  --amber-light: #fffbeb;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font-sans);
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  line-height: 1.25;
  font-weight: 700;
}

/* --- UTILITY CLASSES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section-alt {
  background: var(--gray-50);
}

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

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p,
.section-dark li {
  color: var(--gray-300);
}

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

.text-accent {
  color: var(--accent);
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-accent {
  background: rgba(212, 132, 42, 0.12);
  color: var(--accent);
}

.badge-primary {
  background: rgba(26, 43, 74, 0.1);
  color: var(--primary);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
  position: relative;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 700px;
  margin-bottom: 40px;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.visible.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.visible.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.visible.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.visible.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.visible.delay-5 { transition-delay: 0.5s; }

/* --- STICKY HEADER --- */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 43, 74, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.sticky-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  color: var(--gray-300);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-desktop a:hover {
  color: var(--white);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.header-phone svg {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font-sans);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(212, 132, 42, 0.3);
}

.btn-accent:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 132, 42, 0.4);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--gray-100);
  color: var(--primary);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

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

.btn-outline-dark:hover {
  border-color: var(--primary);
  background: var(--gray-50);
  color: var(--primary);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary);
  z-index: 999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  padding: 14px 16px;
  color: var(--gray-300);
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a:active {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.mobile-menu .btn {
  margin-top: 16px;
}

/* --- TRUST BAR --- */
.trust-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 8px 0;
  margin-top: 70px;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 500;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.trust-bar-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, #0f1b33 60%, #0a1628 100%);
  overflow: hidden;
  padding: 60px 0 80px;
}

/* Hero background image */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.12;
  z-index: 0;
}

/* Hero gradient overlay for text readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, 
    rgba(26, 42, 58, 0.7) 0%, 
    rgba(15, 27, 51, 0.6) 50%,
    rgba(26, 42, 58, 0.75) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 132, 42, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 132, 42, 0.05) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-content .section-label {
  color: var(--accent);
}

.hero-content .section-label::before {
  background: var(--accent);
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
  font-weight: 800;
}

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

.hero-description {
  font-size: 1.1rem;
  color: var(--gray-400);
  margin-bottom: 12px;
  line-height: 1.8;
  max-width: 560px;
}

.hero-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-locations span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gray-400);
}

.hero-locations span svg {
  width: 12px;
  height: 12px;
  color: var(--accent);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Mobile Call Button */
.hero-mobile-cta {
  display: none;
}

.hero-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
}

.hero-call-btn svg {
  flex-shrink: 0;
}

/* Hero Form */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-xl);
  animation: slideInRight 0.8s ease 0.2s forwards;
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
}

.form-title {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 4px;
  font-weight: 700;
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--gray-700);
  background: var(--gray-50);
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212, 132, 42, 0.12);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

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

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

.form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--gray-500);
}

.form-trust span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-trust svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

/* --- SERVICE CARDS GRID --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.3s ease;
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card:hover::before {
  height: 100%;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(212, 132, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.service-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* --- CONTENT SECTIONS --- */
.content-block {
  max-width: 800px;
}

.content-block p {
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.8;
}

.content-block h3 {
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 14px;
}

.content-block h4 {
  font-size: 1.05rem;
  margin-top: 24px;
  margin-bottom: 10px;
}

.content-block ul,
.content-block ol {
  margin-bottom: 18px;
  padding-left: 24px;
}

.content-block li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.7;
}

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.two-col-center {
  align-items: center;
}

/* --- INFOGRAPHIC CARDS --- */
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.info-card-accent {
  border-left: 4px solid var(--accent);
}

.info-card-red {
  border-left: 4px solid var(--red);
  background: var(--red-light);
}

.info-card-green {
  border-left: 4px solid var(--green);
  background: var(--green-light);
}

.info-card-blue {
  border-left: 4px solid #3b82f6;
  background: var(--blue-light);
}

/* --- FREEZE-THAW INFOGRAPHIC --- */
.freeze-thaw-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.ft-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.ft-step:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.ft-step-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.ft-step-content h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  margin-top: 0;
}

.ft-step-content p {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 0;
  line-height: 1.5;
}

/* --- SIGNS / WARNING CARDS --- */
.signs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.sign-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.sign-card:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.sign-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  background: rgba(212, 132, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.sign-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.sign-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* --- CTA BANDS --- */
.cta-band {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20h20v20H20zM0 0h20v20H0z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-band .container {
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 10px;
}

.cta-band p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* --- PRICING TABLE --- */
.pricing-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.pricing-table thead {
  background: var(--primary);
}

.pricing-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-table td {
  padding: 14px 18px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gray-100);
}

.pricing-table tbody tr {
  transition: var(--transition);
}

.pricing-table tbody tr:hover {
  background: rgba(212, 132, 42, 0.04);
}

.pricing-table tbody tr:nth-child(even) {
  background: var(--gray-50);
}

.pricing-table tbody tr:nth-child(even):hover {
  background: rgba(212, 132, 42, 0.06);
}

.price-highlight {
  font-weight: 700;
  color: var(--primary);
}

/* Mobile pricing cards */
.pricing-cards-mobile {
  display: none;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 12px;
}

.pricing-card-service {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 8px;
}

.pricing-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}

.pricing-card-note {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* --- RED FLAGS --- */
.red-flags-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.red-flag-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--red);
  transition: var(--transition);
}

.red-flag-card:hover {
  box-shadow: var(--shadow);
}

.red-flag-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--red);
}

.red-flag-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--red);
}

.red-flag-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* --- PROCESS TIMELINE --- */
.process-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}

.process-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 72px;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.process-step-num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--gray-200);
}

.process-step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  margin-top: 0;
}

.process-step-content p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* --- DECISION TABLE --- */
.decision-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.decision-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.decision-table thead {
  background: var(--primary);
}

.decision-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.decision-table td {
  padding: 14px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: top;
}

.decision-table tbody tr:nth-child(even) {
  background: var(--gray-50);
}

.repair-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--green-light);
  color: var(--green);
}

.replace-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--red-light);
  color: var(--red);
}

/* --- EMERGENCY SECTION --- */
.emergency-section {
  background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
  padding: 48px 0;
  color: var(--white);
}

.emergency-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.emergency-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}

.emergency-item-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.emergency-item h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
}

.emergency-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* --- NEIGHBORHOODS --- */
.neighborhoods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.neighborhood-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.neighborhood-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.neighborhood-card-header {
  padding: 18px 20px;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.neighborhood-card-header h3 {
  font-size: 1rem;
  color: var(--white);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.neighborhood-card-header .chevron {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.neighborhood-card.open .chevron {
  transform: rotate(180deg);
}

.neighborhood-card-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.neighborhood-card.open .neighborhood-card-body {
  padding: 20px;
  max-height: 500px;
}

.neighborhood-card-body p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* --- SEASONAL CALENDAR --- */
.seasonal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.seasonal-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: var(--white);
}

.seasonal-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.seasonal-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.seasonal-ideal .seasonal-card-icon {
  background: var(--green-light);
}

.seasonal-caution .seasonal-card-icon {
  background: var(--amber-light);
}

.seasonal-challenging .seasonal-card-icon {
  background: var(--red-light);
}

.seasonal-card h3 {
  font-size: 1rem;
}

.seasonal-card .season-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.seasonal-ideal .season-tag {
  background: var(--green-light);
  color: var(--green);
}

.seasonal-caution .season-tag {
  background: var(--amber-light);
  color: var(--amber);
}

.seasonal-challenging .season-tag {
  background: var(--red-light);
  color: var(--red);
}

.seasonal-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* --- MAINTENANCE CHECKLIST --- */
.maintenance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.maintenance-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.maintenance-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  background: rgba(212, 132, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.maintenance-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.maintenance-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* --- FAQ ACCORDION --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--gray-300);
}

.faq-item.open {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
  gap: 16px;
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.85rem;
  color: var(--gray-500);
}

.faq-item.open .faq-toggle {
  background: var(--accent);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 20px 20px;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* --- RESOURCES --- */
.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.resource-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.resource-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateX(4px);
  color: inherit;
}

.resource-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.resource-card h3 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.resource-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* --- BEFORE/AFTER GALLERY SECTION --- */
.gallery-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.gallery-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.gallery-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  background: var(--gray-100);
}

.gallery-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image-wrapper img {
  transform: scale(1.05);
}

.gallery-label {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-label.before {
  background: rgba(220, 53, 69, 0.9);
  color: white;
}

.gallery-label.after {
  background: rgba(40, 167, 69, 0.9);
  color: white;
}

.gallery-info {
  padding: 20px;
}

.gallery-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.gallery-info p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.gallery-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px 12px;
  background: var(--accent-light);
  color: var(--accent-dark);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Gallery responsive */
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 639px) {
  .gallery-section {
    padding: 60px 0;
  }
  
  .gallery-images {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .gallery-image-wrapper {
    aspect-ratio: 16/10;
  }
  
  .gallery-info {
    padding: 16px;
  }
  
  .gallery-info h4 {
    font-size: 1rem;
  }
}

/* --- FINAL CTA SECTION --- */
.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #0f1b33 100%);
  padding: 80px 0;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.final-cta .container {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 12px;
}

.final-cta p {
  color: var(--gray-400);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.final-cta .form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  max-width: 560px;
  margin: 32px auto 0;
  text-align: left;
  box-shadow: var(--shadow-xl);
}

.final-cta .form-card .form-title {
  text-align: center;
}

.final-cta .form-card .form-subtitle {
  text-align: center;
}

/* --- LEAD MAGNET --- */
.lead-magnet {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fe 100%);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}

.lead-magnet h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.lead-magnet p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.lead-magnet .form-inline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.lead-magnet .form-inline input {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-sans);
}

.lead-magnet .form-inline input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 132, 42, 0.12);
}

.lead-magnet .form-trust-sm {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 8px;
}

/* --- BACK TO TOP --- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  border: none;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  font-size: 1.1rem;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* --- FOOTER BAR --- */
.footer-bar {
  background: var(--primary);
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-address {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.footer-address svg {
  color: var(--accent);
  flex-shrink: 0;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.footer-contact svg {
  color: var(--accent);
}

/* Footer responsive */
@media (max-width: 639px) {
  .footer-bar {
    padding: 20px 0;
    margin-bottom: 60px; /* Space for floating call button */
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .footer-address {
    font-size: 0.9rem;
  }
}

/* --- FLOATING CALL BUTTON (Mobile Only) --- */
.floating-call-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: linear-gradient(135deg, #1a7a2e 0%, #22922e 100%);
  color: var(--white);
  text-decoration: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-sans);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease;
}

.floating-call-btn svg {
  flex-shrink: 0;
  stroke: var(--white);
  animation: pulse 2s ease-in-out infinite;
}

.floating-call-btn span {
  letter-spacing: 0.02em;
}

.floating-call-btn:hover,
.floating-call-btn:active {
  background: linear-gradient(135deg, #15661f 0%, #1a7a2e 100%);
}

/* --- VERIFICATION SECTION --- */
.verify-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.verify-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

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

.verify-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.verify-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.verify-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

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

/* Tablet */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

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

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

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

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

  .cta-band .btn-group {
    flex-direction: row;
    justify-content: center;
  }

  .lead-magnet .form-inline {
    flex-direction: row;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  .section {
    padding: 80px 0;
  }

  .nav-desktop {
    display: flex;
  }

  .header-phone {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }

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

  .hero {
    padding: 80px 0 100px;
  }

  .two-col {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .freeze-thaw-steps {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .seasonal-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .resources-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .process-timeline {
    padding-left: 20px;
  }

  .pricing-cards-mobile {
    display: none !important;
  }
}

/* Large Desktop */
@media (min-width: 1280px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile-specific overrides */
@media (max-width: 639px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .hero-stat-number {
    font-size: 1.4rem;
  }

  .hero-form-card {
    padding: 24px 20px;
  }

  .pricing-table-wrapper {
    display: none;
  }

  .pricing-cards-mobile {
    display: block;
  }

  .decision-table-wrapper {
    border: none;
  }

  .decision-table {
    min-width: auto;
  }

  .decision-table thead {
    display: none;
  }

  .decision-table tbody tr {
    display: block;
    margin-bottom: 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .decision-table td {
    display: block;
    padding: 10px 16px;
    border-bottom: 1px solid var(--gray-100);
  }

  .decision-table td:first-child {
    background: var(--gray-50);
    font-weight: 700;
    color: var(--primary);
  }

  .decision-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    margin-bottom: 4px;
  }

  .decision-table td:first-child::before {
    display: none;
  }

  /* Show hero mobile call button */
  .hero-mobile-cta {
    display: block;
    margin-top: 20px;
  }

  /* Enable floating call button on mobile (JS controls visibility) */
  .floating-call-btn {
    display: flex;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }

  .floating-call-btn.visible {
    transform: translateY(0);
  }

  /* Adjust back-to-top position to not overlap floating call btn */
  .back-to-top {
    bottom: 72px;
  }

  /* Add bottom padding to body so content isn't hidden behind floating btn */
  body {
    padding-bottom: 60px;
  }
}

/* Print styles */
@media print {
  .sticky-header,
  .mobile-menu,
  .back-to-top,
  .cta-band,
  .emergency-section,
  .final-cta,
  .hero-form-card,
  .trust-bar {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
    background: var(--white) !important;
    color: var(--dark) !important;
  }

  .hero h1 {
    color: var(--primary) !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }
}
</style>