/* Super Nice — Shared Stylesheet
   Edit this one file to update fonts, colours, and layout across all SEO pages.
   ─────────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cabinet+Grotesk:wght@400;500;700;800&family=Satoshi:wght@400;500;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0d0d0d;
  --white: #ffffff;
  --off: #f7f7f5;
  --mid: #e8e8e4;
  --muted: #888880;
  --accent: #0066ff;
  --accent-soft: rgba(0,102,255,0.08);
  --heading: 'Cabinet Grotesk', system-ui, sans-serif;
  --body: 'Satoshi', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; height: 64px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--mid);
  z-index: 100;
  display: flex; align-items: center;
  padding: 0 2.5rem;
  justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--heading); font-weight: 800;
  font-size: 1.125rem; letter-spacing: -0.02em;
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--black); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.8rem; font-weight: 800;
}
.nav-links { display: flex; gap: 2.25rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--muted); transition: color 0.15s; }
.nav-links a:hover { color: var(--black); }
.book-btn {
  background: var(--accent); color: white;
  padding: 0.5rem 1.25rem; border-radius: 6px;
  font-weight: 600; font-size: 0.875rem;
  border: none; font-family: var(--body);
  transition: opacity 0.15s;
}
.book-btn:hover { opacity: 0.88; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; }

/* ── Layout ── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; }
section { padding: 6rem 0; }
.hr { border: none; border-top: 1px solid var(--mid); }

/* ── Hero ── */
#hero { padding-top: 10rem; padding-bottom: 6rem; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft);
  border: 1px solid rgba(0,102,255,0.18);
  padding: 0.3rem 0.875rem; border-radius: 100px; margin-bottom: 1.75rem;
}
h1 {
  font-family: var(--heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800; line-height: 1.04;
  letter-spacing: -0.035em; max-width: 16ch; margin-bottom: 1.5rem;
}
h1 .soft { color: var(--muted); font-weight: 400; }
.hero-body {
  font-size: 1.125rem; color: var(--muted);
  max-width: 48ch; line-height: 1.75; margin-bottom: 2.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.725rem 1.5rem; border-radius: 7px;
  font-size: 0.9rem; font-weight: 600; font-family: var(--body);
  transition: all 0.15s; border: none;
}
.btn-primary { background: var(--black); color: white; }
.btn-primary:hover { background: #1a1a1a; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--black); border: 1.5px solid var(--mid); }
.btn-ghost:hover { border-color: var(--black); }
.btn-blue { background: var(--accent); color: white; }
.btn-blue:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-row { display: flex; gap: 0.875rem; flex-wrap: wrap; align-items: center; }

/* ── Typography ── */
h2 {
  font-family: var(--heading);
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: 800; line-height: 1.07;
  letter-spacing: -0.03em; margin-bottom: 0.875rem;
}
h2 .soft { color: var(--muted); font-weight: 400; }
.sub { font-size: 1rem; color: var(--muted); max-width: 52ch; line-height: 1.7; margin-bottom: 3rem; }
.label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1rem; display: block;
}

/* ── Breadcrumb ── */
.breadcrumb { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--accent); font-weight: 500; }
.breadcrumb span { margin: 0 0.4rem; }

/* ── Industry Intro ── */
.industry-intro { background: var(--off); border: 1px solid var(--mid); border-radius: 14px; padding: 3rem; }
.industry-intro p { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 0.875rem; }
.industry-intro p:last-child { margin-bottom: 0; }

/* ── Pain Points ── */
.pain-grid { display: flex; flex-direction: column; gap: 1rem; }
.pain-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem; border: 1px solid var(--mid); border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}
.pain-item:hover { background: var(--off); border-color: rgba(0,102,255,0.2); }
.pain-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.pain-item strong {
  display: block; font-family: var(--heading);
  font-size: 0.9375rem; font-weight: 700;
  margin-bottom: 0.3rem; letter-spacing: -0.01em;
}
.pain-item p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ── Why Grid ── */
.why {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1px; background: var(--mid);
  border: 1px solid var(--mid); border-radius: 12px; overflow: hidden;
}
.why-item { padding: 2.25rem; background: var(--white); transition: background 0.2s; }
.why-item:hover { background: var(--off); }
.why-icon {
  width: 36px; height: 36px;
  background: var(--accent-soft); border: 1px solid rgba(0,102,255,0.15);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; margin-bottom: 1rem;
}
.why-item h3 { font-family: var(--heading); font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.why-item p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ── Stats ── */
.stats { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--mid); border-bottom: 1px solid var(--mid); }
.stat { text-align: center; padding: 3rem 1rem; border-right: 1px solid var(--mid); }
.stat:last-child { border-right: none; }
.stat-n { font-family: var(--heading); font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: 0.4rem; letter-spacing: -0.04em; }
.stat-l { font-size: 0.875rem; color: var(--muted); }

/* ── FAQ ── */
.faq { display: flex; flex-direction: column; }
.faq-item { padding: 1.75rem 0; border-bottom: 1px solid var(--mid); }
.faq-item:first-child { border-top: 1px solid var(--mid); }
.faq-item h3 { font-family: var(--heading); font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.faq-item p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

/* ── CTA Box ── */
.cta-box {
  background: var(--off); border: 1px solid var(--mid);
  border-radius: 14px; padding: 4rem;
  text-align: center; margin-bottom: 6rem;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: -60px; left: 50%;
  transform: translateX(-50%); width: 400px; height: 240px;
  background: radial-gradient(ellipse, rgba(0,102,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 { margin-bottom: 0.75rem; position: relative; }
.cta-box p { color: var(--muted); margin-bottom: 2rem; max-width: 40ch; margin-left: auto; margin-right: auto; position: relative; }

/* ── Testimonial ── */
.testi { background: var(--black); color: white; padding: 5rem 2.5rem; text-align: center; }
.testi-inner { max-width: 600px; margin: 0 auto; }
.testi-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 1.5rem; }
.testi-q { font-family: var(--heading); font-size: clamp(1.375rem,2.2vw,1.875rem); font-weight: 700; line-height: 1.35; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.testi-by { font-size: 0.8125rem; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; text-transform: uppercase; }

/* ── Footer ── */
footer { border-top: 1px solid var(--mid); padding: 2rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
footer p { font-size: 0.8rem; color: var(--muted); }
.badges { display: flex; gap: 0.625rem; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.75rem; border: 1px solid var(--mid);
  border-radius: 6px; font-size: 0.72rem; color: var(--muted); font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: white; padding: 1.5rem 2.5rem 2rem;
    border-bottom: 1px solid var(--mid); gap: 1.25rem; align-items: flex-start;
  }
  .why { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--mid); }
  .stat:last-child { border-bottom: none; }
  .cta-box { padding: 2.5rem 1.5rem; }
}
@media (max-width: 560px) {
  h1 { font-size: 2.5rem; }
  .wrap { padding: 0 1.25rem; }
  section { padding: 4rem 0; }
  .industry-intro { padding: 2rem; }
}

/* ── Related Links ── */
.related { border-top: 1px solid var(--mid); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.related-link {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--mid); border-radius: 10px;
  font-size: 0.875rem; font-weight: 600; color: var(--black);
  background: var(--white);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.related-link:hover { background: var(--off); border-color: rgba(0,102,255,0.3); transform: translateY(-1px); }
.related-link .arr { color: var(--accent); flex-shrink: 0; font-weight: 700; }
@media (max-width: 880px) { .related-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .related-grid { grid-template-columns: 1fr; } }

