/* ============================================================
   SocialBooth LV — lp-home Premium Polish
   CSS-only refinements for elevated look & feel
   AliraLink — 2026-02-26
   ============================================================ */

/* --- Hero — pink primary CTA --- */

/* Hero — deeper cinematic gradient */
.hero-home::before {
  background: linear-gradient(105deg,
    rgba(10,11,13,0.94) 0%,
    rgba(10,11,13,0.82) 35%,
    rgba(10,11,13,0.45) 65%,
    rgba(10,11,13,0.2) 100%) !important;
}

/* Hero accent line — teal glow */
.hero-accent {
  box-shadow: 0 0 20px rgba(80,192,175,0.4), 0 0 60px rgba(80,192,175,0.15);
}

/* Hero heading — subtle depth shadow */
.hero-content h1 {
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

/* Hero trust bar — glass pill */
.hero-trust {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 0.6rem 1.25rem;
  gap: 0.75rem;
}

/* Hero proof quote — teal border accent */
.hero-proof {
  font-size: var(--text-small);
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-top: var(--space-md);
  padding-left: 0.75rem;
  border-left: 2px solid rgba(80,192,175,0.3);
  line-height: 1.6;
}

/* Hero pricing hint — glass pill */
.hero-pricing-hint {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: var(--text-small);
  color: rgba(255,255,255,0.65);
  margin-top: var(--space-sm);
  letter-spacing: 0.01em;
}

/* --- Section headings — teal overline accent --- */
.section > .container > h2,
.section-dark > .container > h2,
.container-narrow > h2 {
  position: relative;
  padding-top: 1.5rem;
}
.section > .container > h2::before,
.section-dark > .container > h2::before,
.container-narrow > h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--color-teal);
  border-radius: 2px;
}
.section-dark > .container > h2::before {
  box-shadow: 0 0 10px rgba(80,192,175,0.4);
}

/* --- Cards — border glow on hover --- */
.card {
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}
.card:hover {
  border-color: rgba(80,192,175,0.25);
  box-shadow: 0 20px 60px -12px rgba(0,0,0,0.15), 0 0 0 1px rgba(80,192,175,0.1);
}
.card-img {
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.card:hover .card-img {
  transform: scale(1.05);
}

/* --- Testimonials — teal accent + quote mark --- */
.testimonial-dark {
  border-left: 3px solid var(--color-teal);
  position: relative;
}
.testimonial-dark::before {
  content: '\201C';
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-size: 4rem;
  line-height: 1;
  color: rgba(80,192,175,0.15);
  font-family: Georgia, serif;
}

/* --- Gallery — tighter gaps --- */
.gallery-grid {
  gap: 0.75rem;
}

/* --- Steps — glow ring --- */
.step-number {
  font-size: 1.125rem;
  width: 52px;
  height: 52px;
  box-shadow: 0 0 0 4px rgba(80,192,175,0.15);
}

/* --- CTA form — gradient + glass card --- */
.cta-banner {
  background: linear-gradient(135deg, #50c0af 0%, #38e1c8 50%, #50c0af 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(255,255,255,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner .form-inline {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 640px;
}
.cta-banner .form-input,
.cta-banner .form-select {
  background: rgba(255,255,255,0.85) !important;
  border-color: rgba(255,255,255,0.5) !important;
  color: #1d1f21 !important;
  border-radius: 0.5rem;
}
.cta-banner .btn-dark {
  border-radius: 0.5rem;
}

/* --- Marquee — teal border accents --- */
.marquee {
  border-top: 1px solid rgba(80,192,175,0.15);
  border-bottom: 1px solid rgba(80,192,175,0.15);
}
.marquee-item {
  color: rgba(255,255,255,0.5);
}

/* --- FAQ refinement --- */
.faq-item {
  border-color: rgba(0,0,0,0.08);
}
.faq-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* --- Nav — frosted glass on scroll --- */
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-links .btn.btn-primary.btn-sm {
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(80,192,175,0.3);
}

/* --- Footer — teal border top --- */
.footer {
  border-top: 1px solid rgba(80,192,175,0.2);
}
