/* Handoff Marketing Site — Reusable Component Styles */

/* 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);
}

.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;
}

/* 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;
}

/* Step Number Large (for how-it-works style) */
.step-number-lg {
  width: 64px;
  height: 64px;
  background: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

/* Checkmark List */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: #e2e8f0;
}

.check-list .check-icon {
  width: 20px;
  height: 20px;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Scroll cue animation */
@keyframes pulse-down {
  0%, 100% { opacity: 0.6; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(6px); }
}

.scroll-cue {
  animation: pulse-down 2s ease-in-out infinite;
}

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

/* Custom scrollbar for dark theme */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0f172a;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

/* FAQ accordion transition */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.2s ease-out;
  opacity: 0;
}

.accordion-content.open {
  max-height: 1000px;
  opacity: 1;
}

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

.mobile-drawer.open {
  transform: translateX(0);
}

/* Backdrop */
.drawer-backdrop {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Card hover lift */
.card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* Button press */
.btn-press:active {
  transform: scale(0.99);
}

/* Quote decoration */
.quote-mark {
  font-size: 96px;
  line-height: 1;
  color: rgba(59, 130, 246, 0.2);
  position: absolute;
  top: -20px;
  left: -12px;
  pointer-events: none;
  font-family: Georgia, serif;
}

/* Form input styling */
.form-input {
  background: #0f172a;
  border: 1px solid #475569;
  color: #f1f5f9;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-input::placeholder {
  color: #64748b;
}

/* Radio card selection */
.radio-card {
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.radio-card:hover {
  border-color: #475569;
}

.radio-card.selected {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.05);
}
