/* === Sales In Motion — Global Styles === */
/* Design tokens, reset, and shared utilities only. */
/* Component-specific styles live in scoped <style> blocks in each .astro file. */

:root {
  /* Brand colors */
  --orange: #f27e20;
  --orange-dark: #d96a10;
  --orange-light: #fff4eb;
  --blue: #1b5299;
  --blue-dark: #0f3666;
  --blue-light: #ebf2fa;
  --navy: #0c1b2e;
  --white: #fff;

  /* Grays */
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing & Radius */
  --radius: 16px;
  --radius-sm: 10px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgb(0 0 0 / 6%);
  --shadow-md: 0 4px 20px rgb(0 0 0 / 8%);
  --shadow-lg: 0 12px 40px rgb(0 0 0 / 12%);
  --shadow-orange: 0 6px 20px rgb(242 126 32 / 30%);
  --shadow-blue: 0 6px 20px rgb(27 82 153 / 30%);
}

/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* === LAYOUT UTILITIES === */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 5rem 2rem;
}

/* === SHARED TYPOGRAPHY === */
.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.7;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: rgb(255 255 255 / 80%);
  border: 1px solid rgb(255 255 255 / 15%);
}

.btn-outline:hover {
  border-color: rgb(255 255 255 / 40%);
  color: var(--white);
}

/* === RESPONSIVE === */
@media (width <= 900px) {
  .section {
    padding: 3rem 1.5rem;
  }
}
