/* =============================================
   AdSync Local Digital Signage — Production CSS
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #7B5CF0;
  --primary-dark: #6344d4;
  --accent: #9f7ffe;
  --bg: #070b14;
  --bg-alt: #0d1220;
  --card: #111827;
  --text: #e8eaf0;
  --text-muted: #7a8499;
  --border: #1e2535;
  --success: #4ade80;
  --error: #f87171;
  --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* =====================
   ANNOUNCEMENT BAR
   ===================== */
.announce-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  color: white;
  position: relative;
  z-index: 200;
}
.announce-bar a.announce-cta {
  color: white;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 0.5rem;
  white-space: nowrap;
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 5%;
  background: rgba(7, 11, 20, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand { display: flex; align-items: center; }

.nav-logo-img { height: 64px; width: auto; display: block; }

.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}

.nav-links a {
  color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: white; }

.nav-host {
  font-size: 0.8rem !important;
  opacity: 0.7;
}

.btn-nav {
  background: var(--primary) !important; color: white !important;
  padding: 0.55rem 1.25rem; border-radius: 8px; font-weight: 600;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }

.menu-toggle {
  display: none; background: none; border: none;
  color: var(--text); font-size: 1.5rem; cursor: pointer; padding: 0.25rem;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-block; padding: 0.8rem 1.75rem;
  border-radius: 8px; font-weight: 600; font-size: 0.95rem;
  transition: all 0.2s; cursor: pointer; border: none;
  font-family: inherit; text-align: center;
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover {
  background: var(--primary-dark); transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(123,92,240,0.4);
}

.btn-outline { border: 2px solid rgba(255,255,255,0.3); color: white; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn-full { width: 100%; display: block; padding: 1rem; }

.section-cta-center { text-align: center; margin-top: 3rem; }

/* =====================
   HERO
   ===================== */
.hero {
  min-height: calc(100vh - 100px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  padding: 5rem 5% 4rem;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute; top: -300px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(123,92,240,0.12) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.hero-content { z-index: 1; }

.hero-eyebrow {
  display: inline-block;
  background: rgba(123,92,240,0.15);
  border: 1px solid rgba(123,92,240,0.4);
  color: var(--accent); font-size: 0.82rem; font-weight: 600;
  padding: 0.4rem 1.1rem; border-radius: 50px; margin-bottom: 1.5rem;
  letter-spacing: 0.5px; text-transform: uppercase;
}

.hero-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800; line-height: 1.12;
  color: white; margin-bottom: 1.25rem;
}
.hero-headline span { color: var(--accent); }

.hero-sub {
  color: var(--text-muted); margin-bottom: 2.5rem;
  font-size: 1.05rem; max-width: 520px; line-height: 1.75;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }

.hero-microcopy { font-size: 0.82rem; color: var(--text-muted); }

/* Hero Urgency Box */
.hero-urgency {
  background: var(--card);
  border: 1px solid rgba(123,92,240,0.4);
  border-radius: var(--radius);
  padding: 2rem;
  z-index: 1;
  box-shadow: 0 0 40px rgba(123,92,240,0.1);
}

.urgency-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.urgency-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px rgba(74,222,128,0.6);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(74,222,128,0.6); }
  50% { box-shadow: 0 0 16px rgba(74,222,128,0.9); }
}

.urgency-header strong { color: white; font-size: 1rem; }

.urgency-list {
  list-style: none; margin-bottom: 1.5rem;
}
.urgency-list li {
  color: var(--text-muted); font-size: 0.9rem; padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  padding-left: 1.25rem; position: relative;
}
.urgency-list li::before {
  content: '✓'; color: var(--success);
  position: absolute; left: 0;
}
.urgency-list li:last-child { border-bottom: none; }

/* =====================
   STATS BAR
   ===================== */
.stats-bar {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-container {
  max-width: 1100px; margin: 0 auto; padding: 2rem;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0.75rem 3rem; text-align: center;
}

.stat-num { font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-lbl { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.4rem; }

.stat-divider { width: 1px; height: 50px; background: var(--border); }

/* =====================
   SECTIONS
   ===================== */
.section { padding: 6rem 0; }
.section-alt { background: var(--bg-alt); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

.section-label {
  display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
}
.section-label.center { text-align: center; }

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800; color: white; margin-bottom: 2.5rem; line-height: 1.25;
}
.section-heading.center { text-align: center; }

/* =====================
   PROBLEM / SOLUTION
   ===================== */
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  margin-bottom: 1rem;
}

.problem-card {
  border-radius: var(--radius); padding: 2rem;
  border: 1px solid var(--border);
}

.problem-card.bad { background: rgba(248,113,113,0.05); border-color: rgba(248,113,113,0.2); }
.problem-card.good { background: rgba(74,222,128,0.05); border-color: rgba(74,222,128,0.2); }

.problem-icon { font-size: 2rem; margin-bottom: 1rem; }
.problem-card h3 { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.problem-card ul { list-style: none; }
.problem-card ul li {
  color: var(--text-muted); font-size: 0.9rem; padding: 0.5rem 0;
  border-bottom: 1px solid var(--border); padding-left: 1.25rem;
  position: relative;
}
.problem-card ul li:last-child { border-bottom: none; }
.problem-card.bad ul li::before { content: '✗'; color: var(--error); position: absolute; left: 0; }
.problem-card.good ul li::before { content: '✓'; color: var(--success); position: absolute; left: 0; }

/* =====================
   HOW IT WORKS
   ===================== */
.steps-grid {
  display: flex; align-items: flex-start;
  gap: 1.5rem; flex-wrap: wrap;
}

.step-card {
  flex: 1; min-width: 220px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}
.step-card:hover { border-color: var(--primary); transform: translateY(-4px); }

.step-number {
  font-size: 2.5rem; font-weight: 800;
  color: var(--primary); opacity: 0.5; line-height: 1; margin-bottom: 1rem;
}
.step-card h3 { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; }

.step-arrow {
  font-size: 1.5rem; color: var(--border);
  padding-top: 2.5rem; flex-shrink: 0;
}

/* =====================
   SERVICES
   ===================== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
}

.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover { border-color: var(--primary); transform: translateY(-4px); }

.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.02rem; color: white; margin-bottom: 0.75rem; font-weight: 700; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; }

/* =====================
   AUDIENCE
   ===================== */
.audience-grid {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; margin-bottom: 1rem;
}

.audience-tag {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 50px; padding: 0.6rem 1.4rem;
  font-size: 0.9rem; color: var(--text);
  transition: border-color 0.2s, color 0.2s;
  cursor: default;
}
.audience-tag:hover { border-color: var(--primary); color: var(--accent); }

/* =====================
   GALLERY
   ===================== */
.gallery-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--card);
  transition: transform 0.2s, border-color 0.2s;
}
.gallery-card:hover { transform: translateY(-4px); border-color: var(--accent); }

.gallery-card img { width: 100%; height: 280px; object-fit: cover; display: block; }

.gallery-caption { padding: 1.25rem; }

.gallery-tag {
  display: inline-block; background: rgba(159,127,254,0.15);
  border: 1px solid rgba(159,127,254,0.3); color: var(--accent);
  font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem;
  border-radius: 50px; margin-bottom: 0.75rem; letter-spacing: 0.5px;
  text-transform: uppercase;
}

.gallery-caption p { color: var(--text-muted); font-size: 0.9rem; }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-bottom: 3rem;
}
.testimonial-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem 2rem;
}
.testimonial-quote {
  color: white; font-size: 1.05rem; font-style: italic; line-height: 1.7;
  margin-bottom: 1.25rem; position: relative;
}
.testimonial-quote::before { content: '\201C'; font-size: 3rem; color: var(--primary); line-height: 0; vertical-align: -0.65em; margin-right: 0.1em; font-style: normal; }
.testimonial-attribution { display: flex; align-items: center; gap: 0.85rem; }
.testimonial-ad-thumb { width: 56px; height: 56px; object-fit: cover; border-radius: 6px; border: 1px solid var(--border); flex-shrink: 0; }
.testimonial-name { color: white; font-weight: 700; font-size: 0.9rem; display: block; }
.testimonial-biz { color: var(--text-muted); font-size: 0.82rem; display: block; margin-top: 0.15rem; }

