:root {
  --bg-dark: #0E1C1B;
  --card-bg: #17302D;
  --text-light: #EEF1EC;
  --accent-gold: #C2A05A;
  --accent-sage: #6FBE9A;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== MARKETING ===================== */

.marketing {
  padding: 72px 0 96px;
  text-align: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.03em;
  margin-bottom: 48px;
}

.headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.subheadline {
  font-size: 1.125rem;
  color: rgba(238, 241, 236, 0.8);
  max-width: 480px;
  margin: 0 auto 40px;
}

.benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 380px;
  margin: 0 auto 40px;
  text-align: left;
}

.benefits li {
  position: relative;
  padding-left: 28px;
  font-size: 1rem;
}

.benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-sage);
  font-weight: 600;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 40px;
}

.cta-button {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 16px 40px;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.cta-button:hover {
  background-color: #d4b070;
  transform: translateY(-1px);
}

.cta-button:active {
  transform: translateY(0);
}

/* ===================== CHECKOUT ===================== */

.checkout {
  background-color: var(--card-bg);
  padding: 72px 0 96px;
  text-align: center;
  border-top: 1px solid rgba(238, 241, 236, 0.08);
}

.checkout-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 32px;
}

#wompi-widget {
  min-height: 1px;
  margin-bottom: 32px;
}

/* ===================== SUCCESS ===================== */

.success {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.success-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.success-message {
  font-size: 1.1rem;
  color: rgba(238, 241, 236, 0.85);
  max-width: 480px;
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 600px) {
  .marketing {
    padding: 56px 0 72px;
  }

  .checkout {
    padding: 56px 0 72px;
  }

  .cta-button {
    width: 100%;
    padding: 16px 24px;
  }
}
