/* ========================================
   ZONE DETAIL PAGE STYLES — v2
   Matches new design system (Space Grotesk + Inter)
   ======================================== */

/* Zone Hero */
.zone-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  color: white;
  padding: 8rem 1.25rem 3rem;
  position: relative;
  overflow: hidden;
}
.zone-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(244, 180, 0, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.zone-hero .container { position: relative; z-index: 2; }
.zone-hero .breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.5);
}
.zone-hero .breadcrumb a {
  color: #F4B400;
  text-decoration: none;
}
.zone-hero .breadcrumb a:hover { text-decoration: underline; }
.zone-hero .breadcrumb span { color: rgba(255,255,255,0.7); }
.zone-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.zone-hero .hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  line-height: 1.7;
}

/* Zone Content Layout */
.zone-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  margin-top: 0;
}
.zone-main { min-width: 0; }
.zone-main h2 {
  font-family: 'Space Grotesk', sans-serif;
  color: #1a1a1a;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}
.zone-main h2:first-child { margin-top: 0; }
.zone-main p {
  color: #6b6560;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Services Local Grid */
.services-local-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}
.service-local-card {
  background: #fff;
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}
.service-local-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #F4B400, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-local-card:hover {
  border-color: rgba(244, 180, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}
.service-local-card:hover::before { transform: scaleX(1); }
.service-local-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: #1a1a1a;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.service-local-card p {
  font-size: 0.92rem;
  color: #6b6560;
  flex-grow: 1;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.service-local-card .btn {
  align-self: flex-start;
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
}

/* Neighborhoods Grid */
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.neighborhood {
  background: #fff;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  font-family: 'Space Grotesk', sans-serif;
}
.neighborhood:hover {
  border-color: #F4B400;
  background: rgba(244, 180, 0, 0.04);
  color: #F4B400;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(244, 180, 0, 0.08);
}

/* Advantages List */
.advantages-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.advantages-list li {
  padding: 1rem 1.25rem;
  margin-bottom: 0.5rem;
  background: #f8f7f5;
  border-radius: 8px;
  border-left: 3px solid #F4B400;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b6560;
  transition: transform 0.3s ease;
}
.advantages-list li:hover {
  transform: translateX(5px);
}
.advantages-list li strong {
  color: #1a1a1a;
}

/* Process Zone */
.process-zone {
  margin: 2rem 0;
}
.process-step-zone {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  align-items: flex-start;
}
.process-step-zone:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #1a1a1a;
  color: #F4B400;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}
.step-content-zone h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: #1a1a1a;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.step-content-zone p {
  margin: 0;
  color: #6b6560;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FAQ Local */
.faq-local {
  margin: 2rem 0;
}
.faq-item-local {
  background: #fff;
  padding: 1.5rem;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  border: 1px solid #eee;
  border-left: 3px solid #F4B400;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.faq-item-local:hover {
  border-color: rgba(244, 180, 0, 0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.faq-item-local h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: #1a1a1a;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.faq-item-local p {
  color: #6b6560;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
.faq-item-local a {
  color: #F4B400;
  text-decoration: underline;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 1rem;
  font-size: 0.92rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.pricing-table thead th {
  background: #1a1a1a;
  color: #F4B400;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}
.pricing-table tbody td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid #eee;
  color: #6b6560;
  line-height: 1.5;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.pricing-table tbody tr:hover {
  background: rgba(244, 180, 0, 0.04);
}
.pricing-table tbody td strong {
  color: #1a1a1a;
}
@media (max-width: 768px) {
  .pricing-table {
    font-size: 0.82rem;
  }
  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 0.7rem 0.75rem;
  }
}

/* Zone Sidebar */
.zone-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar-card {
  background: #fff;
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.sidebar-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.cta-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  color: white;
  text-align: center;
  position: sticky;
  top: 100px;
  border: none;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(244, 180, 0, 0.06) 1px, transparent 1px);
  background-size: 20px 20px;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h3 { color: #F4B400; }
.cta-card p { color: rgba(255,255,255,0.6); }
.cta-card .btn {
  width: 100%;
  margin-bottom: 0.75rem;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-links li {
  border-bottom: 1px solid #eee;
}
.sidebar-links li:last-child {
  border-bottom: none;
}
.sidebar-links a {
  display: block;
  padding: 0.75rem 0;
  color: #6b6560;
  font-size: 0.92rem;
  transition: all 0.3s ease;
}
.sidebar-links a:hover {
  color: #F4B400;
  padding-left: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
  .zone-content {
    grid-template-columns: 1fr;
  }
  .zone-sidebar {
    order: -1;
  }
  .cta-card {
    position: static;
  }
  .services-local-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .zone-hero {
    padding: 7rem 1.25rem 2rem;
  }
  .zone-hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }
  .process-step-zone {
    flex-direction: column;
    text-align: center;
  }
  .step-number {
    margin: 0 auto;
  }
  .neighborhoods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
