/* eDariba — service-tool-downloader (template-tool-invoice-downloader.php)
   This page is now fully styled via Tailwind utility classes directly in
   the markup — including the hero-app mockup, WhatsApp float button, step
   cards, solution cards, partners strip, stats grid, and CTA panel that
   used to be styled here and (for the shared component classes) in
   pages/_service-standard.css. Its markup no longer references any class
   from either file — that shared file is now retired; the classes still
   needed by the other 5 service pages live in
   src/components/service-shared.css instead, compiled into the Tailwind
   bundle.

   The one rule kept below is not a class: it's the @keyframes for the
   pricing CTA button's pulsing ring, referenced from the markup via the
   Tailwind arbitrary value animate-[cta-pulse_2.2s_ease-in-out_infinite].
   Tailwind utilities can reference an animation name but can't declare
   the keyframes themselves, so this stays here as a bare @keyframes
   (no selector, so nothing in the markup "depends" on a class here). */

@keyframes cta-pulse {
  0% { box-shadow: 0 0 0 0 rgba(97, 255, 237, 0.45); }
  70% { box-shadow: 0 0 0 14px rgba(97, 255, 237, 0); }
  100% { box-shadow: 0 0 0 0 rgba(97, 255, 237, 0); }
}
