/* Handoff Marketing Site — Custom CSS beyond Tailwind */

/* Base */
html { scroll-behavior: smooth; }

/* Step number circle */
.step-number {
  width: 48px;
  height: 48px;
  background: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

/* Phone mockup */
.phone-mockup {
  width: 280px;
  height: 560px;
  background: #1e293b;
  border: 2px solid #334155;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  margin: 0 auto;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #0f172a;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

/* Mobile nav drawer */
.mobile-drawer {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-drawer.open {
  transform: translateX(0);
}

/* FAQ accordion */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.faq-answer.open {
  max-height: 500px;
  opacity: 1;
}

.faq-chevron {
  transition: transform 0.2s ease;
}
.faq-chevron.open {
  transform: rotate(180deg);
}

/* Hero subtle gradient */
.hero-gradient {
  background: radial-gradient(ellipse at center, rgba(30,58,138,0.15) 0%, transparent 70%);
}

/* Scroll cue animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
.scroll-cue {
  animation: bounce 2s infinite;
}

/* Gradient band for final CTA */
.cta-gradient {
  background: linear-gradient(135deg, rgba(30,58,138,0.4) 0%, rgba(15,23,42,0) 60%);
}

/* Large decorative quote marks */
.quote-mark {
  font-size: 96px;
  line-height: 1;
  color: rgba(59,130,246,0.2);
  font-family: Georgia, serif;
}

/* Pricing card highlight */
.pricing-card-popular {
  border: 2px solid #3b82f6;
  position: relative;
}

/* Small utility for line clamping */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Ensure images don't overflow */
img { max-width: 100%; height: auto; }
