/* nacredit.kz — base.css — Design Tokens */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* Primary */
  --c-primary:        #00955c;
  --c-primary-hover:  #007d4e;
  --c-primary-light:  #e8f5e9;
  --c-primary-border: #c8ecd4;
  
  /* Text */
  --c-text-main:  #1a2228;
  --c-text-body:  #3d4f5a;
  --c-text-muted: #9eaab0;
  --c-text-pale:  #b0bec5;
  
  /* Backgrounds */
  --c-bg-page:  #f4f6f4;
  --c-bg-card:  #ffffff;
  --c-bg-hover: #f8fdf9;
  
  /* Borders */
  --c-border:      #eaeef0;
  --c-border-soft: #f0f3f0;
  
  /* Status */
  --c-success: #00955c;
  --c-warning: #e06500;
  --c-error:   #c62155;
  --c-info:    #1a5cb8;
  
  /* Font */
  --font: 'Manrope', sans-serif;
  
  /* Radius */
  --r-xs:4px; --r-sm:8px; --r-md:10px; --r-lg:12px; --r-xl:14px; --r-pill:100px;
  
  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow-md: 0 2px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  
  /* Layout */
  --max-w: 1140px;
}
