:root {
  /* Colors */
  --color-bg-primary: #242222;
  --color-bg-dark: #2b2929;
  --color-accent-light: #ffb375;
  --color-white: #f5f1ea;
  --color-btn-gradient: linear-gradient(180deg, #ffc07f 0%, #ffa66e 100%);
  --color-btn-outline-border: #c99b5e;
  --color-text-main: #a8a19a;
  --color-gold: #f7c879;
  --color-btn-text-dark: #211d1f;

  /* Typography */
  --font-family: 'Montserrat', sans-serif;
  --font-size-base: 15px;
  --font-size-sm: 13px;
  --font-size-h1: clamp(28px, 4vw, 44px);
  --font-size-h2: clamp(22px, 3vw, 32px);
  --font-size-h3: clamp(18px, 2.2vw, 24px);
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --line-height: 1.6;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 20px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
  --spacing-section: 40px;
  --spacing-section-mobile: 24px;
  --card-padding: 24px;
  --gap-cards: 20px;
  --gap-text: 16px;
  --gap-h2: 16px;
  --gap-h3: 12px;
  --gap-faq: 14px;

  /* Layout */
  --container-max: 1440px;
  --border-radius: 6px;
  --border-radius-sm: 4px;
  --border-radius-lg: 12px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;

  /* Shadows */
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.3);
  --shadow-btn: 0 4px 16px rgba(255, 163, 110, 0.25);

  /* Z-index */
  --z-header: 100;
  --z-modal: 200;
  --z-scroll-top: 150;
}
