/* ─── Variables ─────────────────────────────────────────────────── */
:root {
  --primary:      #4F46E5;
  --primary-dark: #3730A3;
  --dark:         #111827;
  --text:         #4B5563;
  --light:        #FFFFFF;
  --background:   #FAFAFC;
  --border:       #E5E7EB;
  --success:      #22C55E;
  --radius:       18px;
  --shadow:       0 20px 60px rgba(0,0,0,.08);
  --transition:   .35s ease;
  --container:    1280px;
}

/* ─── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--background);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, button, textarea, select { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4 { line-height: 1.1; }

/* ─── Layout ─────────────────────────────────────────────────────── */
.container {
  width: min(92%, var(--container));
  margin-inline: auto;
}

/* ─── Shared eye-brow label ──────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ─── Buttons ────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 34px;
  background: var(--dark);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(17,24,39,.22);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 28px 55px rgba(17,24,39,.30); }
.btn-primary:active { transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 30px;
  background: #fff;
  color: var(--dark);
  font-weight: 700;
  font-size: 15px;
  border-radius: 16px;
  border: 2px solid var(--border);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

/* ─── Error / loading state ──────────────────────────────────────── */
.error-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--text);
}
.error-state p { margin-bottom: 24px; font-size: 1.1rem; }
