/* ═══════════════════════════════════════════════════════════════════════════
   FIXPRO — STYLESHEET v2
   Brand palette: Navy #0A1128  |  Gold #C9A052  |  White #FFFFFF
   Font: Inter (Google Fonts)
   Mobile-first responsive
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── CSS Variables (edit these to restyle everything) ────────────────────── */
:root {
  /* Colors */
  --navy-950: #060c1a;
  --navy-900: #0A1128;
  --navy-800: #111829;
  --navy-700: #1a2540;
  --navy-600: #243058;
  --navy-500: #2e3d6e;

  --gold-400: #e8c87a;
  --gold-500: #C9A052;
  --gold-600: #a07c3a;
  --gold-gradient: linear-gradient(135deg, #e8c87a 0%, #C9A052 50%, #a07c3a 100%);

  --white:     #ffffff;
  --off-white: #f4f0e8;
  --light-bg:  #f0f2f7;
  --gray-50:   #f8fafc;
  --gray-100:  #f1f5f9;
  --gray-300:  #cbd5e1;
  --gray-400:  #94a3b8;
  --gray-500:  #64748b;
  --gray-600:  #475569;
  --gray-900:  #0f172a;

  --green-wa:   #25D366;
  --green-dark: #128C7E;
  --success:    #22c55e;
  --error:      #ef4444;

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

  /* Spacing */
  --nav-h:      68px;
  --nav-h-mob:  60px;
  --section-py: clamp(60px, 8vw, 110px);

  /* Radius */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-pill: 100px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,.16);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.28);
  --shadow-gold: 0 4px 24px rgba(201,160,82,.4);
  --shadow-navy: 0 8px 32px rgba(10,17,40,.6);

  /* Transitions */
  --ease:      .25s ease;
  --ease-slow: .5s cubic-bezier(.16,1,.3,1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  overflow-x: hidden;
  overflow-anchor: auto;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  padding-bottom: 64px;   /* room for mobile CTA bar */
}
@media (min-width: 768px) { body { padding-bottom: 0; } }

img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
a:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 4px;
}
ul   { list-style: none; }
button { cursor: pointer; font-family: var(--font); }
button:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}
input, select, textarea { font-family: var(--font); }

/* ─── Container ──────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1280px) { .container { padding: 0 32px; } }

/* ─── Section helpers ────────────────────────────────────────────────────── */
.section-dark  {
  background: var(--navy-900);
  padding: var(--section-py) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}
.section-light {
  background: var(--light-bg);
  padding: var(--section-py) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* ─── Section headers ────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}
.section-label.dark { color: var(--gold-600); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 5.2vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 16px;
}
.section-title.dark { color: var(--navy-900); }

.section-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--gray-400);
  max-width: 560px;
  margin: 0 auto;
}
.section-sub.dark { color: var(--gray-600); }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  min-height: 44px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 600;
  border: none;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 2px;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { box-shadow: 0 6px 32px rgba(201,160,82,.55); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn-outline:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
}

.btn-lg  { padding: 15px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* Loading spinner inside button */
.btn-loader {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(10,17,40,.3);
  border-top-color: var(--navy-900);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.btn.loading .btn-text  { display: none; }
.btn.loading .btn-loader { display: block; }

@keyframes spin { to { transform: rotate(360deg); } }


/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h-mob);
  background: transparent;
  transition: background var(--ease), box-shadow var(--ease), height var(--ease);
}
#navbar.scrolled {
  background: rgba(6,12,26,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
  height: var(--nav-h-mob);
}
@media (min-width: 768px) {
  #navbar { height: var(--nav-h); }
  #navbar.scrolled { height: calc(var(--nav-h) - 8px); }
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (min-width: 1280px) { .nav-inner { padding: 0 32px; } }

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
}
.nav-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}

/* Nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-link {
  padding: 8px 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-radius: var(--r-sm);
  transition: color var(--ease), background var(--ease);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-400);
  background: rgba(201,160,82,.1);
}
.nav-link:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 2px;
}

/* Nav actions */
.nav-actions {
  display: none;
  align-items: center;
  gap: 12px;
  margin-left: 12px;
}
@media (min-width: 900px) { .nav-actions { display: flex; } }