/* =====================
   SCARCITY BOX
   ===================== */
.scarcity-box {
  background: linear-gradient(135deg, rgba(123,92,240,0.1), rgba(159,127,254,0.05));
  border: 1px solid rgba(123,92,240,0.35);
  border-radius: var(--radius); padding: 3.5rem;
  text-align: center;
}

.scarcity-body {
  color: var(--text-muted); max-width: 680px; margin: 0 auto 2rem;
  font-size: 1rem; line-height: 1.75;
}

.scarcity-list {
  list-style: none; display: flex; flex-direction: column;
  align-items: center; gap: 0.75rem; margin-bottom: 2.5rem;
}

.scarcity-list li {
  color: var(--text); font-size: 0.95rem; display: flex;
  align-items: center; gap: 0.75rem;
}

.check { color: var(--success); font-weight: 700; font-size: 1rem; }

.scarcity-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* =====================
   WHY ADSYNC
   ===================== */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2rem;
}

.why-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}
.why-card:hover { border-color: var(--accent); transform: translateY(-4px); }

.why-number {
  font-size: 2.5rem; font-weight: 800;
  color: var(--primary); opacity: 0.3; line-height: 1; margin-bottom: 1rem;
}
.why-card h3 { color: white; font-size: 1rem; margin-bottom: 0.75rem; font-weight: 700; }
.why-card p { color: var(--text-muted); font-size: 0.9rem; }

