/* ============================================
   City Heating Solutions - Specialist Heating
   Premium, system-focused, North London
   ============================================ */

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

:root {
  /* Ink - calm, reliable, premium */
  --ink-900: #0b1221;
  --ink-800: #111a2c;
  --ink-700: #1a2436;
  --ink-600: #273249;
  --ink-500: #3a4560;

  /* Warm metallic accent - copper, not shouty */
  --accent: #c46a22;
  --accent-hover: #a85917;
  --accent-soft: #e89868;
  --accent-bg: rgba(196, 106, 34, 0.08);
  --accent-line: rgba(196, 106, 34, 0.22);

  /* Support */
  --ok: #1e7a46;
  --warn: #b4711f;

  /* Neutrals - warm cream system */
  --bg: #ffffff;
  --surface: #f8f5f0;
  --surface-2: #efeadf;
  --surface-3: #e6ddce;
  --border: #e9e3d6;
  --border-soft: #f1ece2;
  --line: #1a1f2b0f;

  /* Text */
  --text: #141a26;
  --text-mid: #404a63;
  --text-soft: #6c7488;
  --text-muted: #9098a8;

  /* Type */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Scale (8px system) */
  --pad-y: 5rem;
  --pad-x: 1.25rem;
  --max: 1200px;

  --r-sm: 8px;
  --r: 12px;
  --r-lg: 18px;
  --r-xl: 24px;

  --shadow-xs: 0 1px 2px rgba(11, 18, 33, 0.04);
  --shadow-sm: 0 2px 8px rgba(11, 18, 33, 0.05);
  --shadow: 0 6px 24px rgba(11, 18, 33, 0.06), 0 1px 2px rgba(11, 18, 33, 0.04);
  --shadow-lg: 0 18px 48px rgba(11, 18, 33, 0.09);

  --dur: 0.2s;
  --dur-slow: 0.35s;
}

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

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--dur); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}

