:root {
  --bg-main: #05060a;
  --bg-surface: #0c1018;
  --bg-surface-soft: #111827;
  --text-main: #f5f7ff;
  --text-muted: #a7b0c8;
  --neon-red: #ff3a65;
  --neon-blue: #2ea8ff;
  --radius: 16px;
  --shadow-soft: 0 14px 36px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body.home-redesign {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 58, 101, 0.2), transparent 36%),
    radial-gradient(circle at 88% 8%, rgba(46, 168, 255, 0.2), transparent 36%),
    var(--bg-main);
  line-height: 1.45;
  overflow-x: hidden;
  padding-bottom: 84px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
}

.topbar {
  padding: 14px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.04em;
}

.logo span {
  color: var(--text-muted);
}

.topbar__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  font-size: 14px;
  width: 100%;
}

.nav-link,
.cta {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--neon-red), var(--neon-blue));
  color: #fff;
  font-weight: 800;
  padding: 11px 18px;
  box-shadow: 0 0 24px rgba(46, 168, 255, 0.28);
}

.hero {
  padding: 24px 0 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

h1 {
  margin: 0;
  font-size: clamp(30px, 6vw, 56px);
  line-height: 1.05;
}

.subtitle {
  margin: 14px 0 18px;
  color: #d0d8ef;
  font-size: clamp(17px, 2.6vw, 24px);
}

.cta--pulse {
  display: inline-flex;
  animation: pulseNeon 2s ease-in-out infinite;
}

@keyframes pulseNeon {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 58, 101, 0.25), 0 0 20px rgba(46, 168, 255, 0.35); }
  50% { box-shadow: 0 0 0 9px rgba(255, 58, 101, 0), 0 0 28px rgba(46, 168, 255, 0.65); }
}

.hero__media {
  min-height: 220px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 58, 101, 0.16), rgba(46, 168, 255, 0.16)),
    var(--bg-surface);
  display: grid;
  place-items: center;
  padding: 16px;
  color: var(--text-muted);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.section {
  padding: 18px 0;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 4vw, 36px);
}

h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.grid {
  display: grid;
  gap: 12px;
}

.grid--2 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.card {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.95), rgba(12, 16, 24, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.card p {
  margin: 0;
  color: var(--text-muted);
}

.card--accent-red {
  border-color: rgba(255, 58, 101, 0.6);
}

.card--accent-blue {
  border-color: rgba(46, 168, 255, 0.6);
}

.badge {
  margin-top: 12px !important;
  color: #fff !important;
  font-weight: 700;
}

.difficulty {
  margin-bottom: 8px;
  letter-spacing: 0.24em;
  color: var(--neon-blue);
}

.benefit {
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit span {
  font-size: 22px;
}

.price-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-surface-soft);
  border-radius: var(--radius);
  overflow: hidden;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.price-table th {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.birthday-pack {
  background: linear-gradient(145deg, rgba(255, 58, 101, 0.16), rgba(46, 168, 255, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 18px;
}

.birthday-pack__price {
  margin: 6px 0 14px;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}

.footer {
  padding: 28px 0 86px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer a {
  color: #d8e0f6;
}

.sticky-mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 50;
  text-align: center;
  border-radius: 999px;
  padding: 13px 16px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, var(--neon-red), var(--neon-blue));
  box-shadow: 0 0 18px rgba(46, 168, 255, 0.5);
}

@media (min-width: 760px) {
  body.home-redesign {
    padding-bottom: 0;
  }

  .topbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .topbar__nav {
    justify-content: flex-end;
  }

  .hero {
    grid-template-columns: 1.15fr 1fr;
    align-items: stretch;
    gap: 20px;
    padding-top: 34px;
  }

  .grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .price-wrap {
    grid-template-columns: 1.4fr 1fr;
  }
}

@media (min-width: 980px) {
  .sticky-mobile-cta {
    display: none;
  }
}
