/* ═══════════════════════════════════════════════════════════
   SmartR Spaces — City Landing Pages (city.css)
   Shared styles for jaipur.html, kota.html, delhi.html
   ═══════════════════════════════════════════════════════════ */

/* ── Hero background image ──────────────────────────────── */
.city-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.city-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
  filter: grayscale(40%);
}
.city-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5,5,7,0.92) 45%, rgba(5,5,7,0.55) 100%),
              linear-gradient(to top, rgba(5,5,7,0.8) 0%, transparent 50%);
}

/* ── Service card image ─────────────────────────────────── */
.city-service-card__img {
  width: calc(100% + 4rem);
  margin: -2rem -2rem 1.5rem;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.city-service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 450ms var(--ease-out-expo);
  filter: grayscale(30%);
}
.city-service-card:hover .city-service-card__img img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* ── Why local — single-column (image moved to section bg) ── */
.city-why__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

/* ── Reveal animations ──────────────────────────────────── */
.city-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 650ms var(--ease-out-expo), transform 650ms var(--ease-out-expo);
}
.city-reveal.is-visible { opacity: 1; transform: none; }
.city-reveal.delay-1 { transition-delay: 100ms; }
.city-reveal.delay-2 { transition-delay: 200ms; }
.city-reveal.delay-3 { transition-delay: 300ms; }
.city-reveal.delay-4 { transition-delay: 400ms; }
.city-reveal.delay-5 { transition-delay: 500ms; }

/* ── Section shared ─────────────────────────────────────── */
.city-section {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 5vw, 2rem);
}
.city-container {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}
.city-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid rgba(0, 168, 107, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.city-section-label--light {
  color: rgba(255,255,255,0.55);
  border-color: rgba(255,255,255,0.15);
}

/* ── HERO ───────────────────────────────────────────────── */
.city-hero {
  position: relative;
  min-height: 100dvh;
  background: #050507;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Extra bottom room so stats row is always above fold */
  padding: clamp(6rem, 12vw, 9rem) clamp(1.25rem, 5vw, 2rem) clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}
.city-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.city-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(0,168,107,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.city-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
}

/* ── Hero split layout ──────────────────────────────────── */
.city-hero__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.city-hero__content {
  max-width: 620px;
}

/* ── Right visual panel ─────────────────────────────────── */
.city-hero__visual {
  display: none; /* hidden on mobile */
  position: relative;
  flex-shrink: 0;
  padding-bottom: 2.5rem;
  padding-right: 2.5rem;
}
.city-hero__visual-card {
  position: relative;
  width: 340px;
  height: 440px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.07);
}
.city-hero__visual-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
}
.city-hero__visual-card:hover img {
  transform: scale(1.04);
}
.city-hero__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,5,7,0.72) 0%,
    rgba(5,5,7,0.18) 50%,
    transparent 100%
  );
}
.city-hero__visual-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}
.city-hero__visual-badge-dot {
  width: 7px; height: 7px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0,168,107,0.8);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
/* Small accent card — offset bottom-right */
.city-hero__visual-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -2rem;
  width: 138px;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.06);
}
.city-hero__visual-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

@media (min-width: 1024px) {
  .city-hero__split {
    grid-template-columns: 1fr auto;
    gap: 5rem;
  }
  .city-hero__visual {
    display: block;
  }
}
.city-hero__location-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid rgba(0,168,107,0.35);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.city-hero__location-tag .dot {
  width: 6px; height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.city-hero__h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 1.5rem;
}
.city-hero__h1 em {
  font-style: italic;
  color: var(--color-accent);
}
/* Typewriter word — same accent green */
.city-hero__tw {
  color: var(--color-accent);
  display: inline-block;
  position: relative;
}
/* blinking cursor */
.city-hero__tw::after {
  content: '|';
  color: var(--color-accent);
  opacity: 1;
  animation: tw-cursor 0.75s step-end infinite;
  margin-left: 2px;
}
@keyframes tw-cursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.city-hero__sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 0 2.5rem;
}
.city-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.city-hero__ctas .btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #0F0F0E;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 250ms ease, transform 250ms ease, box-shadow 250ms ease;
}
.city-hero__ctas .btn-dark:hover { background: #f0f0ee; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,255,255,0.12); }
.city-hero__ctas .btn-dark:active { transform: translateY(0); }
.city-hero__ctas .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  transition: border-color 250ms ease, color 250ms ease, transform 250ms ease;
}
.city-hero__ctas .btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: #fff; transform: translateY(-1px); }
.city-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  /* Reduced top spacing so stats remain above the fold */
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.city-hero__stat-item { display: flex; flex-direction: column; gap: 0.25rem; }
.city-hero__stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}
.city-hero__stat-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

