/* GLOBAL */
body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  background: #050f1f;
  color: white;
  line-height: 1.6;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 600;
}

p {
  opacity: 0.85;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #071322;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-left {
  font-size: 22px;
  font-weight: 700;
}

.nav-right a {
  margin-left: 24px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-right a:hover {
  color: #4cd1ff;
  transform: translateY(-2px);
}
.nav-right a {
  position: relative;
}

.nav-right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #4cd1ff;
  transition: width 0.25s ease;
}

.nav-right a:hover::after {
  width: 100%;
}


.nav-right a:hover {
  color: #4cd1ff;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 40px;
  flex-wrap: wrap;
  gap: 60px;
}

.hero-text {
  max-width: 480px;
}

.hero h1 {
  font-size: 48px;
}

.hero h2 {
  font-size: 24px;
  margin-top: 10px;
}

.hero p {
  margin-top: 20px;
  font-size: 16px;
}

/* LAPTOP MOCKUP */
.laptop-frame {
  width: 520px;
  padding: 20px;
  border-radius: 14px;
  background: #0b1b30;
  box-shadow: 0 8px 25px rgba(0,0,0,0.45);
}

.laptop-screen {
  width: 100%;
  border-radius: 10px;
}

/* BUTTON */
.download-button {
  display: inline-block;
  padding: 14px 32px;
  background: #1e90ff;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
  margin-top: 25px;
  box-shadow: 0 0 0px rgba(30,144,255, 0.6);
}

.download-button:hover {
  background: #3aa0ff;
  box-shadow: 0 0 12px rgba(30,144,255, 0.8), 0 0 24px rgba(30,144,255, 0.5);
}

/* FEATURES */
.features {
  padding: 80px 40px;
}

.features h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.feature-box {
  background: #0b1b30;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.45);
  font-size: 16px;
  font-weight: 500;
}

/* COMPARISON */
.comparison {
  padding: 80px 40px;
}

.comparison h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.comp-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.comp-column {
  background: #0b1b30;
  padding: 30px;
  border-radius: 14px;
  width: 300px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.45);
}

.comp-heading {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.comp-list {
  list-style: none;
  padding: 0;
}

.comp-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.comp-list li:last-child {
  border-bottom: none;
}

.good li {
  color: #4cd1ff;
  font-weight: 600;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  background: #050a14;
  margin-top: 60px;
  opacity: 0.6;
  font-size: 14px;
}
