/* ============================================================
   BESTE VERHUIZERS — Design System v3 (Premium Navy + Orange)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Custom Properties ─────────────────────────────────── */
:root {
  /* Brand — Orange accent */
  --orange:        #FF5A1F;
  --orange-dark:   #E04810;
  --orange-mid:    #FF7040;
  --orange-pale:   #FFF4EF;
  --orange-glow:   rgba(255,90,31,.14);

  /* Navy scale */
  --navy:          #0D1B2A;
  --navy-mid:      #162437;
  --navy-light:    #1E3248;
  --navy-border:   rgba(255,255,255,.08);

  /* Warm neutrals */
  --white:         #FFFFFF;
  --warm-50:       #FAF9F7;
  --warm-100:      #F4F2ED;
  --warm-200:      #E9E5DE;
  --warm-300:      #CBC7BE;

  /* Text */
  --ink:           #0D1B2A;
  --ink-mid:       #374151;
  --ink-light:     #6B7280;
  --ink-pale:      #9CA3AF;

  /* Semantic */
  --gold:          #F59E0B;
  --green:         #10B981;

  /* Legacy aliases (keep old class references working) */
  --blue-dark:     #0D1B2A;
  --blue-mid:      #162437;
  --blue-light:    #FF7040;
  --blue-pale:     #FAF9F7;
  --blue-glow:     rgba(255,90,31,.10);
  --grey-50:       #FAF9F7;
  --grey-100:      #F4F2ED;
  --grey-200:      #E9E5DE;
  --grey-400:      #9CA3AF;
  --grey-600:      #6B7280;
  --grey-700:      #374151;
  --grey-900:      #0D1B2A;

  /* Gradients */
  --grad-hero:     linear-gradient(150deg, #0D1B2A 0%, #162437 55%, #1A2C42 100%);
  --grad-orange:   linear-gradient(135deg, #FF5A1F 0%, #FF7A45 100%);
  --grad-btn:      linear-gradient(135deg, #FF5A1F 0%, #FF7040 100%);
  --grad-btn-hover:linear-gradient(135deg, #FF7040 0%, #FF5A1F 100%);
  --grad-number:   linear-gradient(135deg, #FF7040 0%, #FF5A1F 100%);

  /* Typography */
  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display:  'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-xs:       0.75rem;
  --font-sm:       0.875rem;
  --font-base:     1rem;
  --font-lg:       1.125rem;
  --font-xl:       1.25rem;
  --font-2xl:      1.5rem;
  --font-3xl:      2rem;
  --font-4xl:      2.5rem;
  --font-5xl:      clamp(2.5rem, 5vw, 4rem);
  --font-hero:     clamp(2.75rem, 5.5vw, 4.25rem);
  --font-h2:       clamp(1.75rem, 3vw, 2.5rem);

  /* Spacing */
  --sp-1:   4px;  --sp-2:  8px;   --sp-3:  12px;  --sp-4:  16px;
  --sp-5:   20px; --sp-6:  24px;  --sp-8:  32px;  --sp-10: 40px;
  --sp-12:  48px; --sp-16: 64px;  --sp-20: 80px;  --sp-24: 96px;
  --sp-32: 128px;

  /* Radii */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  /* Shadows — warmer, more depth */
  --shadow-sm:   0 1px 3px rgba(13,27,42,.07), 0 1px 2px rgba(13,27,42,.04);
  --shadow-md:   0 4px 16px rgba(13,27,42,.10), 0 2px 6px rgba(13,27,42,.06);
  --shadow-lg:   0 10px 40px rgba(13,27,42,.13), 0 4px 12px rgba(13,27,42,.07);
  --shadow-xl:   0 20px 60px rgba(13,27,42,.16), 0 8px 24px rgba(13,27,42,.08);
  --shadow-card: 0 2px 24px rgba(13,27,42,.08);
  --shadow-orange: 0 8px 30px rgba(255,90,31,.40);

  /* Transitions */
  --t-fast:   150ms ease;
  --t-base:   250ms ease;
  --t-slow:   400ms cubic-bezier(.4,0,.2,1);

  /* Container */
  --container: 1200px;
  --container-pad: clamp(var(--sp-5), 4vw, var(--sp-10));
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: var(--font-base);
  line-height: 1.7;
  color: var(--ink-mid);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, select, textarea { font-family: var(--font); }
ul, ol { list-style: none; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--font-hero); font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; }
h2 { font-size: var(--font-h2); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: var(--font-xl); font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: var(--font-lg); font-weight: 600; }

p { line-height: 1.75; }

/* ── Layout Utilities ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--sp-20);
}

.section--alt   { background: var(--warm-50); }
.section--grey  { background: var(--warm-100); }
.section--dark  { background: var(--navy); color: var(--white); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid { display: grid; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-size: var(--font-base);
  font-weight: 600;
  font-family: var(--font);
  letter-spacing: .01em;
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--grad-btn);
  color: var(--white);
  box-shadow: var(--shadow-orange);
  position: relative;
  overflow: hidden;
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255,255,255,.15);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.btn--primary:hover {
  background: var(--grad-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255,90,31,.50);
}
.btn--primary:active { transform: translateY(0); }
.btn--primary:active::after { opacity: 1; }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--warm-200);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn--sm { padding: 11px 22px; font-size: var(--font-sm); }
.btn--lg { padding: 20px 48px; font-size: var(--font-lg); }

.btn i { font-size: .9em; }

/* ── Section Label ──────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--font-xs);
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--sp-4);
  font-family: var(--font);
}
.section-label::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--sp-16);
}
.section-header p {
  margin-top: var(--sp-4);
  color: var(--ink-light);
  font-size: var(--font-lg);
}

/* ── Stars ───────────────────────────────────────────────── */
.stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: .9rem;
}

/* ── Tag / Badge ────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: var(--font-sm);
  font-weight: 600;
  background: var(--orange-pale);
  color: var(--orange-dark);
  border: 1px solid rgba(255,90,31,.2);
}

/* ── Responsive helpers ─────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding-block: var(--sp-16); }
  .hide-mobile { display: none !important; }
}
@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
}
