/* NAVBAR */

body {
  margin: 0;
  padding: 0;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(7,21,40,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,194,168,0.1);
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 10px;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  text-decoration: none;
}

.logo-nxt {
  color: #1A6BF0;
  font-weight: 900;
}

.logo-har {
  color: #1A6BF0;
  font-weight: 700;
}

.logo img {
  height: 70px;
  width: auto;
}

/* MENU */
.nav-menu {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: #FFF8EE;
  font-size: 0.9rem;
  transition: 0.3s;
}

/* Hover Effect */
.nav-menu a:hover {
  color: #00C2A8;
}

/* BUTTON */
.nav-btn {
  background: #00C2A8;
  color: #071528 !important;
  padding: 8px 16px;
  border-radius: 4px;
}

.nav-btn:hover {
  background: #F0A500;
}

/* MOBILE */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 20px 60px;
  background: radial-gradient(ellipse 90% 70% at 50% 20%, #102A4C 0%, #071528 70%);
}

/* EYEBROW */
.eyebrow {
  font-size: 1.2rem;
  letter-spacing: 0.25em;
  color: #00C2A8;
  margin-top: 80px;
  margin-bottom: 20px;
}

/* HEADING */
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  max-width: 900px;
  margin-bottom: 25px;
}

.hero h1 em {
  color: #F0A500;
  font-style: italic;
}

/* SUBTEXT */
.hero-sub {
  max-width: 650px;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* TAG */
.for-ind {
  border: 1px solid #F0A500;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.7rem;
  margin-bottom: 30px;
}

/* STATS */
.stat-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid rgba(0,194,168,0.3);
  border-radius: 4px;
  overflow: hidden;
  max-width: 800px;
}

.stat-item {
  flex: 1;
  min-width: 140px;
  padding: 20px;
  border-right: 1px solid rgba(0,194,168,0.2);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: 2rem;
  color: #00C2A8;
  font-weight: bold;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}