/* ================================================================
   24 PLUMBER — Complete Theme CSS
   ================================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:      #0066ff;
  --primary-dark: #0052cc;
  --primary-light: #3385ff;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
  --white: #ffffff;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-full: 9999px;
  --radius-2xl: 1.5rem;
  --radius-xl: 1rem;
  --radius-lg: 0.75rem;
  --container: 1200px;
  --shadow-primary: 0 20px 40px -10px rgba(0,102,255,0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ================================================================
   ANIMATIONS
   ================================================================ */

/* Hero entrance */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-animate {
  animation: heroSlideUp 0.55s ease both;
}

/* Scroll-triggered animations (JS adds .animated) */
.anim-fade-up  { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.anim-fade-left{ opacity: 0; transform: translateX(-24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.anim-scale-in { opacity: 0; transform: scale(0.92);      transition: opacity 0.55s ease, transform 0.55s ease; }

.anim-fade-up.animated,
.anim-fade-left.animated,
.anim-scale-in.animated { opacity: 1; transform: none; }

/* Staggered delays */
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }
.delay-5 { transition-delay: 0.50s; }
.delay-6 { transition-delay: 0.60s; }

/* Pulse */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
.pulse { animation: pulse 2s ease-in-out infinite; }

/* Shimmer on CTA */
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ================================================================
   NAVBAR
   ================================================================ */

#p24-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, padding 0.3s, border-color 0.3s, box-shadow 0.3s;
}

#p24-navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--slate-200);
  padding: 0.75rem 0;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 110;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  color: var(--primary);
  transition: background 0.3s, color 0.3s;
  flex-shrink: 0;
}
#p24-navbar.scrolled .nav-logo-icon {
  background: var(--primary);
  color: var(--white);
}
.nav-logo-text {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color 0.3s;
}
#p24-navbar.scrolled .nav-logo-text { color: var(--slate-900); }
.nav-logo-text .accent { color: var(--primary); }
#p24-navbar.scrolled .nav-logo-text .accent { color: var(--primary); }

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--primary); }
#p24-navbar.scrolled .nav-links a { color: var(--slate-700); }
#p24-navbar.scrolled .nav-links a:hover { color: var(--primary); }

/* CTA phone button */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s;
}
.nav-phone:hover { transform: scale(1.04); }
#p24-navbar.scrolled .nav-phone {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,102,255,0.25);
}

/* Desktop nav group */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Mobile toggle */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  z-index: 110;
  padding: 0.4rem;
  transition: color 0.3s;
}
#p24-navbar.scrolled .nav-mobile-toggle { color: var(--slate-900); }

/* Mobile menu */
#p24-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--slate-950);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
#p24-mobile-menu.open { transform: translateX(0); }

.mobile-menu-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  background: none; border: none;
  color: var(--white); cursor: pointer; padding: 0.4rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.mobile-nav-links a {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-nav-links a:hover { color: var(--primary); }

.mobile-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 20px 40px rgba(0,102,255,0.35);
  transition: transform 0.2s;
}
.mobile-phone-btn:hover { transform: scale(1.04); }

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

#p24-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
  background: var(--slate-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
}
.hero-bg-overlay-1 {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--slate-950) 0%, rgba(15,23,42,0.88) 55%, rgba(15,23,42,0.35) 100%);
  z-index: 1;
}
.hero-bg-overlay-2 {
  position: absolute; inset: 0;
  background: rgba(2,6,23,0.4);
  mix-blend-mode: multiply;
  z-index: 2;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 780px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-red {
  background: rgba(239,68,68,0.15);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.3);
}
.badge-blue {
  background: rgba(0,102,255,0.15);
  color: #93c5fd;
  border: 1px solid rgba(0,102,255,0.3);
}

.hero-headline {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-headline .gradient-text {
  background: linear-gradient(135deg, var(--primary), #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--slate-300);
  max-width: 640px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary-lg {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.125rem 2.25rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.125rem;
  overflow: hidden;
  box-shadow: var(--shadow-primary);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary-lg:hover { transform: scale(1.04); box-shadow: 0 24px 48px -10px rgba(0,102,255,0.45); }
.btn-primary-lg:active { transform: scale(0.97); }
.btn-primary-lg .shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
}
.btn-primary-lg:hover .shimmer { animation: shimmer 1.5s infinite; }

.btn-ghost-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.125rem 2.25rem;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.125rem;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost-lg:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.avatars {
  display: flex;
}
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--slate-950);
  background: var(--slate-800);
  color: var(--slate-400);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex; align-items: center; justify-content: center;
  margin-left: -12px;
}
.avatars .avatar:first-child { margin-left: 0; }
.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
}
.stars svg { width: 16px; height: 16px; fill: #facc15; }
.review-text { font-size: 0.875rem; color: var(--slate-400); }
.review-text strong { color: var(--white); }

/* ================================================================
   SERVICES SECTION
   ================================================================ */

#p24-services {
  padding: 6rem 0;
  background: var(--slate-50);
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.875rem;
}
.section-label .line {
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--primary);
}
.section-label-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.875rem;
}
.section-label-left .line {
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--primary);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: var(--slate-900);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.section-desc {
  font-size: 1.0625rem;
  color: var(--slate-600);
  font-weight: 500;
  line-height: 1.7;
  max-width: 640px;
}

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

.section-header { margin-bottom: 4rem; }

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

.service-card {
  background: var(--white);
  padding: 2.25rem;
  border-radius: 1.25rem;
  border: 1px solid var(--slate-100);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}