/* =====================
   HOST PROGRAM
   ===================== */
.host-box {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center;
}

.host-text p { color: var(--text-muted); margin-bottom: 2rem; }
.host-text .btn { margin-top: 0; }

.host-icons {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}

.host-icon-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 0.75rem;
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  font-size: 1.75rem;
  transition: border-color 0.2s;
}
.host-icon-card:hover { border-color: var(--primary); }
.host-icon-card span { font-size: 0.75rem; color: var(--text-muted); }

/* =====================
   PRICING
   ===================== */
.pricing-intro {
  text-align: center; color: var(--text-muted);
  max-width: 600px; margin: 0 auto 3rem; font-size: 0.95rem;
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem 2rem;
  position: relative; transition: border-color 0.2s, transform 0.2s;
}
.pricing-card:hover { border-color: var(--primary); transform: translateY(-4px); }

.pricing-featured {
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(123,92,240,0.15);
}

.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: white;
  font-size: 0.75rem; font-weight: 700; padding: 0.3rem 1rem;
  border-radius: 50px; white-space: nowrap; letter-spacing: 0.5px;
}

.pricing-tier { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.pricing-price { font-size: 1rem; color: var(--accent); font-weight: 600; margin-bottom: 1rem; }
.pricing-card > p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1.5rem; }

.pricing-features {
  list-style: none; margin-bottom: 2rem;
}
.pricing-features li {
  color: var(--text-muted); font-size: 0.88rem; padding: 0.4rem 0;
  border-bottom: 1px solid var(--border); padding-left: 1.25rem; position: relative;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--success); position: absolute; left: 0; }

.pricing-note {
  text-align: center; color: var(--text-muted); font-size: 0.82rem;
}

/* =====================
   FAQ
   ===================== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%; background: none; border: none;
  color: var(--text); font-family: inherit; font-size: 0.98rem; font-weight: 600;
  text-align: left; padding: 1.25rem 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }

.faq-icon {
  font-size: 1.3rem; color: var(--accent);
  flex-shrink: 0; transition: transform 0.2s;
}

.faq-q.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: none; padding-bottom: 1.25rem;
}
.faq-a p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; }

/* =====================
   CONTACT
   ===================== */
.contact-intro {
  text-align: center; color: var(--text-muted);
  max-width: 600px; margin: 0 auto 3.5rem; font-size: 0.95rem;
}

.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start;
}

.contact-info h3 { font-size: 1.3rem; color: white; margin-bottom: 0.75rem; font-weight: 700; }

.contact-trust {
  color: var(--text-muted); font-size: 0.88rem;
  font-style: italic; margin-bottom: 2rem;
}

.contact-links { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }

.contact-item {
  display: flex; align-items: center; gap: 1rem;
  color: var(--text-muted); transition: color 0.2s;
}
.contact-item:hover { color: var(--accent); }
.contact-icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-item div { display: flex; flex-direction: column; }
.contact-item strong { color: white; font-size: 0.85rem; margin-bottom: 0.1rem; }
.contact-item span { font-size: 0.9rem; }

.contact-founders {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
  font-size: 0.88rem; color: var(--text-muted);
}
.contact-founders strong { color: white; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-family: inherit;
  font-size: 0.95rem; transition: border-color 0.2s; resize: vertical;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--primary); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--card); }

.form-success {
  background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.3);
  color: var(--success); padding: 1rem; border-radius: 8px;
  font-size: 0.9rem; text-align: center;
}

.form-error {
  background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.3);
  color: var(--error); padding: 1rem; border-radius: 8px;
  font-size: 0.9rem; text-align: center;
}

.form-microcopy { font-size: 0.78rem; color: var(--text-muted); text-align: center; }

/* =====================
   FOOTER
   ===================== */
.footer { border-top: 1px solid var(--border); }

.footer-top {
  max-width: 1100px; margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}

.footer-logo-img { height: 60px; width: auto; margin-bottom: 1rem; }

