/* ==========================================================================
   Camper John's — Hero System (assets/css/heroes.css)
   All selectors are strictly scoped under .cj-hero to prevent any CSS leakage.
   ========================================================================== */

/* ── SHARED HERO FOUNDATION ─────────────────────────────────────────────── */
.cj-hero {
  position: relative;
  background: var(--color-primary, #082838);
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
}

/* Background canvas */
.cj-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.cj-hero__bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Subtle grid texture overlay */
.cj-hero__grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Content sits above bg layers */
.cj-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-w, 1200px);
  margin-inline: auto;
  padding-inline: var(--container-pad, 1.5rem);
}

/* Eyebrow label */
.cj-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B8CBCF;
  margin-bottom: 1rem;
}
.cj-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: #B8CBCF;
  border-radius: 2px;
}

/* Headline */
.cj-hero__h1 {
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 1.25rem;
}
.cj-hero__h1 em {
  font-style: normal;
  color: #B8CBCF;
}

/* Lead paragraph */
.cj-hero__lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 0.95rem + 0.35vw, 1.18rem);
  line-height: 1.65;
  margin: 0 0 2rem;
  max-width: 54ch;
}

/* CTA row */
.cj-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

/* Trust / meta row */
.cj-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  align-items: center;
  padding-top: 1.75rem;
  margin-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.cj-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}
.cj-hero__trust-item svg {
  width: 17px !important;
  height: 17px !important;
  min-width: 17px !important;
  max-width: 17px !important;
  flex-shrink: 0;
  color: #B8CBCF;
}

/* Floating info cards */
.cj-hero__float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-md, 14px);
  box-shadow: 0 20px 40px rgba(8, 40, 56, 0.28), 0 2px 10px rgba(8, 40, 56, 0.12);
  padding: 0.85rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  min-width: 165px;
  max-width: 230px;
  z-index: 3;
  animation: cj-hero-float 4.5s ease-in-out infinite;
}
.cj-hero__float-card:nth-child(2) { animation-delay: -1.5s; }
.cj-hero__float-card:nth-child(3) { animation-delay: -3s; }
@keyframes cj-hero-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}

.cj-hero__float-card-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: var(--color-primary, #082838);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cj-hero__float-card-icon svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important;
  color: #B8CBCF;
  stroke-width: 2;
}
.cj-hero__float-card-text strong {
  display: block;
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary, #082838);
  line-height: 1.15;
}
.cj-hero__float-card-text span {
  display: block;
  font-size: 0.75rem;
  color: #5C6B70;
  font-weight: 500;
  margin-top: 0.15rem;
}

/* Service pill strip */
.cj-hero__service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  align-items: center;
}
.cj-hero__service-strip-label {
  font-size: 0.7rem;
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 0.35rem;
  flex-shrink: 0;
}
.cj-hero__service-pill {
  font-size: 0.78rem;
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.cj-hero__service-pill:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
  transform: translateY(-1px);
}

/* ── 1. HOMEPAGE HERO (Centered Single-Column) ──────────────────────────── */
.cj-hero--home {
  display: block;
  min-height: auto;
  padding-top: calc(var(--header-h, 90px) + clamp(1.75rem, 3.2vw, 3rem));
  padding-bottom: clamp(2rem, 3.5vw, 3.25rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cj-hero--home .cj-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 980px;
  margin-inline: auto;
  width: 100%;
}

.cj-hero--home .cj-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.cj-hero--home .cj-hero__eyebrow {
  margin-bottom: 1.15rem;
}

.cj-hero--home .cj-hero__h1 {
  font-size: clamp(2.4rem, 1.8rem + 3.2vw, 4.2rem);
  max-width: 18ch;
  margin-inline: auto;
  margin-bottom: 1.35rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.cj-hero--home .cj-hero__lead {
  font-size: clamp(1.05rem, 0.98rem + 0.35vw, 1.25rem);
  max-width: 60ch;
  margin-inline: auto;
  margin-bottom: 1.85rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.cj-hero--home .cj-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0;
}

/* SERVICES STRIP */
.cj-hero--home .cj-hero__service-strip {
  margin-top: 2.25rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
}

/* TRUST / LOCATION STRIP */
.cj-hero--home .cj-hero__trust {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  width: 100%;
}
.cj-hero--home .cj-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}
.cj-hero--home .cj-hero__trust-item svg {
  width: 16px;
  height: 16px;
  color: #B8CBCF;
}

/* ── 2. SERVICES OVERVIEW HERO ───────────────────────────────────────────── */
.cj-hero--services {
  padding-top: calc(var(--header-h, 90px) + clamp(2.5rem, 4vw, 4rem));
  padding-bottom: clamp(3rem, 4.5vw, 4.5rem);
}

.cj-hero--services .cj-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.cj-hero--services .cj-hero__h1 {
  font-size: clamp(2.1rem, 1.6rem + 2.5vw, 3.4rem);
  max-width: 16ch;
}

.cj-hero__services-cluster {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  position: relative;
}

.cj-hero__service-tile {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.25s ease;
  text-decoration: none;
  color: #ffffff;
}
.cj-hero__service-tile:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.cj-hero__service-tile--featured {
  background: linear-gradient(135deg, rgba(35, 73, 79, 0.8), rgba(8, 40, 56, 0.9));
  border-color: rgba(184, 203, 207, 0.35);
  grid-column: span 2;
}
.cj-hero__service-tile-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B8CBCF;
}
.cj-hero__service-tile-icon svg {
  width: 18px !important;
  height: 18px !important;
}
.cj-hero__service-tile-name {
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}
.cj-hero__service-tile-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.1rem;
}

