* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #333; }

header { text-align: center; padding: 4rem 2rem 2rem; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; }
.highlight { color: #ffd700; }
.subhead { font-size: 1.2rem; opacity: 0.9; margin-top: 0.5rem; }

.pricing { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
.pricing h2 { text-align: center; margin-bottom: 3rem; font-size: 2.5rem; }

.cards { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.card { background: white; border: 2px solid #eee; border-radius: 10px; padding: 2rem; flex: 1; min-width: 250px; max-width: 350px; transition: transform 0.3s; }
.card:hover { transform: translateY(-5px); }
.card.featured { border-color: #667eea; position: relative; }
.card.featured::before { content: "Popular"; position: absolute; top: -10px; right: 20px; background: #667eea; color: white; padding: 0.3rem 1rem; border-radius: 20px; font-size: 0.8rem; }
.card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.price { font-size: 2.5rem; color: #667eea; margin-bottom: 1.5rem; font-weight: bold; }
.card ul { list-style: none; margin-bottom: 2rem; }
.card li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.card li::before { content: "✓"; color: #27ae60; position: absolute; left: 0; }
.btn { background: #eee; color: #333; padding: 0.8rem 1.5rem; border: none; border-radius: 5px; cursor: pointer; text-decoration: none; display: inline-block; text-align: center; width: 100%; font-weight: bold; }
.btn.primary { background: #667eea; color: white; }

.why { padding: 3rem 2rem; background: #f8f9fa; text-align: center; }
.why h2 { margin-bottom: 2rem; }
.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.benefits h4 { margin-bottom: 0.5rem; }

.contact { padding: 4rem 2rem; background: #667eea; color: white; text-align: center; }
.contact h2 { margin-bottom: 2rem; }
.contact form { max-width: 500px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.contact input, .contact textarea { width: 100%; padding: 1rem; border: none; border-radius: 5px; font-size: 1rem; }
.contact button { background: #ffd700; color: #333; padding: 1rem 2rem; border: none; border-radius: 5px; font-weight: bold; cursor: pointer; font-size: 1.1rem; }

footer { text-align: center; padding: 2rem; background: #333; color: white; }