/* =========================================================================
   Level Up — design system (Phase 2)
   Foundation tokens + reset + base typography (Phase 1) at top,
   followed by all component styles ported verbatim from the approved
   home page mockup. Source of truth: files (6)/01-levelup-home-mockup.html
   ========================================================================= */

/* ─── Foundation ──────────────────────────────────────────────────────── */
:root {
  --red:         #E11D2C;
  --red-2:       #C41822;
  --red-3:       #A8141C;
  --black:       #0A0A0A;
  --black-2:     #1A1A1A;
  --black-3:     #2A2A2A;
  --gray:        #F5F5F5;
  --gray-2:      #EAEAEA;
  --white:       #FFFFFF;
  --text:        #1A1A1A;
  --text-muted:  #5A5A5A;
  --text-light:  #888888;
  --border:      #E2E2E2;
  --amber:       #F4A82C;
  --amber-dark:  #B87F1B;
  --green:       #2EBD66;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 50px rgba(0,0,0,0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body, body.wp-singular {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* WP block-theme wrapper — let sections control their own padding */
.wp-site-blocks { padding: 0 !important; }
.wp-site-blocks > * + * { margin-block-start: 0 !important; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--black);
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 16px;
}
.section-divider {
  width: 64px;
  height: 4px;
  background: var(--red);
  margin: 0 auto 24px;
}
.section-header.left .section-divider { margin: 0 0 24px; }

/* ─── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-on-red {
  background: var(--black);
  color: var(--white);
  padding: 18px 32px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.btn-on-red:hover { background: var(--black-2); transform: translateY(-2px); }

/* ─── Utility bar ────────────────────────────────────────────────────── */
.utility-bar { background: var(--black); color: rgba(255,255,255,0.85); padding: 12px 0; font-size: 13px; }
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.utility-bar a { color: rgba(255,255,255,0.85); text-decoration: none; }
.utility-bar a:hover { color: var(--red); }
.utility-items { display: flex; gap: 28px; align-items: center; }
.utility-items i { color: var(--red); margin-right: 8px; }

/* ─── Header ─────────────────────────────────────────────────────────── */
.header { background: var(--white); padding: 18px 0; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.admin-bar .header { top: 32px; }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: inline-flex; align-items: center; text-decoration: none; line-height: 0; }
.logo-img { display: block; width: auto; height: 64px; }
.footer-brand .logo-img { height: 80px; }
@media (max-width: 768px) {
  .logo-img { height: 48px; }
  .footer-brand .logo-img { height: 64px; }
}
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { color: var(--black); text-decoration: none; font-weight: 600; font-size: 14px; transition: color 0.2s; text-transform: uppercase; letter-spacing: 0.05em; }
.nav a:hover { color: var(--red); }
.nav a.active { color: var(--red); border-bottom: 3px solid var(--red); padding-bottom: 4px; }

/* ─── Hero ───────────────────────────────────────────────────────────── */
.hero {
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(225, 29, 44, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
  background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%;
  color: var(--white);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero .container { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: var(--red); color: var(--white); padding: 8px 18px; font-size: 12px; font-weight: 700; margin-bottom: 28px; letter-spacing: 0.1em; text-transform: uppercase; }
.hero h1 { color: var(--white); font-size: 62px; font-weight: 800; line-height: 1.02; margin-bottom: 24px; text-transform: uppercase; letter-spacing: -0.01em; }
.hero h1 span { color: var(--red); }
.hero-lead { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 540px; }
.hero-ctas { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 14px; }
.hero-badge-icon { width: 48px; height: 48px; background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.hero-badge-text { font-size: 14px; line-height: 1.3; color: rgba(255,255,255,0.9); }
.hero-badge-text strong { display: block; color: var(--white); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.03em; }
.hero-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--red);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #2A2A2A 0%, #0A0A0A 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 14px; text-align: center; padding: 40px; line-height: 1.5;
}
.hero-image-placeholder i { font-size: 64px; margin-bottom: 16px; display: block; color: var(--red); opacity: 0.7; }
.hero-image-placeholder small { font-size: 12px; opacity: 0.7; }

/* ─── Signs grid (service parent pages) ─── */
.signs-section { background: var(--gray); }
.signs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sign-card {
  background: var(--white);
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-top: 4px solid transparent;
  transition: all 0.3s ease;
}
.sign-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-top-color: var(--red); }
.sign-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.02em; }
.sign-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.sign-icon {
  width: 64px; height: 64px;
  background: var(--black);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

/* ─── Method cards (dark, service parent pages) ─── */
.methods-section { background: var(--black); color: var(--white); }
.methods-section h2 { color: var(--white); }
.methods-section .section-lead { color: rgba(255,255,255,0.7); }
.methods-section .eyebrow { color: var(--red); }
.methods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.method-card {
  background: var(--black-2);
  border: 1px solid var(--black-3);
  border-top: 4px solid var(--red);
  overflow: hidden;
  transition: all 0.3s ease;
}
.method-card:hover { transform: translateY(-6px); }
.method-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.method-image i { font-size: 56px; color: var(--red); opacity: 0.6; }
.method-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--red);
  color: var(--white);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 1;
}
.method-body { padding: 32px; }
.method-body h3 { color: var(--white); font-size: 22px; font-weight: 800; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.02em; }
.method-body p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
.method-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: gap 0.2s;
}
.method-link:hover { gap: 14px; }

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