.nav-cta { padding: 10px 20px; font-size: 14px; }

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-pill);
  padding: 3px;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 9px;
  min-height: 32px;
  min-width: 44px;
  border-radius: var(--r-pill);
  transition: background var(--ease), color var(--ease);
  letter-spacing: .04em;
}
.lang-btn:hover  { color: var(--white); background: rgba(255,255,255,.12); }
.lang-btn.active { background: var(--gold-500); color: var(--navy-900); }
.lang-btn:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 1px;
}

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  margin-left: auto;
}
@media (min-width: 900px) { .burger { display: none; } }
.burger:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: var(--nav-h-mob);
  left: 0; right: 0;
  z-index: 850;
  background: var(--navy-950);
  padding: 24px 24px 32px;
  transform: translateY(-110%);
  transition: transform var(--ease-slow);
  border-bottom: 1px solid rgba(201,160,82,.15);
}
.mobile-drawer.open { transform: translateY(0); }
.mobile-drawer ul   { margin-bottom: 20px; }

.drawer-link {
  display: block;
  padding: 13px 0;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--ease);
}
.drawer-link:hover { color: var(--gold-400); }

.drawer-cta {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 20px;
}
.drawer-langs {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 840;
  background: rgba(0,0,0,.5);
}
.drawer-overlay.show { display: block; }


/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 14s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,12,26,.92) 0%,
    rgba(10,17,40,.85) 50%,
    rgba(6,12,26,.75) 100%
  );
}

/* Particles */
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold-500);
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
}
/* Пауза анимации частиц, когда hero вне экрана — не грузим GPU впустую.
   (will-change убран: он держал 6 постоянных compositor-слоёв и грузил рендерер.) */
.hero-particles.is-paused .particle { animation-play-state: paused; }
.p1 { width: 6px;  height: 6px;  top: 20%; left: 15%; animation-delay: 0s;    animation-duration: 9s;  opacity: .25; }
.p2 { width: 4px;  height: 4px;  top: 60%; left: 10%; animation-delay: 1.5s;  animation-duration: 7s;  opacity: .2;  }
.p3 { width: 8px;  height: 8px;  top: 35%; left: 80%; animation-delay: 3s;    animation-duration: 11s; opacity: .15; }
.p4 { width: 3px;  height: 3px;  top: 75%; left: 70%; animation-delay: 0.8s;  animation-duration: 8s;  opacity: .3;  }
.p5 { width: 5px;  height: 5px;  top: 15%; left: 55%; animation-delay: 2.2s;  animation-duration: 10s; opacity: .2;  }
.p6 { width: 10px; height: 10px; top: 80%; left: 35%; animation-delay: 4s;    animation-duration: 13s; opacity: .1;  }

@keyframes particleFloat {
  0%, 100% { transform: translate(0,0) scale(1);    opacity: .2; }
  33%       { transform: translate(12px,-18px) scale(1.2); opacity: .4; }
  66%       { transform: translate(-8px, 10px) scale(.8);  opacity: .15; }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h-mob) + 40px);
  padding-bottom: 80px;
}
@media (min-width: 768px) { .hero-content { padding-top: calc(var(--nav-h) + 60px); } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,160,82,.12);
  border: 1px solid rgba(201,160,82,.25);
  color: var(--gold-400);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: .6; }
}

/* Hero title */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 8.2vw, 92px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.01em;
  margin-bottom: 24px;
  color: var(--white);
}
.hero-title-line {
  display: block;
}
.hero-title-line.gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(15px, 2.2vw, 19px);
  color: rgba(255,255,255,.7);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.6;
}

/* Hero buttons */
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

/* Trust strip */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 24px 0 0;
  flex: 1 1 auto;
  min-width: 110px;
}
.trust-item strong {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
}
.trust-item span:not(strong) {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}
.trust-sep {
  width: 1px;
  background: rgba(255,255,255,.12);
  margin: 0 16px 0 0;
  align-self: stretch;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0);  opacity: 1; }
  80%       { transform: translateY(12px); opacity: 0; }
}


/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 480px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.service-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--ease);
  z-index: 2;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,160,82,.2);
  box-shadow: 0 16px 40px rgba(0,0,0,.4), var(--shadow-gold);
}
.service-card:hover::before { opacity: 1; }

/* Background photo + dark scrim so icon/title/text stay fully readable.
   Every photo is desaturated to the same tone so 6 unrelated stock/job
   photos read as one consistent system instead of a grab-bag of colors —
   the navy overlay supplies all the color; the photo only supplies texture. */
.service-card-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .92;
  transition: transform .6s cubic-bezier(.16,1,.3,1), opacity var(--ease);
  z-index: 0;
}
.service-card:hover .service-card-bg { transform: scale(1.06); opacity: 1; }
.service-card-overlay {
  position: absolute;
  inset: 0;
  /* light at the very top (photo shows through clearly), ramping dark
     over the title/description/link zone so white text stays legible */
  background: linear-gradient(180deg,
    rgba(10,17,40,.12) 0%,
    rgba(10,17,40,.25) 22%,
    rgba(10,17,40,.55) 40%,
    rgba(10,17,40,.74) 60%,
    rgba(10,17,40,.82) 100%);
  z-index: 1;
}