/* --- Utility --- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
}

.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;
}

.eyebrow,
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.9rem, 4.2vw, 2.85rem);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  color: var(--ink-900);
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-soft);
  max-width: 560px;
  line-height: 1.75;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font);
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: all var(--dur);
  white-space: nowrap;
  letter-spacing: -0.01em;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 6px rgba(196, 106, 34, 0.28);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196, 106, 34, 0.3);
}

.btn-secondary {
  background: #fff;
  color: var(--ink-900);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--ink-700);
  background: var(--surface);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
}

.btn-dark {
  background: var(--ink-900);
  color: #fff;
}
.btn-dark:hover {
  background: var(--ink-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--ink-700);
}

.btn-sm { padding: 0.625rem 1.1rem; font-size: 0.85rem; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; font-weight: 700; }
.btn-xl { padding: 1.2rem 2.4rem; font-size: 1.1rem; font-weight: 700; }

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

/* --- Urgency Bar --- */
.urgency-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 110;
  background: var(--ink-900);
  color: #fff;
  text-align: center;
  padding: 0.5rem var(--pad-x);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.urgency-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.urgency-dot {
  width: 7px; height: 7px;
  background: var(--ok);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.urgency-bar a {
  color: var(--accent-soft);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.urgency-bar a:hover { color: #fff; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Hide urgency bar on mobile for a calmer hero journey.
   Keep this AFTER the base .urgency-bar rule so it overrides the default top: 32px. */
@media (max-width: 719.98px) {
  .urgency-bar { display: none; }
  .site-header { top: 0; }
  .mobile-nav { top: 72px; }
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 32px;
  left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid rgba(11, 18, 33, 0.05);
  transition: box-shadow var(--dur-slow), top 0.25s ease;
}
.site-header.scrolled {
  box-shadow: 0 1px 12px rgba(11, 18, 33, 0.06);
}
.site-header.nav-open {
  background: #fff;
  backdrop-filter: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow:
    0 4px 12px rgba(196, 106, 34, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.logo-icon svg {
  width: 19px;
  height: 19px;
  display: block;
}

.nav-links {
  display: none;
  gap: 2.25rem;
  align-items: center;
}

.nav-links > a,
.nav-dropdown-trigger {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  padding: 0.35rem 0;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.nav-links > a:hover,
.nav-links > a.active,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active {
  color: var(--ink-900);
}

.nav-links > a.active::after,
.nav-dropdown-trigger.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.chevron {
  font-size: 0.65rem;
  color: var(--text-soft);
  transition: transform var(--dur);
}

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

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  min-width: 270px;
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--dur);
  z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .chevron { transform: rotate(180deg); }

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-800);
  border-radius: var(--r-sm);
  transition: all var(--dur);
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: var(--surface);
  color: var(--ink-900);
}

.nav-dropdown-all {
  color: var(--accent) !important;
  font-size: 0.75rem !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700 !important;
  border-bottom: 1px solid var(--border-soft);
  border-radius: 0 !important;
  margin-bottom: 0.3rem !important;
  padding-bottom: 0.85rem !important;
}
.nav-dropdown-all:hover { background: transparent !important; }

.header-cta { display: none; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  width: 22px; height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: all var(--dur);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 104px;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 99;
  padding: 0;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 8px 30px rgba(11, 18, 33, 0.12);
  transition: top 0.25s ease;
}
.mobile-nav.open { display: flex; }

.mobile-nav a {
  display: block;
  padding: 1.15rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-900);
  border-bottom: 1px solid var(--border-soft);
  transition: background var(--dur);
}
.mobile-nav a:active { background: var(--surface); }

.mobile-nav-group {
  display: flex;
  flex-direction: column;
  background: var(--surface);
}
.mobile-nav-label {
  display: block;
  padding: 0.9rem 1.5rem 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.mobile-nav-group a {
  padding: 0.9rem 1.5rem 0.9rem 2.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  background: transparent;
}

.mobile-nav .btn {
  margin: 1.5rem;
  text-align: center;
  border-bottom: none;
  padding: 1rem 1.5rem;
  color: #fff;
}

/* --- Hero (split, calm, premium) --- */
.hero {
  position: relative;
  padding: 9rem var(--pad-x) 4.5rem;
  background: var(--ink-900);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 35%, rgba(196, 106, 34, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(232, 152, 104, 0.08), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
}

.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--ok);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(30, 122, 70, 0.2);
}

.hero h1 {
  font-size: clamp(2.3rem, 5.5vw, 3.6rem);
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.035em;
  line-height: 1.07;
  font-weight: 800;
}

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

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 520px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.hero-meta a {
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.hero-meta a:hover { color: var(--accent-soft); }

.live-dot {
  width: 8px; height: 8px;
  background: var(--ok);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 4px rgba(30, 122, 70, 0.18);
  display: inline-block;
}

/* Hero visual */
.hero-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}

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

.hero-visual-badge {
  position: absolute;
  left: 1rem; bottom: 1rem; right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(11, 18, 33, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  color: #fff;
}

.avail-dot {
  width: 9px; height: 9px;
  background: var(--ok);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 4px rgba(30, 122, 70, 0.2);
  flex-shrink: 0;
}

.hero-visual-badge strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hero-visual-badge span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1px;
}

/* --- Trust Strip --- */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border-soft);
  padding: 1.1rem var(--pad-x);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  white-space: nowrap;
  letter-spacing: -0.005em;
}

.trust-item .icon {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 700;
}

/* --- Metrics Strip --- */
.metrics-section {
  padding: 3.5rem var(--pad-x);
  background: var(--bg);
  border-bottom: 1px solid var(--border-soft);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.metric-value {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
  margin-bottom: 0.45rem;
}

.metric-value .unit {
  color: var(--accent);
}

.metric-label {
  font-size: 0.82rem;
  color: var(--text-soft);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.metrics-banner {
  max-width: 960px;
  margin: 2.25rem auto 0;
  padding: 0.85rem 1.25rem;
  background: var(--surface);
  border-radius: var(--r);
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  flex-wrap: wrap;
  text-align: center;
}

.metrics-banner .live-dot {
  box-shadow: 0 0 0 4px rgba(30, 122, 70, 0.12);
}

/* --- Services Section --- */
.services-section {
  padding: var(--pad-y) var(--pad-x);
  background: var(--bg);
}

.services-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.6rem;
  transition: all var(--dur-slow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow);
}
.service-card:hover::before { transform: scaleX(1); }

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

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
}