/* ─── Cinematic hero (wide background photo + text overlay) ─────────── */
.hero-cinematic { position: relative; min-height: 520px; display: flex; align-items: flex-end; overflow: hidden; background: var(--black); }
.hero-cinematic--photo-only { min-height: 0; aspect-ratio: 16/8; border-bottom: 4px solid var(--red); }
.hero-cinematic--photo-only .hero-cinematic-bg img { object-fit: cover; }
.hero-cinematic-bg { position: absolute; inset: 0; z-index: 0; }
.hero-cinematic-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-cinematic-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.55) 40%, rgba(10,10,10,0.10) 80%, transparent 100%), radial-gradient(circle at 80% 20%, rgba(225,29,44,0.12) 0%, transparent 50%); }
.hero-cinematic .container { position: relative; z-index: 2; padding-top: 100px; padding-bottom: 80px; width: 100%; }
.hero-cinematic-content { max-width: 720px; color: var(--white); }
.hero-cinematic-content .hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: var(--red); color: var(--white); padding: 8px 18px; font-size: 12px; font-weight: 700; margin-bottom: 28px; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-cinematic-content h1 { color: var(--white); font-size: 56px; font-weight: 800; line-height: 1.04; margin-bottom: 24px; text-transform: uppercase; letter-spacing: -0.01em; }
.hero-cinematic-content h1 span { color: var(--red); }
.hero-cinematic-content .hero-lead { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.88); margin-bottom: 36px; max-width: 620px; }
.hero-cinematic-content .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── Team grid (About page) ────────────────────────────────────────── */
.team-section { background: var(--gray); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.team-card { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--red); transition: all 0.25s; overflow: hidden; }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-photo { aspect-ratio: 1/1; overflow: hidden; background: var(--gray-2); position: relative; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; }
.team-photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #2A2A2A 0%, #0A0A0A 100%); color: var(--red); font-size: 36px; opacity: 0.7; }
.team-info { padding: 14px 16px 18px; text-align: center; }
.team-info h3 { font-size: 15px; font-weight: 800; margin: 0 0 3px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--black); }
.team-role { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin: 0; }

/* ─── Sub-service page blocks ───────────────────────────────────────── */

/* Breadcrumb */
.breadcrumb-bar { background: var(--gray); padding: 16px 0; border-bottom: 1px solid var(--border); }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .current { color: var(--red); }
.breadcrumb i { font-size: 10px; color: var(--text-light); }

