/* ===== Bootswatch Slate overrides & marketing polish ===== */
.min-vh-75 { min-height: 75vh; }
:root {
  --slate-hero-overlay: rgba(20, 25, 30, 0.75);
  --slate-glow-start: rgba(72, 100, 130, 0.15);
  --slate-glow-end: rgba(30, 40, 50, 0.4);
  --section-gradient-start: #2c3e50;
  --section-gradient-end: #1a252f;
  --card-border: rgba(255, 255, 255, 0.06);
}

html { scroll-behavior: smooth; }
body { padding-top: 76px; }

/* Hero with background image */
.hero-video-wrap {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--slate-hero-overlay) 0%, rgba(15, 20, 28, 0.88) 100%);
  z-index: 1;
}
.hero-video-content {
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.1rem;
  opacity: 0.9;
}
.hero-cta .btn { font-weight: 600; }

/* Section gradients (Slate palette) */
.section-gradient {
  background: linear-gradient(180deg, var(--section-gradient-start) 0%, var(--section-gradient-end) 100%);
}
.section-glow {
  background: linear-gradient(180deg, var(--slate-glow-start) 0%, var(--slate-glow-end) 50%, #0d1117 100%);
}

/* Cards */
.marketing-card {
  border-radius: 12px;
  border: 0px solid var(--card-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.marketing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}
.pricing-card {
  border-radius: 12px;
  border: 0px solid var(--card-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.pricing-card .price {
  font-size: 1.75rem;
  font-weight: 700;
}
.pricing-card .card-body {
  min-height: 0;
}
.pricing-card .lh-sm { line-height: 1.4; }
/* Same header height across cards (badge + title + audience) */
.pricing-card-header {
  min-height: 6.5rem;
}
.pricing-card-badge-row {
  min-height: 1.75rem;
  margin-bottom: 0.5rem;
}
/* Same price block height so prices align vertically */
.pricing-card-price-block {
  min-height: 3.25rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
.pricing-card-price-block .price {
  margin-bottom: 0 !important;
}

/* Dark modal (Slate-style) */
.modal-dark .modal-content {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.modal-dark .modal-header,
.modal-dark .modal-footer {
  padding: 1rem 1.25rem;
}
.modal-dark .modal-body {
  max-height: 70vh;
}
.modal-dark .modal-body h6 {
  letter-spacing: 0.05em;
  opacity: 0.9;
}
.modal-backdrop.show {
  opacity: 0.5;
}

/* Feature badges */
.badge-cap { font-size: 0.7rem; }

/* Entrance animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }

/* CTA strip */
.cta-strip {
  background: linear-gradient(135deg, #3d5a80 0%, #293241 100%);
  border-radius: 12px;
  padding: 2.5rem;
}

/* Navbar scroll */
.navbar.bg-dark { background-color: rgba(33, 37, 41, 0.97) !important; backdrop-filter: blur(8px); }

/* Form polish */
.form-control:focus, .form-select:focus {
  border-color: #7aa3c9;
  box-shadow: 0 0 0 0.2rem rgba(122, 163, 201, 0.25);
}

/* Footer */
.site-footer { background: linear-gradient(180deg, #1a252f 0%, #0d1117 100%); }
.site-footer a:hover { color: #7aa3c9 !important; }

/* Placeholder image block */
.img-placeholder {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #3d5a80 0%, #293241 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 2.5rem;
}
