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

html,
body {
  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
  text-align: center;
}

/* Background glow */
body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}

body::before {
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.08);
  top: 60px;
  left: 40px;
}

body::after {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.06);
  right: 40px;
  bottom: 40px;
}

/* Reusable glass */
.glass {
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

/* Main page */
.packages-page {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 80px;
}

/* Header */
header {
  background: rgba(0, 0, 0, 0.92);
  color: #fff;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1220px;
  margin: auto;
  padding: 0 20px;
  gap: 18px;
}

.logo-link {
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}

header h1 {
  margin: 0;
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 1px;
}

header nav {
  margin-left: auto;
}

header nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

header nav ul li {
  margin: 0;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

header nav ul li a:hover {
  opacity: 0.75;
}

.nav-user-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-user-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-user-name {
  color: #bdbdbd;
  font-size: 14px;
  white-space: nowrap;
}

.nav-user-btn {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
}

.nav-user-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  flex-shrink: 0;
}

/* Responsive Navbar */
@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }

  header nav {
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: #000;
    display: none;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  header nav ul {
    flex-direction: column;
    width: 100%;
    gap: 20px;
    padding: 22px 20px;
    text-align: right;
    align-items: flex-end;
  }

  header nav ul li {
    width: 100%;
  }

  .nav-user-area,
  .nav-user-box {
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }

  header nav.active {
    display: block;
  }
}

/* Hero */
.hero {
  padding: 55px 30px;
  border-radius: 18px;
  margin-bottom: 28px;
}

.eyebrow {
  color: #a6a6a6;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 52px;
  font-weight: lighter;
  line-height: 1.12;
  max-width: 920px;
  margin: 0 auto 18px;
}

.hero-copy {
  font-size: 16px;
  color: #c8c8c8;
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */
.primary-btn,
.secondary-btn,
.choose-btn {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary-btn,
.secondary-btn {
  text-decoration: none;
  padding: 14px 24px;
  display: inline-block;
}

.primary-btn,
.choose-btn {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}

.primary-btn:hover,
.choose-btn:hover {
  background: transparent;
  color: #fff;
}

.secondary-btn {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.secondary-btn:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.06);
}

/* Section head */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 30px;
  text-align: left;
}

.section-head h2 {
  font-size: 36px;
  font-weight: lighter;
  line-height: 1.2;
}

/* Grid */
.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* Cards */
.package-card {
  position: relative;
  text-align: left;
  padding: 28px;
  border-radius: 18px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.2);
}

.package-card.featured {
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.075);
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tier {
  margin-bottom: 10px;
  color: #b3b3b3;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.package-card h3 {
  font-size: 30px;
  font-weight: lighter;
  margin-bottom: 12px;
  line-height: 1.15;
}

.price {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 10px;
}

.tagline {
  color: #c5c5c5;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 20px;
}

/* Feature list */
.feature-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.feature-list li {
  color: #d0d0d0;
  font-size: 15px;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 18px;
}

/* Buttons inside card */
.choose-btn {
  width: 100%;
  padding: 13px 18px;
}

/* Extras */
.extras,
.cta-strip {
  margin-top: 28px;
  padding: 30px;
  border-radius: 18px;
  text-align: left;
}

.extras h2,
.cta-strip h2 {
  font-size: 34px;
  font-weight: lighter;
  margin-bottom: 12px;
  line-height: 1.2;
}

.extras-copy p:last-child {
  color: #c8c8c8;
  line-height: 1.75;
}

.extras-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.extras-list span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #e8e8e8;
  font-size: 14px;
}

.cta-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.cta-strip .primary-btn {
  white-space: nowrap;
}

/* Tablet */
@media (max-width: 980px) {
  .package-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

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

/* Mobile */
@media (max-width: 768px) {
  .packages-page {
    padding: 100px 14px 60px;
  }

  .hero {
    padding: 36px 18px;
  }

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

  .hero-copy {
    font-size: 14px;
  }

  .section-head h2,
  .extras h2,
  .cta-strip h2 {
    font-size: 26px;
  }

  .package-card {
    padding: 22px;
  }

  .package-card h3 {
    font-size: 24px;
  }

  .price {
    font-size: 28px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn,
  .choose-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .feature-list li,
  .tagline {
    font-size: 14px;
  }
}
