:root {
  --bg-color: oklch(1 0 0); /* Pure white */
  --text-color: oklch(0.1 0 0);
  --accent-color: #006B56; /* Deep Emerald */
  --accent-hover: #005242;
  --surface-color: oklch(0.98 0 0);
  --border-color: oklch(0.9 0 0);
  --radius: 24px;
}

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

body {
  font-family: 'Geist', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

header {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.btn-primary {
  background-color: var(--accent-color);
  color: white;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.hero {
  padding: 120px 0 80px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.25rem;
  color: oklch(0.4 0 0);
  margin-bottom: 40px;
}

/* Bento Layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 320px;
  gap: 24px;
  margin-bottom: 120px;
}

.bento-item {
  background-color: var(--surface-color);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
}

.bento-item h3 {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.bento-item p {
  color: oklch(0.4 0 0);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-tall {
  grid-column: span 1;
  grid-row: span 2;
}

.bento-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.bento-content {
  position: relative;
  z-index: 1;
}

.bento-item.image-card {
  padding: 0;
}

.pricing {
  margin-bottom: 120px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-header h2 {
  font-size: 3rem;
  letter-spacing: -0.03em;
}

.pricing-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.pricing-card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 48px;
  flex: 1;
  max-width: 400px;
  background: white;
}

.pricing-card.featured {
  background-color: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-card ul li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.pricing-card.featured ul li::before {
  color: white;
}

.faq {
  max-width: 800px;
  margin: 0 auto 120px;
}

.faq h2 {
  font-size: 3rem;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  padding: 24px 0;
  font-size: 1.25rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding-bottom: 24px;
  color: oklch(0.4 0 0);
  display: none;
}

.contact-section {
  background-color: var(--surface-color);
  padding: 120px 0;
  border-radius: var(--radius);
  margin-bottom: 120px;
  text-align: center;
}

.contact-section h2 {
  font-size: 3rem;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.contact-form {
  max-width: 500px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: white;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  width: 100%;
}

.form-success {
  display: none;
  background: var(--accent-color);
  color: white;
  padding: 16px;
  border-radius: 12px;
  margin-top: 16px;
  font-weight: 500;
}

footer {
  border-top: 1px solid var(--border-color);
  padding: 48px 0;
  display: flex;
  justify-content: space-between;
  color: oklch(0.5 0 0);
}

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

.footer-links a:hover {
  color: var(--text-color);
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bento-grid {
    display: flex;
    flex-direction: column;
  }
  .bento-item {
    min-height: 320px;
  }
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .header {
    flex-direction: column;
    gap: 16px;
  }
  .nav-links {
    display: none;
  }
}
