/* ============================================
   Missed Calls to Cash — Stylesheet
   ============================================ */

:root {
  --bg-900: #06080e;
  --bg-800: #0a0d16;
  --bg-700: #0f1320;
  --bg-600: #151b2a;

  --gold: #f0a020;
  --gold-light: #f5bc50;
  --gold-glow: rgba(240, 160, 32, 0.12);
  --gold-border: rgba(240, 160, 32, 0.3);
  --gold-soft: rgba(240, 160, 32, 0.15);

  --blue: #4361ee;
  --blue-glow: rgba(67, 97, 238, 0.15);

  --text: #e8edf8;
  --text-muted: #6b7589;
  --text-dim: #2e3547;

  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 8px 40px rgba(240, 160, 32, 0.28);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1200px;
  --section-pad: 100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-900);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; }

p { color: var(--text-muted); line-height: 1.75; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: var(--section-pad) 0; }

.section-alt {
  background: var(--bg-800);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.accent { color: var(--gold); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 { margin-bottom: 14px; }

.section-header p {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary { background: var(--gold); color: #000; }
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 10px; }

/* ---- Nav ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(6, 8, 14, 0.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a:not(.btn) {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-menu a:not(.btn):hover { color: var(--text); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 14, 0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Syne', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
  transition: var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 1.6rem;
  color: var(--text-muted);
  padding: 8px;
  line-height: 1;
  transition: var(--transition);
}

.mobile-close:hover { color: var(--text); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.017) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.017) 1px, transparent 1px);
  background-size: 64px 64px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  z-index: 2;
}

.orb-1 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(240, 160, 32, 0.22) 0%, transparent 65%);
  top: -80px; left: -80px;
  animation: orbFloat1 14s ease-in-out infinite;
}

.orb-2 {
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(67, 97, 238, 0.18) 0%, transparent 65%);
  bottom: -120px; right: -100px;
  animation: orbFloat2 18s ease-in-out infinite;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(240, 100, 20, 0.15) 0%, transparent 65%);
  top: 35%; right: 18%;
  animation: orbFloat3 11s ease-in-out infinite;
}

.hero-emergency .orb-1 {
  background: radial-gradient(circle, rgba(220, 50, 20, 0.28) 0%, transparent 65%);
}
.hero-emergency .orb-2 {
  background: radial-gradient(circle, rgba(240, 110, 0, 0.2) 0%, transparent 65%);
}
.hero-emergency .orb-3 {
  background: radial-gradient(circle, rgba(200, 40, 10, 0.15) 0%, transparent 65%);
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(50px, 30px); }
  66% { transform: translate(-25px, 55px); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-55px, -40px); }
  66% { transform: translate(35px, -65px); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(35px, -50px) scale(0.85); opacity: 0.4; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-inner.centered {
  grid-template-columns: 1fr;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.65); }
}

.hero-left h1 { margin-bottom: 22px; }
.hero-inner.centered h1 { margin-bottom: 22px; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-inner.centered .hero-sub {
  margin: 0 auto 40px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-inner.centered .hero-ctas {
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.hero-inner.centered .hero-stats {
  justify-content: center;
}

.stat-item {
  padding: 0 32px;
  text-align: center;
  position: relative;
}

.stat-item:first-child { padding-left: 0; }
.stat-inner.centered .stat-item:last-child { padding-right: 0; }

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 36px;
  width: 1px;
  background: var(--border);
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  max-width: 120px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ---- Demo Widget ---- */
.hero-demo {
  background: var(--bg-700);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.demo-topbar {
  background: var(--bg-600);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}

.demo-dot.r { background: #ff5f56; }
.demo-dot.y { background: #ffbd2e; }
.demo-dot.g { background: #27c93f; }

.demo-topbar-title {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.demo-call-bar {
  background: rgba(240, 160, 32, 0.08);
  border-bottom: 1px solid var(--gold-soft);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
}

.demo-call-icon {
  width: 32px; height: 32px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.demo-caller-info { flex: 1; }
.demo-caller-name { color: var(--text); font-weight: 600; font-size: 0.82rem; }
.demo-caller-sub { color: var(--text-muted); font-size: 0.72rem; }

.demo-answered {
  background: rgba(39, 201, 63, 0.15);
  border: 1px solid rgba(39, 201, 63, 0.3);
  color: #27c93f;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.demo-messages {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msg {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: 85%;
}

.msg.ai {
  background: var(--bg-600);
  border: 1px solid var(--border);
  color: var(--text);
  align-self: flex-start;
  border-radius: 4px 12px 12px 12px;
}

.msg.user {
  background: var(--gold-glow);
  border: 1px solid var(--gold-soft);
  color: var(--text);
  align-self: flex-end;
  border-radius: 12px 4px 12px 12px;
}

.demo-chips {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  background: rgba(39, 201, 63, 0.1);
  border: 1px solid rgba(39, 201, 63, 0.25);
  color: #27c93f;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* ---- Pain Points ---- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.pain-card {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pain-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 55%, var(--gold-glow));
  opacity: 0;
  transition: var(--transition);
}

.pain-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pain-card:hover::after { opacity: 1; }

.pain-icon { font-size: 2rem; margin-bottom: 18px; display: block; }
.pain-card h3 { color: var(--text); margin-bottom: 10px; position: relative; z-index: 1; }
.pain-card p { font-size: 0.9rem; line-height: 1.7; position: relative; z-index: 1; }

/* ---- How It Works ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-border), transparent 50%, var(--gold-border));
  opacity: 0.4;
  pointer-events: none;
}

.step-card {
  background: var(--bg-600);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--gold-soft);
  box-shadow: 0 0 50px var(--gold-glow);
  transform: translateY(-4px);
}

.step-number {
  width: 48px; height: 48px;
  background: var(--bg-900);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
}

.step-card h3 { font-size: 0.95rem; margin-bottom: 10px; }
.step-card p { font-size: 0.85rem; line-height: 1.65; }

/* ---- Industries ---- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.industry-card {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}

.industry-card:hover {
  border-color: var(--gold-soft);
  background: var(--bg-600);
  transform: translateY(-3px);
}

.industry-card .icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.industry-card span.label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  line-height: 1.3;
}

/* ---- Benefits ---- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}

.benefit-card {
  display: flex;
  gap: 18px;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-3px);
}

.benefit-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-soft);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.benefit-text h3 {
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}

.benefit-text p { font-size: 0.84rem; line-height: 1.65; }

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

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

.faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
  line-height: 1.4;
}

.faq-btn:hover { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 1px solid var(--border-hover);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.faq-item.open .faq-btn { color: var(--gold); }
.faq-item.open .faq-icon {
  transform: rotate(180deg);
  border-color: var(--gold-border);
  color: var(--gold);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.faq-answer-inner {
  padding-bottom: 22px;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* ---- CTA Section ---- */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 160, 32, 0.09) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 { margin-bottom: 18px; }

.cta-desc {
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ---- Footer ---- */
footer {
  background: var(--bg-800);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-nav a:hover { color: var(--gold); }

.footer-copy {
  color: var(--text-dim);
  font-size: 0.78rem;
  text-align: center;
}

/* ---- Urgency Banner (emergency page) ---- */
.urgency-banner {
  background: linear-gradient(90deg, rgba(210,50,20,0.14), rgba(240,100,0,0.1), rgba(210,50,20,0.14));
  border-bottom: 1px solid rgba(210,60,20,0.25);
  padding: 12px 0;
  text-align: center;
  font-size: 0.82rem;
  color: #f07050;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1001;
}

/* ---- Scroll Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-demo { display: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .hero { text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-stats { flex-direction: column; align-items: center; gap: 28px; border-top: 1px solid var(--border); padding-top: 36px; }
  .stat-item { padding: 0; }
  .stat-item::after { display: none !important; }
  .stat-label { max-width: 160px; }
  .footer-top { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
}

@media (max-width: 540px) {
  :root { --section-pad: 56px; }
  .steps-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: auto; min-width: 220px; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   Video Showcase Section
   ============================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.video-card:nth-child(1),
.video-card:nth-child(2),
.video-card:nth-child(3) { grid-column: span 2; }
.video-card:nth-child(4) { grid-column: 2 / 4; }
.video-card:nth-child(5) { grid-column: 4 / 6; }

.video-card {
  background: rgba(15, 19, 32, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.video-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-6px);
  box-shadow: var(--shadow), 0 0 50px var(--gold-glow);
}

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-800);
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.video-card:hover .video-wrap video { transform: scale(1.04); }

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.28);
  transition: var(--transition);
}

.video-card:hover .video-overlay { background: rgba(0, 0, 0, 0.1); }

.video-card.playing .video-overlay { background: transparent; }
.video-card.playing .video-play-btn { opacity: 0; transform: scale(0.8); }
.video-card.playing:hover .video-play-btn { opacity: 1; transform: scale(1); }

.video-play-btn {
  width: 52px;
  height: 52px;
  background: rgba(240, 160, 32, 0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.video-card:hover .video-play-btn {
  transform: scale(1.12);
  background: var(--gold);
  box-shadow: 0 0 36px rgba(240, 160, 32, 0.55);
}

.video-play-btn svg {
  width: 18px;
  height: 18px;
  fill: #000;
  margin-left: 3px;
}

.video-info { padding: 20px 22px 24px; }
.video-info h3 { font-size: 1rem; color: var(--text); margin-bottom: 8px; }
.video-info p { font-size: 0.84rem; line-height: 1.65; }

@media (max-width: 1024px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .video-card:nth-child(1),
  .video-card:nth-child(2),
  .video-card:nth-child(3),
  .video-card:nth-child(4),
  .video-card:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 540px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Hero Background Video
   ============================================ */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Left side: near-opaque to protect headline text */
    linear-gradient(
      to right,
      rgba(6, 8, 14, 0.97) 0%,
      rgba(6, 8, 14, 0.93) 28%,
      rgba(6, 8, 14, 0.52) 52%,
      rgba(6, 8, 14, 0.42) 100%
    ),
    /* Spotlight: opens the face/upper-body area, dark vignette toward edges */
    radial-gradient(
      ellipse 52% 62% at 68% 38%,
      rgba(6, 8, 14, 0.05) 0%,
      rgba(6, 8, 14, 0.25) 45%,
      rgba(6, 8, 14, 0.65) 100%
    );
  z-index: 1;
}

/* Mobile: simpler vertical gradient — lighter mid-frame where subject appears */
@media (max-width: 768px) {
  .hero-video-overlay {
    background: linear-gradient(
      to bottom,
      rgba(6, 8, 14, 0.96) 0%,
      rgba(6, 8, 14, 0.78) 40%,
      rgba(6, 8, 14, 0.88) 100%
    );
  }
}

.hero-emergency .hero-video-overlay {
  background: linear-gradient(
    rgba(8, 3, 3, 0.95) 0%,
    rgba(12, 5, 5, 0.87) 50%,
    rgba(8, 3, 3, 0.95) 100%
  );
}

/* ============================================
   Split Section — Missed Calls Cost Money
   ============================================ */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split-text h2 { margin-bottom: 18px; }

.split-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.split-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.split-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.split-img-wrap:hover img { transform: scale(1.04); }

.split-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 8, 14, 0.55) 0%, transparent 55%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   Showcase Grid — Real Businesses
   ============================================ */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.showcase-card {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.showcase-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-5px);
  box-shadow: var(--shadow), 0 0 40px var(--gold-glow);
}

.showcase-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.showcase-card:hover .showcase-img-wrap img { transform: scale(1.05); }

.showcase-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 8, 14, 0.6) 0%, transparent 55%);
  pointer-events: none;
}

.showcase-caption {
  padding: 18px 22px 22px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
}

@media (max-width: 768px) {
  .showcase-grid { grid-template-columns: 1fr; }
}
