/* Hero Section */
.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.hero-content {
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero .highlight {
  color: var(--color-primary-light);
}

.hero p.subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
}

.hero-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Projects Section */
.projects-section {
  padding: 4rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2rem;
  color: var(--color-primary);
}

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 0;
  background: var(--color-bg-alt);
}

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

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.testimonial-logo {
  margin-top: 1rem;
  opacity: 0.7;
}

/* Press Section */
.press-section {
  padding: 4rem 0;
}

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

.press-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.press-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.press-card-content {
  padding: 1.5rem;
}

.press-source {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Final CTA Section */
.final-cta {
  padding: 4rem 0;
  text-align: center;
  background: var(--color-bg-alt);
}

.final-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.final-cta p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background: var(--color-bg-alt);
}
.hero-content {
  max-width: 600px;
}
.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}
.highlight {
  color: var(--color-primary-light);
}
.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--color-text-secondary);
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.hero-image img {
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Projects Preview */
.projects-preview {
  padding: 3rem 0;
}
.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.testimonial-logo {
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 3rem 0;
  background: var(--color-bg-alt);
}
.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content, .hero-image {
    text-align: center;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
}
