Go-live: remove Coming Soon, add Start Free Trial CTAs, embed pricing page

- Remove coming-soon banner from all pages (index, articles, SEO pages, legal pages)
- Replace all "Get Early Access" CTAs with "Start Free Trial" → https://app.hoaledgeriq.com/pricing
- Hero CTA updated to "Start Your Free 14-Day Trial"
- Pricing section: replace static pricing grid with live iframe embed from app.hoaledgeriq.com/pricing
- Add .pricing-embed-wrap / .pricing-embed / .pricing-embed-fallback CSS
- Hide lead capture signup section (preserved with style="display:none" for future use)
- Update footer "Early Access" → "Start Free Trial" across all pages
- Update calculator CTA → https://app.hoaledgeriq.com/pricing
- Remove "Coming soon to hoaledgeriq.com" copy from privacy/terms footers
- Pages updated: index.html, styles.css, reserve-study-software.html, investment-management.html,
  special-assessment-calculator.html, privacy.html, terms.html, articles/index.html,
  articles/why-we-built-hoa-ledgeriq.html, articles/hoa-financial-blind-spots.html

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-21 09:38:19 -04:00
parent 5cc20df0df
commit 3e0969e682
10 changed files with 48 additions and 136 deletions

View File

@@ -445,6 +445,18 @@ body {
/* ---- Pricing ---- */
.pricing { padding: 100px 0; }
.pricing-embed-wrap {
margin-top: 40px;
border-radius: var(--radius-lg);
overflow: hidden;
border: 1px solid rgba(255,255,255,0.08);
box-shadow: 0 0 60px rgba(79,70,229,0.15);
background: #fff;
}
.pricing-embed { width: 100%; min-height: 780px; border: none; display: block; }
.pricing-embed-fallback { text-align: center; margin-top: 14px; font-size: 13px; color: var(--gray-400); }
.pricing-embed-fallback a { color: var(--blue); }
@media (max-width: 640px) { .pricing-embed { min-height: 1100px; } }
.pricing-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);