/*
  ============================================================
  CJX STUDIOS — city-landing-v2.css
  Conversion-optimised trade × city landing pages.
  Pulls aesthetic from portfolio.css.
  Load order: tokens.css → base.css → portfolio.css → city-landing-v2.css
  ============================================================
*/

/* ─────────────────────────────────────────────────────────────
   SHARED SECTION UTILITIES
   ───────────────────────────────────────────────────────────── */
.pg-section {
  padding: 5rem 0;
}
.pg-section-alt {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section label + heading pattern */
.sec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  padding: 0.28rem 0.8rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}
.sec-kicker::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  display: block;
}
.sec-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0;
}
.sec-h2 em {
  font-style: normal;
  color: var(--accent-light);
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────────────────────────
   1. HERO
   ───────────────────────────────────────────────────────────── */
.city-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 2rem 5rem;
}
.city-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 65% 60% at 50% 42%,
    rgba(43, 102, 230, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
/* Subtle dot grid */
.city-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(
    ellipse 80% 70% at 50% 40%,
    black,
    transparent
  );
}
.city-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
}

/* Inline badge row */
.city-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: hero-up 0.5s var(--ease) 0.1s forwards;
}
.city-urgency-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.28);
  padding: 0.28rem 0.85rem;
  border-radius: var(--r-full);
}
.city-urgency-pill .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse-dot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0);
  }
}
.city-industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  border-radius: var(--r-full);
  /* Color is set per-industry via data attribute or class */
}
.city-industry-pill.elec {
  color: var(--amber);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.28);
}
.city-industry-pill.plumb {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.28);
}
.city-industry-pill.build {
  color: #fb923c;
  background: rgba(251, 146, 60, 0.1);
  border: 1px solid rgba(251, 146, 60, 0.28);
}
.city-industry-pill.arch {
  color: #a78bfa;
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.28);
}

/* Typing headline */
.city-hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 0;
  opacity: 0;
  animation: hero-up 0.55s var(--ease) 0.14s forwards;
}
.city-typing-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.3rem 0 0;
  min-height: clamp(3.2rem, 5.5vw, 4.8rem);
  flex-wrap: nowrap;
  opacity: 0;
  animation: hero-up 0.55s var(--ease) 0.23s forwards;
}
.city-typed-for {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  color: var(--text-2);
  flex-shrink: 0;
  white-space: nowrap;
}
.city-typed-word {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  color: var(--accent);
  white-space: nowrap;
  min-width: 2px;
}
.city-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--accent);
  border-radius: 2px;
  vertical-align: middle;
  flex-shrink: 0;
  animation: cursor-blink 0.9s step-end infinite;
}
@keyframes cursor-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.city-hero-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 520px;
  margin: 1.75rem auto 2rem;
  opacity: 0;
  animation: hero-up 0.55s var(--ease) 0.32s forwards;
}

/* Proof strip inside hero */
.city-proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-full);
  padding: 0.45rem 0.6rem;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: hero-up 0.55s var(--ease) 0.38s forwards;
}
.city-ps-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-2);
  padding: 0 0.85rem;
}
.city-ps-item i {
  font-size: 0.65rem;
}
.city-ps-item i.star {
  color: var(--amber);
}
.city-ps-item i.check {
  color: var(--green);
}
.city-ps-div {
  width: 1px;
  height: 16px;
  background: var(--border-2);
}

.city-hero-ctas {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: hero-up 0.55s var(--ease) 0.44s forwards;
}

.city-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  color: var(--text-3);
  font-weight: 600;
  opacity: 0;
  animation: hero-up 0.55s var(--ease) 0.5s forwards;
}
.city-guar-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.city-guar-item i {
  color: var(--green);
  font-size: 0.65rem;
}