/* ── SERVICES GRID ──────────────────────────────────────── */
.city-services { background: var(--color-bg); }
.city-services__header { margin-bottom: 3.5rem; }
.city-services__h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin: 0.5rem 0 1rem;
  line-height: 1.15;
}
.city-services__intro {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 560px;
}
.city-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.city-service-card {
  background: var(--color-surface);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 280ms var(--ease-out-expo), box-shadow 280ms var(--ease-out-expo), border-color 280ms ease;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.city-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,168,107,0.2);
}
.city-service-card__icon {
  width: 44px; height: 44px;
  background: var(--color-accent-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-accent);
}
.city-service-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.75rem;
}
.city-service-card__body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0 0 1.25rem;
}
.city-service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}
.city-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-accent-dark);
  background: var(--color-accent-dim);
  border: 1px solid rgba(0,168,107,0.2);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}

/* ── WHY LOCAL (dark) ───────────────────────────────────── */
.city-why {
  background: #0A0B0E;
  position: relative;
  overflow: hidden;
}
/* Barely-visible background image — URL injected via JS as --why-bg-url */
.city-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--why-bg-url, none);
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  filter: grayscale(60%) brightness(0.7);
  pointer-events: none;
  z-index: 0;
}
/* Dark gradient overlay on top of the image */
.city-why::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,11,14,0.7) 0%, rgba(10,11,14,0.5) 100%);
  pointer-events: none;
  z-index: 0;
}
/* Make all direct children sit above the pseudo-elements */
.city-why > * {
  position: relative;
  z-index: 1;
}
.city-why__h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0.5rem 0 1rem;
}
.city-why__intro {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 0 3.5rem;
}
.city-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.city-why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background 280ms ease, border-color 280ms ease, transform 280ms var(--ease-out-expo);
}
.city-why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(0,168,107,0.25);
  transform: translateY(-3px);
}
.city-why-card__num {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  display: block;
}
.city-why-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
}
.city-why-card__body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* ── AREAS SERVED ───────────────────────────────────────── */
.city-areas { background: var(--color-bg-alt); }
.city-areas__h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin: 0.5rem 0 1rem;
}
.city-areas__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-muted);
  margin: 0 0 2.5rem;
  max-width: 500px;
  line-height: 1.7;
}
.city-areas__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.city-area-pill {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-surface);
  border: var(--border-subtle);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
  cursor: default;
}
.city-area-pill:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
}
.city-area-pill--highlight {
  background: var(--color-accent-dim);
  border-color: rgba(0,168,107,0.25);
  color: var(--color-accent-dark);
  font-weight: 600;
}

/* ── PRICING ────────────────────────────────────────────── */
.city-pricing { background: var(--color-bg); }
.city-pricing__h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin: 0.5rem 0 1rem;
}
.city-pricing__sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin: 0 0 3.5rem;
}
.city-pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  /* Stretch so all cards share the same height */
  align-items: stretch;
}
.city-price-card {
  background: var(--color-surface);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 280ms var(--ease-out-expo), box-shadow 280ms ease;
}
.city-price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.city-price-card--featured {
  border-color: rgba(0,168,107,0.3);
  box-shadow: 0 0 0 2px rgba(0,168,107,0.12), var(--shadow-md);
  transform: translateY(-6px);
}
.city-price-card--featured:hover { transform: translateY(-10px); }
.city-price-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.city-price-card__tier {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}
.city-price-card__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 0.25rem;
}
.city-price-card__tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0 0 1.5rem;
}
.city-price-card__price {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.city-price-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
}
.city-price-card__features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.city-price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.city-price-card__features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7.5' stroke='%2300A86B' stroke-opacity='0.3'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%2300A86B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 1px;
}
.city-price-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Pushes CTA to bottom of card regardless of feature list length */
  margin-top: auto;
  padding: 0.9rem 1.5rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 250ms ease, color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
}
.city-price-card__cta--outline {
  background: transparent;
  border: var(--border-subtle);
  color: var(--color-text);
}
.city-price-card__cta--outline:hover { background: var(--color-bg-alt); transform: translateY(-1px); }
.city-price-card__cta--filled {
  background: var(--color-accent);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(0,168,107,0.25);
}
.city-price-card__cta--filled:hover { background: var(--color-accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,168,107,0.3); }

