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

/* Prevent flash of unstyled nav text while fonts load */
nav { opacity: 0; animation: navFadeIn 0.01s 0.3s ease forwards; }
@keyframes navFadeIn { to { opacity: 1; } }

:root {
  --navy: #080F1E;
  --navy-mid: #0E1929;
  --navy-card: #111E30;
  --blue: #1A5CCC;
  --blue-bright: #2E7DE8;
  --blue-glow: rgba(46,125,232,0.1);
  --white: #F0F4FF;
  --off-white: #C8D4E8;
  --gray: #7A8BA8;
  --gray-light: #A8B8D0;
  --green: #00C896;
  --red: #E8455A;
  --gold: #E8A020;
  --border: rgba(46,125,232,0.18);
  --border-subtle: rgba(255,255,255,0.06);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.45;
}

p { color: var(--gray-light); font-size: 0.975rem; line-height: 1.78; }
a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-bright);
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,125,232,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,125,232,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(8,15,30,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--white);
}

.logo-mark { width: 32px; height: 32px; flex-shrink: 0; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray);
  transition: color var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 7px;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}

.nav-cta:hover { background: var(--blue-bright) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 16px rgba(26,92,204,0.3);
}

.btn-primary:hover {
  background: var(--blue-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(46,125,232,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(255,255,255,0.16);
}

.btn-secondary:hover {
  border-color: var(--blue-bright);
  color: var(--blue-bright);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--blue-bright);
  border: 1px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue-glow);
  transform: translateY(-1px);
}

.card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: rgba(46,125,232,0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46,125,232,0.22), transparent);
}

.check-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.65;
}

.check-list li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7.5' stroke='%2300C896' stroke-opacity='0.45'/%3E%3Cpath d='M5 8L7 10L11 6' stroke='%2300C896' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 11px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.badge-blue { background: rgba(26,92,204,0.16); color: var(--blue-bright); border: 1px solid rgba(46,125,232,0.28); }
.badge-green { background: rgba(0,200,150,0.1); color: var(--green); border: 1px solid rgba(0,200,150,0.22); }
.badge-gold { background: rgba(232,160,32,0.1); color: var(--gold); border: 1px solid rgba(232,160,32,0.22); }

.icon-box {
  width: 40px; height: 40px;
  background: var(--blue-glow);
  border: 1px solid var(--border);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

footer {
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 40px;
  position: relative; z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--gray);
  max-width: 260px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: var(--gray); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--blue-bright); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
}

.footer-bottom p { font-size: 0.82rem; color: var(--gray); }
.footer-tagline { font-size: 0.82rem; color: var(--blue-bright); font-weight: 600; font-style: italic; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.animate-fade-up { animation: fadeUp 0.65s ease both; }
.animate-fade-up-delay-1 { animation: fadeUp 0.65s 0.1s ease both; }
.animate-fade-up-delay-2 { animation: fadeUp 0.65s 0.22s ease both; }
.animate-fade-up-delay-3 { animation: fadeUp 0.65s 0.34s ease both; }

.form-group { display: flex; flex-direction: column; gap: 5px; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-light);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(46,125,232,0.22);
  border-radius: 7px;
  padding: 11px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
  line-height: 1.5;
}

.form-group input::placeholder { color: var(--gray); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-bright);
  background: rgba(46,125,232,0.05);
}

.form-group select option { background: var(--navy-mid); color: var(--white); }

.mobile-menu { display: none; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu {
    display: none !important;
    position: fixed; inset: 0;
    background: var(--navy);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }
  .mobile-menu.open { display: flex !important; }
  .mobile-menu a { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