/* ── 3. INDIVIDUAL SERVICE DETAIL HERO ────────────────────────────────────── */
.cj-hero--service-detail {
  padding-top: calc(var(--header-h, 90px) + clamp(2.5rem, 4vw, 4rem));
  padding-bottom: clamp(3rem, 4.5vw, 4.5rem);
}

.cj-hero--service-detail .cj-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: center;
}

.cj-hero--service-detail .cj-hero__h1 {
  font-size: clamp(2rem, 1.5rem + 2.2vw, 3.2rem);
  max-width: 18ch;
}

.cj-hero__service-visual-box {
  background: linear-gradient(150deg, rgba(35, 73, 79, 0.65) 0%, rgba(8, 40, 56, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  position: relative;
}

.cj-hero__service-diagram {
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
}
.cj-hero__service-diagram svg {
  width: 100%;
  height: auto;
  max-height: 160px;
}

.cj-hero__service-features {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.cj-hero__service-feature-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
.cj-hero__service-feature-row svg {
  width: 15px !important;
  height: 15px !important;
  min-width: 15px !important;
  color: #B8CBCF;
  flex-shrink: 0;
}

/* ── 4. HOW IT WORKS (PROCESS) HERO ──────────────────────────────────────── */
.cj-hero--how-it-works {
  padding-top: calc(var(--header-h, 90px) + clamp(2.5rem, 4.5vw, 4.5rem));
  padding-bottom: clamp(3rem, 4.5vw, 4.5rem);
}

.cj-hero--how-it-works .cj-hero__inner {
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
}

.cj-hero--how-it-works .cj-hero__lead {
  margin-inline: auto;
}

.cj-hero--how-it-works .cj-hero__ctas {
  justify-content: center;
}

.cj-hero__process-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
  margin-top: 2.75rem;
  padding: 1.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  text-align: left;
}

.cj-hero__process-step {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.5rem;
}

.cj-hero__process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-secondary, #23494F);
  border: 1.5px solid #B8CBCF;
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.cj-hero__process-step-title {
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.cj-hero__process-step-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  margin: 0;
}

.cj-hero__process-arrow {
  color: rgba(184, 203, 207, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cj-hero__process-arrow svg {
  width: 22px !important;
  height: 22px !important;
}

/* ── 5. SERVICE AREAS HERO ───────────────────────────────────────────────── */
.cj-hero--service-areas {
  padding-top: calc(var(--header-h, 90px) + clamp(2.5rem, 4vw, 4rem));
  padding-bottom: clamp(3rem, 4.5vw, 4.5rem);
}

.cj-hero--service-areas .cj-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 4vw, 4.5rem);
  align-items: center;
}

.cj-hero__map-container {
  background: linear-gradient(155deg, rgba(35, 73, 79, 0.6) 0%, rgba(8, 40, 56, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  position: relative;
}

.cj-hero__map-svg {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.cj-hero__territory-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(35, 73, 79, 0.75);
  border: 1px solid #B8CBCF;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.85rem;
}

.cj-hero__area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.cj-hero__area-pill {
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 0.25rem 0.65rem;
}

/* ── 6. WHY CHOOSE US HERO ───────────────────────────────────────────────── */
.cj-hero--why-us {
  padding-top: calc(var(--header-h, 90px) + clamp(2.5rem, 4.5vw, 4.5rem));
  padding-bottom: clamp(3rem, 4.5vw, 4.5rem);
}

.cj-hero--why-us .cj-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.cj-hero__trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.cj-hero__trust-card-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: all 0.25s ease;
}
.cj-hero__trust-card-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}
.cj-hero__trust-card-badge {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--color-secondary, #23494F);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B8CBCF;
}
.cj-hero__trust-card-badge svg {
  width: 18px !important;
  height: 18px !important;
}
.cj-hero__trust-card-title {
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}
.cj-hero__trust-card-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
  margin: 0;
}

/* ── 7. ABOUT HERO ───────────────────────────────────────────────────────── */
.cj-hero--about {
  padding-top: calc(var(--header-h, 90px) + clamp(2.5rem, 4vw, 4rem));
  padding-bottom: clamp(3rem, 4.5vw, 4.5rem);
}

.cj-hero--about .cj-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: center;
}

