:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --text: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --radius: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.site-header { background: var(--bg); border-bottom: 1px solid var(--border); padding: 1rem 0; }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); text-decoration: none; }
.nav-menu { list-style: none; display: flex; gap: 2rem; }
.nav-menu a { text-decoration: none; color: var(--text); font-weight: 500; }
.nav-menu a:hover { color: var(--primary); }

/* Hero */
.hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; padding: 5rem 0; text-align: center; }
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero-subtitle { font-size: 1.25rem; opacity: 0.9; margin-bottom: 2rem; }

/* Buttons */
.btn { display: inline-block; padding: 0.75rem 2rem; border-radius: var(--radius); text-decoration: none; font-weight: 600; transition: all 0.2s; }
.btn-primary { background: white; color: var(--primary); }
.btn-primary:hover { background: #f0f4ff; transform: translateY(-2px); }

/* Features */
.features { padding: 4rem 0; background: var(--bg-alt); }
.features h2 { text-align: center; font-size: 2rem; margin-bottom: 2rem; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.feature { background: var(--bg); padding: 2rem; border-radius: var(--radius); border: 1px solid var(--border); }
.feature h3 { margin-bottom: 0.5rem; }

/* Page content */
.page-content { padding: 3rem 0; }
.page-content h1 { margin-bottom: 1.5rem; }

/* Footer */
.site-footer { background: var(--text); color: white; padding: 2rem 0; text-align: center; }
.site-footer a { color: #93c5fd; }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.75rem; }
  .nav-menu { gap: 1rem; font-size: 0.9rem; }
}

/* Pricing */
.pricing-section { padding: 3rem 0; }
.pricing-section h2 { text-align: center; font-size: 2rem; margin-bottom: 0.5rem; }
.pricing-subtitle { text-align: center; color: var(--text-light); margin-bottom: 3rem; font-size: 1.1rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.pricing-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.pricing-card.popular { border-color: var(--primary); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.3rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.price { font-size: 3rem; font-weight: 800; color: var(--primary); margin-bottom: 1.5rem; }
.price span { font-size: 1rem; font-weight: 400; color: var(--text-light); }
.features-list { list-style: none; text-align: left; margin-bottom: 2rem; }
.features-list li { padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.features-list li:last-child { border-bottom: none; }
.btn-outline {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--primary); color: white; }
.btn-cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  border: 2px solid var(--primary);
}
.btn-cta:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); }

/* FAQ */
.hosting-faq { padding: 3rem 0; background: var(--bg-alt); }
.hosting-faq h2 { text-align: center; font-size: 2rem; margin-bottom: 2rem; }
.faq-item { max-width: 700px; margin: 0 auto 1.5rem; background: var(--bg); padding: 1.5rem; border-radius: var(--radius); border: 1px solid var(--border); }
.faq-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--primary-dark); }
.faq-item p { color: var(--text-light); }
