/* Sequoia AI Page Styles */

/* General Styles */
.sequoia-ai-page {
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

.sequoia-ai-page h1, 
.sequoia-ai-page h2, 
.sequoia-ai-page h3 {
  color: #059669;
  margin-bottom: 1rem;
}

.sequoia-ai-page h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.sequoia-ai-page h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.sequoia-ai-page h3 {
  font-size: 1.5rem;
}

.sequoia-ai-page section {
  padding: 4rem 0;
}

.sequoia-ai-page section:nth-child(even) {
  background-color: #f9fafb;
}

/* Loading State */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.loading-spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top: 4px solid #059669;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hero Section */
.sequoia-hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e6fffa 100%);
  padding: 5rem 0;
  text-align: center;
}

.sequoia-hero-subtitle {
  font-size: 1.25rem;
  color: #4B5563;
  margin-bottom: 2rem;
}

.sequoia-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.sequoia-hero-text {
  flex: 1;
  text-align: left;
}

.sequoia-hero-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 1.5rem;
}

.sequoia-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.sequoia-hero-image img {
  max-width: 100%;
  height: auto;
}

.sequoia-hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #059669;
  color: white;
}

.btn-primary:hover {
  background: #047857;
}

.btn-secondary {
  background: white;
  color: #059669;
  border: 1px solid #059669;
}

.btn-secondary:hover {
  background: #f0fdf4;
}

/* Features Section */
.sequoia-features-section {
  background-color: white;
}

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

.sequoia-feature-box {
  background: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid #059669;
}

.sequoia-feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2rem;
  color: #059669;
  margin-bottom: 1rem;
}

/* How It Works Section */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  position: relative;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #059669;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

/* Case Studies Section */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.case-study-card {
  background: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.case-study-card blockquote {
  font-style: italic;
  margin-top: 1rem;
  color: #6B7280;
  border-left: 3px solid #059669;
  padding-left: 1rem;
}

/* Demo Request Section */
.sequoia-demo-request {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: white;
  text-align: center;
}

.sequoia-demo-request h2,
.sequoia-demo-request h3 {
  color: white;
}

.sequoia-demo-request p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.demo-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.9);
}

.demo-form button {
  grid-column: span 2;
  background: white;
  color: #059669;
  border: none;
  padding: 0.75rem;
  border-radius: 0.375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.demo-form button:hover {
  background: #f0fdf4;
  color: #047857;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .sequoia-hero-content {
    flex-direction: column;
  }
  
  .sequoia-hero-image {
    order: -1;
  }
  
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  
  .demo-form {
    grid-template-columns: 1fr;
  }
  
  .demo-form button {
    grid-column: auto;
  }
}