/* Emergency card has no photo (its only source image was a stock clip-art
   logo that clashed with the real heading) — a bespoke warm-accent gradient
   keeps it visually part of the same family instead of looking unfinished. */
.service-card--urgent {
  background: linear-gradient(165deg, rgba(139,32,32,.30) 0%, var(--navy-800) 65%);
}
/* Oversized "24/7" glyph bleeding off the corner — a graphic accent rather
   than a photo, since the only source asset for this card was a stock
   clip-art logo whose own text clashed with the real heading. */
.service-card-watermark {
  position: absolute;
  right: -34px;
  bottom: -18px;
  width: 78%;
  height: auto;
  opacity: .15;
  z-index: 0;
  pointer-events: none;
  transition: opacity var(--ease), transform .6s cubic-bezier(.16,1,.3,1);
}
.service-card:hover .service-card-watermark { opacity: .22; transform: scale(1.04); }

.service-icon {
  position: relative;
  z-index: 2;
  width: 52px; height: 52px;
  background: rgba(10,17,40,.55);
  border: 1px solid rgba(201,160,82,.3);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
}
.service-icon svg { width: 28px; height: 28px; color: var(--gold-500); }
.service-card:hover .service-icon { background: rgba(10,17,40,.7); }

.service-name {
  position: relative;
  z-index: 2;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0,0,0,.9), 0 2px 10px rgba(0,0,0,.75);
}

.service-desc {
  position: relative;
  z-index: 2;
  font-size: 14px;
  color: var(--gray-100);
  line-height: 1.6;
  flex: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,.95), 0 1px 8px rgba(0,0,0,.7);
}

.service-link {
  position: relative;
  z-index: 2;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-400);
  margin-top: auto;
  transition: color var(--ease), letter-spacing var(--ease);
  display: inline-block;
  text-shadow: 0 1px 4px rgba(0,0,0,.85);
}
.service-link:hover { color: var(--white); letter-spacing: .03em; }


/* ═══════════════════════════════════════════════
   BEFORE / AFTER SLIDER
═══════════════════════════════════════════════ */
.ba-wrap {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.ba-tag {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 72px; }
}

/* Photo column */
.about-photo-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.about-photo-wrap img {
  width: 100%;
  border-radius: var(--r-lg);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  filter: grayscale(10%);
  transition: filter var(--ease);
}
.about-photo-wrap:hover img { filter: grayscale(0%); }

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -8px;
  background: var(--gold-gradient);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-gold);
}
.badge-icon { font-size: 18px; }

/* Content column */
.about-content .section-label { display: block; margin-bottom: 8px; }
.about-content .section-title { margin-bottom: 20px; }

.about-text {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.lang-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--light-bg);
  border: 1px solid var(--gray-300);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0 28px;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
}
.feat-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════
   STATS / WHY US
═══════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
@media (min-width: 600px)  { .stats-grid { grid-template-columns: repeat(3, 1fr); } }

.stat-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--ease), border-color var(--ease);
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,160,82,.2);
}

.stat-number {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-item {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color var(--ease);
}
.feature-item:hover { border-color: rgba(201,160,82,.15); }

.feat-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-500);
  letter-spacing: .1em;
  margin-bottom: 12px;
}

.feature-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 5fr 7fr; gap: 60px; } }

/* Contact info cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 80px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--r-md);
  padding: 16px 18px;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  text-decoration: none;
}
.contact-card:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-gold);
  transform: translateX(4px);
}
.contact-card:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
}
.contact-card.contact-wa {
  border-color: var(--green-wa);
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}
.contact-card.contact-wa:hover {
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}

.contact-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gray-600);
}
.contact-wa .contact-card-icon { background: var(--green-wa); color: var(--white); }

.contact-card-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-400);
  margin-bottom: 2px;
}
.contact-card-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
}

.contact-arrow {
  margin-left: auto;
  color: var(--gray-400);
  flex-shrink: 0;
}
.contact-card:hover .contact-arrow { color: var(--gold-600); }

.service-area-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-500);
  padding: 10px 16px;
  border-radius: var(--r-md);
  background: var(--gray-50);
  border: 1px dashed var(--gray-300);
}
.service-area-tag svg { flex-shrink: 0; color: var(--gold-600); }

/* Emergency */
.emergency-block {
  margin-top: 12px;
}
.btn-emergency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  background: #dc2626;
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--ease), transform var(--ease);
  animation: emergencyPulse 2s ease-in-out infinite;
}
.btn-emergency:hover {
  background: #b91c1c;
  transform: translateY(-1px);
  animation: none;
}
.btn-emergency:focus-visible {
  outline: 3px solid #fca5a5;
  outline-offset: 2px;
  animation: none;
}
@keyframes emergencyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,.4); }
  50%       { box-shadow: 0 0 0 8px rgba(220,38,38,0); }
}
.emergency-notice {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 14px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--r-md);
  color: #166534;
  font-size: 14px;
  font-weight: 500;
}
.emergency-notice:not([hidden]) {
  display: flex;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

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

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: .02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  min-height: 44px;
  font-size: 15px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--r-md);
  background: var(--gray-50);
  color: var(--gray-900);
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,160,82,.15);
}
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: -2px;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; cursor: pointer; }

