/* =============================================
   BÉTON MALIN — Base
   ============================================= */

:root {
  --bg:       #F7F5F2;
  --bg-alt:   #EFECE8;
  --surface:  #FFFFFF;
  --border:   #E2DDD8;

  --text:     #1A1816;
  --muted:    #6B6560;
  --subtle:   #A09890;

  --accent:     #1A5FE0;
  --accent-dim: rgba(26, 95, 224, 0.08);

  /* Legacy aliases (keep JS/CSS compat) */
  --blue:     #1A5FE0;
  --blue-dim: rgba(26, 95, 224, 0.08);

  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max: 1200px;
  --pad: clamp(1.5rem, 5vw, 4rem);
  --r:   0px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-card:  0 24px 48px -12px rgba(26, 95, 224, 0.08), 0 4px 16px -4px rgba(26, 95, 224, 0.04);
  --shadow-float: 0 12px 32px -8px rgba(26, 95, 224, 0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

p { color: var(--muted); line-height: 1.72; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

section { padding: clamp(4rem, 8vw, 7rem) 0; }

/* Label */
.label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #D1D1CF; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--subtle); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.9rem 1.75rem;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--text);
  color: #fff;
}
.btn-primary:hover {
  background: #000;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--text);
  background: rgba(0,0,0,0.03);
}

.btn-cta {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 2px 12px rgba(26,95,224,0.25);
}
.btn-cta:hover {
  background: #1450c0;
  box-shadow: 0 4px 20px rgba(26,95,224,0.35);
  transform: translateY(-1px);
}