.cj-hero__about-badge-card {
  background: linear-gradient(155deg, rgba(35, 73, 79, 0.65) 0%, rgba(8, 40, 56, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.cj-hero__about-avatar-frame {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--color-primary, #082838);
  border: 2px solid #B8CBCF;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B8CBCF;
}
.cj-hero__about-avatar-frame svg {
  width: 44px !important;
  height: 44px !important;
}

.cj-hero__about-person-title {
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.25rem;
}
.cj-hero__about-person-role {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B8CBCF;
  margin-bottom: 1.5rem;
}

.cj-hero__about-stats-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
}
.cj-hero__about-stat-box {
  text-align: center;
}
.cj-hero__about-stat-num {
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.cj-hero__about-stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.25rem;
}

/* ── 8. BLOG HERO ────────────────────────────────────────────────────────── */
.cj-hero--blog {
  padding-top: calc(var(--header-h, 90px) + clamp(2.5rem, 4.5vw, 4.5rem));
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
}

.cj-hero--blog .cj-hero__inner {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}
.cj-hero--blog .cj-hero__lead {
  margin-inline: auto;
}

.cj-hero__blog-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.cj-hero__blog-pill {
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  transition: all 0.2s ease;
}
.cj-hero__blog-pill:hover,
.cj-hero__blog-pill--active {
  background: var(--color-secondary, #23494F);
  border-color: #B8CBCF;
  color: #ffffff;
}

/* ── 9. CONTACT / REQUEST SERVICE HERO ───────────────────────────────────── */
.cj-hero--contact {
  padding-top: calc(var(--header-h, 90px) + clamp(2.5rem, 4vw, 4rem));
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
}

.cj-hero--contact .cj-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: center;
}

.cj-hero__contact-quickbox {
  background: linear-gradient(155deg, rgba(35, 73, 79, 0.6) 0%, rgba(8, 40, 56, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cj-hero__contact-quick-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.cj-hero__contact-quick-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-primary, #082838);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B8CBCF;
  flex-shrink: 0;
}
.cj-hero__contact-quick-icon svg {
  width: 20px !important;
  height: 20px !important;
}
.cj-hero__contact-quick-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.15rem;
}
.cj-hero__contact-quick-val {
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}
.cj-hero__contact-quick-val a {
  color: #ffffff;
  text-decoration: none;
}
.cj-hero__contact-quick-val a:hover {
  color: #B8CBCF;
}

/* ── RESPONSIVE BREAKPOINTS ──────────────────────────────────────────────── */
@media (max-width: 991px) {
  .cj-hero--services .cj-hero__inner,
  .cj-hero--service-detail .cj-hero__inner,
  .cj-hero--service-areas .cj-hero__inner,
  .cj-hero--why-us .cj-hero__inner,
  .cj-hero--about .cj-hero__inner,
  .cj-hero--contact .cj-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cj-hero--home {
    padding-top: calc(var(--header-h, 72px) + 1.25rem);
    padding-bottom: 2rem;
  }
  .cj-hero--home .cj-hero__h1 {
    max-width: none;
  }

  .cj-hero--home .cj-hero__service-strip {
    margin-top: 1.75rem;
    padding-top: 1rem;
    gap: 0.4rem;
  }
  .cj-hero--home .cj-hero__trust {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    gap: 1rem;
  }

  .cj-hero__process-track {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .cj-hero__process-arrow {
    transform: rotate(90deg);
    padding: 0.25rem 0;
  }
}

@media (max-width: 640px) {
  .cj-hero__services-cluster,
  .cj-hero__trust-cards-grid {
    grid-template-columns: 1fr;
  }
  .cj-hero__service-tile--featured {
    grid-column: span 1;
  }
  .cj-hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .cj-hero__ctas .btn {
    width: 100%;
  }
}