/* Hero method stats */
.hero-method-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.hero-method-stat { border-left: 3px solid var(--red); padding-left: 16px; }
.hero-method-stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 32px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 6px; }
.hero-method-stat-label { font-size: 12px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

/* Hero floating card (over hero image) */
.hero-image { position: relative; }
.hero-floating-card { position: absolute; bottom: 24px; left: 24px; right: 24px; background: var(--white); padding: 20px 24px; display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow-md); border-left: 4px solid var(--red); z-index: 2; }
.hero-floating-badge { width: 48px; height: 48px; background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.hero-floating-text { font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.hero-floating-text strong { color: var(--black); display: block; font-size: 14px; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 2px; }

/* Intro split (image + content + callout) */
.intro-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.intro-image { aspect-ratio: 1/1; background: linear-gradient(135deg, #2A2A2A 0%, #0A0A0A 100%); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); border-top: 4px solid var(--red); box-shadow: var(--shadow-lg); overflow: hidden; }
.intro-image i { font-size: 100px; color: var(--red); opacity: 0.7; }
.intro-content h2 { font-size: 38px; margin-bottom: 20px; }
.intro-content p { font-size: 17px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
.intro-callout { background: var(--gray); border-left: 4px solid var(--red); padding: 24px 28px; margin-top: 28px; font-size: 15px; color: var(--text-muted); line-height: 1.6; }
.intro-callout strong { color: var(--black); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; font-size: 13px; display: block; margin-bottom: 6px; }

/* When-grid */
.when-section { background: var(--gray); }
.when-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 960px; margin: 0 auto; }
.when-item { background: var(--white); padding: 24px 28px; border-left: 4px solid var(--red); display: flex; align-items: center; gap: 20px; transition: all 0.2s; }
.when-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.when-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.02em; }
.when-item p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.when-check { width: 48px; height: 48px; background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }

/* Comparison cards (dark) */
.comparison-section { background: var(--black); color: var(--white); }
.comparison-section h2 { color: var(--white); }
.comparison-section .eyebrow { color: var(--red); }
.comparison-section .section-lead { color: rgba(255,255,255,0.7); }
.comparison-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.comparison-card { background: var(--black-2); padding: 36px 32px; border: 1px solid var(--black-3); border-top: 4px solid var(--black-3); transition: all 0.3s; }
.comparison-card.featured { border-top-color: var(--red); }
.comparison-card .comparison-tag { display: inline-block; background: var(--red); color: var(--white); padding: 4px 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.comparison-card h3 { color: var(--white); font-size: 22px; font-weight: 800; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.02em; }
.comparison-card .price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; color: var(--red); font-weight: 700; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.05em; }
.comparison-features { list-style: none; padding: 0; }
.comparison-features li { display: flex; align-items: center; gap: 12px; padding: 10px 0; color: rgba(255,255,255,0.85); font-size: 14px; border-bottom: 1px solid var(--black-3); }
.comparison-features li:last-child { border-bottom: none; }
.comparison-features li i { font-size: 14px; flex-shrink: 0; }
.comparison-features li .fa-check { color: var(--red); }
.comparison-features li .fa-xmark { color: rgba(255,255,255,0.3); }

/* Benefits list (6-card) */
.benefits-section { background: var(--white); }
.benefits-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card { background: var(--white); padding: 36px 32px; border: 1px solid var(--border); border-top: 4px solid transparent; transition: all 0.3s; }
.benefit-card:hover { border-top-color: var(--red); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.benefit-card-icon { width: 64px; height: 64px; background: var(--black); color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 24px; }
.benefit-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.02em; }
.benefit-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* Before / After */
.ba-section { background: var(--gray); }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1100px; margin: 0 auto; }
.ba-card { background: var(--white); border-top: 4px solid var(--red); box-shadow: var(--shadow-sm); }
.ba-image { aspect-ratio: 4/3; background: linear-gradient(135deg, #2A2A2A 0%, #0A0A0A 100%); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); position: relative; overflow: hidden; }
.ba-image i { font-size: 64px; color: var(--red); opacity: 0.5; }
.ba-label { position: absolute; top: 16px; left: 16px; background: var(--black); color: var(--white); padding: 6px 16px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; z-index: 1; }
.ba-card.after .ba-label { background: var(--red); }
.ba-caption { padding: 24px 28px; }
.ba-caption h4 { font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 6px; }
.ba-caption p { font-size: 14px; color: var(--text-muted); }

/* Related methods */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-card { background: var(--white); padding: 32px 28px; border: 1px solid var(--border); border-top: 4px solid var(--red); transition: all 0.2s; text-decoration: none; display: block; color: inherit; }
.related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.related-card .related-icon { width: 56px; height: 56px; background: var(--black); color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.related-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--black); text-transform: uppercase; letter-spacing: 0.02em; }
.related-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.related-link { color: var(--red); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; display: inline-flex; align-items: center; gap: 8px; }

/* ─── Structural Assessment card ─────────────────────────────────────── */
.assessment {
  position: relative;
  background: var(--black-2);
  padding: 36px 32px 0;
  box-shadow: var(--shadow-lg);
  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: 24px 24px;
}
.assessment::before, .assessment::after {
  content: '';
  position: absolute;
  width: 60px; height: 60px;
  border: 3px solid var(--red);
}
.assessment::before { top: -12px; left: -12px; border-right: none; border-bottom: none; }
.assessment::after { bottom: -12px; right: -12px; border-left: none; border-top: none; }
.assessment-header {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--black-3);
  margin-bottom: 24px;
  font-family: 'JetBrains Mono', monospace;
}
.assessment-title { color: var(--red); font-size: 13px; font-weight: 700; letter-spacing: 0.15em; }
.assessment-meta { color: var(--text-light); font-size: 12px; letter-spacing: 0.05em; }
.assessment-list { list-style: none; margin-bottom: 24px; padding: 0; }
.assessment-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  margin-bottom: 4px;
  background: rgba(255,255,255,0.02);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  border-left: 3px solid transparent;
}
.assessment-list li.ok { color: rgba(255,255,255,0.85); }
.assessment-list li.ok .dot { background: #666; }
.assessment-list li.critical { background: rgba(225,29,44,0.15); color: var(--white); border-left-color: var(--red); }
.assessment-list li.critical .dot { background: var(--red); }
.assessment-list li.critical .value { color: var(--red); font-weight: 600; }
.assessment-list li.warning { background: rgba(244,168,44,0.10); color: rgba(255,255,255,0.9); border-left-color: var(--amber); }
.assessment-list li.warning .dot { background: var(--amber); }
.assessment-list li.warning .value { color: var(--amber); }
.assessment-list li.monitor { background: rgba(184,127,27,0.12); color: rgba(255,255,255,0.85); border-left-color: var(--amber-dark); }
.assessment-list li.monitor .dot { background: var(--amber-dark); }
.assessment-list .row-label { display: flex; align-items: center; gap: 12px; }
.assessment-list .dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.assessment-list .value { color: rgba(255,255,255,0.5); font-size: 12px; }
.assessment-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--black-3); margin-bottom: 0; }
.metric { background: var(--black-2); padding: 20px 24px; }
.metric-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-light); letter-spacing: 0.12em; margin-bottom: 8px; }
.metric-value { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.metric-value.critical { color: var(--red); }
.metric-value.warning { color: var(--amber); }
.metric-value.monitor { color: var(--amber); }
.metric-value.estimated { color: var(--green); }
.metric-status { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; color: var(--text-light); }
.assessment-footer {
  background: var(--red); color: var(--white);
  padding: 16px 24px;
  display: flex; justify-content: space-between; align-items: center;
  margin: 24px -32px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.assessment-footer .label { font-size: 13px; letter-spacing: 0.05em; }
.assessment-footer .solution { font-size: 14px; font-weight: 700; letter-spacing: 0.05em; }

/* ─── Benefits strip ─────────────────────────────────────────────────── */
.benefits-strip { background: var(--red); padding: 36px 0; color: var(--white); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.benefit { display: flex; align-items: center; gap: 20px; justify-content: center; }
.benefit-icon { font-size: 36px; }
.benefit-text { font-size: 19px; font-weight: 700; line-height: 1.2; text-transform: uppercase; letter-spacing: 0.02em; }

/* ─── Stats strip ────────────────────────────────────────────────────── */
.stats-strip { background: var(--gray); padding: 56px 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat { text-align: center; }
.stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 52px; font-weight: 800; color: var(--black); line-height: 1; margin-bottom: 8px; }
.stat-num span { color: var(--red); }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }

/* ─── Generic section + section-header ───────────────────────────────── */
.section { padding: 100px 0; }
.section-header { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-header.left { margin: 0 0 64px; text-align: left; }
.section h2 { font-size: 44px; font-weight: 800; margin-bottom: 20px; text-transform: uppercase; letter-spacing: -0.01em; }
.section-lead { font-size: 18px; color: var(--text-muted); line-height: 1.7; }

/* ─── Services grid (home) ───────────────────────────────────────────── */
.services-section { background: var(--gray); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  display: grid;
  grid-template-columns: 200px 1fr;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card-image {
  background: linear-gradient(135deg, #2A2A2A 0%, #0A0A0A 100%);
  color: var(--red); font-size: 56px;
  position: relative;
  min-height: 140px;
}
.service-card-image i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.service-card-num {
  position: absolute; top: 12px; left: 12px;
  font-family: 'JetBrains Mono', monospace;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  letter-spacing: 0.1em;
}
.service-card-body { padding: 32px 28px; display: flex; flex-direction: column; justify-content: center; }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.02em; }
.service-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.service-card-link { color: var(--red); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; display: inline-flex; align-items: center; gap: 8px; }

/* ─── Why Us split ───────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-image { aspect-ratio: 4/5; background: linear-gradient(135deg, #2A2A2A 0%, #0A0A0A 100%); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); box-shadow: var(--shadow-lg); border-top: 4px solid var(--red); overflow: hidden; }
.why-image i { font-size: 80px; color: var(--red); opacity: 0.7; }
.why-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-values { display: flex; flex-direction: column; gap: 32px; }
.why-value { display: flex; gap: 20px; align-items: flex-start; }
.why-value-icon { width: 56px; height: 56px; background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.why-value h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.02em; }
.why-value p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* ─── Process ────────────────────────────────────────────────────────── */
.process-section { background: var(--black); color: var(--white); }
.process-section h2 { color: var(--white); }
.process-section .section-lead { color: rgba(255,255,255,0.7); }
.process-section .eyebrow { color: var(--red); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 2px; background: var(--black-3); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num { width: 72px; height: 72px; background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 26px; font-weight: 800; margin: 0 auto 24px; }
.process-step h3 { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.02em; }
.process-step p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6; padding: 0 12px; }

/* ─── Financing bar ──────────────────────────────────────────────────── */
.financing-bar { background: var(--red); padding: 64px 0; color: var(--white); }
.financing-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.financing-content h2 { color: var(--white); font-size: 36px; margin-bottom: 12px; }
.financing-content p { font-size: 17px; color: rgba(255,255,255,0.9); max-width: 600px; }

/* ─── Testimonials ───────────────────────────────────────────────────── */
.testimonial-section { background: var(--gray); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); padding: 36px 32px; border: 1px solid var(--border); border-top: 4px solid var(--red); }
.testimonial-stars { color: var(--red); font-size: 16px; margin-bottom: 16px; }
.testimonial-quote { font-size: 16px; color: var(--text); margin-bottom: 24px; line-height: 1.6; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 800; flex-shrink: 0; }
.testimonial-author-info strong { display: block; color: var(--black); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; font-size: 14px; }
.testimonial-author-info span { color: var(--text-muted); font-size: 13px; }

/* ─── Areas pills ────────────────────────────────────────────────────── */
.areas-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 900px; margin: 0 auto; }
.area-pill { background: var(--white); border: 1px solid var(--border); color: var(--black); padding: 12px 22px; font-weight: 600; font-size: 14px; text-decoration: none; transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.03em; }
.area-pill:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.area-pill.featured { background: var(--red); border-color: var(--red); color: var(--white); }

/* ─── FAQ ────────────────────────────────────────────────────────────── */
.faq-section { background: var(--gray); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 1100px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); padding: 24px 28px; background: var(--white); cursor: pointer; transition: all 0.2s; border-left: 4px solid transparent; }
.faq-item:hover { border-left-color: var(--red); }
.faq-item[open] { border-left-color: var(--red); }
.faq-question { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 15px; color: var(--black); text-transform: uppercase; letter-spacing: 0.02em; list-style: none; cursor: pointer; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question i { color: var(--red); transition: transform 0.2s; }
.faq-item[open] .faq-question i { transform: rotate(45deg); }
.faq-answer { padding-top: 16px; color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* ─── Final CTA ──────────────────────────────────────────────────────── */
.final-cta { background: var(--black); color: var(--white); padding: 100px 0; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; left: -200px; bottom: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(225,29,44,0.15) 0%, transparent 70%); }
.final-cta .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.final-cta h2 { color: var(--white); font-size: 44px; margin-bottom: 20px; }
.final-cta .section-lead { color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.cta-features { list-style: none; margin-top: 24px; padding: 0; }
.cta-features li { display: flex; align-items: center; gap: 12px; padding: 10px 0; color: rgba(255,255,255,0.9); font-weight: 500; text-transform: uppercase; font-size: 14px; letter-spacing: 0.02em; }
.cta-features i { color: var(--red); font-size: 18px; }
.cta-form { background: var(--white); color: var(--text); padding: 48px; box-shadow: var(--shadow-lg); border-top: 4px solid var(--red); }
.cta-form h3 { font-size: 26px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: -0.01em; }
.cta-form-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }
.form-trust { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 12px; }

/* ─── Footer ─────────────────────────────────────────────────────────── */
.footer { background: var(--black); color: rgba(255,255,255,0.7); padding: 64px 0 32px; border-top: 4px solid var(--red); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { color: var(--white); margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; max-width: 320px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 44px; height: 44px; background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.2s; }
.footer-socials a:hover { background: var(--red-2); transform: translateY(-2px); }
.footer-col h4 { color: var(--white); font-size: 14px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-col h4::after { content: ''; display: block; width: 32px; height: 3px; background: var(--red); margin-top: 8px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid var(--black-3); padding-top: 24px; font-size: 13px; color: rgba(255,255,255,0.5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }

/* ─── Gravity Forms — match cta-form aesthetic ──────────────────────── */
.cta-form .gform_wrapper { margin: 0 !important; padding: 0 !important; }
.cta-form .gform_wrapper .gform_heading { display: none !important; }
.cta-form .gform_required_legend { display: none !important; }

/* Honeypot + any visibility-hidden field — kill them dead */
.cta-form .gform_wrapper .gform_validation_container,
.cta-form .gform_wrapper .gfield--type-honeypot,
.cta-form .gform_wrapper [class*="visibility_hidden"] {
  display: none !important;
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Field grid — 2 cols, tight */
.cta-form .gform_wrapper .gform_fields {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.cta-form .gform_wrapper .gfield {
  grid-column: 1 / -1 !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  max-width: none !important;
}
.cta-form .gform_wrapper .gfield.gf-half { grid-column: span 1 !important; }

/* Labels — small + tight */
.cta-form .gform_wrapper .gfield_label {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: var(--text-muted) !important;
  margin: 0 0 4px !important;
  padding: 0 !important;
  display: block !important;
  line-height: 1.2 !important;
}
.cta-form .gform_wrapper .gfield_required { color: var(--text-light) !important; font-weight: 400 !important; }
.cta-form .gform_wrapper .gfield_description,
.cta-form .gform_wrapper .instruction { display: none !important; }
.cta-form .gform_wrapper .ginput_container { margin: 0 !important; padding: 0 !important; }

/* Inputs */
.cta-form .gform_wrapper input[type=text],
.cta-form .gform_wrapper input[type=email],
.cta-form .gform_wrapper input[type=tel],
.cta-form .gform_wrapper input[type=number],
.cta-form .gform_wrapper select,
.cta-form .gform_wrapper textarea {
  width: 100% !important;
  padding: 11px 14px !important;
  border: 1px solid var(--border) !important;
  font-family: inherit !important;
  font-size: 14px !important;
  background: var(--gray) !important;
  color: var(--text) !important;
  border-radius: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  line-height: 1.4 !important;
  min-height: 0 !important;
  height: auto !important;
}
.cta-form .gform_wrapper input:focus,
.cta-form .gform_wrapper select:focus,
.cta-form .gform_wrapper textarea:focus {
  outline: none !important;
  border-color: var(--red) !important;
  background: var(--white) !important;
  box-shadow: none !important;
}
.cta-form .gform_wrapper textarea {
  min-height: 72px !important;
  max-height: 140px !important;
  resize: vertical;
}

/* Submit button */
.cta-form .gform_wrapper .gform_footer {
  padding: 12px 0 0 !important;
  margin: 0 !important;
  display: block !important;
}
.cta-form .gform_wrapper .gform_button {
  width: 100% !important;
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 16px !important;
  font-family: inherit !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 0 !important;
  line-height: 1 !important;
  height: auto !important;
  min-height: 0 !important;
}
.cta-form .gform_wrapper .gform_button:hover { background: var(--red-2) !important; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Validation states */
.cta-form .gform_wrapper .gfield_error input,
.cta-form .gform_wrapper .gfield_error select,
.cta-form .gform_wrapper .gfield_error textarea { border-color: var(--red) !important; background: rgba(225,29,44,0.05) !important; }
.cta-form .gform_wrapper .validation_message,
.cta-form .gform_wrapper .gfield_validation_message { color: var(--red) !important; font-size: 12px !important; margin-top: 4px !important; padding: 0 !important; background: transparent !important; border: none !important; }
.cta-form .gform_wrapper .gform_validation_errors { display: none !important; }
.cta-form .gform_confirmation_message { color: var(--text); padding: 20px 0; font-size: 15px; }

/* ─── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero .container, .why-grid, .final-cta .container, .services-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
  .section h2 { font-size: 30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .benefits-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .service-card { grid-template-columns: 1fr; }
  .service-card-image { aspect-ratio: auto; min-height: 160px; }
  .service-card-image i { font-size: 64px; }
  .signs-grid, .methods-grid { grid-template-columns: 1fr; }
  .when-grid, .comparison-grid, .benefits-list, .ba-grid, .related-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; max-width: 480px; }
  .hero-cinematic { min-height: 380px; }
  .hero-cinematic .container { padding-top: 64px; padding-bottom: 48px; }
  .hero-cinematic-content h1 { font-size: 32px; }
  .hero-method-stats { grid-template-columns: 1fr; }
  .intro-split { grid-template-columns: 1fr; gap: 32px; }
  .intro-content h2 { font-size: 28px; }
  .container { padding: 0 24px; }
  .cta-form .gform_wrapper .gform_fields { grid-template-columns: 1fr !important; }
}

/* ─── Mega-flyout dropdown nav (Services) ─────────────────────────────── */
.nav-has-mega { position: relative; }
.nav-mega-trigger-top { display: inline-flex; align-items: center; gap: 6px; }
.nav-caret { font-size: 10px; transition: transform 0.2s; }
.nav-has-mega:hover .nav-caret,
.nav-has-mega:focus-within .nav-caret { transform: rotate(180deg); }
.nav-has-mega:hover .nav-mega-trigger-top,
.nav-has-mega:focus-within .nav-mega-trigger-top { color: var(--red); border-bottom: 3px solid var(--red); padding-bottom: 4px; }

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: min(820px, 92vw);
  margin-top: 18px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}
.nav-has-mega:hover .mega-menu,
.nav-has-mega:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Hover bridge — keeps menu open while moving from trigger to menu */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -22px;
  left: 0;
  right: 0;
  height: 22px;
}

.mega-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 280px;
}
.mega-left { background: var(--black); padding: 12px 0; }
.mega-left .mega-trigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  color: rgba(255,255,255,0.78);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  text-transform: none; letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s, color 0.15s;
}
.mega-left .mega-trigger:last-child { border-bottom: none; }
.mega-left .mega-trigger i { font-size: 11px; color: rgba(255,255,255,0.4); transition: color 0.15s; }
.mega-left .mega-trigger:hover,
.mega-left .mega-trigger.active {
  background: var(--black-3);
  color: var(--white);
}
.mega-left .mega-trigger:hover i,
.mega-left .mega-trigger.active i { color: var(--red); }

.mega-right { background: var(--white); padding: 24px 28px; position: relative; }
.mega-panel { display: none; }
.mega-panel.active { display: block; }
.mega-panel a {
  display: block;
  padding: 14px 0;
  color: var(--black);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  text-transform: none; letter-spacing: 0;
  border-bottom: 1px solid var(--gray-2);
  transition: color 0.15s, padding-left 0.15s;
}
.mega-panel a:last-of-type { border-bottom: none; }
.mega-panel a:hover { color: var(--red); padding-left: 6px; }
.mega-empty { padding: 14px 0; color: var(--text-muted); font-size: 14px; font-style: italic; }

@media (max-width: 960px) {
  .mega-menu { display: none; }
  /* On mobile the parent link still works (links to first service parent). */
}

/* ─── Footer credit (Built by TinyBull) ───────────────────────────────── */
.footer-credit { color: rgba(255,255,255,0.55); font-size: 13px; }
.footer-credit a { color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.footer-credit a:hover { color: var(--red); }

/* ─── Coverage Map block ──────────────────────────────────────────────── */
.coverage-map-section { background: var(--white); }
.coverage-map-wrap {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--black);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--black-3);
}
.coverage-map-svg { display: block; width: 100%; height: auto; background: var(--black); }
.cm-pin { cursor: pointer; transition: transform 0.15s; transform-origin: center; transform-box: fill-box; }
.cm-pin-link { text-decoration: none; }
.cm-pin-city:hover circle:first-of-type { fill: #FFFFFF; stroke: var(--red); r: 11; }
.cm-pin-city:hover .cm-label { fill: var(--red); font-weight: 800; }
.cm-pin-hq:hover circle:first-of-type { fill: var(--red-2); }
.cm-label {
  fill: rgba(255,255,255,0.85);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: fill 0.15s, font-weight 0.15s;
  pointer-events: none;
}
.cm-label-hq {
  fill: var(--red);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.cm-label-sub {
  fill: rgba(255,255,255,0.55);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  pointer-events: none;
}
.cm-legend-text {
  fill: rgba(255,255,255,0.65);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
}
@media (max-width: 700px) {
  .cm-label { font-size: 12px; }
  .cm-label-hq { font-size: 14px; }
}

/* ─── Hero map visuals (coverage + mini) ──────────────────────────────── */
.hero-map-wrap { width: 100%; height: 100%; background: var(--black); overflow: hidden; }
.hero-map-coverage { aspect-ratio: 4/3; }
.hero-map-mini     { aspect-ratio: 4/5; }
.hero-map-wrap svg { width: 100%; height: 100%; display: block; }
.hero-image-mini_map, .hero-image-coverage_map { background: transparent; padding: 0; }

/* Mini-map text styles */
.mm-label-hq   { fill: var(--red); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 900; letter-spacing: 0.06em; }
.mm-label-city { fill: rgba(255,255,255,0.95); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 800; letter-spacing: 0.05em; }
.mm-label-sub  { fill: rgba(255,255,255,0.55); font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.02em; }
.mm-stat-num   { fill: var(--white); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 900; letter-spacing: 0.02em; }
.mm-stat-lbl   { fill: rgba(255,255,255,0.65); font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 500; }
.mm-stat-pill  { fill: var(--white); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 9px; font-weight: 800; letter-spacing: 0.12em; }

/* Concrete (leaf) — collapse right column entirely when hovered */
.mega-grid.mega-leaf { grid-template-columns: 320px; min-height: 0; }
.mega-grid.mega-leaf .mega-right { display: none; }

/* CSS-only fallback in case JS doesn't fire: collapse right panel whenever a leaf trigger is hovered */
.mega-grid:has(.mega-trigger[data-leaf]:hover) { grid-template-columns: 320px; min-height: 0; }
.mega-grid:has(.mega-trigger[data-leaf]:hover) .mega-right { display: none; }

/* Hero — text-only mode (no right-side visual) */
.hero.hero-text-only .container { grid-template-columns: 1fr; max-width: 1100px; }
.hero.hero-text-only h1 { font-size: 72px; max-width: 950px; }
.hero.hero-text-only .hero-lead { max-width: 720px; font-size: 20px; }
@media (max-width: 900px) {
  .hero.hero-text-only h1 { font-size: 44px; }
}

/* ─── Blog: archive (home.html) ───────────────────────────────────────── */
.lu-blog-hero { padding: 80px 0 48px; background: var(--gray); border-bottom: 1px solid var(--border); text-align: center; }
.lu-blog-hero h1 { font-size: 44px; font-weight: 800; line-height: 1.1; max-width: 820px; margin: 12px auto 16px; text-transform: uppercase; letter-spacing: -0.01em; color: var(--black); }
.lu-blog-lead { color: var(--text-muted); font-size: 18px; max-width: 700px; margin: 0 auto; }

.lu-blog-list { padding: 64px 0; }
.lu-blog-grid .wp-block-post-template { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 32px; list-style: none; padding: 0; margin: 0; max-width: 1140px; margin-left: auto; margin-right: auto; }
.lu-blog-card { background: var(--white); border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; padding: 0; margin: 0; }
.lu-blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--red); }
.lu-blog-card-thumb { display: block; overflow: hidden; aspect-ratio: 16 / 9; background: var(--gray-2); margin: 0 !important; }
.lu-blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.lu-blog-card:hover .lu-blog-card-thumb img { transform: scale(1.04); }
/* Hide the empty featured-image wrapper for posts that don't have one (avoids the grey ghost box) */
.lu-blog-card .lu-blog-card-thumb:not(:has(img)) { display: none; }
.lu-blog-card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.lu-blog-card-meta { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.lu-blog-card-title { font-size: 17px; font-weight: 800; line-height: 1.28; margin: 0; }
.lu-blog-card-title a { color: var(--black); text-decoration: none; }
.lu-blog-card-title a:hover { color: var(--red); }
.lu-blog-card-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin: 0; }
.lu-blog-card-excerpt .wp-block-post-excerpt__more-link { display: inline-block; margin-top: 8px; color: var(--red); font-weight: 600; text-decoration: none; }
.lu-blog-card-excerpt .wp-block-post-excerpt__more-link:hover { text-decoration: underline; }
.lu-blog-card-more { display: inline-block; margin-top: auto; padding-top: 12px; color: var(--red); font-weight: 700; font-size: 13px; text-decoration: none; text-transform: uppercase; letter-spacing: 0.06em; }
.lu-blog-card-more:hover { color: var(--red-2); text-decoration: underline; }

.wp-block-query-pagination { margin-top: 56px; gap: 8px; }
.wp-block-query-pagination a, .wp-block-query-pagination span { padding: 10px 16px; border: 1px solid var(--border); color: var(--black); text-decoration: none; font-weight: 600; font-size: 14px; }
.wp-block-query-pagination a:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.wp-block-query-pagination .current { background: var(--red); color: var(--white); border-color: var(--red); }

.lu-blog-cta { padding: 80px 0; background: var(--black); color: var(--white); text-align: center; }
.lu-blog-cta h2 { color: var(--white); font-size: 36px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: -0.01em; }
.lu-blog-cta p { color: rgba(255,255,255,0.8); max-width: 620px; margin: 0 auto 28px; font-size: 17px; }
.lu-blog-cta .btn-outline { color: var(--white); border-color: var(--white); }
.lu-blog-cta .btn { margin: 0 6px; }

/* ─── Blog: single post (single.html) ─────────────────────────────────── */
.lu-post-header { padding: 56px 0 24px; background: var(--gray); border-bottom: 1px solid var(--border); }
.lu-post-back { color: var(--red); font-weight: 600; font-size: 13px; text-decoration: none; text-transform: uppercase; letter-spacing: 0.08em; }
.lu-post-back:hover { text-decoration: underline; }
.lu-post-title { font-size: 44px !important; font-weight: 800; line-height: 1.12; margin: 16px 0 12px !important; text-transform: uppercase; letter-spacing: -0.01em; color: var(--black); max-width: 920px; }
.lu-post-meta { color: var(--text-muted); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

.lu-post-featured { margin: 0; max-width: 1100px; margin-left: auto; margin-right: auto; padding: 32px 24px 0; }
.lu-post-featured img { width: 100%; max-height: 480px; object-fit: cover; display: block; }

.lu-post-body { padding: 48px 24px 64px; font-size: 17px; line-height: 1.7; color: var(--text); }
.lu-post-body p, .lu-post-body ul, .lu-post-body ol, .lu-post-body blockquote, .lu-post-body figure { max-width: 800px; margin-left: auto; margin-right: auto; margin-bottom: 24px; }
.lu-post-body h2 { font-size: 30px; font-weight: 800; line-height: 1.2; margin: 48px auto 16px; max-width: 800px; text-transform: uppercase; letter-spacing: -0.01em; color: var(--black); }
.lu-post-body h3 { font-size: 22px; font-weight: 700; line-height: 1.3; margin: 36px auto 12px; max-width: 800px; color: var(--black); }
.lu-post-body a { color: var(--red); text-decoration: underline; }
.lu-post-body a:hover { color: var(--red-2); }
.lu-post-body img { max-width: 100%; height: auto; }
.lu-post-body ul, .lu-post-body ol { padding-left: 24px; }
.lu-post-body li { margin-bottom: 8px; }
.lu-post-body blockquote { border-left: 4px solid var(--red); padding-left: 24px; font-style: italic; color: var(--text-muted); }

.lu-post-cta { background: var(--black); color: var(--white); padding: 64px 0; text-align: center; }
.lu-post-cta h2 { color: var(--white); font-size: 32px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: -0.01em; }
.lu-post-cta p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 28px; font-size: 16px; }
.lu-post-cta .btn-outline { color: var(--white); border-color: var(--white); }
.lu-post-cta .btn { margin: 0 6px; }

@media (max-width: 900px) {
  .lu-blog-grid .wp-block-post-template { grid-template-columns: 1fr !important; }
  .lu-blog-hero h1, .lu-post-title { font-size: 28px !important; }
  .lu-post-body h2 { font-size: 24px; }
}

/* ─── Mobile nav (≤960px) ──────────────────────────────────────────────── */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--black);
  font-size: 24px;
  cursor: pointer;
  padding: 8px 12px;
  line-height: 1;
  z-index: 110;
}
.mobile-nav-toggle .fa-xmark { display: none; }
.header.nav-open .mobile-nav-toggle .fa-bars { display: none; }
.header.nav-open .mobile-nav-toggle .fa-xmark { display: inline; }

@media (max-width: 960px) {
  .mobile-nav-toggle { display: inline-flex; align-items: center; }
  .header .container { flex-wrap: wrap; }

  /* Mobile nav becomes a viewport-fixed drop-down panel below the header */
  .header .nav {
    display: none !important;
    position: fixed;
    top: 78px;             /* header height — menu sits below */
    left: 0;
    right: 0;
    bottom: 0;             /* fills remaining viewport */
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 32px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 109;
  }
  .header.nav-open .nav { display: flex !important; }

  /* When mobile nav open: hide utility bar and pin header to viewport top */
  body.mobile-nav-open .utility-bar { display: none; }
  body.mobile-nav-open .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 110;
  }
  body.mobile-nav-open { padding-top: 78px; }

  /* Each nav link becomes a full-width row */
  .header .nav > a {
    display: block;
    padding: 16px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    letter-spacing: 0.04em;
  }
  .header .nav > a:last-child { border-bottom: 0; }
  .header .nav > a.btn { margin-top: 12px; text-align: center; }

  /* Services dropdown collapses to a flat parent link on mobile (mega-menu already hidden below 960px) */
  .header .nav-has-mega { padding: 0; border-bottom: 1px solid var(--border); }
  .header .nav-has-mega .nav-mega-trigger-top {
    display: block;
    padding: 16px 4px;
    font-size: 16px;
    letter-spacing: 0.04em;
  }
  .header .nav-has-mega .nav-caret { display: none; }

  /* Mobile-only nested services list (parent + sub-services, collapsible) */
  .header .nav .mobile-services-list { display: block !important; }
  .mobile-svc + .mobile-svc { margin-top: 0; }
  .mobile-svc-parent {
    display: flex !important;
    align-items: center;
    width: 100%;
    padding: 14px 16px 14px 20px !important;
    color: var(--black) !important;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--gray-2) !important;
    font-family: 'Inter', sans-serif;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
  }
  .mobile-svc-chevron {
    margin-left: auto;
    color: var(--red);
    font-size: 12px;
    transition: transform 0.2s;
  }
  .mobile-svc.open .mobile-svc-chevron { transform: rotate(180deg); }
  .mobile-svc-panel { display: none; }
  .mobile-svc.open .mobile-svc-panel { display: block; }
  .mobile-svc-sub {
    display: block !important;
    padding: 11px 0 11px 36px !important;
    color: var(--text-muted) !important;
    font-family: 'Inter', sans-serif;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    border-bottom: 1px solid var(--gray-2) !important;
    text-decoration: none;
  }
  .mobile-svc-overview {
    color: var(--red) !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
  }
  .mobile-svc-parent:hover,
  .mobile-svc-sub:hover { color: var(--red) !important; }

  /* Open-menu visual polish */
  .header.nav-open { box-shadow: var(--shadow-md); }
}

/* Hide the mobile services list on desktop (default — mobile @media uses !important to win) */
.mobile-services-list { display: none !important; }

/* ─── Mobile-only tweaks (don't affect desktop) ──────────────────────── */
@media (max-width: 900px) {
  /* Benefits strip: stack icon above text, center everything */
  .benefit {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .benefit-icon { font-size: 40px; }

  /* Coverage map: make taller on mobile so the map breathes */
  .hero-map-coverage { aspect-ratio: 1 / 1; }
  .coverage-map-wrap { max-width: 100%; }

  /* Utility bar (top black bar): stack each item on its own row */
  .utility-bar { padding: 14px 0; }
  .utility-bar .container { flex-direction: column; align-items: flex-start; gap: 8px; }
  .utility-items { flex-direction: column; align-items: flex-start; gap: 8px; width: 100%; }
  .utility-items span { display: flex; align-items: center; font-size: 13px; line-height: 1.3; }
}