/* Scroll indicator */
.city-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
  opacity: 0.3;
  animation: bob 3s ease-in-out infinite 1.5s;
}
.city-scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
.city-scroll-lbl {
  font-size: 0.56rem;
  color: var(--text-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@keyframes bob {
  0%,
  100% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.55;
    transform: translateX(-50%) translateY(5px);
  }
}
@keyframes hero-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ─────────────────────────────────────────────────────────────
   2. STAT STRIP (between hero and pain)
   ───────────────────────────────────────────────────────────── */
.city-stat-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}
.city-stat-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.css-item {
  text-align: center;
}
.css-val {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--accent-light) 0%, #7aa5f8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  line-height: 1;
}
.css-lbl {
  font-size: 0.67rem;
  color: var(--text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.25rem;
  display: block;
}
.css-div {
  width: 1px;
  height: 36px;
  background: var(--border-2);
}

/* ─────────────────────────────────────────────────────────────
   3. PAIN CARDS — 2×2 bold scan grid
   ───────────────────────────────────────────────────────────── */
.pain-section {
  padding: 5rem 0;
}
.pain-header {
  margin-bottom: 2.75rem;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.pain-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.65rem;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.pain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.pain-card:hover {
  border-color: rgba(239, 68, 68, 0.2);
  transform: translateY(-3px);
  box-shadow:
    0 12px 36px rgba(239, 68, 68, 0.06),
    0 4px 12px rgba(0, 0, 0, 0.3);
}
.pain-card:hover::before {
  transform: scaleX(1);
}
.pain-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--red-dim);
  border: 1px solid var(--red-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.pain-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.pain-card p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}
.pain-card p strong {
  color: var(--text);
}

/* ─────────────────────────────────────────────────────────────
   4. DATA PUNCH — "What you're losing"
   ───────────────────────────────────────────────────────────── */
.data-punch {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.data-punch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(43, 102, 230, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.data-punch-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.data-punch-label {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 2.5rem;
}
.data-punch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.dp-item {
  text-align: center;
  padding: 0 2.5rem;
  position: relative;
}
.dp-item + .dp-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-2);
}
.dp-num {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--text);
  display: block;
}
.dp-num .dp-accent {
  color: var(--accent-light);
}
.dp-context {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.55;
  margin-top: 0.5rem;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.dp-context strong {
  color: var(--text);
}

/* ─────────────────────────────────────────────────────────────
   5. TRUST PIVOT — Chris + client proof
   ───────────────────────────────────────────────────────────── */
.trust-section {
  padding: 5rem 0;
}
.trust-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2.5rem;
}

/* Chris card */
.chris-card {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-2xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.chris-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
}
.chris-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.chris-av {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  border: 3px solid rgba(43, 102, 230, 0.3);
  overflow: hidden;
}
.chris-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chris-meta-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}
.chris-meta-role {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 0.15rem;
}
.chris-meta-loc {
  font-size: 0.73rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.1rem;
}
.chris-meta-loc i {
  color: var(--accent-light);
  font-size: 0.6rem;
}
.chris-quote {
  background: rgba(43, 102, 230, 0.04);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.93rem;
  color: var(--text-2);
  font-style: italic;
  line-height: 1.7;
}
.chris-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.chris-cred-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-full);
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  color: var(--text-2);
}
.chris-cred-pill i {
  color: var(--green);
  font-size: 0.62rem;
}

/* Mini testimonials */
.trust-testi-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.mini-testi {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.15rem 1.25rem;
  transition:
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.mini-testi:hover {
  border-color: var(--accent-border);
  transform: translateX(3px);
}
.mini-testi-stars {
  color: var(--amber);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.mini-testi-result {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  padding: 0.15rem 0.55rem;
  border-radius: var(--r-full);
  display: inline-block;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mini-testi-text {
  font-size: 0.83rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  font-style: italic;
}
.mini-testi-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.mini-testi-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
}
.mini-testi-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mini-testi-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
}
.mini-testi-biz {
  font-size: 0.7rem;
  color: var(--text-3);
}

/* ─────────────────────────────────────────────────────────────
   6. HOW IT WORKS — 3 steps with connector
   ───────────────────────────────────────────────────────────── */
.how-section {
  padding: 5rem 0;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.75rem;
  position: relative;
}
/* Connecting line between steps */
.how-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(16.67% + 1rem);
  right: calc(16.67% + 1rem);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-border) 20%,
    var(--accent-border) 80%,
    transparent
  );
  pointer-events: none;
  z-index: 0;
}
.how-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.65rem;
  text-align: center;
  transition:
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  position: relative;
  z-index: 1;
}
.how-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px rgba(43, 102, 230, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.3);
}
.how-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  box-shadow: 0 4px 16px rgba(43, 102, 230, 0.4);
}
.how-card-tag {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.5rem;
}
.how-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.how-card p {
  font-size: 0.84rem;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}
