/* ============================================
   PACKAGES
   ============================================ */

.packages-section {
  padding: 120px 40px;
  background: transparent;
}

.packages-inner {
  max-width: 1300px;
  margin: 0 auto;
}

/* ---- Part 1: Heading ---- */
.packages-heading {
  text-align: center;
  margin-bottom: 64px;
}

.packages-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--grey);
  margin-bottom: 20px;
}

.packages-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  color: var(--white);
  line-height: 1;
}

/* ---- Cards grid ---- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.package-card {
  background: #111111;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  opacity: 0;
  transform: translateY(32px);
  will-change: transform, opacity;
}

.package-card.package-featured {
  border-color: var(--red);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--red);
}

.package-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--grey);
  margin-bottom: 16px;
}

.package-price {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey);
  line-height: 1.4;
}

.package-price strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--white);
  margin-top: 4px;
}

.package-once {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--grey);
  margin-top: 6px;
  letter-spacing: 0.05em;
}

.package-divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  flex: 1;
}

.package-features li {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  line-height: 1.5;
}

.btn-package-outline {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 16px;
  border: 1.5px solid var(--white);
  border-radius: 0;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.btn-package-outline:hover {
  background: var(--red);
  border-color: var(--red);
}

.btn-package-filled {
  display: block;
  text-align: center;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 16px;
  border: 1.5px solid var(--red);
  border-radius: 0;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-package-filled:hover {
  background: transparent;
  color: var(--white);
}

/* ---- Part 2: Social Media & Advertising ---- */
.packages-social {
  margin-top: 0;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.packages-social-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 40px);
  color: var(--white);
  margin-bottom: 0;
}

.packages-social-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--grey);
  max-width: 600px;
  margin-top: 16px;
  line-height: 1.7;
}

.packages-social-cta-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  margin-top: 24px;
}

.packages-social-btn {
  margin-top: 24px;
  padding: 14px 36px;
  border-radius: 0;
  font-size: 11px;
}
