•{  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}body {
  background: #f5f7fb;
  color: #1f2937;
  line-height: 1.6;
}a {
  text-decoration: none;
  color: inherit;
}.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}.logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}.tagline {
  font-size: 14px;
  color: #6b7280;
}.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s ease;
}.btn-primary {
  background: #2563eb;
  color: #fff;
}.btn-primary:hover {
  background: #1d4ed8;
}.btn-secondary {
  background: #0f172a;
  color: #fff;
}.btn-secondary:hover {
  background: #111827;
}.btn-outline {
  border: 1px solid #2563eb;
  color: #2563eb;
}.btn-outline:hover {
  background: #eff6ff;
}.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
}.badge {
  display: inline-block;
  padding: 6px 12px;
  background: #dbeafe;
  color: #1d4ed8;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 16px;
}.hero h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
}.hero p {
  color: #4b5563;
  margin-bottom: 22px;
  max-width: 600px;
}.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}.stat-card {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
}.stat-card h3 {
  font-size: 28px;
  color: #2563eb;
}.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}.section {
  padding: 60px 40px;
}.section-header {
  text-align: center;
  margin-bottom: 30px;
}.section-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}.section-header p {
  color: #6b7280;
}.categories-grid,
.jobs-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}.category-card,
.job-card,
.price-card,
.contact-card {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}.category-card {
  text-align: center;
  font-weight: 700;
  transition: 0.3s ease;
}.category-card:hover {
  transform: translateY(-4px);
  background: #eff6ff;
}.job-card h3 {
  margin-bottom: 8px;
  color: #111827;
}.job-card p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 8px;
}.loading {
  text-align: center;
  font-weight: 600;
  color: #2563eb;
}.price-card {
  text-align: center;
}.featured-plan {
  border: 2px solid #2563eb;
}.price {
  font-size: 32px;
  color: #2563eb;
  font-weight: 700;
  margin: 12px 0;
}.contact-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}.footer {
  text-align: center;
  padding: 24px;
  background: #0f172a;
  color: #fff;
  margin-top: 20px;
}@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }  .topbar {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }  .nav-links {
    justify-content: center;
  }  .hero,
  .section {
    padding: 40px 20px;
  }  .hero h2 {
    font-size: 32px;
  }  .hero-stats {
    grid-template-columns: 1fr;
  }
}
