body { background: var(--cream); }

section { padding: 5rem 2rem; }
.container { max-width: 860px; margin: 0 auto; }
.container-wide { max-width: 1060px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 0.75rem;
}
h2 {
  font-family: 'Lora', serif; font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 700; line-height: 1.25; letter-spacing: -0.02em;
  color: var(--navy); margin-bottom: 1.5rem;
}

.btn-primary {
  background: var(--amber); color: var(--white); padding: 0.85rem 2rem;
  border-radius: 8px; font-size: 1rem; font-weight: 500; text-decoration: none;
  transition: background 0.2s; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-secondary {
  background: rgba(255,255,255,0.1); color: var(--white); padding: 0.85rem 2rem;
  border-radius: 8px; font-size: 1rem; font-weight: 400; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2); transition: background 0.2s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}

.pricing { background: var(--white); }
.pricing-grid { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; margin-top: 2rem; }
.pricing-card { background: var(--navy); border-radius: 16px; padding: 3rem; color: var(--white); width: 100%; max-width: 380px; text-align: center; position: relative; overflow: hidden; }
.pricing-card-name { font-family: 'Lora', serif; font-size: 1.1rem; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 0.5rem; }
.pricing-amount { font-family: 'Lora', serif; font-size: 3.5rem; font-weight: 700; color: var(--amber-light); line-height: 1; margin-bottom: 0.25rem; }
.pricing-period { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 1.5rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; display: grid; gap: 0.6rem; text-align: left; }
.pricing-features li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; color: rgba(255,255,255,0.8); }
.pricing-features li::before { content: '✓'; color: var(--amber-light); font-weight: 700; flex-shrink: 0; }
.pricing-note { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 1.25rem; line-height: 1.6; }
.pricing-card-highlight { box-shadow: 0 16px 36px rgba(0,0,0,0.22); transform: scale(1.06); }
.pricing-badge {
  position: absolute; top: 0; right: 0; background: var(--amber-light); color: var(--navy);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-bottom-left-radius: 10px;
}

.content-wrap { padding: 3.5rem 2rem 4rem; }
.content-article { max-width: 760px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 2.5rem 3rem; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }

.content-article h1 {
  font-family: 'Lora', serif; font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700; line-height: 1.25; letter-spacing: -0.02em;
  color: var(--navy); margin-bottom: 1rem;
}
.content-article h2 {
  font-family: 'Lora', serif; font-size: 1.3rem;
  font-weight: 700; line-height: 1.3; letter-spacing: -0.01em;
  color: var(--navy); margin-top: 2.25rem; margin-bottom: 0.85rem;
}
.content-article p { margin-bottom: 1rem; color: var(--text); }
.content-article ul, .content-article ol { margin: 0 0 1rem 1.25rem; }
.content-article ul ul, .content-article ol ul { margin-top: 0.5rem; }
.content-article li { margin-bottom: 0.5rem; line-height: 1.6; }
.content-article a { color: var(--amber); text-decoration: none; }
.content-article a:hover { text-decoration: underline; }
.content-article strong { color: var(--navy); }

@media (max-width: 640px) {
  .content-article { padding: 1.75rem; }
}
