/* ============================================================
   vertical.css — Styles for vertical landing pages
   (/restaurants, /barbershops, /home-services)
   ============================================================ */

/* === VERTICAL HERO === */
.vertical-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
  overflow: hidden;
  text-align: center;
}

.vertical-hero-inner {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.vertical-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.vertical-hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.vertical-hero .lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto 36px;
}

.vertical-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.vertical-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  pointer-events: none;
  z-index: 1;
}

/* === NEIGHBORHOODS STRIP === */
.neighborhoods {
  padding: 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: var(--bg-surface);
}

.neighborhoods-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  flex-wrap: wrap;
}

.neighborhoods-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  white-space: nowrap;
  opacity: 0.7;
}

.neighborhoods-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.neighborhood-tag {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* === SAMPLE POSTS SECTION === */
.sample-posts {
  padding: 80px 24px 100px;
}

.sample-posts-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 48px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.post-card {
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.post-card:hover {
  border-color: rgba(245, 166, 35, 0.2);
  transform: translateY(-2px);
}

.post-card-header {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.post-platform {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.post-theme-icon {
  font-size: 1.1rem;
  opacity: 0.6;
}

.post-card-body {
  padding: 20px 18px;
  flex: 1;
}

.post-caption {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--fg);
  margin-bottom: 16px;
}

.post-hashtags {
  font-size: 0.78rem;
  color: var(--fg-muted);
  opacity: 0.7;
  line-height: 1.6;
}

.post-card-footer {
  padding: 12px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  gap: 16px;
}

.post-stat {
  font-size: 0.78rem;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* === VERTICAL PRICING === */
.vertical-pricing {
  padding: 80px 24px 100px;
  background: var(--bg-surface);
}

.vertical-pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* === SOCIAL PROOF / TESTIMONIALS === */
.testimonials {
  padding: 80px 24px 100px;
}

.testimonials-inner {
  max-width: 960px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-quote::before {
  content: '"';
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  left: 28px;
  line-height: 1;
}

.testimonial-business {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.testimonial-type {
  font-size: 0.8rem;
  color: var(--fg-muted);
  opacity: 0.7;
}

/* === VERTICAL FAQ === */
.vertical-faq {
  padding: 80px 24px 100px;
}

.vertical-faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* === CTA STRIP (reused from pages.css) === */
.vertical-cta-strip {
  position: relative;
  padding: 100px 24px;
  text-align: center;
  background: var(--bg-surface);
  overflow: hidden;
}

.vertical-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.vertical-cta-orb {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.vertical-cta-strip h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vertical-cta-strip .cta-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-bottom: 32px;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .posts-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.97);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav--open .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-link--vertical {
    display: block;
  }

  .neighborhoods-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .vertical-hero {
    min-height: 50vh;
    padding-top: 120px;
  }

  .vertical-hero h1 {
    font-size: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .vertical-pricing,
  .sample-posts,
  .testimonials,
  .vertical-faq {
    padding: 60px 16px 80px;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }
}