.service-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(0,102,255,0.2);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px; height: 56px;
  background: #eff6ff;
  color: var(--primary);
  border-radius: 0.875rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}
.service-icon svg { width: 28px; height: 28px; }

.service-card h4 {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.625rem;
}
.service-card p {
  color: var(--slate-600);
  line-height: 1.7;
}

.services-footer {
  margin-top: 4rem;
  text-align: center;
}
.services-footer p {
  color: var(--slate-500);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--primary);
  transition: color 0.2s, gap 0.2s;
}
.text-link:hover { color: var(--primary-dark); gap: 0.75rem; }
.text-link svg { width: 20px; height: 20px; }

/* ================================================================
   WHY CHOOSE US
   ================================================================ */

#p24-why {
  padding: 6rem 0;
  background: var(--white);
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-left h3.section-title { margin-bottom: 1.5rem; }
.why-desc {
  font-size: 1.0625rem;
  color: var(--slate-600);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.reason-item {
  display: flex;
  gap: 1rem;
}
.reason-icon {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--primary);
}
.reason-icon svg { width: 24px; height: 24px; }
.reason-item h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.3rem;
}
.reason-item p { color: var(--slate-600); line-height: 1.65; }

/* Guarantee card */
.why-right {
  position: relative;
  padding: 0.75rem;
}
.why-bg-1 {
  position: absolute;
  inset: 0;
  background: #eff6ff;
  border-radius: 3rem;
  transform: rotate(3deg) scale(1.05);
  z-index: 0;
}
.why-bg-2 {
  position: absolute;
  inset: 0;
  background: var(--slate-900);
  border-radius: 3rem;
  transform: rotate(-2deg) scale(1.05);
  z-index: 0;
}
.guarantee-card {
  position: relative;
  z-index: 1;
  background: var(--primary);
  padding: 3rem;
  border-radius: 3rem;
  box-shadow: 0 32px 64px rgba(0,102,255,0.3);
  color: var(--white);
  text-align: center;
}
.guarantee-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.18);
  border-radius: 1.25rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}
.guarantee-icon-wrap svg { width: 40px; height: 40px; }
.guarantee-card h3 {
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.guarantee-card p {
  color: rgba(219,234,254,0.9);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.guarantee-phone-box {
  background: rgba(15,23,42,0.45);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.25rem;
  padding: 1.5rem;
}
.guarantee-phone-box .label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(147,197,253,0.9);
  margin-bottom: 0.375rem;
}
.guarantee-phone-box a {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  transition: color 0.2s;
  display: block;
}
.guarantee-phone-box a:hover { color: #bfdbfe; }

/* ================================================================
   STATS BANNER
   ================================================================ */

#p24-stats {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  background: var(--slate-950);
}

.stats-bg {
  position: absolute; inset: 0; z-index: 0;
}
.stats-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: grayscale(100%);
}
.stats-bg-overlay-1 {
  position: absolute; inset: 0;
  background: rgba(30,41,59,0.8);
  mix-blend-mode: multiply;
  z-index: 1;
}
.stats-bg-overlay-2 {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--slate-950), transparent, var(--slate-950));
  z-index: 2;
}

.stats-content {
  position: relative; z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.stats-headline {
  font-size: clamp(1.75rem, 4.5vw, 3.75rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 2rem;
}
.stats-sub {
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: #bfdbfe;
  font-weight: 500;
  margin-bottom: 3rem;
  line-height: 1.6;
}
.stats-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.btn-white-lg {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.75rem;
  background: var(--white);
  color: var(--slate-950);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.125rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(255,255,255,0.08);
  transition: transform 0.2s;
}
.btn-white-lg::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--slate-100);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 0;
}
.btn-white-lg:hover::before { transform: translateX(0); }
.btn-white-lg:hover { transform: scale(1.04); }
.btn-white-lg > * { position: relative; z-index: 1; }
.btn-white-lg svg { color: var(--primary); }

.response-badge {
  color: var(--white);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ================================================================
   COVERAGE
   ================================================================ */

#p24-coverage {
  padding: 6rem 0;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.area-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.625rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-full);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--slate-800);
  transition: border-color 0.3s, box-shadow 0.3s, color 0.3s;
}
.area-badge:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(0,102,255,0.12);
  color: var(--primary);
}
.area-badge svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

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

#p24-footer {
  background: var(--slate-950);
  color: var(--slate-400);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.footer-logo-icon {
  width: 40px; height: 40px;
  border-radius: 0.5rem;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-logo-text {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}
.footer-logo-text .accent { color: var(--primary); }

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 340px;
  margin-bottom: 2rem;
  color: var(--slate-400);
}

.footer-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 0.875rem;
  font-weight: 700;
  font-size: 1.0625rem;
  box-shadow: 0 8px 24px rgba(0,102,255,0.28);
  transition: background 0.2s, transform 0.2s;
}
.footer-phone-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }
.footer-phone-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.footer-col-title {
  color: var(--white);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.footer-links a {
  font-weight: 500;
  color: var(--slate-400);
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer-contact-item svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-weight: 500; font-size: 0.9375rem; line-height: 1.55; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer-legal-links a { color: var(--slate-400); transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--white); }

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

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-right { max-width: 520px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .nav-mobile-toggle { display: flex; }

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

  .hero-ctas { flex-direction: column; }
  .btn-primary-lg, .btn-ghost-lg { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: auto; }

  .stats-ctas { flex-direction: column; }
  .btn-white-lg { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.25rem; }
  .guarantee-card { padding: 2rem 1.5rem; }
}