/* ── PROCESS ────────────────────────────────────────────── */
.city-process { background: var(--color-bg-alt); }
.city-process__h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin: 0.5rem 0 1rem;
}
.city-process__sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin: 0 0 3.5rem;
}
/* Process steps use flexbox so orphaned last-row cards centre automatically */
.city-process__steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  position: relative;
}
.city-process__step {
  /* 1/5 of row on desktop → 5 cards in row 1, 2 orphans naturally centre */
  flex: 0 0 calc(20% - 0px);
  min-width: 180px;
  padding: 2rem 1.75rem;
  border-left: 1px solid var(--border-subtle);
  position: relative;
  transition: background 250ms ease;
  text-align: left;
}
.city-process__step:first-child { border-left: none; }
.city-process__step:hover { background: rgba(255,255,255,0.6); border-radius: var(--radius-md); }
.city-process__step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}
.city-process__step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.5rem;
}
.city-process__step-body {
  font-family: var(--font-body);
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0;
}

/* ── FAQ — Glassmorphism faq2 (mirrors homepage FAQ) ───────── */
/* The old .city-faq__* styles are replaced entirely by the faq2 system */

/* faq2 section wrapper — reused from home.css */
.faq2 {
  background: var(--color-bg);
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}

.faq2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.faq2::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -8%;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse at 60% 40%, rgba(0,168,107,0.07) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.faq2__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: clamp(3.5rem, 6vw, 8rem);
  align-items: start;
}

.faq2__header {
  position: sticky;
  top: 7rem;
}

.faq2__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.faq2__eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.faq2__heading {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.97;
  color: var(--color-text);
  margin-bottom: 1.75rem;
}

.faq2__heading em {
  font-style: italic;
  font-weight: 300;
  color: rgba(0,0,0,0.28);
}

.faq2__sub {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--color-text-muted);
  max-width: 28ch;
  margin-bottom: 2.5rem;
}

.faq2__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.125rem;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.faq2__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0,168,107,0.18);
  flex-shrink: 0;
  animation: faq-pulse 2.4s ease infinite;
}

@keyframes faq-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0,168,107,0.18); }
  50%       { box-shadow: 0 0 0 5px rgba(0,168,107,0.08); }
}

.faq2__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq2__item {
  position: relative;
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-xl);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
}

.faq2__item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 550ms var(--ease-out-expo),
              transform 550ms var(--ease-out-expo),
              border-color 250ms ease,
              box-shadow 300ms ease,
              background 250ms ease;
}

.faq2__item:hover:not(.open) {
  border-color: rgba(0,0,0,0.13);
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.85);
}

.faq2__item.open {
  border-color: rgba(0,168,107,0.22);
  box-shadow: 0 16px 48px rgba(0,168,107,0.1), var(--shadow-md);
  background: #fff;
}

.faq2__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-accent), var(--color-accent-dark));
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 380ms var(--ease-out-expo);
  z-index: 2;
}

.faq2__item.open::before {
  transform: scaleY(1);
}

.faq2__item-num-bg {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 7.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(0,0,0,0.035);
  pointer-events: none;
  user-select: none;
  transition: color 300ms ease;
  z-index: 0;
}

.faq2__item.open .faq2__item-num-bg {
  color: rgba(0,168,107,0.055);
}

.faq2__question {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.125rem;
  padding: 1.5rem 1.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq2__question:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
  border-radius: var(--radius-xl);
}

.faq2__num {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: rgba(0,0,0,0.18);
  flex-shrink: 0;
  min-width: 1.75rem;
  transition: color 250ms ease;
}

.faq2__item.open .faq2__num {
  color: var(--color-accent);
}

.faq2__q-text {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.32;
}

.faq2__chevron {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.3);
  transition: background 250ms ease,
              border-color 250ms ease,
              transform 380ms var(--ease-out-expo),
              color 250ms ease;
}

.faq2__item:hover:not(.open) .faq2__chevron {
  background: rgba(0,0,0,0.08);
}

.faq2__item.open .faq2__chevron {
  background: var(--color-accent-dim);
  border-color: rgba(0,168,107,0.22);
  transform: rotate(180deg);
  color: var(--color-accent-dark);
}

.faq2__answer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 380ms var(--ease-out-expo);
}

.faq2__item.open .faq2__answer {
  grid-template-rows: 1fr;
}

.faq2__answer-inner {
  overflow: hidden;
}

.faq2__answer-body {
  padding: 0 1.75rem 1.625rem 4.125rem;
  border-top: 1px solid rgba(0,0,0,0.055);
  padding-top: 1.125rem;
}

