/* Unlimited Credit Coaching — Spacing, radius, shadow, layout tokens */
:root {
  /* Spacing scale (4px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Corner radii — site uses generously rounded cards + pill buttons */
  --radius-sm: 6px;    /* inputs, small buttons */
  --radius-md: 10px;   /* standard buttons */
  --radius-lg: 14px;   /* dark info cards */
  --radius-xl: 18px;   /* testimonial cards */
  --radius-pill: 999px;/* "Get approved" pill, badges */
  --radius-circle: 50%;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(16, 39, 92, 0.08);
  --shadow-card: 0 12px 30px rgba(16, 39, 92, 0.10);
  --shadow-card-hover: 0 18px 44px rgba(16, 39, 92, 0.16);
  --shadow-dark: 0 16px 40px rgba(11, 30, 69, 0.28);
  --shadow-float: 0 8px 24px rgba(0, 0, 0, 0.22); /* floating whatsapp btn */

  /* Layout */
  --container-max: 1200px;
  --container-pad: clamp(20px, 5vw, 64px);
  --section-pad-y: clamp(56px, 8vw, 112px);

  /* Motion */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --dur-fast: 140ms; /* @kind other */
  --dur-base: 240ms; /* @kind other */
}