.service-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.55rem;
  font-weight: 700;
  color: var(--ink-900);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.service-card-link {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--dur);
}
.service-card-link:hover { gap: 0.6rem; color: var(--accent-hover); }

/* --- Process --- */
.process-section {
  padding: var(--pad-y) var(--pad-x);
  background: var(--surface);
}

.process-steps {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}

.process-step {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2.5rem 1.75rem;
  border-radius: var(--r-xl);
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ink-900);
  color: var(--accent-soft);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.4rem;
}

.process-step h3 {
  font-size: 1.08rem;
  margin-bottom: 0.55rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 290px;
  margin: 0 auto;
}

/* --- Enquiry Flow --- */
.enquiry-flow-section {
  padding: var(--pad-y) var(--pad-x);
  background: var(--bg);
}

.enquiry-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 3rem auto 0;
  max-width: 900px;
}

.flow-step {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.1rem 1rem;
  border-radius: var(--r);
  text-align: center;
  min-width: 120px;
  flex: 1 1 120px;
}

.flow-step--final {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: #fff;
}
.flow-step--final .flow-label { color: #fff; }

.flow-icon {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  display: block;
  line-height: 1;
}

.flow-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
}

.flow-arrow {
  align-self: center;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1;
}

.flow-example {
  margin: 2.5rem auto 0;
  max-width: 620px;
  padding: 1.5rem 1.75rem;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: var(--r);
}

.flow-example blockquote {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.flow-example-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-right: 0.6rem;
  background: var(--accent-bg);
  padding: 0.18rem 0.55rem;
  border-radius: 4px;
}

/* --- Recent Jobs --- */
.jobs-section {
  padding: var(--pad-y) var(--pad-x);
  background: var(--bg);
}

.jobs-header {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
  max-width: var(--max);
}

.jobs-list {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

.job-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  transition: all var(--dur-slow);
}
.job-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent-line);
}

.job-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.job-location {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-time {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-soft);
}

.live-pulse {
  width: 8px; height: 8px;
  background: var(--ok);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 3px rgba(30, 122, 70, 0.18);
  display: inline-block;
}

.job-problem {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.job-body { font-size: 0.9rem; color: var(--text-soft); line-height: 1.65; }
.job-body dt {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.6rem;
}
.job-body dt:first-of-type { margin-top: 0; }
.job-body dd { margin-top: 0.25rem; }
.job-body strong { color: var(--ink-900); font-weight: 600; }

/* --- Trust Section --- */
.trust-section {
  padding: var(--pad-y) var(--pad-x);
  background: var(--surface);
}

.trust-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.trust-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.85rem 1.5rem;
  text-align: left;
  transition: all var(--dur-slow);
}
.trust-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent-line);
}

.trust-card-icon {
  width: 44px; height: 44px;
  background: var(--accent-bg);
  color: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.95rem;
}

.trust-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.trust-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* --- Clients --- */
.clients-section {
  padding: var(--pad-y) var(--pad-x);
  background: var(--bg);
}

.clients-header { margin-bottom: 2.5rem; }

.clients-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.client-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  transition: all var(--dur-slow);
}
.client-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent-line);
}

.client-icon {
  width: 44px; height: 44px;
  background: var(--accent-bg);
  color: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.client-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.client-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.clients-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 500;
}

/* --- Call Banner --- */
.call-banner {
  padding: var(--pad-y) var(--pad-x);
  background: var(--ink-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.call-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(196, 106, 34, 0.2), transparent 60%);
  pointer-events: none;
}

.call-banner-inner {
  position: relative;
  text-align: center;
  max-width: 680px;
}