.form-error {
  font-size: 12px;
  color: var(--error);
  min-height: 16px;
}
.form-group.has-error input,
.form-group.has-error select {
  border-color: var(--error);
}

.form-success, .form-fail {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
}
.form-success:not([hidden]), .form-fail:not([hidden]) {
  display: flex;
}
.form-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}
.form-fail {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}


/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
#footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,.07);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 40px;
}
@media (min-width: 640px)  { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 2fr; gap: 60px; } }

/* Brand */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
}
.footer-logo span {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}
.footer-tagline {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 20px;
  max-width: 260px;
  line-height: 1.6;
}

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: background var(--ease), color var(--ease);
}
.footer-socials a:hover { background: var(--gold-500); color: var(--navy-900); }

/* Footer links columns */
.footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-500);
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 14px;
  color: var(--gray-400);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--white); }

/* Footer contact column */
.footer-contact-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-500);
  margin-bottom: 16px;
}
.footer-contact-link {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 8px;
  transition: color var(--ease);
}
.footer-contact-link:hover { color: var(--white); }
.footer-hours {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.footer-wa-btn { font-size: 14px; padding: 10px 20px; }

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--gray-500);
}


/* ═══════════════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 850;
  width: 56px; height: 56px;
  min-width: 56px; min-height: 56px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--ease), box-shadow var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}
.whatsapp-float:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}
@media (min-width: 768px) { .whatsapp-float { bottom: 28px; right: 28px; } }

.wa-pulse {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--green-wa);
  opacity: .6;
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .5; }
  80%  { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}


/* ═══════════════════════════════════════════════
   MOBILE STICKY CTA BAR
═══════════════════════════════════════════════ */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  display: flex;
  background: var(--navy-950);
  border-top: 1px solid rgba(201,160,82,.2);
  box-shadow: 0 -4px 20px rgba(0,0,0,.4);
}
@media (min-width: 768px) { .mobile-cta-bar { display: none; } }

.mobile-cta-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 0;
  min-height: 64px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: background var(--ease);
  border-right: 1px solid rgba(255,255,255,.06);
}
.mobile-cta-btn:last-child { border-right: none; }
.mobile-cta-btn svg { flex-shrink: 0; }
.mobile-cta-btn:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: -2px;
}

.mobile-call  { color: var(--white); }
.mobile-call:hover { background: rgba(255,255,255,.05); }

.mobile-wa    { background: var(--green-wa); color: var(--white); }
.mobile-wa:hover { background: #22c45e; }

.mobile-quote { color: var(--gold-400); }
.mobile-quote:hover { background: rgba(201,160,82,.08); }


/* ═══════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox[hidden] { display: none; }

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(6px);
}
.lightbox-overlay.hidden { display: none; }

.lightbox-img-wrap {
  position: relative;
  z-index: 1001;
  max-width: min(90vw, 900px);
  max-height: 85vh;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.lightbox-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  animation: lightboxIn .25s ease;
  will-change: transform, opacity;
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(.95); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  z-index: 1001;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  border-radius: 50%;
  width: 44px; height: 44px;
  min-width: 44px; min-height: 44px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
  backdrop-filter: blur(4px);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(201,160,82,.25); color: var(--gold-400); }
.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 2px;
}

.lightbox-close { top: 20px; right: 20px; font-size: 18px; }
.lightbox-prev  { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 16px; top: 50%; transform: translateY(-50%); }

.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  background: rgba(0,0,0,.4);
  padding: 5px 14px;
  border-radius: var(--r-pill);
}


/* ═══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════════════ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Hero elements are always above the fold — show immediately without waiting for observer */
#hero .reveal-up,
#hero .reveal-left,
#hero .reveal-right {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }
.delay-6 { transition-delay: .6s; }


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

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 9999;
  padding: 10px 20px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--navy-900);
  outline-offset: -3px;
}

