/* vertical.css — Shared styles for /for-gyms, /for-realtors, /for-restaurants */
/* Does NOT own: theme tokens, nav, footer, samples grid, pricing page */

/* VERTICAL HERO */
.v-hero {
  border-bottom: 1px solid var(--border);
}
.v-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 64px;
}
.v-hero-inner .hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 28px;
}
.v-hero-inner .hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.v-hero-inner .hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 44px;
}
.v-hero-inner .hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
}
.v-hero-inner .hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* PAIN SECTION */
.v-pain {
  border-bottom: 1px solid var(--border);
}
.v-pain-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}
.v-pain-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 56px;
  margin-top: 12px;
}
.v-pain-inner h2 em {
  font-style: normal;
  color: var(--accent);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.pain-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.pain-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.pain-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* TESTIMONIAL */
.v-testimonial {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.v-testimonial-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.v-quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  line-height: 1.6;
  color: var(--fg);
  font-style: normal;
  margin-bottom: 24px;
  quotes: "\201C""\201D";
}
.v-quote::before { content: open-quote; }
.v-quote::after { content: close-quote; }
.v-cite {
  font-size: 14px;
  color: var(--fg-muted);
  font-style: normal;
}

/* FAQ */
.v-faq {
  border-bottom: 1px solid var(--border);
}
.v-faq-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 24px;
}
.faq-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 40px;
}
.faq-accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-row {
  border-bottom: 1px solid var(--border);
}
.faq-row:last-child { border-bottom: none; }
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--fg);
}
.faq-trigger:hover { background: var(--surface); }
.faq-q {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}
.faq-icon {
  flex-shrink: 0;
  color: var(--fg-muted);
  transition: transform 0.2s;
}
.faq-answer {
  padding: 0 24px 20px;
  background: var(--surface);
}
.faq-answer p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* CLOSING CTA */
.v-cta {
  background: var(--accent);
}
.v-cta-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.v-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}
.v-cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.v-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.v-cta-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.v-cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.v-cta-btn--primary {
  background: #fff;
  color: var(--accent);
}
.v-cta-btn--secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}

/* INDUSTRIES WE SERVE — homepage section */
.industries {
  border-bottom: 1px solid var(--border);
}
.industries-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px;
}
.industries-header {
  margin-bottom: 40px;
}
.industries h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
}
.industries h2 em {
  font-style: normal;
  color: var(--accent);
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-decoration: none;
  color: var(--fg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.15s;
}
.industry-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.industry-icon {
  font-size: 32px;
}
.industry-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.industry-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  flex: 1;
}
.industry-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 4px;
}

/* SAMPLES GRID — override for 3-col on verticals */
.samples-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .v-hero-inner { padding: 56px 20px 48px; }
  .v-hero-inner .hero-stats { flex-wrap: wrap; gap: 16px; }
  .pain-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; gap: 12px; }
  .samples-grid--3 { grid-template-columns: 1fr; }
  .v-cta-btns { flex-direction: column; }
  .v-cta-btn { width: 100%; text-align: center; }
  .v-faq-inner { padding: 56px 20px; }
  .v-testimonial-inner { padding: 56px 20px; }
  .v-pain-inner { padding: 56px 20px; }
  .v-cta-inner { padding: 56px 20px; }
  .industries-inner { padding: 56px 20px; }
}