.faq2__a-text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.78;
  color: var(--color-text-muted);
}

/* ── BOTTOM CTA ─────────────────────────────────────────── */
.city-bottom-cta {
  background: #050507;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 5vw, 2rem);
}
.city-bottom-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.city-bottom-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,168,107,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.city-bottom-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.city-bottom-cta__h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 1.25rem;
}
.city-bottom-cta__sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin: 0 0 2.5rem;
}
.city-bottom-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */

/* --- Tablet (≤ 960px) --- */
@media (max-width: 960px) {
  /* faq2 stacks */
  .faq2__inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .faq2__header { position: static; }
  .faq2__heading { font-size: clamp(2.5rem, 7vw, 3.5rem); }

  /* Process: 3 across on tablet */
  .city-process__step {
    flex: 0 0 calc(33.333% - 0px);
  }
  .city-process__step:nth-child(3n + 1) { border-left: none; }
}

/* --- Mobile (≤ 768px) --- */
@media (max-width: 768px) {
  /* Process: 2 across */
  .city-process__step {
    flex: 0 0 50%;
    border-left: none;
    border-top: 1px solid var(--border-subtle);
  }
  .city-process__step:nth-child(1),
  .city-process__step:nth-child(2) { border-top: none; }

  /* Hero stats tighter */
  .city-hero__stats { gap: 1.5rem; }

  /* Pricing: full width */
  .city-pricing__grid { grid-template-columns: 1fr; }
  .city-price-card--featured { transform: none; }
  .city-price-card--featured:hover { transform: translateY(-4px); }
}

/* ── SERVICE CARD LINK ───────────────────────────────────── */
.city-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  margin-top: auto;
  padding-top: 1rem;
  transition: gap 200ms ease;
}
.city-service-card__link:hover { gap: 0.65rem; }

/* ── BREADCRUMB — pill inside hero ──────────────────────── */
.city-breadcrumb {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.25rem;
}
.city-breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.city-breadcrumb__list li { display: flex; align-items: center; }
.city-breadcrumb__list [aria-hidden="true"] {
  color: rgba(255,255,255,0.25);
  font-size: 0.65rem;
  line-height: 1;
}
.city-breadcrumb a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 150ms ease;
}
.city-breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.city-breadcrumb [aria-current="page"] {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

/* ── WHAT'S INCLUDED ─────────────────────────────────────── */
.city-includes {
  background: var(--color-bg); /* #FAFAF8 */
}
.city-includes__h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin: 0.5rem 0 1rem;
}
.city-includes__body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 0 3rem;
}
.city-includes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}
.city-includes__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-surface);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.city-includes__item:hover {
  border-color: rgba(0,168,107,0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.city-includes__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* ── BRANDS STRIP — dark section ─────────────────────────── */
.city-brands-strip {
  background: #111214;
  overflow: hidden;
}
.city-brands-strip__h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0.5rem 0 0.75rem;
}
.city-brands-strip__sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.42);
  max-width: 480px;
  margin: 0 0 2.5rem;
}
.city-brands-strip__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.city-brands-strip .city-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.city-brands-strip .city-tag:hover {
  background: rgba(0,168,107,0.15);
  border-color: rgba(0,168,107,0.35);
  color: #fff;
}

/* ── OTHER SERVICES ──────────────────────────────────────── */
.city-other-services {
  background: var(--color-bg-alt); /* #EEECEA */
}
.city-other-services__h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin: 0.5rem 0 2.5rem;
}
.city-other-services__links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.75rem;
}
.city-other-services__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--color-surface);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  transition: border-color 220ms ease, transform 220ms var(--ease-out-expo), box-shadow 220ms ease;
}
.city-other-services__link::after {
  content: '→';
  font-size: 0.9rem;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 200ms ease;
}
.city-other-services__link:hover {
  border-color: rgba(0,168,107,0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}
.city-other-services__link:hover::after {
  transform: translateX(3px);
}

/* --- Small mobile (≤ 480px) --- */
@media (max-width: 480px) {
  /* Process: single column */
  .city-process__step {
    flex: 0 0 100%;
    border-top: 1px solid var(--border-subtle);
    border-left: none;
  }
  .city-process__step:first-child { border-top: none; }

  /* Hero stats */
  .city-hero__stats { gap: 1.25rem; }

  /* faq2 */
  .faq2__question { padding: 1.25rem 1.375rem; }
  .faq2__answer-body { padding: 0.875rem 1.375rem 1.25rem 1.375rem; }
  .faq2__item-num-bg { font-size: 5rem; }
}
