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

:root {
  --navy: #05172e;
  --navy-mid: #0a2444;
  --blue: #1560BD;
  --blue-light: #2a7de1;
  --accent: #00c2ff;
  --white: #ffffff;
  --off-white: #f4f6f9;
  --gray: #8a96a8;
  --gray-light: #e8ecf2;
  --text: #1a2332;
  --border: rgba(255,255,255,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  line-height: 1.2;
  font-weight: 600;
}

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

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

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(5, 23, 46, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: white;
  letter-spacing: -0.5px;
}

.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: white;
  line-height: 1.2;
}

.nav-logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: var(--accent);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-cta {
  background: var(--blue);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 22px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
  font-family: 'DM Sans', sans-serif;
}

.nav-cta:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* PAGE HERO (inner pages) */
.page-hero {
  background: var(--navy);
  padding: 130px 48px 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(21,96,189,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  color: white;
  max-width: 640px;
  line-height: 1.15;
}

.page-hero p {
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 300;
}

/* SECTIONS */
.section {
  padding: 88px 48px;
}

.section-sm {
  padding: 56px 48px;
}

.section-dark {
  background: var(--navy);
  color: white;
}

.section-off {
  background: var(--off-white);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 12px;
}

.section-dark .section-label {
  color: var(--accent);
}

.section-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: #5a6a7e;
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}

.section-dark .section-sub {
  color: rgba(255,255,255,0.55);
}

/* CARDS */
.card {
  background: white;
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(21,96,189,0.1);
}

.card-dark {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
}

.card-dark:hover {
  border-color: rgba(0,194,255,0.3);
}

/* GRID */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ICON BOX */
.icon-box {
  width: 44px;
  height: 44px;
  background: rgba(21,96,189,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.icon-box svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
}

.section-dark .icon-box {
  background: rgba(0,194,255,0.1);
}

.section-dark .icon-box svg {
  stroke: var(--accent);
}

/* PILL TAGS */
.tag {
  display: inline-block;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(21,96,189,0.08);
  color: var(--blue);
  font-weight: 500;
  border: 1px solid rgba(21,96,189,0.15);
}

.tag-dark {
  background: rgba(0,194,255,0.1);
  color: var(--accent);
  border-color: rgba(0,194,255,0.2);
}

/* STAT CARD */
.stat-card {
  text-align: center;
  padding: 32px 24px;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}

.section-dark .stat-num {
  color: var(--accent);
}

.stat-label {
  font-size: 13px;
  color: var(--gray);
  font-weight: 400;
}

/* CTA BAND */
.cta-band {
  background: var(--blue);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band h2 {
  font-size: clamp(24px, 3vw, 38px);
  color: white;
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  margin-bottom: 32px;
  font-weight: 300;
}

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 7px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--blue);
  color: white;
}

.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21,96,189,0.35);
}

.btn-white {
  background: white;
  color: var(--blue);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: white;
}

/* FOOTER */
footer {
  background: var(--navy);
  color: white;
  padding: 56px 48px 32px;
  border-top: 1px solid var(--border);
}

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

.footer-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 12px;
  font-weight: 300;
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  font-weight: 300;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* TRUST BAR */
.trust-bar {
  background: var(--navy-mid);
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}

.trust-items {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  white-space: nowrap;
}

/* DIVIDER */
.divider {
  height: 1px;
  background: var(--gray-light);
  border: none;
}

/* FORM */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21,96,189,0.1);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .page-hero { padding: 110px 24px 56px; }
  .section { padding: 56px 24px; }
  .section-sm { padding: 40px 24px; }
  .cta-band { padding: 56px 24px; }
  footer { padding: 48px 24px 24px; }
  .trust-bar { padding: 16px 24px; }

  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.6s ease forwards;
}

.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; }
