:root {
  --navy: #081a33;
  --navy-2: #102746;
  --blue: #1167ff;
  --cyan: #00b8ff;
  --orange: #ff8a00;
  --text: #172033;
  --muted: #64748b;
  --soft: #f4f7fb;
  --line: #e4eaf2;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(8, 26, 51, .12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  transition: .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 14px 28px rgba(17,103,255,.22); }
.btn-primary:hover { transform: translateY(-2px); background: #0057e7; }
.btn-secondary { background: #fff; color: var(--navy); border: 1px solid rgba(255,255,255,.3); }
.btn-outline { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-light { background: #fff; color: var(--navy); border: 1px solid rgba(255,255,255,.22); }
.btn-light:hover { transform: translateY(-2px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 34px;
}
.section-head h2,
.section-head--intro h1.page-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -1.4px;
  line-height: 1.1;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

section { padding: 86px 0; }
