/* ========== SHARED STYLES — Slyder Consulting Group ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg-deep: #0a1419;
  --bg-mid: #0f1f26;
  --bg-elev: #152a33;
  --accent: #00ff88;
  --accent-dim: #0b6316;
  --accent-glow: rgba(0, 255, 136, 0.4);
  --teal: #06b6d4;
  --text: #e8eef2;
  --text-mute: #8a9ba5;
  --text-faint: #5a6b75;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-deep); color: var(--text); line-height: 1.6;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); padding: 6px 12px;
  background: rgba(0, 255, 136, 0.08); border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 100px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 8px; font-weight: 600; font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary {
  background: var(--accent); color: #001a0d;
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--accent-glow); }
.btn-ghost { border: 1px solid var(--border-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn svg { width: 16px; height: 16px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0; backdrop-filter: blur(20px);
  background: rgba(10, 20, 25, 0.85); border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; letter-spacing: -0.02em; }
.logo-mark {
  width: 32px; height: 32px; flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0, 255, 136, 0.25));
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.logo:hover .logo-mark {
  transform: translateY(-1px) rotate(2deg);
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--text-mute); transition: color 0.2s; font-weight: 500; }
.nav-links a:hover { color: var(--text); }
.nav-cta { padding: 10px 18px !important; font-size: 14px !important; }
@media (max-width: 860px) { .nav-links a:not(.nav-cta) { display: none; } }

/* PAGE HERO */
.page-hero {
  position: relative; padding: 160px 0 80px;
  background: linear-gradient(180deg, var(--bg-mid), var(--bg-deep));
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100%;
  background: radial-gradient(ellipse at 30% 20%, rgba(0, 255, 136, 0.1), transparent 50%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-faint);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-mute); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb svg { width: 12px; height: 12px; }

.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px); font-weight: 800; line-height: 1.08;
  letter-spacing: -0.03em; margin: 16px 0 20px; max-width: 880px;
}
.page-hero h1 .grad {
  background: linear-gradient(135deg, var(--accent), var(--teal));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero p.lead {
  font-size: clamp(16px, 1.4vw, 19px); color: var(--text-mute);
  max-width: 720px; margin-bottom: 28px;
}
.page-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* GENERIC CONTENT SECTIONS */
section.content { padding: 80px 0; }
section.content.alt { background: var(--bg-mid); }
section.content h2 {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
section.content h3 {
  font-size: clamp(20px, 2vw, 24px); font-weight: 700; margin: 32px 0 12px;
}
section.content p {
  color: var(--text-mute); margin-bottom: 16px; font-size: 16px;
}
section.content ul { margin: 16px 0 24px 0; list-style: none; }
section.content ul li {
  position: relative; padding: 8px 0 8px 28px; color: var(--text); font-size: 15px;
}
section.content ul li::before {
  content: ''; position: absolute; left: 0; top: 14px; width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300ff88' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: contain;
}
section.content strong { color: var(--text); font-weight: 600; }
section.content a { color: var(--accent); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
section.content a:hover { border-bottom-color: var(--accent); }

/* TWO-COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

/* INDUSTRY GRID */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
@media (max-width: 860px) { .industry-grid { grid-template-columns: 1fr 1fr; } }
.industry-card {
  padding: 20px; border: 1px solid var(--border); border-radius: 12px;
  background: rgba(255,255,255,0.02); transition: transform 0.2s, border-color 0.2s;
}
.industry-card:hover { transform: translateY(-2px); border-color: var(--border-strong); }
.industry-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.industry-card p { font-size: 13px; color: var(--text-mute); margin: 0; }

/* CALLOUT */
.callout {
  padding: 28px 32px; border-radius: 16px; border-left: 4px solid var(--accent);
  background: rgba(0, 255, 136, 0.06); margin: 32px 0;
}
.callout p { color: var(--text); margin: 0; font-size: 16px; }
.callout p:not(:last-child) { margin-bottom: 12px; }

/* FAQ */
.faq-list { max-width: 800px; margin: 32px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  width: 100%; text-align: left; font-size: 16px; font-weight: 600;
  padding: 8px 0; transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q .plus { width: 24px; height: 24px; position: relative; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: var(--accent); transition: transform 0.3s;
}
.faq-q .plus::before { width: 14px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 14px; }
.faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; color: var(--text-mute); font-size: 15px; }
.faq-item.open .faq-a { max-height: 300px; padding-top: 12px; }

/* CTA STRIP */
.cta-strip {
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-elev), var(--bg-mid));
  border-top: 1px solid var(--border);
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.1), transparent 60%);
}
.cta-strip-inner { position: relative; z-index: 1; }
.cta-strip h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; margin-bottom: 16px; }
.cta-strip p { color: var(--text-mute); margin-bottom: 24px; }
.cta-strip-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer { padding: 60px 0 30px; background: var(--bg-deep); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand p { color: var(--text-mute); font-size: 14px; margin-top: 16px; max-width: 320px; }
.footer-col h5 { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-mute); font-size: 14px; padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--text-faint);
}

