spb/company-atlas
Public
Python 66.3%
TypeScript 22.7%
JavaScript 8.6%
HTML 1.4%
CSS 0.7%
1<!doctype html>2<html lang="en">3<head>4 <title>Pricing — Acme Cloud</title>5 <meta name="description" content="Simple, transparent pricing for teams of every size.">6 <link rel="canonical" href="https://www.acme-cloud.example/pricing">7</head>8<body>9<header class="site-header">10 <nav aria-label="Main">11 <a href="/">Home</a> <a href="/product">Product</a> <a href="/pricing">Pricing</a> <a href="/customers">Customers</a>12 <a href="/blog">Blog</a> <a href="/careers">Careers</a> <a href="/docs">Docs</a>13 </nav>14</header>15<main>16 <section class="hero">17 <h1>Pricing that scales with you</h1>18 <p>Start free, upgrade when you are ready. No credit card required.</p>19 </section>20 <section class="pricing-grid">21 <h2>Plans</h2>22 <div class="pricing-card">23 <h3>Starter</h3>24 <p class="price">$39 <span>per month</span></p>25 <ul><li>Up to 5 users</li><li>10 GB storage</li><li>Email support</li></ul>26 <a href="/signup?plan=starter">Start free trial</a>27 </div>28 <div class="pricing-card">29 <h3>Pro</h3>30 <p class="price">$99 per user / month, billed annually</p>31 <ul><li>Unlimited users</li><li>1 TB storage</li><li>Priority support</li><li>SSO & SAML</li></ul>32 <a href="/signup?plan=pro">Buy Pro</a>33 </div>34 <div class="pricing-card">35 <h3>Enterprise</h3>36 <p class="price">Contact sales</p>37 <ul><li>Custom contracts</li><li>Dedicated success manager</li><li>99.99% SLA</li></ul>38 <a href="/contact-sales">Talk to sales</a>39 </div>40 </section>41 <section class="faq">42 <h2>Frequently asked questions</h2>43 <details><summary>Can I change plans later?</summary><p>Yes, upgrades and downgrades apply on the next billing cycle.</p></details>44 <details><summary>Do you offer discounts for nonprofits?</summary><p>Yes, contact us for details.</p></details>45 </section>46</main>47<footer class="site-footer">48 <p>© 2026 Acme Cloud, Inc. All rights reserved.</p>49 <a href="/legal/terms">Terms</a> <a href="/legal/privacy">Privacy</a> <a href="https://status.acme-cloud.example">Status</a>50</footer>51</body>52</html>53