/* ============================================
   SCOOP OPERATORS - Pet Waste Removal
   Canton/Massillon, Ohio
   ============================================ */

/* ---------- 1. Custom Properties ---------- */
:root {
  --blue: #2B6FA2;
  --blue-dark: #1B4F75;
  --blue-deeper: #0F2D45;
  --blue-light: #E3F0FA;
  --blue-pale: #F0F7FC;

  --green: #3D8B37;
  --green-dark: #2D6829;
  --green-light: #E8F5E3;
  --green-pale: #F4FBF3;

  --gold: #D4A843;
  --gold-light: #FFF8E7;

  --bg: #FAFBF8;
  --surface: #FFFFFF;
  --text: #1A2332;
  --text-muted: #5A6675;
  --text-light: #8A95A3;
  --border: #E2E6EA;
  --border-light: #F0F2F4;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.09);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 100px;

  --container: 1180px;
  --section-pad: 100px;
  --header-h: 72px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- 2. Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }

body {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--blue-dark); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4, h5 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.2; font-weight: 700; }

.section-badge {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.4rem;
  color: var(--text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.65;
}

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

.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-blue { color: var(--blue); }
.text-gold { color: var(--gold); }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 4px 14px rgba(61, 139, 55, 0.3);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61, 139, 55, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-dark:hover {
  background: var(--blue);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--green);
  border-color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.14);
  color: var(--green-dark);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ---------- 5. Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: all 0.3s var(--ease-out);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  height: 62px;
  border-bottom-color: var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: width 0.3s, height 0.3s;
}

.site-header.scrolled .header-logo img { width: 38px; height: 38px; }

.header-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--blue);
  line-height: 1.1;
}

.header-logo-text small {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-nav a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--blue);
  background: var(--blue-pale);
}

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 20px !important;
  font-size: 0.85rem !important;
  color: var(--text) !important;
  background: none !important;
  border-radius: 0 !important;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: var(--blue-pale) !important;
  color: var(--blue) !important;
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--border-light);
  margin: 4px 12px;
}

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

.header-phone {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-phone svg { flex-shrink: 0; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-nav.open { opacity: 1; }

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: #fff;
  padding: 80px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
  overflow-y: auto;
}

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

.mobile-nav-panel a {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.mobile-sub-links {
  padding-left: 16px;
  border-left: 2px solid var(--blue-pale);
  margin-left: 8px;
  margin-bottom: 4px;
}

.mobile-sub-links a {
  font-size: 0.92rem !important;
  padding: 10px 0 !important;
  color: var(--text-muted) !important;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 72px) 0 100px;
  background: var(--blue-deeper);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,45,69,0.95) 0%,
    rgba(15,45,69,0.90) 30%,
    rgba(15,45,69,0.65) 50%,
    rgba(15,45,69,0.25) 65%,
    transparent 80%
  );
}

/* Dog overlay - independent positioning */
.hero-dog {
  position: absolute;
  right: 6%;
  bottom: 80px;
  z-index: 3;
  height: 80%;
  pointer-events: none;
}

.hero-dog img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.25));
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(61,139,55,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(212,168,67,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Legacy side image - no longer used */
.hero-image-wrap { display: none; }

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' fill='none'%3E%3Cpath d='M0 40C240 10 480 60 720 35C960 10 1200 55 1440 30V80H0V40Z' fill='%23FAFBF8'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin-right: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.9);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

h1.hero-badge {
  margin-top: 0;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45), 0 1px 3px rgba(0,0,0,0.3);
}

.hero-headline .highlight {
  color: #4ADE80;
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}

.hero-trust-item svg { flex-shrink: 0; opacity: 0.7; }

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

.hero-inner > .container {
  max-width: 100%;
  padding: 0 5vw;
  margin: 0;
}

/* ---------- 7. Free Banner ---------- */
.free-banner {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 18px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.free-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.03) 20px,
    rgba(255,255,255,0.03) 40px
  );
}

