:root {
  --blue: #1E88E5; --blue-light: #5BC0EB; --blue-pale: #E3F2FD;
  --blue-deep: #0D47A1; --blue-darker: #0A2E5C;
  --ink: #0A0E1A; --ink-soft: #1F2937;
  --gray: #6B7280; --gray-light: #E5E7EB; --gray-pale: #F9FAFB;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(13, 71, 161, 0.08);
  --shadow-md: 0 8px 24px rgba(13, 71, 161, 0.12);
  --shadow-lg: 0 20px 60px rgba(13, 71, 161, 0.18);
  --shadow-blue: 0 8px 32px rgba(30, 136, 229, 0.35);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--ink); line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30, 136, 229, 0.1);
}
.nav-inner { max-width: 1400px; margin: 0 auto; padding: 12px 32px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 56px; width: auto; }
.logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1px; color: var(--blue-deep); line-height: 1; }
.logo-text span { display: block; font-size: 11px; font-family: 'Inter', sans-serif; color: var(--gray); font-weight: 600; letter-spacing: 2px; margin-top: 2px;}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--ink-soft); position: relative; transition: color 0.2s; }
.nav-links a::after { content: ''; position: absolute; bottom: -6px; left: 0; right: 0; height: 2px; background: var(--blue); transform: scaleX(0); transition: transform 0.3s; }
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { background: var(--blue); color: var(--white) !important; padding: 12px 24px; border-radius: 8px; font-size: 14px; font-weight: 700; letter-spacing: 0.5px; box-shadow: var(--shadow-blue); transition: all 0.2s; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(30, 136, 229, 0.4); }
.nav-cta::after { display: none; }
.menu-toggle { display: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.3s; }
@media (max-width: 900px) {
  .nav-inner { padding: 10px 20px; }
  .nav-links { position: fixed; top: 80px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 32px; gap: 24px; border-top: 1px solid var(--gray-light); transform: translateY(-200%); transition: transform 0.3s ease; box-shadow: var(--shadow-md); }
  .nav-links.open { transform: translateY(0); }
  .menu-toggle { display: block; }
  .logo img { height: 48px; }
  .logo-text { font-size: 18px; }
}

/* PAGE HEADER */
.page-header {
  position: relative;
  background: linear-gradient(135deg, #0A2E5C 0%, #0D47A1 50%, #1565C0 100%);
  color: var(--white);
  padding: 160px 32px 100px;
  text-align: center;
  overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-header::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(91, 192, 235, 0.25), transparent 60%);
}
.page-header-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.page-header .crumb { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--blue-light); text-transform: uppercase; margin-bottom: 16px; display: inline-block; padding: 6px 16px; background: rgba(91,192,235,0.15); border: 1px solid rgba(91,192,235,0.3); border-radius: 100px; }
.page-header h1 { font-family: 'Anton', sans-serif; font-size: clamp(48px, 7vw, 88px); line-height: 0.95; letter-spacing: 0; text-transform: uppercase; margin-bottom: 20px; }
.page-header h1 .accent { color: var(--blue-light); }
.page-header p { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto; line-height: 1.6; }

/* SECTIONS */
section { padding: 100px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section-tag { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; position: relative; padding-left: 32px; padding-right: 3px;}
.section-tag::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 24px; height: 2px; background: var(--blue); }
.section-tag[style*="padding-left: 0"]::before { display: none; }
.section-title { font-family: 'Anton', sans-serif; font-size: clamp(36px, 5vw, 64px); line-height: 1; letter-spacing: 0; text-transform: uppercase; margin-bottom: 20px; color: var(--ink); }
.section-title .accent { color: var(--blue); }
.section-sub { font-size: 18px; color: var(--gray); max-width: 640px; line-height: 1.6; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 18px 32px; border-radius: 10px; font-size: 15px; font-weight: 700; letter-spacing: 0.5px; transition: all 0.25s ease; text-transform: uppercase; }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: var(--shadow-blue); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(30, 136, 229, 0.5); }
.btn-secondary { background: rgba(0,0,0,0); color: var(--blue); border: 2px solid var(--blue); }
.btn-secondary:hover { background: var(--blue); color: var(--white); }

/* FOOTER */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 80px; margin-bottom: 16px; filter: brightness(1.1); }
.footer-brand p { font-size: 14px; max-width: 320px; line-height: 1.7; }
.footer h5 { color: var(--white); font-family: 'Anton', sans-serif; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; padding-right: 1px;}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; transition: color 0.2s; }
.footer ul a:hover { color: var(--blue-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; margin-bottom: 12px; }
.footer-contact-item svg { color: var(--blue-light); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* FLOATING MOBILE CTA */
.floating-cta { display: none; position: fixed; bottom: 20px; left: 20px; right: 20px; z-index: 90; background: var(--blue); color: var(--white); padding: 16px; border-radius: 12px; text-align: center; font-weight: 800; font-size: 15px; letter-spacing: 0.5px; box-shadow: 0 12px 36px rgba(30, 136, 229, 0.5); text-transform: uppercase; }
@media (max-width: 768px) { .floating-cta { display: block; } body { padding-bottom: 80px; } }

/* REVEAL */
.js-anim .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s, transform 0.8s; }
.js-anim .reveal.in { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) { section { padding: 70px 0; } .page-header { padding: 130px 20px 70px; } }
