* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; color: #333; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { background: #fff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; }
.logo h1 { font-size: 22px; color: #2c3e50; }
.logo .subtitle { font-size: 13px; color: #999; }
nav a { text-decoration: none; color: #666; margin-left: 28px; font-size: 14px; font-weight: 500; transition: color .2s; }
nav a:hover { color: #3498db; }

/* Hero */
.hero { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); color: #fff; padding: 70px 0; text-align: center; }
.hero h2 { font-size: 34px; margin-bottom: 12px; font-weight: 700; }
.hero p { font-size: 17px; opacity: .75; margin-bottom: 30px; }
.hero-stats { display: flex; justify-content: center; gap: 50px; margin-top: 30px; }
.hero-stat .num { font-size: 32px; font-weight: 700; }
.hero-stat .label { font-size: 13px; opacity: .65; }

/* Section */
.section { padding: 70px 0; }
.section-alt { background: #f7f9fc; }
.section-title { font-size: 28px; text-align: center; margin-bottom: 8px; color: #2c3e50; }
.section-desc { text-align: center; color: #888; margin-bottom: 40px; font-size: 15px; }

/* Plans Grid */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.plan-card { background: #fff; border-radius: 12px; padding: 32px 28px; box-shadow: 0 2px 16px rgba(0,0,0,.06); border: 2px solid transparent; transition: transform .2s, box-shadow .2s, border-color .2s; position: relative; }
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.12); }
.plan-card.featured { border-color: #3498db; }
.plan-badge { position: absolute; top: -12px; right: 20px; background: #e74c3c; color: #fff; font-size: 12px; font-weight: 600; padding: 4px 14px; border-radius: 20px; }
.plan-name { font-size: 20px; font-weight: 700; color: #2c3e50; margin-bottom: 4px; }
.plan-sub { font-size: 13px; color: #999; margin-bottom: 6px; }
.plan-meta { display: flex; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.plan-meta span { font-size: 13px; color: #666; background: #f0f4f8; padding: 4px 10px; border-radius: 6px; }
.plan-price { margin-bottom: 20px; }
.plan-price .amount { font-size: 36px; font-weight: 700; color: #e74c3c; }
.plan-price .currency { font-size: 18px; }
.plan-price .period { font-size: 14px; color: #999; }
.plan-features { list-style: none; margin-bottom: 24px; }
.plan-features li { padding: 5px 0; font-size: 13.5px; color: #555; }
.plan-features li::before { content: "✓ "; color: #27ae60; font-weight: 700; }
.btn { display: block; text-align: center; padding: 12px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 15px; transition: background .2s; cursor: pointer; }
.btn-primary { background: #3498db; color: #fff; }
.btn-primary:hover { background: #2980b9; }

/* Website Types */
.websites-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.website-card { background: #fff; border-radius: 10px; padding: 24px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,.05); transition: transform .2s; }
.website-card:hover { transform: translateY(-3px); }
.website-card .name { font-size: 16px; font-weight: 600; color: #2c3e50; margin-bottom: 6px; }
.website-card .desc { font-size: 13px; color: #888; margin-bottom: 8px; }
.website-card .tags { display: flex; justify-content: center; gap: 8px; }
.website-card .tags span { font-size: 12px; background: #f0f4f8; padding: 3px 8px; border-radius: 4px; color: #555; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 16px; background: #fff; border-radius: 10px; padding: 20px 24px; box-shadow: 0 1px 8px rgba(0,0,0,.04); }
.faq-item h4 { color: #2c3e50; margin-bottom: 8px; font-size: 15px; }
.faq-item p { color: #666; font-size: 14px; }

/* Footer */
footer { background: #1a1a2e; color: #aaa; text-align: center; padding: 30px 0; font-size: 13px; }
footer .disclaimer { margin-top: 8px; font-size: 12px; opacity: .6; }

/* Floating contact button */
.floating-contact { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background: #27ae60; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; text-decoration: none; box-shadow: 0 4px 16px rgba(39,174,96,.35); z-index: 999; transition: transform .2s, box-shadow .2s; }
.floating-contact:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(39,174,96,.5); }

/* Responsive */
@media (max-width: 768px) {
    .hero h2 { font-size: 24px; }
    .hero p { font-size: 15px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-stat .num { font-size: 24px; }
    .header-inner { flex-direction: column; gap: 12px; }
    nav a { margin-left: 12px; margin-right: 12px; }
    .plans-grid { grid-template-columns: 1fr; }
}
