/* ============================================
   INFOWAVE — SHARED STYLES
   ============================================ */

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

:root {
  --navy: #0f1f3d;
  --blue: #1B3A6B;
  --mid-blue: #2B5BA8;
  --light-blue: #deeaf8;
  --pale-blue: #f0f5fc;
  --gray-bg: #f5f6f8;
  --border: #e4e8ef;
  --text: #1a1a1a;
  --muted: #666;
  --light: #999;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

/* ---- NAV ---- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 70px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon { width: 38px; height: 38px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-name { font-size: 19px; font-weight: 800; color: var(--blue); letter-spacing: -0.4px; }
.nav-logo-sub { font-size: 7.5px; font-weight: 700; letter-spacing: 1.8px; color: var(--light); text-transform: uppercase; margin-top: 1px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-cta {
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--navy); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: background 0.15s;
}
.btn:hover { background: var(--navy); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--blue);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--blue);
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: all 0.15s;
}
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-white:hover { background: #e8f0fb; }

/* ---- SECTION PRIMITIVES ---- */
.section-label {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mid-blue);
  background: var(--pale-blue);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.section-h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.7px;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 10px;
}
.section-intro {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 560px;
}
.accent-bar {
  width: 44px;
  height: 4px;
  background: var(--mid-blue);
  border-radius: 2px;
  margin: 12px 0 24px;
}

/* ---- CARDS ---- */
.card {
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(27,58,107,0.1);
  transform: translateY(-2px);
}
.card-icon {
  width: 42px;
  height: 42px;
  background: var(--light-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.card-body {
  font-size: 14px;
  line-height: 1.72;
  color: var(--muted);
}

/* ---- CTA STRIP ---- */
.cta-strip {
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--blue);
}
.cta-strip-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.4px;
  margin-bottom: 6px;
}
.cta-strip-sub { font-size: 14px; color: rgba(255,255,255,0.6); }

/* ---- FOOTER ---- */
.footer {
  padding: 28px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
}
.footer-copy { font-size: 12px; color: var(--light); }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-size: 12px; color: var(--light); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--blue); }

/* ---- WAVE GRAPHIC ---- */
.wave-bg {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  pointer-events: none;
}