.free-banner span { position: relative; z-index: 1; }
.free-banner strong { color: #FFF8E7; }

/* ---------- 8. Section Styles ---------- */
.section {
  padding: var(--section-pad) 0;
}

.section-alt {
  background: var(--blue-pale);
}

.section-white {
  background: #fff;
}

.section-trust {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.section-trust::before {
  content: '';
  position: absolute;
  inset: 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='%232B6FA2' fill-opacity='0.025' fill-rule='evenodd'%3E%3Cpath d='M20 20.5a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1zM0 20.5a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1zM40 20.5a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1zM20 .5a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1zM20 40.5a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* ---------- 9. How It Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 56px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(43, 111, 162, 0.25);
  position: relative;
}

.step-icon {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon svg { color: var(--blue); }

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}

/* ---------- 10. Service Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 0;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

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

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

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 28px;
}

.service-card-icon.blue { background: var(--blue-light); color: var(--blue); }
.service-card-icon.green { background: var(--green-light); color: var(--green); }
.service-card-icon.gold { background: var(--gold-light); color: var(--gold); }

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

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.service-card .price-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--green);
  font-size: 0.95rem;
}

/* ---------- 11. Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s var(--ease-out);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
  z-index: 1;
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.pricing-card-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.pricing-dog-count {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-plan-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.pricing-amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.pricing-amount .dollar { font-size: 1.6rem; vertical-align: top; margin-right: 2px; }
.pricing-period { font-size: 1rem; font-weight: 400; color: var(--text-muted); }

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--green);
}

.pricing-card .btn { width: 100%; }

.pricing-note {
  text-align: center;
  margin-top: 32px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ---------- 12. Why Us / Trust Grid ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.trust-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.25s var(--ease-out);
}

.trust-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}

.trust-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}

.trust-item-icon.green { background: var(--green-light); color: var(--green); }
.trust-item-icon.emerald { background: #E0F7EC; color: #10B981; }
.trust-item-icon.blue { background: var(--blue-light); color: var(--blue); }
.trust-item-icon.gold { background: var(--gold-light); color: var(--gold); }
.trust-item-icon.red { background: #FEE2E2; color: #DC2626; }
.trust-item-icon.navy { background: #E0E7F1; color: var(--blue-deeper); }

.trust-item h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- 13. Service Area ---------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.area-card {
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--text);
}

.area-card:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.area-card .city-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

.area-card .city-state {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- 14. Reviews / Social Proof ---------- */
.reviews-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative;
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ---------- 15. FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--blue); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question:hover { color: var(--blue); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out), background 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out), padding 0.35s;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

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

/* ---------- 16. CTA Section ---------- */
.cta-section {
  background: linear-gradient(170deg, var(--blue-deeper) 0%, var(--blue) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.cta-section h2 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  margin-bottom: 36px;
  position: relative;
}

.cta-section .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ---------- 17. Form Styles ---------- */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43, 111, 162, 0.1);
}

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

/* ---------- 18. Footer ---------- */
.site-footer {
  background: var(--blue-deeper);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p { font-size: 0.92rem; line-height: 1.65; margin: 16px 0; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-brand .footer-logo img { width: 48px; height: 48px; border-radius: 50%; }
.footer-brand .footer-logo span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  padding: 5px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  margin-top: 56px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- Image Components ---------- */
.content-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.content-image-rounded {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.content-image-side {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.image-text-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.image-text-row.reverse { direction: rtl; }
.image-text-row.reverse > * { direction: ltr; }

.about-hero-image {
  width: 100%;
  max-width: 360px;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
  border: 6px solid #fff;
  margin: 0 auto 40px;
  display: block;
}

.cta-section-image {
  background-size: cover;
  background-position: center;
  position: relative;
}

.cta-section-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(15,45,69,0.88) 0%, rgba(43,111,162,0.85) 100%);
  z-index: 0;
}

.cta-section-image h2,
.cta-section-image p,
.cta-section-image .cta-buttons { position: relative; z-index: 1; }

.sidebar-image {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  object-fit: cover;
  max-height: 220px;
}

.page-header-image {
  position: relative;
  overflow: hidden;
}

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

.page-header-image > .container { position: relative; z-index: 1; }

.review-section-bg {
  position: relative;
  overflow: hidden;
}

.review-section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/static/images/clean-yard.jpg') center/cover no-repeat;
  opacity: 0.04;
  pointer-events: none;
}

/* ---------- 19. Page Header (inner pages) ---------- */
.page-header {
  padding: calc(var(--header-h) + 56px) 0 56px;
  background: var(--blue-pale);
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: 2.4rem;
  color: var(--text);
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 8px;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--blue); }
.breadcrumb span { margin: 0 8px; color: var(--text-light); }

/* ---------- 20. Content Sections (inner pages) ---------- */
.content-section { padding: 64px 0; }

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.sidebar-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  position: sticky;
  top: 90px;
}

.sidebar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

/* Add-on pricing table */
.addon-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.addon-table th,
.addon-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.addon-table th {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: var(--blue-pale);
}

.addon-table td:last-child {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--green);
}

/* ---------- 21. Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }

@keyframes float-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: float-in 0.7s var(--ease-out) both;
}

.hero-badge { animation-delay: 0.1s; }
.hero-headline { animation-delay: 0.2s; }
.hero-sub { animation-delay: 0.3s; }
.hero-ctas { animation-delay: 0.4s; }
.hero-trust { animation-delay: 0.55s; }

/* ---------- 22. Responsive ---------- */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .header-phone { display: none; }
  .header-actions .btn { display: none; }
  .mobile-toggle { display: block; }

  .hero-headline { font-size: 2.8rem; }
  .section-title { font-size: 2rem; }
  .steps-grid { gap: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { gap: 20px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .hero-visual { display: none; }
  .hero-bg img { object-position: center; }
  .hero-dog { right: 2%; height: 75%; }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .image-text-row { grid-template-columns: 1fr; gap: 32px; }
  .image-text-row.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
    --header-h: 64px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 32px) 0 40px;
    align-items: flex-start;
  }

  .hero-content {
    padding-bottom: 0;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-content .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-dog {
    position: relative;
    right: auto;
    bottom: auto;
    height: auto;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-top: 24px;
    margin-bottom: -20px;
  }

  .hero-dog img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    filter: none;
  }

  .hero-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(15,45,69,0.92) 0%,
      rgba(15,45,69,0.88) 50%,
      rgba(15,45,69,0.80) 80%,
      rgba(15,45,69,0.70) 100%
    );
  }

  .hero-bg img { object-position: center; }

  .hero-headline { font-size: 2.2rem; }
  .hero-sub { font-size: 1.05rem; }
  .section-title { font-size: 1.7rem; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .steps-grid::before { display: none; }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }

  .trust-grid { grid-template-columns: 1fr; }
  .reviews-row { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .content-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust { gap: 12px 20px; flex-wrap: wrap; }

  .cta-section h2 { font-size: 1.8rem; }
  .page-header h1 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 1.85rem; }
  .area-grid { grid-template-columns: 1fr; }
}

