/* ===== FONTS ===== */
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 300; font-display: swap; src: url('fonts/PlusJakartaSans-300.woff2') format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/PlusJakartaSans-400.woff2') format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/PlusJakartaSans-500.woff2') format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/PlusJakartaSans-600.woff2') format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/PlusJakartaSans-700.woff2') format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 800; font-display: swap; src: url('fonts/PlusJakartaSans-800.woff2') format('woff2'); }

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --grey-50: #F1F3F5;
  --grey-100: #E9ECEF;
  --grey-200: #DEE2E6;
  --grey-300: #CED4DA;
  --grey-400: #ADB5BD;
  --grey-500: #868E96;
  --grey-600: #495057;
  --grey-700: #343A40;
  --grey-800: #212529;
  --grey-900: #0F1114;
  --blue: #00629B;
  --blue-dark: #004E7C;
  --red: #EE2737;
  --gradient: linear-gradient(135deg, #00629B 0%, #0A79B8 100%);
  --gradient-soft: linear-gradient(135deg, rgba(0,98,155,0.12), rgba(0,98,155,0.06));
  --gradient-subtle: linear-gradient(135deg, rgba(0,98,155,0.06), rgba(0,98,155,0.03));
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.05);
  --shadow-lg: 0 4px 6px rgba(0,0,0,0.04), 0 16px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 8px 16px rgba(0,0,0,0.06), 0 24px 56px rgba(0,0,0,0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--grey-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: #FFFFFF;
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  -webkit-backdrop-filter: blur(20px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: transform var(--transition-fast);
}
.nav-logo:hover { transform: translateY(-1px); }
.nav-logo-badge {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: center;
  line-height: 1;
  transition: background var(--transition);
}
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--grey-600);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color var(--transition);
  letter-spacing: -0.01em;
}
.nav-links a:hover { color: var(--grey-800); }

.nav-cta {
  padding: 9px 20px !important;
  background: var(--blue) !important;
  color: white !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  font-size: 0.8125rem !important;
  transition: transform var(--transition-fast), box-shadow var(--transition) !important;
  box-shadow: 0 2px 8px rgba(0,98,155,0.3);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,98,155,0.4) !important;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 1001;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--grey-700);
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle.active span { background: var(--grey-800) !important; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-menu.active {
  display: flex;
  opacity: 1;
}
.mobile-menu a {
  color: var(--grey-800);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.25rem;
  transition: color var(--transition);
  letter-spacing: -0.02em;
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu .btn-primary {
  color: var(--white) !important;
}
.mobile-menu .btn-primary:hover {
  color: var(--white) !important;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform var(--transition-fast), box-shadow var(--transition), background var(--transition);
  letter-spacing: -0.01em;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(0,98,155,0.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--blue-dark);
  box-shadow: 0 6px 24px rgba(0,98,155,0.35);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

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

.btn-outline {
  background: transparent;
  color: var(--grey-700);
  border: 1.5px solid var(--grey-200);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,98,155,0.16);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--grey-900);
  color: rgba(255,255,255,0.75);
  padding: 0;
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  gap: 16px;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo-badge { padding: 3px 6px; }
  .nav-logo-img { height: 40px; }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
}