/* SKIP LINK */
.skip-link {
  position: absolute; top: -100px; left: 16px; background: var(--accent); color: #001a0d;
  padding: 8px 16px; border-radius: 6px; font-weight: 600; z-index: 200;
}
.skip-link:focus { top: 16px; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s, transform 0.7s; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ANIMATED CITY HERO GRAPHIC (city pages) */
.city-graphic {
  position: relative; aspect-ratio: 1.4; max-width: 480px; width: 100%;
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-elev), var(--bg-mid));
  border: 1px solid var(--border);
}
.city-graphic svg { width: 100%; height: 100%; }

/* PRICING SNIPPET (used on city pages) */
.tier-snippet {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0;
}
@media (max-width: 700px) { .tier-snippet { grid-template-columns: 1fr; } }
.tier-snippet-card {
  padding: 24px; border: 1px solid var(--border); border-radius: 14px;
  background: var(--bg-elev);
}
.tier-snippet-card.featured { border-color: var(--accent); }
.tier-name { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute); }
.tier-snippet-card.featured .tier-name { color: var(--accent); }
.tier-price { font-size: 36px; font-weight: 800; margin: 8px 0; }
.tier-price small { font-size: 13px; color: var(--text-mute); font-weight: 500; }
.tier-snippet-card p { font-size: 14px; color: var(--text-mute); margin: 0; }

/* ========== SCROLL PROGRESS BAR ========== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  z-index: 101; width: 0%;
  box-shadow: 0 0 12px var(--accent-glow);
  transition: width 0.05s linear;
}

/* ========== AMBIENT FLOATING PARTICLES ========== */
.ambient-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.ambient-particles span {
  position: absolute; display: block;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  opacity: 0;
  animation: float-particle 10s linear infinite;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.5; }
  50% { opacity: 0.7; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-20vh) translateX(40px); opacity: 0; }
}

/* ========== SECTION MESH (subtle gradient blobs) ========== */
.section-mesh {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  opacity: 0.35; z-index: 0;
}
.section-mesh::before, .section-mesh::after {
  content: ''; position: absolute; border-radius: 50%;
  filter: blur(80px); will-change: transform;
}
.section-mesh::before {
  width: 500px; height: 500px; top: -150px; left: -80px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.16), transparent 70%);
  animation: float-mesh-1 26s ease-in-out infinite alternate;
}
.section-mesh::after {
  width: 450px; height: 450px; bottom: -120px; right: -80px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.13), transparent 70%);
  animation: float-mesh-2 32s ease-in-out infinite alternate;
}
@keyframes float-mesh-1 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 60px); }
}
@keyframes float-mesh-2 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-80px, -50px); }
}

/* ========== PAGE HERO ENTRY ========== */
.page-hero {
  position: relative; overflow: hidden;
}
.page-hero .breadcrumb,
.page-hero .eyebrow,
.page-hero h1,
.page-hero p.lead,
.page-hero .page-hero-ctas {
  position: relative; z-index: 2;
}

/* Ensure content stays above mesh inside any section */
section > .container { position: relative; z-index: 1; }

/* ========== SECTION CONTENT ENTRY ========== */
section.content { position: relative; overflow: hidden; }
section.content > .container { position: relative; z-index: 1; }

/* ========== INDUSTRY-CARD HOVER LIFT ========== */
.industry-card {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s, box-shadow 0.3s;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 255, 136, 0.05);
}

/* ========== FAQ CHEVRON SMOOTHER ========== */
.faq-q .plus { transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); }
.faq-item.open .faq-q .plus { transform: rotate(135deg); }

/* ========== REVEAL STAGGER FOR INDUSTRY GRIDS ========== */
.industry-grid .industry-card {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.industry-grid.in .industry-card { opacity: 1; transform: translateY(0); }
.industry-grid.in .industry-card:nth-child(1) { transition-delay: 0.0s; }
.industry-grid.in .industry-card:nth-child(2) { transition-delay: 0.08s; }
.industry-grid.in .industry-card:nth-child(3) { transition-delay: 0.16s; }
.industry-grid.in .industry-card:nth-child(4) { transition-delay: 0.24s; }
.industry-grid.in .industry-card:nth-child(5) { transition-delay: 0.32s; }
.industry-grid.in .industry-card:nth-child(6) { transition-delay: 0.4s; }

/* ========== CALLOUT SLIDE-IN ========== */
.callout {
  position: relative;
  opacity: 0; transform: translateX(-12px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.callout.in { opacity: 1; transform: translateX(0); }

/* ========== CITY-GRAPHIC SUBTLE HOVER ========== */
.city-graphic {
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.city-graphic:hover { transform: scale(1.02); }

/* ========== MAGNETIC BUTTONS ========== */
.btn-magnetic { transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1); }