.call-banner-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1rem;
}

.call-banner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.8vw, 2.4rem);
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

.call-banner-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  padding: 0.9rem 1.75rem;
  background: linear-gradient(135deg, var(--accent) 0%, #a85917 100%);
  border-radius: var(--r);
  box-shadow: 0 10px 30px rgba(196, 106, 34, 0.35);
  transition: all var(--dur);
}
.call-banner-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(196, 106, 34, 0.45);
  color: #fff;
}

.phone-icon { font-size: 0.9em; }

.call-banner-sub {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
}

.call-banner-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.75rem;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.call-banner-meta li { display: flex; align-items: center; gap: 0.4rem; }
.call-banner-meta li::before {
  content: '✓';
  color: var(--accent-soft);
  font-weight: 700;
}

/* --- Service Area --- */
.area-section {
  padding: var(--pad-y) var(--pad-x);
  background: var(--bg);
}

.area-content { margin-top: 2.5rem; }

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem 1.5rem;
  margin-top: 1.5rem;
}

.area-list li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 0.55rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid var(--border-soft);
}
.area-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.area-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border-radius: var(--r-lg);
  font-size: 0.9rem;
  color: var(--text-mid);
  border-left: 3px solid var(--accent);
  line-height: 1.7;
}
.area-note a { color: var(--accent); font-weight: 600; }
.area-note a:hover { color: var(--accent-hover); }

/* --- Contact Section --- */
.contact-section {
  padding: var(--pad-y) var(--pad-x);
  background: var(--surface);
}

.contact-wrapper {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.contact-form {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-row { margin-bottom: 1.25rem; }

.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
  letter-spacing: 0.005em;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--dur), box-shadow var(--dur);
  -webkit-appearance: none;
  appearance: none;
}

.form-row input::placeholder,
.form-row textarea::placeholder { color: #b0aea8; }

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-bg);
}

.form-row textarea { resize: vertical; min-height: 110px; }

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

.form-promise {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
}

.inline-phone {
  color: var(--accent);
  font-weight: 700;
  border-bottom: 1px dashed var(--accent-line);
}
.inline-phone:hover { color: var(--accent-hover); }

.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  width: 42px; height: 42px;
  background: var(--ink-900);
  color: var(--accent-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.info-block h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.info-block p,
.info-block a {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.info-block a {
  color: var(--ink-900);
  font-weight: 600;
}
.info-block a:hover { color: var(--accent); }

.emergency-banner {
  background: var(--ink-900);
  color: #fff;
  padding: 2rem 1.5rem;
  border-radius: var(--r-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.emergency-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(196, 106, 34, 0.2), transparent 70%);
}
.emergency-banner > * { position: relative; }

.emergency-banner h4 {
  color: var(--accent-soft);
  font-size: 1rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.emergency-banner p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.emergency-banner a {
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.emergency-banner a:hover { color: var(--accent-soft); }

/* --- Footer --- */
.site-footer {
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.55);
  padding: 4rem var(--pad-x) 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  padding: 0.7rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-sm);
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.95rem;
}
.footer-phone:hover { background: rgba(255, 255, 255, 0.08); }

.footer-microcopy {
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-top: 0.5rem !important;
  max-width: none !important;
}

.footer-col h4 {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  padding: 0.35rem 0;
  color: rgba(255, 255, 255, 0.5);
}
.footer-col a:hover { color: var(--accent-soft); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  max-width: var(--max);
  margin: 2rem auto 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* --- Mobile Sticky CTA --- */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink-900);
  padding: 0;
  z-index: 90;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
}

.mobile-sticky-cta--split {
  display: flex;
  padding: 0.5rem;
  gap: 0.5rem;
}

.mobile-sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem var(--pad-x);
  letter-spacing: -0.01em;
  border-radius: var(--r-sm);
  flex: 1;
}

