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

:root {
  --navy: #193762;
  --navy-dark: #102448;
  --navy-soft: #244a7d;
  --orange: #F7941D;
  --orange-dark: #dc7f10;
  --orange-soft: #fbb040;

  --blue-50: #eef3fa;
  --blue-100: #dce7f5;
  --blue-200: #bfd4ec;
  --blue-400: #6e95c3;
  --blue-500: #3a679f;
  --blue-600: #193762;
  --blue-700: #193762;
  --blue-800: #102448;
  --blue-900: #0d2343;
  --blue-950: #09162b;

  --slate-50: #f8fafc;
  --slate-100: #eef2f6;
  --slate-200: #dde5ee;
  --slate-300: #c8d3e0;
  --slate-400: #8d9bae;
  --slate-500: #66758a;
  --slate-600: #4b586a;
  --slate-700: #334155;
  --slate-800: #1c2738;
  --slate-900: #102030;

  --primary: var(--navy);
  --accent: var(--orange);
  --green: #22c55e;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 999px;

  --shadow-sm: 0 4px 14px rgba(16, 36, 72, 0.06);
  --shadow: 0 16px 34px rgba(16, 36, 72, 0.09);
  --shadow-lg: 0 24px 48px rgba(16, 36, 72, 0.12);
  --shadow-xl: 0 32px 70px rgba(16, 36, 72, 0.18);

  --font-sans: "Inter", system-ui, sans-serif;
  --font-display: "Outfit", "Inter", sans-serif;

  --ease: cubic-bezier(.25, .46, .45, .94);
  --nav-h: 80px;
  --container: 1280px;
  --section-padding: 120px;
}

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

body {
  font-family: var(--font-sans);
  color: var(--slate-800);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--navy) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(25, 55, 98, 0.07);
  border: 1px solid rgba(25, 55, 98, 0.15);
  border-radius: var(--radius-full);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--slate-600);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