.footer-brand p { color: var(--text-muted); font-size: 0.88rem; max-width: 250px; margin-bottom: 1rem; }
.footer-phone { color: var(--accent); font-weight: 600; font-size: 0.95rem; }

.footer-links-group { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links-group h4 { color: white; font-size: 0.88rem; font-weight: 700; margin-bottom: 0.5rem; }
.footer-links-group a { color: var(--text-muted); font-size: 0.85rem; transition: color 0.2s; }
.footer-links-group a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  text-align: center; padding: 1.5rem 2rem;
  color: var(--text-muted); font-size: 0.82rem;
}

/* =====================
   STICKY MOBILE CTA
   ===================== */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: var(--bg-alt); border-top: 1px solid var(--border);
  padding: 0.75rem 1.25rem;
  flex-direction: row; gap: 0.75rem;
}

.sticky-call {
  flex: 1; text-align: center; padding: 0.8rem;
  border: 2px solid var(--primary); color: var(--accent);
  border-radius: 8px; font-weight: 600; font-size: 0.9rem;
}

.sticky-book {
  flex: 1.5; font-size: 0.9rem; padding: 0.8rem;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-microcopy { text-align: center; }
  .hero-urgency { max-width: 500px; margin: 0 auto; }

  .host-box { grid-template-columns: 1fr; gap: 3rem; }

  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .announce-bar { font-size: 0.8rem; }

  .nav-links {
    display: none; flex-direction: column; gap: 0.5rem;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(7,11,20,0.98); padding: 1.5rem 5%;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.6rem 0; font-size: 1rem; }
  .btn-nav { text-align: center; margin-top: 0.5rem; }
  .menu-toggle { display: block; }

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

  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: center; padding-top: 0; }

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

  .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  .scarcity-box { padding: 2rem 1.5rem; }
  .scarcity-ctas { flex-direction: column; align-items: center; }

  .stat-item { padding: 0.75rem 1.5rem; }
  .stat-divider { display: none; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }

  .host-icons { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .hero { padding: 4rem 5% 3rem; }
  .section { padding: 4rem 0; }
  .footer-top { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .host-icons { grid-template-columns: repeat(2, 1fr); }
}

/* =====================
   SCROLL REVEAL
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   TRUST BAR
   ===================== */
.trust-bar {
  background: rgba(123,92,240,0.07);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 5%;
}
.trust-container {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0; max-width: 1200px; margin: 0 auto;
}
.trust-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  padding: 0.5rem 2rem; flex: 1; min-width: 220px;
}
.trust-check { color: var(--primary); font-weight: 700; font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.trust-text { color: var(--text-muted); font-size: 0.82rem; line-height: 1.45; }
.trust-divider { width: 1px; height: 2.5rem; background: var(--border); flex-shrink: 0; align-self: center; }

/* =====================
   AUDIENCE SPLIT
   ===================== */
.audience-split-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem;
}
.audience-split-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}
.audience-split-card:hover { transform: translateY(-3px); }
.audience-split-local  { border-top: 3px solid var(--primary); }
.audience-split-national { border-top: 3px solid var(--accent); }
.split-eyebrow {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
}
.audience-split-local  .split-eyebrow { color: var(--primary); }
.audience-split-national .split-eyebrow { color: var(--accent); }
.audience-split-card h3 { color: white; font-size: 1.15rem; font-weight: 700; line-height: 1.35; margin: 0; }
.audience-split-card p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin: 0; }
.split-tagline { font-weight: 600 !important; color: var(--text) !important; font-size: 0.88rem !important; }
.audience-split-card .btn { align-self: flex-start; margin-top: auto; }

/* =====================
   VENUE NETWORK GRID
   ===================== */
.venue-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem; margin-bottom: 2.5rem;
}
.venue-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.venue-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.venue-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.venue-card h3 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.venue-dwell { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; margin: 0; }

/* =====================
   MULTI-MARKET SECTION
   ===================== */
.multi-market-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: start; margin-top: 2rem;
}
.multi-market-body { display: flex; flex-direction: column; }
.multi-market-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.multi-market-points { display: flex; flex-direction: column; gap: 1.5rem; }
.multi-point { display: flex; gap: 1rem; align-items: flex-start; }
.multi-point-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.multi-point strong { color: white; font-size: 0.92rem; font-weight: 700; display: block; margin-bottom: 0.3rem; }
.multi-point p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; margin: 0; }

@media (max-width: 768px) {
  .trust-divider { display: none; }
  .trust-item { min-width: 100%; padding: 0.4rem 0; }
  .audience-split-grid { grid-template-columns: 1fr; }
  .multi-market-layout { grid-template-columns: 1fr; gap: 2rem; }
}