.mobile-sticky-cta--split .mobile-cta-primary { background: var(--accent); }
.mobile-sticky-cta--split .mobile-cta-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-sticky-cta:not(.mobile-sticky-cta--split) a {
  width: 100%;
  background: transparent;
  padding: 0.95rem var(--pad-x);
  border-radius: 0;
}

.mobile-sticky-cta .icon { font-size: 1.05rem; }

body { padding-bottom: 68px; }

/* ============================================
   Services Overview Page
   ============================================ */
.page-hero {
  padding: 9rem var(--pad-x) 3.75rem;
  background: var(--ink-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 85% 40%, rgba(196, 106, 34, 0.15), transparent 60%);
}
.page-hero > * { position: relative; }

.page-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.6vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}

.breadcrumbs {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.breadcrumbs a { color: rgba(255, 255, 255, 0.75); font-weight: 500; }
.breadcrumbs a:hover { color: var(--accent-soft); }
.breadcrumbs span[aria-hidden] { color: rgba(255, 255, 255, 0.3); }

.services-detail {
  padding: var(--pad-y) var(--pad-x);
  background: var(--bg);
}

.services-detail-grid {
  display: grid;
  gap: 1.25rem;
}

.service-detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.25rem 1.75rem;
  transition: all var(--dur-slow);
  display: flex;
  flex-direction: column;
}
.service-detail-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent-line);
}

.service-detail-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-detail-icon {
  width: 52px; height: 52px;
  background: var(--accent-bg);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-detail-card h2 {
  font-size: 1.3rem;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}

.service-detail-card p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.service-detail-card ul {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}

.service-detail-card ul li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding-left: 1.35rem;
  position: relative;
  line-height: 1.55;
}

.service-detail-card ul li::before {
  content: '→';
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-weight: 700;
}

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

/* ============================================
   Individual Service Page
   ============================================ */
.service-hero {
  padding: 9rem var(--pad-x) 3.5rem;
  background: var(--ink-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 85% 30%, rgba(196, 106, 34, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(232, 152, 104, 0.08), transparent 60%);
}
.service-hero > * { position: relative; }

.service-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.service-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.8vw, 3.1rem);
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.service-hero-lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.service-hero-micro {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.service-body { padding: var(--pad-y) var(--pad-x); background: var(--bg); }

.service-body-grid {
  display: grid;
  gap: 2.5rem;
}

.service-content { min-width: 0; }

.service-block {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-soft);
}
.service-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.service-block-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.service-block h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.service-block p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.service-block p:last-child { margin-bottom: 0; }

.symptom-list {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.symptom-list li {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
  padding: 0.85rem 1.1rem;
  background: var(--surface);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--accent);
}
.symptom-list li strong { color: var(--ink-900); font-weight: 700; }

.step-list {
  counter-reset: step;
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}
.step-list li {
  counter-increment: step;
  padding: 1.25rem 1.5rem 1.25rem 3.75rem;
  background: var(--surface);
  border-radius: var(--r);
  position: relative;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  width: 32px; height: 32px;
  background: var(--ink-900);
  color: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
}
.step-list li strong { color: var(--ink-900); font-weight: 700; }

.pricing-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pricing-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.pricing-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.pricing-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.65;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--accent);
}

/* Sidebar */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
}

.sidebar-card--call {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sidebar-card--call::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 15%, rgba(196, 106, 34, 0.25), transparent 60%);
  pointer-events: none;
}
.sidebar-card--call > * { position: relative; }

.sidebar-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.8rem;
}

.sidebar-phone {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.sidebar-phone:hover { color: var(--accent-soft); }

.sidebar-card--call p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.sidebar-meta {
  display: grid;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.sidebar-meta li { display: flex; align-items: center; gap: 0.5rem; }
.sidebar-meta li::before { content: '✓'; color: var(--accent-soft); font-weight: 700; }

.sidebar-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  color: var(--ink-900);
}

.sidebar-links {
  display: grid;
  gap: 0.5rem;
}
.sidebar-links li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--r-sm);
  transition: all var(--dur);
}
.sidebar-links li a:hover {
  background: var(--surface);
  color: var(--ink-900);
}
.sidebar-links li a span {
  color: var(--accent);
  font-weight: 700;
  transition: transform var(--dur);
}
.sidebar-links li a:hover span { transform: translateX(3px); }

