body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
:root {
  --primary: #F9C94E;
  --primary-hover: #F9CE5F;
  --grey: #333333;
  --grey-hover: #555555;
  --bg: #ffffff;
  --bg-accent: #FFF9EC;
  --surface: #ffffff;
  --text-primary: #1A1A1A;
  --text-secondary: #707070;
  --border: #E0E0E0;
}
header, footer {
  background: var(--bg-accent);
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}
footer {
  border-top: 1px solid var(--border);
  border-bottom: none;
}
nav a {
  margin-right: 1rem;
  text-decoration: none;
  color: var(--text-primary);
}
nav a:hover {
  color: var(--primary);
}
.hero {
  padding: 3rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-accent) 0%, var(--surface) 100%);
}
.hero h1 {
  color: var(--text-primary);
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero p {
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  color: var(--text-secondary);
}
.accent-pill {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  background: var(--text-primary);
  color: #F6F6F6;
  font-weight: 600;
  font-size: 0.8em;
}
.cta {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary {
  background: var(--grey);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--grey-hover);
}
.btn-secondary {
  background: transparent;
  color: var(--grey);
  border: 2px solid var(--grey);
}
.btn-secondary:hover {
  color: #ffffff;
  background: var(--grey-hover);
  border-color: var(--grey-hover);
}
.features, .pricing {
  padding: 2.5rem 1rem;
}
.features h2, .pricing h2 {
  color: var(--text-primary);
}
.features p, .pricing p {
  color: var(--text-secondary);
}
.features ul, .pricing ul {
  list-style: disc;
  padding-left: 1.5rem;
}
.plans {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.plan {
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: 12px;
  flex: 1;
  min-width: 220px;
  background: #ffffff;
}
footer nav a {
  margin-right: 1rem;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

header h1 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--text-primary);
}

header nav {
  display: flex;
  gap: 1rem;
}
