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

body {
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

/* Popup */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #ffffff;
  width: 90%;
  max-width: 480px;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 25px 80px rgba(0,0,0,0.4);
  animation: popIn 0.35s ease;
}

@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.badge {
  display: inline-block;
  background: #ff4d4d;
  color: #fff;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  font-size: 14px;
}

.popup-box h2 {
  font-size: 42px;
  color: #222;
  margin-bottom: 16px;
  line-height: 1.1;
}

.popup-box h2 span {
  color: #2f6df6;
}

.popup-box p {
  font-size: 20px;
  color: #444;
  margin: 10px 0;
}

.popup-btn,
.popup-link,
.cta,
.nav-btn {
  text-decoration: none;
}

.popup-btn {
  display: block;
  margin-top: 28px;
  background: #2f6df6;
  color: #fff;
  padding: 18px 24px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: bold;
  transition: 0.2s;
}

.popup-btn:hover {
  transform: translateY(-2px);
}

.popup-link {
  display: inline-block;
  margin-top: 18px;
  color: #2f6df6;
  font-weight: bold;
}

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  background: url('hero.png') center center / cover no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(80, 40, 10, 0.25);
}

.topbar {
  position: relative;
  z-index: 2;
  padding: 24px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #222;
  background: rgba(255,255,255,0.9);
}

.topbar nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar nav a {
  color: #222;
  font-weight: 500;
}

.nav-btn {
  border: 2px solid #222;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: bold;
}

.content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin-left: 8%;
  padding-top: 120px;
  color: white;
}

.rating {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
}

.rating span {
  border: 2px solid rgba(255,255,255,0.7);
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: bold;
}

.discount {
  color: #fff;
}

h1 {
  font-size: 72px;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 24px;
}

.subtitle {
  font-size: 24px;
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 28px;
}

.benefits {
  list-style: none;
  margin-bottom: 36px;
}

.benefits li {
  font-size: 26px;
  margin-bottom: 14px;
  font-weight: 600;
}

.cta {
  display: inline-block;
  background: #2f6df6;
  color: white;
  padding: 22px 110px;
  border-radius: 999px;
  font-size: 34px;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(47,109,246,0.35);
}

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    gap: 16px;
  }

  .topbar nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .content {
    margin: 0 6%;
    padding-top: 80px;
  }

  h1 {
    font-size: 44px;
  }

  .subtitle {
    font-size: 18px;
  }

  .benefits li {
    font-size: 20px;
  }

  .cta {
    font-size: 24px;
    padding: 18px 48px;
  }

  .popup-box h2 {
    font-size: 32px;
  }

  .popup-box p {
    font-size: 18px;
  }
}
