:root {
  --bg-color: oklch(1 0 0); /* Pure white */
  --text-main: #333333;
  --text-muted: #666666;
  --accent: #2c3e50;
  
  /* Neumorphism shadows */
  --neu-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
  --neu-shadow-sm: 10px 10px 30px #d9d9d9, -10px -10px 30px #ffffff;
  --neu-inset: inset 10px 10px 30px #d9d9d9, inset -10px -10px 30px #ffffff;
}

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

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

header {
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

nav a {
  text-decoration: none;
  color: var(--text-main);
  margin-left: 2rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

nav a:hover {
  box-shadow: var(--neu-shadow-sm);
}

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

.hero {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 4rem 0;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
  background-color: var(--bg-color);
  border: none;
  border-radius: 50px;
  box-shadow: var(--neu-shadow-sm);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  box-shadow: var(--neu-inset);
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--neu-shadow);
}

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--accent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.card {
  background-color: var(--bg-color);
  border-radius: 30px;
  padding: 3rem 2rem;
  box-shadow: var(--neu-shadow);
  text-align: center;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  box-shadow: var(--neu-shadow-sm);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.price-card {
  border-radius: 30px;
  padding: 3rem 2rem;
  box-shadow: var(--neu-shadow);
  text-align: center;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin: 1.5rem 0;
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
}

.price-features li {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-item {
  background-color: var(--bg-color);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--neu-shadow-sm);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-muted);
  margin-top: 0;
}

.faq-item.active {
  box-shadow: var(--neu-inset);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 1rem;
}

/* Contact Form */
.contact-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 30px;
  box-shadow: var(--neu-shadow);
}

.form-group {
  margin-bottom: 2rem;
}

.form-control {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-family: inherit;
  border: none;
  background-color: var(--bg-color);
  border-radius: 15px;
  box-shadow: var(--neu-inset);
  color: var(--text-main);
  outline: none;
}

.form-control::placeholder {
  color: #999;
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

footer {
  padding: 3rem 0;
  margin-top: 5rem;
  text-align: center;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.02);
}

.footer-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

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

.seo-text {
  font-size: 0.8rem;
  color: #ccc;
  text-align: justify;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  
  nav {
    display: none;
  }
}
