/* ==========================================
   KUBEOPT.COM - Section Styles
   Based on aks-cost-optimizer design system
   ========================================== */

/* General Section Styling */
.section {
  padding: var(--space-2xl, 3rem) 0;
  position: relative;
  overflow: hidden;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--bg-primary, #ffffff) 0%, var(--bg-secondary, #f9fafb) 100%);
  padding: calc(var(--header-height, 80px) + var(--space-2xl, 3rem)) 0 var(--space-2xl, 3rem);
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md, 1rem);
  margin-bottom: var(--space-lg, 1.5rem);
  font-size: 3rem;
  font-weight: 500;
  color: var(--text-primary, #111827);
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.hero-logo {
  height: 64px;
  width: 64px;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary, #6b7280);
  margin-bottom: var(--space-md, 1rem);
  font-weight: 500;
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.hero-tagline {
  font-size: 1.125rem;
  color: var(--primary-color, #7FB069);
  margin-bottom: var(--space-lg, 1.5rem);
  font-weight: 600;
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary, #6b7280);
  max-width: 800px;
  margin: 0 auto var(--space-xl, 2rem);
  line-height: 1.6;
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-xl, 2rem);
  margin: var(--space-xl, 2rem) 0;
  padding: var(--space-lg, 1.5rem) 0;
  border-top: 1px solid var(--border-color, #e5e7eb);
  border-bottom: 1px solid var(--border-color, #e5e7eb);
}

.stat-item {
  text-align: center;
  padding: 0 var(--space-lg, 1.5rem);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--primary-color, #7FB069);
  line-height: 1;
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary, #6b7280);
  margin-top: var(--space-sm, 0.5rem);
  display: block;
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md, 1rem);
  margin-top: var(--space-xl, 2rem);
}

/* Deployment Options Section */
.deployment-options {
  background: var(--bg-secondary, #f9fafb);
  padding: var(--space-2xl, 3rem) 0;
}

.deployment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.deployment-card {
  background: var(--bg-primary, #ffffff);
  border-radius: var(--radius-lg, 0.75rem);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color, #e5e7eb);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deployment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color, #3b82f6);
}

.deployment-icon {
  font-size: 3rem;
  color: var(--primary-color, #3b82f6);
  margin-bottom: 1rem;
}

.deployment-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary, #1f2937);
}

.deployment-badge {
  display: inline-block;
  background: var(--primary-light, #eff6ff);
  color: var(--primary-color, #3b82f6);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full, 9999px);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.deployment-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.deployment-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light, #f3f4f6);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.deployment-features li i {
  color: var(--primary-color, #3b82f6);
  flex-shrink: 0;
  margin-top: 2px;
}

.deployment-pricing {
  text-align: center;
  margin: 1.5rem 0;
}

.deployment-pricing .from-text {
  font-size: 0.875rem;
  color: var(--text-secondary, #6b7280);
  display: block;
}

.deployment-pricing .price-display {
  font-size: 2rem;
  font-weight: 500;
  color: var(--primary-color, #3b82f6);
}

.deployment-comparison {
  margin-top: 3rem;
  background: var(--bg-primary, #ffffff);
  padding: 2rem;
  border-radius: var(--radius-lg, 0.75rem);
  box-shadow: var(--shadow-sm);
}

.deployment-comparison h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary, #1f2937);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light, #f3f4f6);
}

.comparison-table th {
  background: var(--bg-secondary, #f9fafb);
  font-weight: 600;
  color: var(--text-primary, #1f2937);
}

.comparison-table td {
  color: var(--text-secondary, #6b7280);
}

.comparison-table td i {
  margin-right: 0.5rem;
  color: var(--primary-color, #3b82f6);
}

@media (max-width: 768px) {
  .deployment-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-table {
    font-size: 0.875rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.5rem;
  }
  
  .pricing-tabs {
    flex-direction: column;
    padding: 2px;
    border-radius: 25px;
    gap: 2px;
  }
  
  .pricing-tab {
    width: 100%;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 23px;
  }
}

/* Pricing Section */
.pricing {
  background: var(--bg-primary, #ffffff);
  position: relative;
  padding: var(--space-2xl, 3rem) 0;
}

/* Pricing Tabs */
.pricing .pricing-tabs {
  display: inline-flex !important;
  background: #e5e7eb !important;
  border-radius: 50px !important;
  padding: 4px !important;
  margin: 2rem auto !important;
  justify-content: center !important;
  gap: 0 !important;
  position: relative !important;
}

.pricing .container {
  text-align: center !important;
}

.pricing .pricing-tab {
  padding: 12px 24px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 46px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  color: #6b7280 !important;
  outline: none !important;
  margin: 0 !important;
}

.pricing .pricing-tab:hover {
  color: #374151 !important;
  background: #f3f4f6 !important;
}

.pricing .pricing-tab.active {
  background: #7FB069 !important;
  color: white !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1) !important;
}

.pricing-tab i {
  font-size: 1.2rem;
}

.pricing-tab-content {
  display: none;
}

.pricing-tab-content.active {
  display: block !important;
}

.pricing-subtitle {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-secondary, #6b7280);
  line-height: 1.6;
}

.pricing-subtitle strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-primary, #1f2937);
  margin-bottom: 0.5rem;
}

.pricing-cards {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap: 1.5rem !important;
  margin-top: 1.5rem !important;
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  flex-wrap: unset !important;
  justify-content: center !important;
  padding: 0 !important;
}

@media (max-width: 1200px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.pricing-card {
  background: var(--bg-primary, #ffffff) !important;
  border-radius: var(--radius-lg, 0.75rem) !important;
  padding: 2rem !important;
  box-shadow: var(--shadow-md) !important;
  border: 1px solid var(--border-color, #e5e7eb) !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  height: auto !important;
  min-height: 320px !important;
  max-width: unset !important;
  overflow: visible !important;
}

.pricing-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-lg) !important;
  border-color: var(--primary-color, #7FB069) !important;
}

/* Pricing card icon area */
.pricing-icon {
  width: 48px !important;
  height: 48px !important;
  background: var(--primary-color, #7FB069) !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 1rem auto !important;
  color: white !important;
  font-size: 1.5rem !important;
  font-weight: 500 !important;
}

.pricing-title {
  font-size: 1.25rem !important;
  font-weight: 500 !important;
  color: var(--text-primary, #1f2937) !important;
  margin-bottom: 0.5rem !important;
}

.pricing-badge {
  background: var(--primary-light, #eff6ff) !important;
  color: var(--primary-color, #7FB069) !important;
  padding: 0.25rem 0.75rem !important;
  border-radius: var(--radius-full, 9999px) !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  margin: 0 auto 1rem auto !important;
  display: inline-block !important;
}

.pricing-description {
  color: var(--text-secondary, #6b7280) !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
  margin-bottom: 1.5rem !important;
}

.price {
  font-size: 2rem !important;
  font-weight: 600 !important;
  color: var(--primary-color, #7FB069) !important;
  margin: 0.5rem 0 1rem 0 !important;
}

.price-period {
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: var(--text-secondary, #6b7280) !important;
}

/* Features list styling */
.pricing-features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 1.5rem 0 !important;
  text-align: left !important;
  flex-grow: 1 !important;
}

.pricing-features li {
  padding: 0.4rem 0 !important;
  font-size: 0.875rem !important;
  color: var(--text-secondary, #6b7280) !important;
  line-height: 1.4 !important;
}

/* Action buttons */
.pricing-actions {
  margin-top: auto !important;
}

.pricing-actions .btn {
  width: 100% !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
  background: var(--primary-color, #7FB069) !important;
  color: white !important;
  border: none !important;
}

.pricing-actions .btn:hover {
  background: var(--primary-color-dark, #6BA055) !important;
  transform: translateY(-2px) !important;
}

.pricing-card .btn {
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  min-height: 44px;
  line-height: 1.2;
  border: 2px solid transparent;
}

.pricing-card .btn {
  background: linear-gradient(135deg, #7FB069, #6B9B5A) !important;
  color: white !important;
  border-color: #7FB069 !important;
  border: 2px solid #7FB069 !important;
}

.pricing-card .btn:hover {
  background: linear-gradient(135deg, #6B9B5A, #5A8549) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(127, 176, 105, 0.3) !important;
  color: white !important;
}

.pricing-card .btn-primary {
  background: linear-gradient(135deg, #7FB069, #6B9B5A) !important;
  color: white !important;
  border-color: #7FB069 !important;
}

.pricing-card .btn-secondary {
  background: linear-gradient(135deg, #7FB069, #6B9B5A) !important;
  color: white !important;
  border-color: #7FB069 !important;
}

.pricing-card .pricing-content {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  justify-content: flex-start !important;
}

.pricing-card .pricing-title {
  margin-bottom: 0.5rem !important;
  flex-shrink: 0 !important;
}

.pricing-card .price,
.pricing-card .price-after {
  margin-bottom: 1rem !important;
  flex-shrink: 0 !important;
}

.pricing-card .pricing-features {
  margin: 1.5rem 0 !important;
  flex: 1 !important;
}

.pricing-card .pricing-actions {
  flex-shrink: 0 !important;
  margin-top: auto !important;
  padding-top: 1rem !important;
}

.pricing-card .pricing-note {
  margin-top: 0.75rem;
  margin-bottom: 0;
  font-size: 0.75rem;
  color: #6b7280;
  opacity: 0.8;
}

.pricing-card.featured {
  border-color: var(--primary-color, #7FB069) !important;
  border-width: 2px !important;
  box-shadow: var(--shadow-lg, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)) !important;
  transform: none !important;
}

.pricing-card:hover {
  box-shadow: var(--shadow-md, 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1));
  transform: translateY(-4px);
  border-color: var(--primary-color-light, #94C37F);
}

.pricing-card.featured:hover {
  transform: translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color, #7FB069);
  color: white;
  padding: var(--space-xs, 0.25rem) var(--space-md, 1rem);
  border-radius: var(--radius-sm, 0.375rem);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary, #111827);
  margin-bottom: var(--space-md, 1rem);
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.price {
  font-size: 3rem;
  font-weight: 500;
  color: var(--primary-color, #7FB069);
  margin-bottom: var(--space-lg, 1.5rem);
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.price-period {
  font-size: 1rem;
  color: var(--text-secondary, #6b7280);
  font-weight: 400;
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-lg, 1.5rem);
  text-align: left;
  padding: 0;
}

.pricing-features li {
  padding: var(--space-sm, 0.5rem) 0;
  color: var(--text-secondary, #6b7280);
  border-bottom: 1px solid var(--border-color-light, #f3f4f6);
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary-color, #7FB069) 0%, var(--primary-color-dark, #6BA055) 100%);
  color: white;
  padding: var(--space-2xl, 3rem) 0;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: white;
  margin-bottom: var(--space-md, 1rem);
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl, 2rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md, 1rem);
  margin-bottom: var(--space-lg, 1.5rem);
  flex-wrap: wrap;
}

.cta-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

/* Demo Section */
.demo {
  background: var(--bg-primary, #ffffff);
  padding: var(--space-2xl, 3rem) 0;
}

/* Download Section */
.download {
  background: var(--bg-secondary, #f9fafb);
  padding: var(--space-2xl, 3rem) 0;
}

.download-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl, 2rem);
  margin-top: var(--space-xl, 2rem);
}

.download-card {
  background: var(--bg-primary, #ffffff);
  border-radius: var(--radius-lg, 0.75rem);
  padding: var(--space-xl, 2rem);
  box-shadow: var(--shadow-sm, 0 1px 2px 0 rgb(0 0 0 / 0.05));
  border: 1px solid var(--border-color, #e5e7eb);
  transition: all 0.3s ease;
  text-align: center;
}

.download-card:hover {
  box-shadow: var(--shadow-md, 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1));
  transform: translateY(-2px);
}

.download-card.featured {
  border-color: var(--primary-color, #7FB069);
  background: linear-gradient(135deg, rgba(127, 176, 105, 0.05) 0%, var(--bg-primary, #ffffff) 100%);
}

.download-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary, #111827);
  margin-bottom: var(--space-md, 1rem);
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.download-card p {
  color: var(--text-secondary, #6b7280);
  line-height: 1.6;
  margin-bottom: var(--space-lg, 1.5rem);
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.download-steps {
  margin-bottom: var(--space-lg, 1.5rem);
}

.step {
  padding: var(--space-sm, 0.5rem) 0;
  color: var(--text-secondary, #6b7280);
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border-color-light, #f3f4f6);
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.step:last-child {
  border-bottom: none;
}

.download-cta {
  text-align: center;
  margin-top: var(--space-2xl, 3rem);
  padding: var(--space-xl, 2rem);
  background: var(--bg-primary, #ffffff);
  border-radius: var(--radius-lg, 0.75rem);
  border: 1px solid var(--border-color, #e5e7eb);
}

.download-cta h3 {
  color: var(--text-primary, #111827);
  margin-bottom: var(--space-sm, 0.5rem);
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.download-cta p {
  color: var(--text-secondary, #6b7280);
  margin-bottom: var(--space-lg, 1.5rem);
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md, 1rem);
  margin-top: var(--space-lg, 1.5rem);
  flex-wrap: wrap;
}

/* Contact Section */
.contact {
  background: var(--bg-secondary, #f9fafb);
  padding: var(--space-2xl, 3rem) 0;
}

.contact-content {
  display: flex;
  gap: var(--space-2xl, 3rem);
  margin-top: var(--space-xl, 2rem);
  align-items: flex-start;
}

.contact-info,
.contact-form {
  flex: 1;
}

.contact-item {
  margin-bottom: var(--space-xl, 2rem);
  text-align: center;
}

.contact-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary, #111827);
  margin-bottom: var(--space-sm, 0.5rem);
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.contact-item p {
  color: var(--text-secondary, #6b7280);
  margin-bottom: var(--space-sm, 0.5rem);
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md, 1rem);
  color: var(--primary-color, #7FB069);
}

/* Docs Section */
.docs {
  background: var(--bg-secondary, #f9fafb);
  padding: var(--space-2xl, 3rem) 0;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl, 2rem);
  margin-top: var(--space-xl, 2rem);
}

.doc-card {
  background: var(--bg-primary, #ffffff);
  border-radius: var(--radius-lg, 0.75rem);
  padding: var(--space-xl, 2rem);
  box-shadow: var(--shadow-sm, 0 1px 2px 0 rgb(0 0 0 / 0.05));
  border: 1px solid var(--border-color, #e5e7eb);
  transition: all 0.3s ease;
  text-align: center;
}

.doc-card:hover {
  box-shadow: var(--shadow-md, 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1));
  transform: translateY(-2px);
}

.doc-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md, 1rem);
  color: var(--primary-color, #7FB069);
}

.doc-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary, #111827);
  margin-bottom: var(--space-md, 1rem);
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.doc-description {
  color: var(--text-secondary, #6b7280);
  line-height: 1.6;
  margin-bottom: var(--space-lg, 1.5rem);
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.doc-link {
  color: var(--primary-color, #7FB069);
  text-decoration: none;
  font-weight: 500;
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.doc-link:hover {
  color: var(--primary-color-dark, #6BA055);
}

/* Quick Start Section */
.quick-start {
  background: var(--bg-tertiary, #f3f4f6);
  border-radius: var(--radius-lg, 0.75rem);
  padding: var(--space-xl, 2rem);
  margin-top: var(--space-2xl, 3rem);
  border: 1px solid var(--border-color, #e5e7eb);
}

.quick-start-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary, #111827);
  margin-bottom: var(--space-lg, 1.5rem);
  text-align: center;
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.quick-start-features {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary, #6b7280);
  font-weight: 500;
  margin-top: var(--space-lg, 1.5rem);
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

/* Code Snippet Styling */
.code-snippet {
  background: var(--gray-900, #111827);
  color: white;
  padding: var(--space-md, 1rem);
  border-radius: var(--radius-md, 0.5rem);
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 0.8rem;
  position: relative;
  margin-bottom: var(--space-md, 1rem);
  overflow-x: auto;
}

.copy-btn {
  position: absolute;
  top: var(--space-sm, 0.5rem);
  right: var(--space-sm, 0.5rem);
  background: var(--primary-color, #7FB069);
  color: white;
  border: none;
  padding: var(--space-xs, 0.25rem) var(--space-sm, 0.5rem);
  border-radius: var(--radius-sm, 0.375rem);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
}

.copy-btn:hover {
  background: var(--primary-color-dark, #6BA055);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-lg, 1.5rem);
  }
  
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    flex-direction: column;
    gap: var(--space-md, 1rem);
  }
  
  .hero-logo {
    height: 48px;
    width: 48px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--space-md, 1rem);
  }
  
  .hero-actions,
  .cta-actions,
  .cta-buttons {
    flex-direction: column;
    gap: var(--space-sm, 0.5rem);
  }
  
  .hero-actions .btn,
  .cta-actions .btn,
  .cta-buttons .btn {
    width: 100%;
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .download-options,
  .docs-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg, 1.5rem);
  }
  
  .pricing-cards {
    gap: var(--space-lg, 1.5rem);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .price {
    font-size: 2.5rem;
  }
  
  .quick-start,
  .download-card,
  .doc-card,
  .pricing-card {
    padding: var(--space-lg, 1.5rem);
  }
}