html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111;
  background: #fafafa;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.7;
}

.nav a:hover {
  text-decoration: underline;
  opacity: 1;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 18px;
}

.logo-text {
  color: #111;
}

.logo img {
  height: 32px;
}

.nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 14px;
  position: relative;
}

.nav a:not(:first-child) {
  margin-left: 0;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  .nav {
    width: 100%;
    gap: 16px;
  }
}

/* Hero */

.hero {
  padding: 80px 0 60px;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 18px;
  color: #666;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 40px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid #111;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.btn:hover {
  background: #111;
  color: #fff;
  text-decoration: none;
  opacity: 1;
}

.btn-outline {
  background: transparent;
}

.btn-outline:hover {
  background: #111;
  color: #fff;
}

/* Sections */

section {
  padding: 48px 0;
}

section h2 {
  font-size: 32px;
  margin-bottom: 32px;
  font-weight: 600;
}

@media (max-width: 768px) {
  section {
    padding: 32px 0;
  }
  
  section h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.features .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #eee;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card h2 {
  font-size: 24px;
  margin-bottom: 12px;
  margin-top: 0;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  margin-top: 0;
}

.card p {
  margin-bottom: 0;
  color: #666;
}

/* Legal pages */

.legal h1 {
  margin-bottom: 16px;
}

.legal p {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Footer */

.site-footer {
  border-top: 1px solid #e5e5e5;
  padding: 16px 0;
  background: #fff;
  margin-top: 32px;
  font-size: 13px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  white-space: nowrap;
  font-size: 12px;
  color: #666;
}

.footer-links a:hover {
  color: #111;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-links a {
    margin-left: 0;
  }
}

.page h1,
.legal h1 {
  font-size: 36px;
  margin-bottom: 24px;
  font-weight: 600;
}

.page p,
.legal p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: #333;
}

.legal p strong {
  color: #111;
  font-weight: 600;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.pricing-card {
  text-align: center;
}

@media (max-width: 768px) {
  .page h1,
  .legal h1 {
    font-size: 28px;
  }
  
  .contact-content,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