/* ---------- 23. Trust Promises Bar ---------- */
.promises-section {
  background: var(--blue-deeper);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.promises-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(43,111,162,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(61,139,55,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.promises-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}

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

.promise-item:hover {
  background: rgba(255,255,255,0.04);
}

.promise-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(74,222,128,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #4ADE80;
}

.promise-text {
  display: flex;
  flex-direction: column;
}

.promise-text strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.promise-text span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* ---------- 24. Urgency Banner ---------- */
.urgency-banner {
  background: linear-gradient(135deg, #B8912A 0%, #9A7A1E 100%);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.urgency-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 15px,
    rgba(255,255,255,0.06) 15px,
    rgba(255,255,255,0.06) 30px
  );
  pointer-events: none;
}

.urgency-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.urgency-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.urgency-text {
  flex: 1;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.5;
}

.urgency-text strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 2px;
}

.urgency-text span {
  opacity: 0.9;
  font-size: 0.88rem;
}

/* ---------- 25. Dogs Photo Grid ---------- */
.dogs-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.dogs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green) 0%, var(--blue) 50%, var(--gold) 100%);
}

.dogs-badge {
  background: #FFF0F0 !important;
  color: #E25555 !important;
}

.dogs-badge svg {
  color: #E25555;
}

.dogs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.dog-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.dog-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}

.dog-photo:hover img {
  transform: scale(1.08);
}

.dog-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,45,69,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.dog-photo:hover .dog-photo-overlay {
  opacity: 1;
}

.dog-photo-overlay span {
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ---------- 26. Enhanced Reviews ---------- */
.review-section-enhanced {
  background: var(--blue-pale);
  position: relative;
  overflow: hidden;
}

.review-section-enhanced::before {
  content: '';
  position: absolute;
  inset: 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='%232B6FA2' fill-opacity='0.03'%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");
  pointer-events: none;
}

.google-rating {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 24px 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
  border: 2px solid var(--gold-light);
}

.google-rating-stars {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 4px;
}

.google-rating-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  color: var(--text);
}

.google-rating-text strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}

.google-rating-source {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.review-card-enhanced {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  border: 1px solid var(--border);
  position: relative;
  text-align: left;
  transition: all 0.3s var(--ease-out);
}

.review-card-enhanced:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}

.review-card-quote {
  position: absolute;
  top: 12px;
  left: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1;
  pointer-events: none;
}

.review-card-enhanced .review-stars {
  margin-bottom: 16px;
  position: relative;
}

.review-card-enhanced .review-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: normal;
  position: relative;
}

.review-author-block {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.review-author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.review-author-location {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- 27. Section Dividers ---------- */
.section-wave-top {
  position: relative;
}

.section-wave-top::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' fill='none'%3E%3Cpath d='M0 30C360 0 720 60 1080 30C1260 15 1380 5 1440 0V60H0V30Z' fill='%23F0F7FC'/%3E%3C/svg%3E") no-repeat top center;
  background-size: cover;
  pointer-events: none;
}

/* ---------- 28. Responsive for new sections ---------- */
@media (max-width: 1024px) {
  .promises-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-item:nth-child(2) { border-right: none; }
  .dogs-grid { grid-template-columns: repeat(2, 1fr); }
  .urgency-inner { flex-wrap: wrap; }
  .urgency-inner .btn { width: 100%; }
}

@media (max-width: 768px) {
  .promises-grid { grid-template-columns: 1fr 1fr; }
  .promise-item { padding: 20px 16px; gap: 10px; }
  .promise-item:nth-child(even) { border-right: none; }
  .promise-icon { width: 38px; height: 38px; }
  .promise-text strong { font-size: 0.85rem; }
  .promise-text span { font-size: 0.75rem; }

  .urgency-banner { padding: 16px 0; }
  .urgency-inner { flex-direction: column; text-align: center; gap: 12px; }
  .urgency-icon { margin: 0 auto; }

  .dogs-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

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

@media (max-width: 480px) {
  .promises-grid { grid-template-columns: 1fr 1fr; }
  .dogs-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ---------- 29. Print ---------- */
@media print {
  .site-header, .mobile-nav, .cta-section, .free-banner, .promises-section, .urgency-banner { display: none !important; }
  .hero { min-height: auto; padding: 40px 0; }
  .section { padding: 40px 0; }
  body { font-size: 12pt; }
}