.sidebar-areas {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.75;
}

/* --- CTA Banner --- */
.cta-banner {
  padding: var(--pad-y) var(--pad-x);
  background: var(--ink-900);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(196, 106, 34, 0.22), transparent 60%);
}
.cta-banner-inner { position: relative; }

.cta-banner-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1rem;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.98rem;
  line-height: 1.7;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-page-form {
  padding: var(--pad-y) var(--pad-x);
  background: var(--bg);
}

.contact-page-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.contact-full-form {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-full-form h2 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.contact-full-form .form-intro {
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
}

.form-grid-2 { display: grid; gap: 1.25rem; }

.contact-details-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-soft);
}

.detail-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-900);
}

.detail-card p,
.detail-card a {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.detail-card a { font-weight: 600; color: var(--ink-900); }
.detail-card a:hover { color: var(--accent); }

.detail-card .phone-big {
  font-size: 1.25rem !important;
  letter-spacing: -0.01em;
  font-weight: 700 !important;
}

.hours-list { display: grid; gap: 0.4rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-soft);
}
.hours-list li strong { color: var(--ink-900); font-weight: 600; }

/* ============================================
   Responsive
   ============================================ */
@media (min-width: 640px) {
  :root {
    --pad-y: 6rem;
    --pad-x: 2rem;
  }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .jobs-list { grid-template-columns: repeat(2, 1fr); }
  .area-list { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: repeat(4, 1fr); }
  .pricing-cards { grid-template-columns: repeat(3, 1fr); }
  .services-detail-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  :root {
    --pad-y: 7rem;
    --pad-x: 2.5rem;
  }

  .nav-links { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-sticky-cta { display: none; }
  body { padding-bottom: 0; }

  .hero { padding: 11.5rem 2.5rem 6rem; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
  .hero-visual { max-width: none; }

  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .jobs-list { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .services-detail-grid { grid-template-columns: repeat(3, 1fr); }

  .jobs-header { grid-template-columns: auto 1fr; align-items: end; gap: 3rem; }

  .contact-wrapper,
  .contact-page-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
  }

  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }

  .contact-form,
  .contact-full-form {
    padding: 2.75rem;
  }

  .page-hero { padding: 11rem 2.5rem 4.5rem; }

  .service-hero { padding: 11rem 2.5rem 4.5rem; }
  .service-body-grid { grid-template-columns: minmax(0, 1fr) 320px; gap: 3.5rem; }

  .service-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
  }
}

@media (min-width: 1100px) {
  :root { --pad-y: 8rem; }

  .hero { padding: 13rem 2.5rem 7.5rem; }
  .hero h1 { font-size: 3.75rem; }

  .services-grid { gap: 1.25rem; }
  .service-detail-card { padding: 2.5rem 2rem; }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 200;
  max-width: 480px;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  padding: 1.125rem 1.25rem;
  transform: translateY(calc(100% + 2rem));
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner-text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-mid);
  margin-bottom: 0.9rem;
}
.cookie-banner-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink-900);
  margin-bottom: 0.25rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
}
.cookie-btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  padding: 0.55rem 1.05rem;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background var(--dur), color var(--dur), border-color var(--dur);
}
.cookie-btn-secondary {
  background: transparent;
  color: var(--text-mid);
  border-color: var(--border);
}
.cookie-btn-secondary:hover {
  background: var(--surface);
  color: var(--ink-900);
}
.cookie-btn-primary {
  background: var(--ink-900);
  color: #fff;
}
.cookie-btn-primary:hover {
  background: var(--ink-800);
}
@media (max-width: 520px) {
  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 1rem 1.05rem;
  }
  .cookie-banner-actions {
    flex-direction: column-reverse;
  }
  .cookie-btn {
    width: 100%;
    padding: 0.7rem 1rem;
  }
}
