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

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

:root {
  --ht-blue:       #185FA5;
  --ht-blue-light: #E6F1FB;
  --ht-blue-mid:   #378ADD;
  --ht-blue-dark:  #0C447C;
  --ht-dark:       #0C2340;
  --ht-gray:       #f7f8fa;
  --ht-text:       #1a2a3a;
  --ht-muted:      #5a7a9a;
  --ht-border:     #e2eaf2;
}

html  { scroll-behavior: smooth; }
body  { font-family: 'DM Sans', sans-serif; color: var(--ht-text); background: #fff; line-height: 1.6; font-size: 16px; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }

/* ===== NAVIGATION ===== */
nav {
  background: #fff;
  border-bottom: 0.5px solid var(--ht-border);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--ht-dark); letter-spacing: -0.5px; }
.logo span { color: var(--ht-blue-mid); }

.nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; }
.nav-links a { font-size: 14px; color: var(--ht-muted); font-weight: 400; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ht-blue); }

.nav-cta {
  background: var(--ht-blue); color: #fff; font-size: 13px; font-weight: 500;
  font-family: 'DM Sans', sans-serif; padding: 9px 20px; border-radius: 7px;
  border: none; cursor: pointer; transition: background 0.2s;
}
.nav-cta:hover { background: var(--ht-dark); }

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

@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; border-bottom: 0.5px solid var(--ht-border);
    padding: 1.25rem 1.5rem; flex-direction: column; gap: 1rem;
  }
  .nav-menu.open { display: flex; }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block; background: var(--ht-blue); color: #fff;
  border: none; padding: 13px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 500; font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: background 0.2s; text-align: center;
}
.btn-primary:hover { background: var(--ht-dark); color: #fff; }

.btn-secondary {
  display: inline-block; background: #fff; color: var(--ht-blue);
  border: 1.5px solid var(--ht-blue); padding: 12px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 500; font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: all 0.2s; text-align: center;
}
.btn-secondary:hover { background: var(--ht-blue-light); }

.btn-white {
  display: inline-block; background: #fff; color: var(--ht-dark);
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
  padding: 13px 28px; border-radius: 8px; transition: opacity 0.2s;
}
.btn-white:hover { opacity: 0.88; color: var(--ht-dark); }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--ht-dark) 0%, #1a4a7a 100%);
  padding: 4rem 2rem; text-align: center; color: #fff;
}
.page-header h1 {
  font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800; margin-bottom: 0.5rem; letter-spacing: -0.5px;
}
.page-header p { font-size: 16px; opacity: 0.7; max-width: 500px; margin: 0 auto; }

/* ===== BADGES ===== */
.badge { display: inline-block; font-size: 11px; font-weight: 500; padding: 4px 11px; border-radius: 20px; }
.badge-blue   { background: #E6F1FB; color: #0C447C; }
.badge-green  { background: #EAF3DE; color: #27500A; }
.badge-amber  { background: #FAEEDA; color: #633806; }
.badge-gray   { background: #f1efe8; color: #444441; }

/* ===== FOOTER ===== */
footer {
  border-top: 0.5px solid var(--ht-border); padding: 2.5rem 2rem;
  text-align: center; font-size: 13px; color: var(--ht-muted); margin-top: 4rem;
}
footer a { color: var(--ht-blue); }
footer a:hover { text-decoration: underline; }

/* ===== CTA STRIP ===== */
.cta-strip { background: linear-gradient(135deg, var(--ht-dark), #1a4a7a); padding: 4rem 2rem; text-align: center; color: #fff; }
.cta-strip h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 0.75rem; letter-spacing: -0.3px; }
.cta-strip p  { font-size: 15px; opacity: 0.7; margin-bottom: 2rem; }
