* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #fff;
  color: var(--text);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #fff5f7 0%, #f8f9fa 50%, #fffbf2 100%);
  pointer-events: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 1.75rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(214, 41, 118, 0.05);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.brand__logo {
  height: 5rem;
  width: auto;
  display: block;
}

.hero {
  padding: 6.5rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.75rem;
  background: var(--insta-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #1a1a2e;
}

.hero__text {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero__cta {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.planner {
  padding-bottom: 6rem;
  display: grid;
  gap: 2rem;
}

.card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.planner__intro h2 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.package-showcase {
  margin: 4rem 0;
  display: none;
}

.package-showcase.is-visible {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 880px) {
  .planner {
    grid-template-columns: 0.85fr 1.55fr;
    align-items: start;
  }
  
  .card {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-wrap {
    justify-content: center;
  }
  .brand__logo {
    height: 2.5rem;
    max-width: 100%;
    object-fit: contain;
  }
}
