/* Global Branding & Components */
:root {
  --brand-blue: #0077ff;
  --brand-gold: #ffcc00;
  --bg-dark: #050b14;
  --card-bg: rgba(255, 255, 255, 0.03);
  --text-white: #ffffff;
  --text-muted: #a0a0a0;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background: var(--bg-dark);
  color: var(--text-white);
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Nav */
.header-top {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(5, 11, 20, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--brand-blue);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-cta {
  background: var(--brand-blue);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--brand-blue);
  color: var(--brand-blue);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 119, 255, 0.3);
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-subtitle {
  color: var(--brand-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

h2 {
  font-size: 3rem;
  margin-bottom: 50px;
  line-height: 1.2;
}

/* Footer */
.final-cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(rgba(0, 119, 255, 0.1), transparent);
}

.final-cta h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

/* Mobile */
.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 992px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-inner { padding: 15px 20px; }
  h2 { font-size: 2.2rem; }
}
