/* ===== STICKY CTA (mobile only) ===== */
.sticky-cta { display: none; }

@media (max-width: 700px) {
  .sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    background: var(--color-trigger-bg);
    border-top: 1px solid var(--color-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .sticky-cta.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }
  .sticky-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    color: var(--color-text);
    text-decoration: none;
    font-family: 'Lexend', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .sticky-cta-btn:hover,
  .sticky-cta-btn:active {
    background: var(--color-card-bg-hover);
    transform: scale(0.97);
  }
  .sticky-cta-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--color-text);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }
  /* Extra bottom padding on footer so CTA doesn't overlap */
  .site-footer { padding-bottom: calc(56px + 80px) !important; }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: none !important; }
}