.how-card p strong {
  color: var(--text);
}
.how-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.67rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: var(--r-full);
  margin-top: 0.85rem;
}
.how-card-badge.free {
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--green-border);
}
.how-card-badge.fast {
  color: var(--accent-light);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
}
.how-card-badge.zero {
  color: var(--amber);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.28);
}

/* ─────────────────────────────────────────────────────────────
   7. INDUSTRY FEATURES — icon list, 2 cols
   ───────────────────────────────────────────────────────────── */
.feat-section {
  padding: 5rem 0;
}
.feat-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.feat-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.1rem 1.25rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.feat-item:hover {
  border-color: var(--accent-border);
  box-shadow: 0 4px 20px rgba(43, 102, 230, 0.08);
}
.feat-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 0.82rem;
}
.feat-body {
}
.feat-tag {
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.1rem 0.45rem;
  border-radius: var(--r-full);
  display: inline-block;
  margin-bottom: 0.2rem;
}
.feat-tag.top {
  color: var(--amber);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
}
.feat-tag.trust {
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--green-border);
}
.feat-tag.legal {
  color: var(--red);
  background: var(--red-dim);
  border: 1px solid var(--red-border);
}
.feat-tag.local {
  color: var(--accent-light);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
}
.feat-item h4 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.15rem;
  line-height: 1.3;
}
.feat-item p {
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   8. PRICING CARDS
   ───────────────────────────────────────────────────────────── */
.pricing-section {
  padding: 5rem 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 2.5rem;
  align-items: start;
}
.price-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.65rem;
  position: relative;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.price-card:hover {
  transform: translateY(-4px);
}
.price-card.popular {
  border-color: var(--accent-border);
  background: linear-gradient(
    160deg,
    rgba(43, 102, 230, 0.05) 0%,
    var(--bg-2) 60%
  );
  box-shadow:
    0 8px 36px rgba(43, 102, 230, 0.12),
    0 0 0 1px var(--accent-border);
}
.price-card.popular::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.price-popular-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  background: var(--accent);
  padding: 0.2rem 0.7rem;
  border-radius: var(--r-full);
  margin-bottom: 0.85rem;
}
.price-name {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.price-tagline {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-bottom: 1.25rem;
}
.price-amount-row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.25rem;
}
.price-amount {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--text);
  line-height: 1;
}
.price-card.popular .price-amount {
  color: var(--accent-light);
}
.price-period {
  font-size: 0.78rem;
  color: var(--text-3);
}
.price-setup-note {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-bottom: 1.35rem;
}
.price-divider {
  height: 1px;
  background: var(--border);
  margin: 1.1rem 0;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--text-2);
  line-height: 1.4;
}
.price-features li i {
  color: var(--green);
  font-size: 0.65rem;
  margin-top: 0.22rem;
  flex-shrink: 0;
}
.price-features li span strong {
  color: var(--text);
}

/* ─────────────────────────────────────────────────────────────
   9. FAQ ACCORDION
   ───────────────────────────────────────────────────────────── */
.faq-section {
  padding: 5rem 0;
}
.faq-col {
  max-width: 760px;
  margin: 2.25rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 1rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--accent-light);
}
.faq-icon {
  font-size: 0.72rem;
  color: var(--text-3);
  flex-shrink: 0;
  transition:
    transform 0.25s var(--ease),
    color 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-light);
}
.faq-item.open .faq-q {
  color: var(--accent-light);
}
.faq-a {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.78;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.38s var(--ease),
    padding 0.3s var(--ease);
  padding: 0;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 1.1rem;
}
.faq-a a {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 600;
}

/* ─────────────────────────────────────────────────────────────
   10. FINAL CTA
   ───────────────────────────────────────────────────────────── */
.final-cta {
  padding: 7rem 0;
  text-align: center;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(
    ellipse at center top,
    rgba(43, 102, 230, 0.13) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
}
.final-cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.28);
  padding: 0.28rem 0.85rem;
  border-radius: var(--r-full);
  margin-bottom: 1.5rem;
}
.final-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.final-cta p {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 460px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.final-guar {
  font-size: 0.76rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.final-guar span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.final-guar i {
  color: var(--green);
  font-size: 0.65rem;
}

/* ─────────────────────────────────────────────────────────────
   BUTTONS (reuse from portfolio.css + new WA variant)
   ───────────────────────────────────────────────────────────── */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.85rem;
  border-radius: var(--r-lg);
  background: var(--wa);
  color: white;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.28s var(--ease);
  box-shadow: var(--wa-glow-sm);
  white-space: nowrap;
}
.btn-wa:hover {
  background: var(--wa-hover);
  transform: translateY(-2px);
  box-shadow: var(--wa-glow-md);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.85rem;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border-2);
  color: var(--text-2);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.28s var(--ease);
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.85rem;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.28s var(--ease);
  box-shadow: var(--blue-glow-sm);
  white-space: nowrap;
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--blue-glow-md);
}
.btn-sm {
  padding: 0.65rem 1.3rem;
  font-size: 0.86rem;
}

