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: 980px; 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 a.btn-primary, .content-article a.btn-primary:hover { color: var(--white); }
.content-article strong { color: var(--navy); }

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

.screenshot-frame { border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 30px 70px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08); }
.screenshot-frame .browser-bar { display: flex; align-items: center; gap: 0.4rem; padding: 0.65rem 0.9rem; background: #e4e7eb; border-bottom: 1px solid rgba(0,0,0,0.06); }
.screenshot-frame .browser-bar .dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.screenshot-frame .browser-bar .url { margin-left: 0.75rem; font-size: 0.78rem; color: rgba(0,0,0,0.4); font-family: monospace; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.screenshot-frame .desktop-shot { display: block; width: 100%; height: auto; }
.screenshot-frame .mobile-shot { display: none; width: 100%; height: auto; }
@media (max-width: 640px) {
  .screenshot-frame .desktop-shot { display: none; }
  .screenshot-frame .mobile-shot { display: block; }
}

.content-article .content-screenshot { margin: 2rem 0; }
.content-article .content-screenshot figcaption { text-align: center; font-size: 0.85rem; color: var(--text-muted); margin-top: 0.85rem; }

.content-article .niche-section {
  display: grid; grid-template-columns: 2fr 1fr; gap: 1.75rem; align-items: start;
  margin-top: 2.5rem; padding-top: 2.25rem; border-top: 1px solid var(--border);
}
.content-article .niche-section h2 { margin-top: 0; }
.content-article .niche-panel {
  border-radius: 12px; padding: 1.5rem 1.25rem; color: var(--white);
  position: relative; overflow: hidden; min-height: 190px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.content-article .niche-panel::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 25% 15%, rgba(255,255,255,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.content-article .niche-panel-eyebrow {
  position: relative; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 0.4rem;
}
.content-article .niche-panel-text {
  position: relative; font-family: 'Lora', serif; font-size: 1.05rem;
  font-weight: 600; line-height: 1.35;
}
.content-article .niche-panel--navy { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
.content-article .niche-panel--amber { background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%); }

.cta-section { background: var(--navy); color: var(--white); text-align: center; padding: 5rem 2rem; position: relative; overflow: hidden; }
.cta-section h2 { color: var(--white); font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto 2rem; font-size: 1.05rem; line-height: 1.7; }
.cta-guarantees { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.guarantee-pill { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.guarantee-pill::before { content: '✓'; color: var(--amber-light); font-weight: 700; }

@media (max-width: 640px) {
  .content-article .niche-section { grid-template-columns: 1fr; }
  .content-article .niche-panel { order: -1; min-height: 110px; }
}