/* ═══════════════════════════════════════════════
   ACCESSIBILITY — Reduced Motion
═══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-bg-img {
    animation: none !important;
  }

  .particle {
    animation: none !important;
    opacity: 0 !important;
  }

  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ─── Reviews ─────────────────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: var(--navy-700);
  border: 1px solid rgba(201,160,82,.2);
  border-radius: var(--r-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.review-stars { color: var(--gold-500); font-size: 18px; letter-spacing: 2px; }
.review-text  { color: var(--gray-300); font-size: 15px; line-height: 1.7; font-style: italic; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: var(--navy-900);
  flex-shrink: 0;
}
.review-name    { display: block; color: var(--white); font-weight: 600; font-size: 15px; }
.review-location{ color: var(--gray-400); font-size: 13px; }
.reviews-cta    { text-align: center; margin-top: 40px; }
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  border: 2px solid rgba(201,160,82,.5);
  border-radius: var(--r-pill);
  color: var(--gold-400);
  font-weight: 600;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}
.btn-outline-light:hover { border-color: var(--gold-500); color: var(--white); background: rgba(201,160,82,.1); }

/* ─── Trust Section ───────────────────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.trust-block {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.trust-block:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trust-block-icon { font-size: 36px; margin-bottom: 14px; }
.trust-block h3   { font-size: 17px; font-weight: 700; color: var(--navy-900); margin-bottom: 10px; }
.trust-block p    { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

/* Map visual */
.trust-map { grid-column: span 1; }
.service-map-visual {
  position: relative;
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, #e8f0fe 0%, #d1ddf7 100%);
  border-radius: var(--r-sm);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.map-center-dot {
  width: 16px; height: 16px;
  background: var(--gold-500);
  border-radius: 50%;
  position: absolute;
  z-index: 3;
  box-shadow: 0 0 0 4px rgba(201,160,82,.3);
}
.map-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(201,160,82,.3);
}
.map-ring-1 { width: 80px;  height: 80px; }
.map-ring-2 { width: 150px; height: 150px; border-color: rgba(201,160,82,.15); }
.map-cities {
  position: absolute;
  bottom: 8px; left: 8px;
  display: flex; flex-wrap: wrap; gap: 4px;
  z-index: 2;
}
.map-cities li {
  background: rgba(10,17,40,.7);
  color: var(--white);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════
   PLUMBING REFOCUS — hero gradient, subscription, about-noimg
═══════════════════════════════════════════════ */

/* Hero background gradient (photo removed) */
.hero-bg--gradient {
  background:
    radial-gradient(120% 90% at 18% 12%, #16384f 0%, transparent 55%),
    radial-gradient(110% 90% at 88% 18%, #1c2a4d 0%, transparent 50%),
    linear-gradient(160deg, #0A1128 0%, #060c1a 100%);
}

/* About section without photo — single centered column */
.about-grid--noimg {
  grid-template-columns: 1fr;
  max-width: 880px;
  margin-inline: auto;
}

/* Subscription / FixPro Care */
.sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.sub-card {
  background: #fff;
  border: 1px solid rgba(10,17,40,.08);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.sub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sub-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(201,160,82,.12);
  color: var(--gold-600);
  margin-bottom: 18px;
}
.sub-card-icon svg { width: 30px; height: 30px; }
.sub-card-title {
  font-size: 19px; font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.sub-card-desc { font-size: 15px; line-height: 1.6; color: #4a5568; }
.sub-cta { text-align: center; margin-top: 44px; }

/* Emergency service card accent */
.service-card--urgent { border-color: rgba(201,160,82,.45); }

/* ─── Work / Portfolio ─────────────────────────────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.work-card {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,160,82,.20);
  aspect-ratio: 4 / 5;
  background: var(--navy-800);
}
.work-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .55s cubic-bezier(.16,1,.3,1);
}
.work-card:hover img { transform: scale(1.06); }
.work-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 34px 16px 14px;
  font-size: 14px; font-weight: 500; color: #fff; line-height: 1.35;
  background: linear-gradient(0deg, rgba(10,17,40,.94) 0%, rgba(10,17,40,.55) 55%, rgba(10,17,40,0) 100%);
}
.work-cta { text-align: center; margin-top: 34px; }
@media (max-width: 540px) {
  .work-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .work-card figcaption { font-size: 12px; padding: 26px 10px 10px; }
}