/* ─────────────────────────────────────────────────────────────
   INDUSTRY-SPECIFIC UNIQUE ACCENTS
   ───────────────────────────────────────────────────────────── */

/* Electricians — amber lightning accents */
.page-electricians .pain-icon-wrap {
  color: var(--amber);
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.28);
}
.page-electricians .pain-card::before {
  background: var(--amber);
}
.page-electricians .pain-card:hover {
  border-color: rgba(245, 158, 11, 0.22);
  box-shadow:
    0 12px 36px rgba(245, 158, 11, 0.06),
    0 4px 12px rgba(0, 0, 0, 0.3);
}
.page-electricians .how-step-num:nth-child(1) {
  background: var(--amber);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
}

/* Plumbers — blue water accents on pain */
.page-plumbers .pain-icon-wrap {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.28);
}
.page-plumbers .pain-card::before {
  background: #38bdf8;
}
.page-plumbers .pain-card:hover {
  border-color: rgba(56, 189, 248, 0.22);
}

/* Construction — orange accents on pain */
.page-construction .pain-icon-wrap {
  color: #fb923c;
  background: rgba(251, 146, 60, 0.1);
  border-color: rgba(251, 146, 60, 0.28);
}
.page-construction .pain-card::before {
  background: #fb923c;
}
.page-construction .pain-card:hover {
  border-color: rgba(251, 146, 60, 0.22);
}

/* Architects — purple accents on pain */
.page-architects .pain-icon-wrap {
  color: #a78bfa;
  background: rgba(167, 139, 250, 0.1);
  border-color: rgba(167, 139, 250, 0.28);
}
.page-architects .pain-card::before {
  background: #a78bfa;
}
.page-architects .pain-card:hover {
  border-color: rgba(167, 139, 250, 0.22);
}

/* ─────────────────────────────────────────────────────────────
   SCROLL BAR + BACK TO TOP
   ───────────────────────────────────────────────────────────── */
.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent-light) 100%
  );
  z-index: 9999;
  transition: width 0.08s linear;
}
.back-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s var(--ease);
  z-index: var(--z-nav);
  font-size: 0.875rem;
}
.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-top:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .trust-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid .price-card:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .city-hero {
    padding: 110px 1.5rem 4rem;
    min-height: 80vh;
  }
  .city-hero-h1,
  .city-typed-word,
  .city-typed-for {
    font-size: 2.1rem;
  }
  .city-hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .city-hero-ctas a {
    width: 100%;
    justify-content: center;
  }
  .city-proof-strip {
    gap: 0;
  }
  .city-guarantee {
    gap: 1rem;
  }
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .data-punch-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .dp-item + .dp-item::before {
    display: none;
  }
  .dp-item {
    border-top: 1px solid var(--border);
    padding: 2rem 1rem 0;
  }
  .dp-item:first-child {
    border-top: none;
    padding-top: 0;
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .how-grid::before {
    display: none;
  }
  .feat-layout {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid .price-card:last-child {
    max-width: none;
  }
  .css-div {
    display: none;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding: 0 1.25rem;
  }
  .city-hero {
    padding: 96px 1.25rem 3.5rem;
  }
  .city-hero-h1,
  .city-typed-word,
  .city-typed-for {
    font-size: 1.85rem !important;
  }
  .pg-section,
  .pain-section,
  .trust-section,
  .how-section,
  .feat-section,
  .pricing-section,
  .faq-section {
    padding: 3.5rem 0;
  }
  .final-cta {
    padding: 5rem 0;
  }
  .city-proof-strip {
    padding: 0.4rem 0.5rem;
  }
  .city-ps-item {
    padding: 0 0.6rem;
    font-size: 0.7rem;
  }
  .btn-wa,
  .btn-ghost,
  .btn-accent {
    width: 100%;
    justify-content: center;
  }
  .final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
